/* =====================================================================
   MaaVratam · Guided Vratas — design system
   ---------------------------------------------------------------------
   A calm, devotional visual language for the Guided Journeys experience.
   Reuses the storefront's fonts (Spectral + Jost) so the guided section
   feels completely connected to maavratam.com, on the final MaaVratam
   palette (see §20 of the product brief). Mobile-first; no horizontal
   scroll; 16px+ body text; light mode only for this release.
   ===================================================================== */

:root {
  /* ---- palette ---- */
  --white:        #FFFFFF;
  --ivory:        #FFF8EE;
  --warm-ivory:   #F8F1E6;
  --ochre:        #CA802D;   /* primary */
  --ochre-dark:   #9A5A1F;   /* primary hover / deep accent */
  --gold:         #C49A52;   /* accent only */
  --gold-dark:    #9D6F2F;
  --ink:          #2F241D;   /* main text */
  --ink-soft:     #6E5A4A;   /* secondary text */
  --divider:      #E8D8BE;   /* hairline separators */
  --line:         #D2BB93;   /* interactive borders: checkboxes, empty circles */

  --ochre-tint:   #F6EAD8;   /* very soft ochre wash for chips/active states */
  --ochre-tint-2: #FBF3E7;
  --ok:           #5E7E63;   /* gentle green for "complete" */
  --ok-tint:      #EAF0EA;

  /* ---- type ---- */
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* ---- shape ---- */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* ---- shadow (soft, never harsh) ---- */
  --shadow-sm: 0 1px 2px rgba(47,36,29,0.05), 0 2px 8px rgba(47,36,29,0.05);
  --shadow:    0 2px 6px rgba(47,36,29,0.06), 0 10px 30px rgba(47,36,29,0.07);
  --shadow-lg: 0 8px 40px rgba(47,36,29,0.12);

  /* ---- layout ---- */
  --maxw: 960px;
  --maxw-narrow: 620px;
  --gutter: 20px;
  --nav-h: 62px;
  --bottomnav-h: 64px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { margin: 0; max-width: 100%; overflow-x: hidden; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  touch-action: manipulation;
}
img { max-width: 100%; display: block; }
a { color: var(--ochre-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
/* component anchors (cards, buttons, nav, chips, brand) must never underline */
.btn, .btn:hover, .card-link, .card-link:hover, .chip, .chip:hover,
.gv-nav a, .gv-nav a:hover, .bottomnav a, .bottomnav a:hover,
.gv-brand, .gv-brand:hover, .commerce a, .commerce a:hover,
.acc > summary, .acc > summary:hover { text-decoration: none; }
::selection { background: var(--gold); color: var(--white); }
* { -webkit-tap-highlight-color: rgba(202,128,45,0.18); }
:focus-visible { outline: 3px solid rgba(202,128,45,0.55); outline-offset: 2px; border-radius: 6px; }

/* ---- headings ---- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--ink); margin: 0 0 .4em; line-height: 1.22; letter-spacing: .01em; }
h1 { font-size: clamp(28px, 6vw, 40px); font-weight: 400; }
h2 { font-size: clamp(23px, 4.5vw, 30px); }
h3 { font-size: clamp(19px, 3.5vw, 22px); }
p  { margin: 0 0 1em; }
.lead { font-size: clamp(17px, 2.4vw, 20px); color: var(--ink-soft); line-height: 1.55; }
.muted { color: var(--ink-soft); }
.small { font-size: 14px; }
.eyebrow { font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); margin: 0 0 10px; }
.center { text-align: center; }
.serif { font-family: var(--serif); }

/* ---- layout helpers ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 44px 0; }
.section-sm { padding: 28px 0; }
.stack > * + * { margin-top: 14px; }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
/* Compact 2x2 quick-action grid (stays 2 columns on mobile) */
.gv-quick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gv-quick a.card { padding: 18px; }
.gv-tl .card { padding: 15px 18px; }
.row { display: flex; gap: 12px; align-items: center; }
.row-wrap { flex-wrap: wrap; }
.spread { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hide { display: none !important; }
.spacer { flex: 1; }

/* main content should clear a fixed bottom nav on mobile app pages */
.has-bottomnav main, .has-bottomnav .page { padding-bottom: calc(var(--bottomnav-h) + 24px); }

/* =====================================================================
   Header (shared top bar) — mirrors the storefront's calm nav
   ===================================================================== */
.gv-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,248,238,0.92);
  -webkit-backdrop-filter: saturate(1.3) blur(10px); backdrop-filter: saturate(1.3) blur(10px);
  border-bottom: 1px solid var(--divider);
}
.gv-header-inner { max-width: var(--maxw); margin: 0 auto; padding: 11px var(--gutter); display: flex; align-items: center; gap: 20px; }
/* brand (left) */
.gv-header .brand { display: flex; align-items: center; gap: 11px; margin-right: auto; cursor: pointer; }
.gv-header .brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid var(--divider); background: #fff; }
.gv-header .brand b { font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--ink); }
.gv-header .brand small { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dark); margin-top: -2px; }
/* main nav (right) */
.gv-header .mainnav { display: flex; gap: 2px; }
.gv-header .mainnav a { padding: 9px 13px; border-radius: var(--r-sm); font-weight: 500; font-size: 15.5px; color: var(--ink); display: inline-flex; align-items: center; gap: 5px; }
.gv-header .mainnav a:hover { background: var(--warm-ivory); color: var(--ochre-dark); text-decoration: none; }
.gv-header .mainnav a.on { color: var(--ochre-dark); }
.gv-header .navdrop { position: relative; }
.gv-header .dropm { position: absolute; top: calc(100% + 6px); left: 0; min-width: 190px; background: #fff; border: 1px solid var(--divider); border-radius: var(--r); box-shadow: var(--shadow); padding: 7px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .15s; }
.gv-header .navdrop:hover .dropm, .gv-header .navdrop:focus-within .dropm { opacity: 1; visibility: visible; transform: none; }
.gv-header .dropm a { display: block; padding: 10px 12px; border-radius: var(--r-sm); font-size: 14.5px; color: var(--ink); }
.gv-header .dropm a:hover { background: var(--warm-ivory); color: var(--ochre-dark); text-decoration: none; }
/* account / cart / hamburger */
.gv-header .navact { display: flex; align-items: center; gap: 8px; }
.gv-header .ic { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--divider); background: #fff; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); cursor: pointer; transition: border-color .15s, color .15s; }
.gv-header .ic:hover { border-color: var(--ochre); color: var(--ochre-dark); text-decoration: none; }
.gv-header .ic.active { background: var(--ochre); border-color: var(--ochre); color: #fff; }
.gv-header .ham { display: none; }
@media (max-width: 860px) {
  .gv-header .mainnav { display: none; }
  .gv-header .ham { display: inline-flex; }
}
/* mobile menu sheet */
.gv-msheet { position: fixed; inset: 0; z-index: 95; background: rgba(47,36,29,.42); opacity: 0; visibility: hidden; transition: .2s; }
.gv-msheet.open { opacity: 1; visibility: visible; }
.gv-msheet-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(82vw, 320px); background: var(--ivory); border-left: 1px solid var(--divider); padding: 20px; transform: translateX(16px); transition: .2s; overflow: auto; }
.gv-msheet.open .gv-msheet-panel { transform: none; }
.gv-msheet-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.gv-msheet-top b { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.gv-msheet-panel > a { display: block; padding: 13px 6px; border-bottom: 1px solid var(--divider); font-family: var(--serif); font-size: 18px; color: var(--ink); }
.gv-msheet-panel > a:hover { color: var(--ochre-dark); text-decoration: none; }

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 16px; font-weight: 500; line-height: 1;
  padding: 15px 26px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .08s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  text-align: center; text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ochre); color: var(--white); box-shadow: 0 6px 18px rgba(202,128,45,0.28); }
