/* ============================================
   GLOW UP GOLDEN — Design tokens
   ============================================ */
:root {
  --cream: #fbf3e7;
  --cream-soft: #fdf8f1;
  --ink: #2e2420;
  --ink-soft: #55483f;
  --burgundy: #9c2b3b;
  --burgundy-deep: #7a1f2b;
  --gold: #b8892b;
  --gold-light: #e4c77a;
  --sage: #5f7358;
  --sage-deep: #445238;
  --blush: #f3d9d6;
  --rule: rgba(184, 137, 43, 0.35);

  /* Sampled from the real Golden Timing app screenshot — provisional
     until Julie supplies the dedicated jade background asset. */
  --jade-deep: #0a2620;
  --jade: #0f4438;
  --jade-light: #1c6552;

  --font-display: "Cormorant Garamond", "Songti SC", serif;
  --font-body: "Jost", "Work Sans", -apple-system, sans-serif;

  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; color: var(--burgundy-deep); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   Signature element: gold corner-bracket frame
   Echoes the calendar's bordered day-cells and
   the artwork's corner ornaments.
   ============================================ */
.framed {
  position: relative;
  padding: 42px 36px;
}
.framed::before, .framed::after,
.framed .corner-tl, .framed .corner-br { content: ""; position: absolute; width: 26px; height: 26px; border: 1.5px solid var(--gold); }
.framed::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.framed::after { bottom: 0; right: 0; border-left: none; border-top: none; }
.framed .corner-tl { top: 0; right: 0; border-left: none; border-bottom: none; }
.framed .corner-br { bottom: 0; left: 0; border-right: none; border-top: none; }

/* ============================================
   Nav
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 243, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 104px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand .mark { max-height: 82px; width: auto; height: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; white-space: nowrap; }
.nav-links a { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--burgundy); }
.btn-start {
  background: var(--burgundy);
  color: var(--cream-soft) !important;
  padding: 11px 20px;
  border-radius: 2px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s;
  border: 1px solid var(--burgundy);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  width: auto;
}
.btn-start:hover { background: var(--burgundy-deep); }
.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--burgundy-deep); flex-shrink: 0; }
.site-nav .wrap { flex-wrap: nowrap; }

/* 8 nav items no longer fit comfortably even on many laptop widths —
   switch to the mobile menu earlier so nothing wraps or overflows. */
@media (max-width: 1180px) {
  .nav-links { position: fixed; inset: 104px 0 0 0; background: var(--cream); flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 40px 28px; gap: 26px; transform: translateX(100%); transition: transform 0.3s ease; white-space: normal; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 16px; white-space: normal; }
  .btn-start { width: auto; padding: 13px 26px; font-size: 13px; }
  .nav-toggle { display: block; }
}

/* ============================================
   Section shells
   ============================================ */
.section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 108px 0;
}
.section-inner { position: relative; z-index: 2; }
.section-tint { position: absolute; inset: 0; z-index: 1; }
/* Hero: restrained radial scrim concentrated behind the text zone only —
   edges (blossoms, mountains, bamboo, peonies) stay fully visible. */
.tint-cream { background: radial-gradient(ellipse 62% 68% at 50% 48%, rgba(251,243,231,0.6) 0%, rgba(251,243,231,0.28) 50%, rgba(251,243,231,0) 78%); }
.tint-blush { background: linear-gradient(180deg, rgba(255,246,244,0.55), rgba(255,246,244,0.88)); }
.tint-sage { background: linear-gradient(180deg, rgba(246,248,242,0.6), rgba(246,248,242,0.9)); }
.tint-rose { background: linear-gradient(180deg, rgba(255,241,238,0.55), rgba(255,241,238,0.9)); }
.tint-ivory { background: linear-gradient(180deg, rgba(253,248,241,0.6), rgba(253,248,241,0.9)); }
.tint-peach { background: linear-gradient(180deg, rgba(255,246,238,0.55), rgba(255,246,238,0.9)); }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-top: 10px; line-height: 1.15; }
.section-head .lede { margin-top: 16px; font-size: 19px; color: var(--ink-soft); line-height: 1.75; }

