/* --- RESET & VARIABLES --- */
:root {
  --bg-main: #0c0a09;
  --bg-surface: #141110;
  --bg-card: #1c1816;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(214, 185, 140, 0.25);
  
  --text-primary: #f5f2eb;
  --text-muted: #a39c94;
  --text-accent: #d8c29d;
  
  --btn-bg: #e6ded1;
  --btn-text: #171412;
  --btn-hover: #d5cbbe;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-script: 'Caveat', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-accent);
  margin-bottom: 12px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--btn-bg);
  color: var(--btn-text);
}

.btn-primary:hover {
  background-color: var(--btn-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

.btn-outline:hover {
  border-color: var(--text-accent);
  color: var(--text-accent);
}

/* --- HEADER --- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.logo {
  font-family: var(--font-serif);
  font-size: 21px;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--text-primary);
}

/* --- HERO SECTION --- */
.hero-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  padding: 80px 6% 100px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(38px, 4.5vw, 56px);
  margin-bottom: 20px;
  color: #fff;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  margin-bottom: 14px;
}

.hero-note {
  font-size: 13px;
  color: #7a736a;
}

.hero-visual {
  position: relative;
}

.hero-img-container {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
  border: 1px solid var(--border-subtle);
}

.hero-img {
  width: 100%;
  aspect-ratio: 4/5;
}

.handwritten-accent {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-script);
  font-size: 24px;
  color: #ebd7b5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: rotate(4deg);
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  pointer-events: none;
}

.handwritten-accent .heart {
  font-size: 20px;
  margin-top: -6px;
}

/* --- READINGS SECTION --- */
.readings-section {
  padding: 80px 6%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 45px;
}

.title-with-script {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.section-title {
  font-size: clamp(32px, 3.8vw, 46px);
  margin-bottom: 12px;
}

.script-badge {
  font-family: var(--font-script);
  font-size: 22px;
  color: #ebd7b5;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 640px;
}

.readings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
}

.reading-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}

.reading-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
}

.card-num {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 2px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 22px;
  margin-bottom: 6px;
}

.card-meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-accent);
  margin-bottom: 14px;
}

.card-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

/* --- BANNER SECTION --- */
.custom-banner-section {
  padding: 40px 6% 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.custom-banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 60px 45px;
  border: 1px solid var(--border-subtle);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,10,9,0.92) 0%, rgba(12,10,9,0.7) 100%);
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.banner-title {
  font-size: clamp(30px, 3.5vw, 42px);
  margin-bottom: 16px;
}

.banner-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* --- FEATURES PILLARS --- */
.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid var(--border-subtle);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  font-size: 18px;
  color: var(--text-accent);
}

.feature-title {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #cbc4ba;
}

/* --- EXPLORE QUESTIONS --- */
.explore-section {
  padding: 60px 6% 90px;
  max-width: 1280px;
  margin: 0 auto;
}

.questions-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 40px;
  margin-top: 30px;
}

.questions-list {
  list-style: none;
}

.questions-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14.5px;
  color: #d1cbc2;
  display: flex;
  align-items: center;
  gap: 15px;
}

.questions-list li span {
  font-family: var(--font-serif);
  color: var(--text-accent);
  font-size: 14px;
}

/* --- APPROACH SECTION --- */
.approach-section {
  padding: 40px 6% 90px;
  max-width: 1280px;
  margin: 0 auto;
}

.approach-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  background: var(--bg-surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.approach-img-wrap {
  height: 100%;
  min-height: 380px;
}

.approach-img {
  width: 100%;
  height: 100%;
}

.approach-body {
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.approach-title {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 18px;
  font-style: italic;
}

.approach-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- FINAL CTA --- */
.final-cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 6%;
  text-align: center;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 7, 0.75);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 12px;
}

.final-cta-meta {
  font-size: 14px;
  color: var(--text-accent);
  margin-bottom: 25px;
}

.cta-btn {
  padding: 15px 36px;
  font-size: 15px;
}

.final-cta-note {
  font-size: 13px;
  color: #a39c94;
  margin-top: 15px;
}

/* --- FOOTER --- */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 6%;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: #706a63;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #a39c94;
  text-decoration: none;
}

/* --- MODAL DIALOG --- */
.modal {
  margin: auto;
  border: none;
  background: transparent;
  max-width: 520px;
  width: 90%;
  outline: none;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
}

.modal-box {
  background: #171412;
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  color: #fff;
}

.close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: #a39c94;
  font-size: 18px;
  cursor: pointer;
}

.modal-title {
  font-size: 26px;
  margin-bottom: 4px;
}

.modal-price {
  font-size: 13px;
  color: var(--text-accent);
  margin-bottom: 20px;
}

.modal-list {
  padding-left: 20px;
  margin-bottom: 25px;
  max-height: 280px;
  overflow-y: auto;
}

.modal-list li {
  font-size: 14px;
  color: #ded8ce;
  padding: 6px 0;
}

.modal-btn {
  width: 100%;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-img-container {
    max-width: 440px;
    margin: 0 auto;
  }
  .approach-card {
    grid-template-columns: 1fr;
  }
  .questions-columns {
    grid-template-columns: 1fr;
  }
  .features-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-menu {
    display: none;
  }
}