.btn-primary:hover { background: var(--ochre-dark); color: var(--white); text-decoration: none; }
.btn-secondary { background: var(--white); color: var(--ochre-dark); border-color: var(--divider); }
.btn-secondary:hover { border-color: var(--ochre); background: var(--ochre-tint-2); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink-soft); }
.btn-ghost:hover { color: var(--ochre-dark); text-decoration: none; }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 30px; font-size: 17px; }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; box-shadow: none; }

/* =====================================================================
   Cards
   ===================================================================== */
.card {
  background: var(--white); border: 1px solid var(--divider);
  border-radius: var(--r); padding: 22px; box-shadow: var(--shadow-sm);
}
.card-lg { border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow); }
.card-soft { background: var(--warm-ivory); border-color: transparent; }
.card-link { cursor: pointer; transition: transform .12s ease, box-shadow .15s ease, border-color .15s ease; }
.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #DFC9A0; }

/* devotional artwork tile (line-art on a warm wash) */
.art-tile { position: relative; border-radius: var(--r); overflow: hidden; background: linear-gradient(160deg, var(--ochre-tint-2), var(--warm-ivory)); aspect-ratio: 3 / 2; display: flex; align-items: center; justify-content: center; }
.art-tile svg { width: 60%; height: 60%; opacity: .8; }