.rule {
  width: 64px; height: 1px; background: var(--gold); margin: 22px auto;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: 150px 0 130px;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: var(--cream);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-logo { width: 220px; height: auto; margin: 0 auto 26px; display: block; }

/* Below ~1000px the wide landscape composition starts losing its side
   florals under `cover`; switch to `contain` so nothing gets cropped,
   letting the cream page background fill the remainder. */
@media (max-width: 1000px) {
  .hero { background-size: contain; background-position: top center; min-height: 0; padding-top: 130px; }
}
@media (max-width: 600px) {
  .hero { padding-top: 110px; padding-bottom: 90px; }
  .hero-logo { width: 160px; }
}
.hero-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.hero .eyebrow { display: block; margin-bottom: 22px; }
.hero h1 { font-size: clamp(38px, 6vw, 64px); line-height: 1.1; letter-spacing: 0.01em; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .sub { margin: 26px auto 0; max-width: 520px; font-size: 18px; color: var(--ink-soft); line-height: 1.75; }
.cta-row { display: flex; gap: 18px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 15px 32px; font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600; border-radius: 2px; transition: all 0.22s;
}
.btn-primary { background: var(--burgundy); color: var(--cream-soft); border: 1px solid var(--burgundy); }
.btn-primary:hover { background: var(--burgundy-deep); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--burgundy-deep); border: 1px solid var(--burgundy-deep); }
.btn-secondary:hover { background: var(--burgundy-deep); color: var(--cream-soft); }
.btn-gold { background: var(--gold); color: var(--cream-soft); border: 1px solid var(--gold); }
.btn-gold:hover { background: #a1791f; }
.hero .btn-primary { max-width: 480px; line-height: 1.5; }
.hero-hint { margin-top: 30px; font-size: 13.5px; color: var(--ink-soft); }
.hero-hint a { color: var(--burgundy); border-bottom: 1px solid var(--rule); }

/* ============================================
   Discover — three star cards
   ============================================ */
/* Discover layout: stacked N/P/I cards beside a promo graphic slot */
.discover-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: center; }
.stars-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.star-card {
  background: rgba(255,255,255,0.55);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 30px;
}
.star-card h3 { font-size: 19px; color: var(--burgundy); margin-bottom: 4px; }
.star-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.star-badge {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  color: var(--burgundy);
  background: var(--cream-soft);
}
.center-cta { text-align: left; margin-top: 30px; }

.discover-promo {
  border: 1px solid var(--rule);
  overflow: hidden;
}
.discover-promo img { width: 100%; height: auto; display: block; }

@media (max-width: 900px) {
  .discover-layout { grid-template-columns: 1fr; }
  .discover-promo { min-height: 240px; order: -1; }
}

/* ============================================
   Timing — Golden Timing
   ============================================ */
.timing-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.timing-copy .eyebrow { margin-bottom: 14px; }
.timing-copy h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.18; margin-bottom: 18px; }
.timing-copy p.lede { color: var(--ink-soft); font-size: 18.5px; line-height: 1.8; margin-bottom: 30px; }
.feature-list { list-style: none; margin: 0 0 34px; padding: 0; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.feature-list .dot { color: var(--sage-deep); font-family: var(--font-display); font-size: 20px; line-height: 1; margin-top: 2px; }

.timing-promo {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10, 38, 32, 0.5);
}
.timing-promo img { width: 100%; height: auto; display: block; }
.timing-promo a { display: block; }

@media (max-width: 900px) {
  .timing-layout { grid-template-columns: 1fr; }
  .timing-copy { order: 2; }
}

/* ============================================
   Plan — Calendar + Pocket calendar
   ============================================ */
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.plan-card {
  background: rgba(255,255,255,0.6);
  padding: 38px 32px;
  text-align: left;
}
.plan-card .tag { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.plan-card h3 { font-size: 25px; margin: 10px 0 14px; }
.plan-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
.plan-card .price { font-family: var(--font-display); font-size: 22px; color: var(--burgundy); margin-bottom: 18px; display: block; }
.companion-note { text-align: center; max-width: 560px; margin: 46px auto 0; font-size: 15px; color: var(--ink-soft); font-style: italic; }
.companion-note strong { color: var(--burgundy-deep); font-style: normal; }

@media (max-width: 820px) {
  .plan-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Decide — Private readings
   ============================================ */
.decide-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.55);
}
.decide-card .price-badge {
  display: inline-block; font-family: var(--font-display); font-size: 34px; color: var(--burgundy);
  margin: 6px 0 4px;
}
.decide-list { list-style: none; padding: 0; margin: 26px 0 32px; display: grid; gap: 10px; text-align: left; max-width: 380px; margin-left: auto; margin-right: auto; }
.decide-list li { font-size: 14.5px; color: var(--ink-soft); display: flex; gap: 10px; }
.decide-list .dot { color: var(--gold); }
.decide-topics { margin-top: 30px; font-size: 13px; letter-spacing: 0.04em; color: var(--ink-soft); }
.decide-topics span { display: inline-block; padding: 5px 14px; border: 1px solid var(--rule); border-radius: 999px; margin: 4px; }