/* =====================================================================
   Vrata card (image-forward — Library / Featured)
   ===================================================================== */
.gv-vcard {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--divider);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm);
  color: inherit; text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}
.gv-vcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.gv-vcard-top { position: relative; }
.gv-vcard-media { position: relative; aspect-ratio: 16 / 10; background-size: cover; background-position: center top; background-repeat: no-repeat; background-color: var(--warm-ivory); border-bottom: 1px solid var(--divider); }
.gv-vcard-media--art { display: flex; align-items: center; justify-content: center; color: var(--gold-dark); background: radial-gradient(90% 90% at 50% 20%, #fff, var(--warm-ivory)); }
.gv-vcard-media--art svg { width: 58px; height: 58px; opacity: .85; }
.gv-vcard-tag { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-dark); background: rgba(255,248,238,.9); border: 1px solid var(--divider); border-radius: var(--r-pill); padding: 4px 10px; }
.gv-vcard-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.gv-vcard-deity { font-size: 12.5px; color: var(--gold-dark); font-weight: 600; }
.gv-vcard-title { font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.2; margin: 0; color: var(--ink); }
.gv-vcard-purpose { color: var(--ink-soft); font-size: 14px; line-height: 1.48; margin: 0; }
.gv-vcard-meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--divider); }
.gv-vcard-pill { font-size: 12px; font-weight: 600; color: var(--ink-soft); background: var(--warm-ivory); border: 1px solid var(--divider); border-radius: var(--r-pill); padding: 4px 10px; }
.gv-vcard-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--ochre-dark); font-weight: 600; font-size: 14px; margin-left: auto; }
.gv-vcard:hover .gv-vcard-cta { gap: 9px; }
.gv-rec-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }

/* ---- horizontal recommendation card ("Vratas You May Explore") ---- */
.gv-rec { background: var(--white); border: 1px solid var(--divider); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.gv-rec + .gv-rec { margin-top: 18px; }
.gv-rec-badge { display: flex; align-items: center; gap: 8px; padding: 11px 20px; background: var(--ochre-tint-2); color: var(--gold-dark); font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid var(--divider); }
.gv-rec-row { display: flex; align-items: stretch; }
.gv-rec-media { flex: 0 0 40%; max-width: 300px; background-size: cover; background-position: center; background-color: var(--warm-ivory); }
.gv-rec-media--art { display: flex; align-items: center; justify-content: center; color: var(--gold-dark); background: linear-gradient(160deg, var(--ochre-tint-2), var(--warm-ivory)); min-height: 180px; }
.gv-rec-text { flex: 1 1 auto; padding: 22px 24px; }
@media (max-width: 620px) {
  .gv-rec-row { flex-direction: column; }
  .gv-rec-media { flex-basis: auto; max-width: none; aspect-ratio: 5/3; }
}

/* ---- vrata detail hero (image-left, info-right) ---- */
.gv-vhero { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 44px; align-items: center; }
.gv-vhero-media { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden; background-size: cover; background-position: center; background-color: var(--warm-ivory); border: 1px solid var(--divider); box-shadow: var(--shadow); }
.gv-vhero-media--art { display: flex; align-items: center; justify-content: center; color: var(--gold-dark); background: radial-gradient(80% 70% at 50% 22%, #fff, var(--warm-ivory)); }
.gv-vhero-media--art svg { opacity: .85; }
.gv-vhero-info h1 { font-size: clamp(30px, 5vw, 44px); }
.gv-vhero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.gv-fact { border: 1px solid var(--divider); border-radius: var(--r); background: var(--white); padding: 15px 14px; text-align: center; box-shadow: var(--shadow-sm); }
.gv-fact .k { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--gold-dark); }
.gv-fact .v { font-family: var(--serif); font-size: 18px; color: var(--ink); margin-top: 6px; }
.tag-outline { display: inline-block; padding: 6px 14px; border-radius: var(--r-pill); background: var(--white); border: 1px solid var(--divider); color: var(--ochre-dark); font-size: 13.5px; }
@media (max-width: 760px) {
  .gv-vhero { grid-template-columns: 1fr; gap: 22px; }
  .gv-vhero-facts { gap: 8px; }
  .gv-fact { padding: 12px 8px; }
}

/* ---- video resource / watch-&-learn card ---- */
.gv-media-card { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--divider); border-radius: var(--r); padding: 15px 18px; color: inherit; text-decoration: none; transition: box-shadow .15s ease, border-color .15s ease; }
.gv-media-card:hover { border-color: #DFC9A0; box-shadow: var(--shadow-sm); text-decoration: none; }
.gv-media-ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 10px; background: var(--ochre-tint); color: var(--ochre-dark); display: flex; align-items: center; justify-content: center; }
.gv-media-txt { flex: 1 1 auto; display: flex; flex-direction: column; min-width: 0; }
.gv-media-txt b { font-family: var(--serif); font-weight: 500; font-size: 17px; }
.gv-media-go { flex: 0 0 auto; color: var(--ochre-dark); font-weight: 500; font-size: 14.5px; white-space: nowrap; }

/* =====================================================================
   Sankalpa wizard (4-step) — progress, calendar, review
   ===================================================================== */
.gv-wiz-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 6px 0 4px; }
.gv-wiz-step { font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); }
.gv-wiz-vrata { font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.gv-wiz-bar { height: 3px; border-radius: 3px; background: var(--divider); overflow: hidden; margin-bottom: 34px; }
.gv-wiz-bar > span { display: block; height: 100%; background: var(--ochre); border-radius: 3px; transition: width .3s ease; }

/* month calendar */
.gv-cal-wrap { border: 1px solid var(--divider); border-radius: var(--r-lg); background: var(--white); padding: 22px; box-shadow: var(--shadow-sm); }
.gv-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.gv-cal-title { font-family: var(--serif); font-size: 19px; }
.gv-cal-nav { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--divider); background: var(--white); color: var(--ink); cursor: pointer; }
.gv-cal-nav:hover:not(:disabled) { border-color: var(--ochre); color: var(--ochre-dark); }
.gv-cal-nav:disabled { opacity: .35; cursor: not-allowed; }
.gv-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.gv-cal-dow { text-align: center; font-size: 12px; color: var(--ink-soft); padding: 6px 0; }
.gv-cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 15px; color: var(--ink); background: transparent; border: none; cursor: pointer; transition: background .12s ease, color .12s ease; }
.gv-cal-day:hover:not(:disabled):not(.sel) { background: var(--ochre-tint); }
.gv-cal-day.sel { background: var(--ochre); color: #fff; }
.gv-cal-day:disabled { color: #C9BEAD; cursor: not-allowed; }
.gv-cal-day.empty { cursor: default; }

/* review summary card */
.gv-review { border: 1px solid var(--divider); border-radius: var(--r-lg); background: var(--white); overflow: hidden; box-shadow: var(--shadow); }
.gv-review-head { text-align: center; padding: 26px 24px 22px; background: linear-gradient(180deg, var(--ochre-tint-2), #fff); }
.gv-review-head .eyebrow { margin-bottom: 8px; }
.gv-review-grid { display: grid; grid-template-columns: 1fr 1fr; }
.gv-review-cell { padding: 18px 22px; border-top: 1px solid var(--divider); }
.gv-review-cell:nth-child(even) { border-left: 1px solid var(--divider); }
.gv-review-cell .k { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); }
.gv-review-cell .v { font-size: 17px; margin-top: 4px; }
.gv-review-foot { text-align: center; padding: 18px 24px; color: var(--ink-soft); font-style: italic; font-family: var(--serif); border-top: 1px solid var(--divider); }
@media (max-width: 560px) { .gv-review-grid { grid-template-columns: 1fr; } .gv-review-cell:nth-child(even) { border-left: none; } }

/* ---- matchmaker "finding…" orb ---- */
.gv-finding-orb { width: 96px; height: 96px; margin: 0 auto 18px; border-radius: 50%; background: radial-gradient(circle, var(--ochre-tint) 0%, var(--warm-ivory) 70%); display: flex; align-items: center; justify-content: center; color: var(--ochre); animation: gvpulse 1.8s ease-in-out infinite; }
@keyframes gvpulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.06); opacity: 1; } }