/* ============================================
   Learn — Timing Forecast
   ============================================ */
.learn-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.learn-copy p.lede { color: var(--ink-soft); font-size: 18.5px; line-height: 1.8; margin: 18px 0 28px; }
.social-row { display: flex; gap: 16px; margin-top: 30px; }
.social-row a { font-size: 14.5px; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid var(--rule); padding: 11px 22px; border-radius: 999px; color: var(--ink-soft); transition: all 0.2s; font-weight: 500; }
.social-row a:hover { border-color: var(--burgundy); color: var(--burgundy); }
.forecast-card {
  background: rgba(255,255,255,0.6);
  padding: 40px 34px;
}
.forecast-card .tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.forecast-card h3 { font-size: 24px; margin: 10px 0 14px; }
.forecast-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.learn-layout-single { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; text-align: center; }
.learn-layout-single .social-row { justify-content: center; }

@media (max-width: 900px) {
  .learn-layout { grid-template-columns: 1fr; }
}

/* ============================================
   Credibility strip: Pearl River Mart
   ============================================ */
.prm-strip { background: var(--cream-soft); padding: 64px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.prm-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.prm-copy { margin-top: 14px; font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); }
.prm-quote { margin: 22px auto 0; font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--burgundy-deep); line-height: 1.5; max-width: 520px; border: none; }
.prm-quote cite { display: block; margin-top: 10px; font-family: var(--font-body); font-style: normal; font-size: 12.5px; letter-spacing: 0.06em; color: var(--gold); text-transform: uppercase; }
.prm-seen { margin-top: 24px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.prm-seen a { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--burgundy); border-bottom: 1px solid var(--rule); padding-bottom: 2px; }
.prm-seen a:hover { border-color: var(--burgundy); }
.prm-seen .seen-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; width: 100%; text-align: center; margin-bottom: 2px; }

/* ============================================
   Meet Julie
   ============================================ */
.julie-section { background: var(--cream-soft); padding: 100px 0; }
.julie-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.julie-frame {
  aspect-ratio: 4/5; border: 1px solid var(--rule); background: linear-gradient(160deg, var(--blush), var(--cream));
  overflow: hidden;
}
.julie-frame img { width: 100%; height: 100%; object-fit: cover; }
.julie-copy .eyebrow { margin-bottom: 12px; }
.julie-copy h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 6px; }
.julie-copy .role { font-size: 14px; color: var(--sage-deep); font-style: italic; margin-bottom: 22px; display: block; }
.julie-copy p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; margin-bottom: 16px; }
.credit-row { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 26px; font-size: 12.5px; letter-spacing: 0.05em; color: var(--gold); text-transform: uppercase; }

@media (max-width: 880px) {
  .julie-layout { grid-template-columns: 1fr; }
  .julie-frame { max-width: 280px; margin: 0 auto; }
}

/* ============================================
   Go Deeper (light-touch)
   ============================================ */


/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 100px 0; background: var(--cream); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 24px 4px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-size: 19px; color: var(--burgundy-deep); }
.faq-q .plus { font-size: 22px; color: var(--gold); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 4px 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; max-width: 600px; }

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--burgundy-deep);
  color: rgba(251,243,231,0.85);
  padding: 64px 0 32px;
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(251,243,231,0.18); }
.footer-brand .name { font-family: var(--font-display); font-size: 24px; color: var(--cream-soft); }
.footer-brand .tagline { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-top: 6px; display: block; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(251,243,231,0.8); margin-bottom: 9px; }
.footer-col a:hover { color: var(--cream-soft); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: 12.5px; color: rgba(251,243,231,0.55); }

@media (max-width: 700px) {
  .footer-top { flex-direction: column; }
}

/* ============================================
   Scroll reveal
   ============================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