/* =====================================================================
   Chips / tags / pills
   ===================================================================== */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px; border-radius: var(--r-pill);
  border: 1.5px solid var(--divider); background: var(--white);
  color: var(--ink); font-size: 15px; cursor: pointer; user-select: none;
  transition: background .12s ease, border-color .12s ease, color .12s ease;
}
.chip:hover { border-color: var(--ochre); }
.chip[aria-pressed="true"], .chip.selected { background: var(--ochre); border-color: var(--ochre); color: var(--white); }
.tag { display: inline-block; padding: 4px 11px; border-radius: var(--r-pill); background: var(--ochre-tint); color: var(--ochre-dark); font-size: 12.5px; font-weight: 500; }
.tag-soft { background: var(--warm-ivory); color: var(--ink-soft); }
.badge-best { background: var(--gold); color: var(--white); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); }

/* meta line (deity · duration · frequency) */
.meta { display: flex; flex-wrap: wrap; gap: 6px 14px; color: var(--ink-soft); font-size: 14.5px; }
.meta > span { display: inline-flex; align-items: center; gap: 6px; }
.meta svg { flex: 0 0 auto; }

/* fact grid on the detail hero */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap: 14px; }
.fact { }
.fact .k { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-dark); }
.fact .v { font-family: var(--serif); font-size: 18px; color: var(--ink); margin-top: 2px; }

/* =====================================================================
   Forms
   ===================================================================== */
label { display: block; font-size: 14.5px; font-weight: 500; color: var(--ink); margin: 0 0 7px; }
label .opt { color: var(--ink-soft); font-weight: 400; }
.field { margin-bottom: 18px; }
.input, input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], input[type="number"], select, textarea {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--divider); border-radius: var(--r-sm);
  padding: 13px 15px; transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus, input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ochre); box-shadow: 0 0 0 3px rgba(202,128,45,0.14); }
textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.help { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }
.err { color: #B23B2E; font-size: 14px; margin-top: 8px; }

/* segmented / radio-card selector */
.options { display: grid; gap: 10px; }
.opt-card { display: flex; align-items: flex-start; gap: 12px; padding: 15px 16px; border: 1.5px solid var(--divider); border-radius: var(--r); background: var(--white); cursor: pointer; transition: border-color .12s ease, background .12s ease; }
.opt-card:hover { border-color: var(--ochre); }
.opt-card.selected { border-color: var(--ochre); background: var(--ochre-tint-2); }
.opt-card .dot { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--divider); margin-top: 2px; }
.opt-card.selected .dot { border-color: var(--ochre); background: radial-gradient(circle, var(--ochre) 0 46%, transparent 48%); }
.opt-card .t { font-weight: 500; }

/* =====================================================================
   Accordion (progressive disclosure)
   ===================================================================== */
.acc { border: 1px solid var(--divider); border-radius: var(--r); background: var(--white); overflow: hidden; }
.acc + .acc { margin-top: 12px; }
.acc > summary { list-style: none; cursor: pointer; padding: 18px 20px; font-family: var(--serif); font-size: 18px; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary .caret { flex: 0 0 auto; transition: transform .2s ease; color: var(--gold-dark); }
.acc[open] > summary .caret { transform: rotate(180deg); }
.acc > summary:hover { color: var(--ochre-dark); }
.acc-body { padding: 0 20px 20px; color: var(--ink); }
.acc-body p:last-child, .acc-body ul:last-child { margin-bottom: 0; }

/* =====================================================================
   Checklists & step lists
   ===================================================================== */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; align-items: flex-start; gap: 11px; padding: 9px 0; border-bottom: 1px solid var(--warm-ivory); }
.checklist li:last-child { border-bottom: none; }
.checklist .tick { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--ochre-tint); color: var(--ochre-dark); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }

/* practice step */
.step { border: 1px solid var(--divider); border-radius: var(--r); background: var(--white); padding: 18px 20px; }
.step + .step { margin-top: 14px; }
.step.done { background: var(--ok-tint); border-color: #CFE0CF; }
.step-head { display: flex; align-items: flex-start; gap: 13px; }
.step-num { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--ochre); color: #fff; font-family: var(--serif); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }
.step.done .step-num { background: var(--ok); }
.step-title { font-family: var(--serif); font-size: 19px; margin: 2px 0 4px; }

/* mantra block */
.mantra { margin-top: 14px; border-top: 1px dashed var(--divider); padding-top: 14px; }
.mantra .orig { font-family: var(--serif); font-size: 19px; line-height: 1.7; color: var(--ink); }
.mantra .translit { color: var(--ochre-dark); font-style: italic; margin-top: 6px; }
.mantra .mean { color: var(--ink-soft); margin-top: 6px; }
.mantra .when { font-size: 13.5px; color: var(--ink-soft); margin-top: 8px; }

/* =====================================================================
   Progress
   ===================================================================== */
.progress { height: 10px; border-radius: var(--r-pill); background: var(--warm-ivory); overflow: hidden; }
.progress > span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--ochre)); border-radius: var(--r-pill); transition: width .4s ease; }
.progress-label { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 8px; }

/* calendar dots */
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
.cal .cell { aspect-ratio: 1; border-radius: 8px; background: var(--warm-ivory); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--ink-soft); }
.cal .cell.done { background: var(--ok); color: #fff; }
.cal .cell.missed { background: #F0E4DE; color: #B23B2E; }
.cal .cell.today { outline: 2px solid var(--ochre); }
.cal .cell.paused { background: var(--divider); }

/* =====================================================================
   Notices / callouts (gentle, non-judgmental)
   ===================================================================== */
.notice { border-radius: var(--r); padding: 15px 17px; font-size: 15px; line-height: 1.55; }
.notice-soft { background: var(--warm-ivory); color: var(--ink-soft); }
.notice-gold { background: var(--ochre-tint-2); border: 1px solid var(--divider); color: var(--ink); }
.notice-review { background: #FBF1DD; border: 1px dashed var(--gold-dark); color: var(--gold-dark); font-size: 14px; }
.notice-review b { color: var(--ochre-dark); }

/* commerce card */
.commerce { display: flex; align-items: center; gap: 16px; background: var(--warm-ivory); border: 1px solid var(--divider); border-radius: var(--r); padding: 16px 18px; flex-wrap: wrap; }
.commerce .txt { flex: 1 1 200px; }
.commerce .txt b { font-family: var(--serif); font-size: 18px; font-weight: 500; }

/* =====================================================================
   Bottom navigation (mobile app shell)
   ===================================================================== */
.bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  height: var(--bottomnav-h);
  background: rgba(255,248,238,0.97); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--divider);
  display: flex; align-items: stretch; padding-bottom: env(safe-area-inset-bottom);
}
.bottomnav a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--ink-soft); font-size: 11.5px; font-weight: 500; text-decoration: none; }
.bottomnav a .ic { width: 24px; height: 24px; }
.bottomnav a.active { color: var(--ochre-dark); }
.bottomnav a:hover { text-decoration: none; }
@media (min-width: 861px) {
  /* desktop: hide the bottom bar; the top nav carries the journey links */
  .bottomnav { display: none; }
  .has-bottomnav main, .has-bottomnav .page { padding-bottom: 40px; }
}

/* =====================================================================
   Footer
   ===================================================================== */
/* unified light footer — mirrors the homepage */
.gv-sitefooter { background: #F2ECE1; color: #4A4137; padding: 54px 0 26px; border-top: 1px solid #E7E0D4; margin-top: 48px; }
.gv-sitefooter .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.gv-sitefooter a { color: #5c5346; }
.gv-sitefooter a:hover { color: var(--ochre-dark); text-decoration: none; }
.gv-sitefooter .fgrid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 30px; }
.gv-sitefooter .fgrid h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); margin: 0 0 14px; font-weight: 700; }
.gv-sitefooter .fgrid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.gv-sitefooter .fbrand b { font-family: var(--serif); font-size: 23px; color: var(--ink); }
.gv-sitefooter .fbrand p { font-size: 14.5px; color: #6E5A4A; margin: 10px 0 0; max-width: 28ch; line-height: 1.6; }
.gv-sitefooter .fdisc { font-size: 12.5px; color: #8a7f6f; max-width: 640px; line-height: 1.55; margin-top: 30px; }
.gv-sitefooter .fbot { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13.5px; color: #8a7f6f; border-top: 1px solid #E0D6C4; margin-top: 18px; padding-top: 20px; }
@media (max-width: 860px) {
  .gv-sitefooter .fgrid { grid-template-columns: 1fr 1fr; }
  .gv-sitefooter .fbrand { grid-column: 1 / -1; }
}

/* =====================================================================
   Toast
   ===================================================================== */
.gv-toast { position: fixed; bottom: calc(var(--bottomnav-h) + 18px); left: 50%; transform: translateX(-50%); z-index: 90; background: var(--ink); color: var(--ivory); padding: 13px 22px; border-radius: var(--r-pill); box-shadow: var(--shadow-lg); font-size: 15px; max-width: 90vw; text-align: center; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.gv-toast.show { opacity: 1; transform: translate(-50%, -6px); }
.gv-toast .s { color: var(--gold); margin-right: 6px; }

/* =====================================================================
   Loading / empty / skeleton states
   ===================================================================== */
.spinner { width: 30px; height: 30px; border: 3px solid var(--divider); border-top-color: var(--ochre); border-radius: 50%; animation: gvspin .8s linear infinite; margin: 0 auto; }
@keyframes gvspin { to { transform: rotate(360deg); } }
.loading-wrap { padding: 60px 0; text-align: center; color: var(--ink-soft); }
.empty { text-align: center; padding: 40px 20px; color: var(--ink-soft); }
.empty .art { width: 92px; height: 92px; margin: 0 auto 16px; opacity: .7; }
@keyframes gvfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.fade-in { animation: gvfade .3s ease both; }

/* reduce motion */
@media (prefers-reduced-motion: reduce) { * { animation-duration: .001ms !important; transition-duration: .001ms !important; } }

/* utility */
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:36px}
.mb-0{margin-bottom:0}.mb-1{margin-bottom:8px}.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}
.w-100{width:100%}
