/* ============================================================
   SANTOSHA v2 — Global Design System
   Calm, organic, luxury wellness aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── Tokens ── */
:root {
  --sage:         #5C7A5C;
  --sage-light:   #E4EDE4;
  --sage-mid:     #8FA88F;
  --sage-dark:    #3D5A3D;
  --cream:        #F6F3EE;
  --cream-dark:   #EDE9E1;
  --warm:         #B89A6A;
  --warm-light:   #F2EBE0;
  --stone:        #7A7870;
  --deep:         #1C1C18;
  --deep2:        #2A2A24;
  --white:        #FFFFFF;
  --border:       rgba(28,28,24,0.10);
  --border-light: rgba(28,28,24,0.06);
  --danger:       #B83232;
  --success:      #2D6A4F;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;
  --radius:       4px;
  --radius-lg:    10px;
  --radius-xl:    16px;
  --ease:         cubic-bezier(.4,0,.2,1);
  --transition:   0.2s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--deep);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle ambient radial on every page */
body::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 2px 6px at 8% 15%, rgba(92,122,92,0.10) 0%, transparent 100%),
    radial-gradient(ellipse 2px 6px at 92% 70%, rgba(92,122,92,0.07) 0%, transparent 100%),
    radial-gradient(ellipse 2px 4px at 50% 90%, rgba(184,154,106,0.06) 0%, transparent 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); }
input, select, textarea { font-family: var(--font-sans); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.12;
  color: var(--deep);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; font-weight: 400; }
p  { color: var(--stone); font-weight: 300; line-height: 1.85; }

.serif { font-family: var(--font-serif); }
.italic-accent { font-style: italic; color: var(--sage); }
.eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sage); font-weight: 400;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--sage);
}

/* ── Layout ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.page-wrap { padding-top: 72px; min-height: 100vh; }
.section    { padding: 100px 0; }
.section-sm { padding: 56px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

@media (max-width:768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
}
@media (max-width:1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
}

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(246,243,238,0.90);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  height: 72px; display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: var(--font-serif); font-size: 22px;
  font-weight: 300; letter-spacing: .1em; color: var(--deep);
}
.nav-logo em, .nav-logo span { font-style: italic; color: var(--sage); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 300; color: var(--stone);
  letter-spacing: .04em; transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--deep); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-auth-btns { display: flex; gap: 10px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px; font-size: 13px; font-weight: 400; letter-spacing: .07em;
  border-radius: var(--radius); border: 1px solid transparent;
  transition: all var(--transition); white-space: nowrap; cursor: pointer;
}
.btn-primary  { background: var(--deep); color: var(--white); border-color: var(--deep); }
.btn-primary:hover { background: var(--deep2); }
.btn-outline  { background: transparent; color: var(--deep); border-color: var(--border); }
.btn-outline:hover { border-color: var(--deep); background: rgba(0,0,0,.03); }
.btn-sage     { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-sage:hover { background: var(--sage-dark); }
.btn-ghost    { background: transparent; border: none; color: var(--stone); padding: 11px 0; }
.btn-ghost:hover { color: var(--deep); }
.btn-sm       { padding: 7px 16px; font-size: 12px; }
.btn-lg       { padding: 15px 40px; font-size: 14px; }
.btn-full     { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ── Cards ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(92,122,92,.3); }
.card-flat  { background: var(--cream-dark); border-color: transparent; }
.card-dark  { background: var(--deep); border-color: rgba(255,255,255,.08); }

/* ── Calm section backgrounds ── */
.bg-cream  { background: var(--cream); }
.bg-white  { background: var(--white); }
.bg-dark   {
  background: var(--deep); position: relative;
}
.bg-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 900px 450px at 50% 50%, rgba(92,122,92,.10) 0%, transparent 65%);
}
.bg-sage-light { background: var(--sage-light); }
.bg-warm-light { background: var(--warm-light); }

/* ── Organic divider ── */
.leaf-divider {
  width: 100%; overflow: hidden; line-height: 0;
}
.leaf-divider svg { display: block; width: 100%; }

/* ── Forms ── */
.form-group   { margin-bottom: 18px; }
.form-label   {
  display: block; font-size: 11px; font-weight: 400; color: var(--stone);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 7px;
}
.form-control {
  width: 100%; padding: 11px 14px; font-size: 14px; font-weight: 300;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--deep);
  transition: border-color var(--transition);
  font-family: var(--font-sans);
}
.form-control:focus { outline: none; border-color: var(--sage); }
.form-control::placeholder { color: rgba(122,120,112,.5); }
.form-hint  { font-size: 12px; color: var(--stone); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }

/* ── Badges ── */
.badge            { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; letter-spacing: .06em; font-weight: 400; }
.badge-live       { background: #fde8e8; color: #b83232; }
.badge-recorded   { background: var(--sage-light); color: var(--sage-dark); }
.badge-beginner   { background: #e8f4fd; color: #1a5f8a; }
.badge-intermediate { background: var(--warm-light); color: #7a5a30; }
.badge-advanced   { background: #f0ecf7; color: #5a2d7a; }
.badge-plan       { background: var(--sage-light); color: var(--sage-dark); padding: 4px 12px; border-radius: 20px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.badge-trial      { background: #fff3e0; color: #c65000; }
.badge-monthly    { background: var(--sage-light); color: var(--sage-dark); }
.badge-annual     { background: #eeeaf8; color: #3949ab; }

/* ── Section header ── */
.section-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.section-title { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 300; }
.section-link  { font-size: 13px; color: var(--sage); }

/* ── Stat cards ── */
.stat-card  { background: var(--cream-dark); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.stat-num   { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 300; line-height: 1; color: var(--deep); }
.stat-label { font-size: 12px; color: var(--stone); margin-top: 6px; letter-spacing: .04em; }
.stat-icon  { font-size: 20px; margin-bottom: 10px; }

/* ── Avatar ── */
.avatar { display: flex; align-items: center; justify-content: center; border-radius: 50%; font-family: var(--font-serif); font-weight: 300; color: var(--white); flex-shrink: 0; }
.avatar-sm { width: 32px; height: 32px; font-size: 14px; }
.avatar-md { width: 48px; height: 48px; font-size: 20px; }
.avatar-lg { width: 72px; height: 72px; font-size: 28px; }
.avatar-xl { width: 110px; height: 110px; font-size: 44px; }
.av-sage   { background: var(--sage); }
.av-warm   { background: var(--warm); }
.av-purple { background: #8B7BA8; }

/* ── Progress bar ── */
.progress     { height: 4px; background: var(--sage-light); border-radius: 2px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--sage); border-radius: 2px; transition: width .8s var(--ease); }

/* ── Streak badge ── */
.streak-badge { display: flex; align-items: center; gap: 6px; background: var(--warm-light); color: #7a5a30; padding: 7px 16px; border-radius: 20px; font-size: 13px; }

/* ── Toast ── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast {
  padding: 12px 20px; border-radius: var(--radius); font-size: 13px;
  background: var(--deep); color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  animation: toastIn .3s var(--ease); max-width: 320px;
}
.toast.success { background: var(--success); }
.toast.error   { background: var(--danger); }
@keyframes toastIn { from { opacity:0; transform:translateX(16px); } to { opacity:1; transform:translateX(0); } }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.38); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  animation: fadeIn .2s var(--ease);
}
.modal {
  background: var(--white); border-radius: var(--radius-xl); padding: 36px;
  max-width: 500px; width: 100%; position: relative;
  animation: slideUp .22s var(--ease);
}
.modal-close { position: absolute; top: 18px; right: 18px; background: none; border: none; font-size: 18px; color: var(--stone); cursor: pointer; }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes slideUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

/* ── Loading ── */
.loading  { display: flex; align-items: center; justify-content: center; padding: 48px; }
.spinner  { width: 28px; height: 28px; border: 2px solid var(--border); border-top-color: var(--sage); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Tabs ── */
.tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.tab-btn {
  padding: 10px 20px; font-size: 13px; color: var(--stone); background: none;
  border: none; border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all var(--transition); letter-spacing: .04em; font-family: var(--font-sans);
}
.tab-btn.active { color: var(--deep); border-bottom-color: var(--sage); }
.tab-btn:hover  { color: var(--deep); }

/* ── Filter pills ── */
.filter-bar  { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-pill {
  padding: 6px 16px; border-radius: 20px; font-size: 12px;
  border: 1px solid var(--border); background: var(--white); color: var(--stone);
  cursor: pointer; transition: all var(--transition); font-family: var(--font-sans);
}
.filter-pill.active { background: var(--deep); color: var(--white); border-color: var(--deep); }
.filter-pill:hover  { border-color: var(--sage); color: var(--deep); }

/* ── Mood selector ── */
.mood-selector { display: flex; gap: 10px; flex-wrap: wrap; }
.mood-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  font-size: 20px; cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.mood-btn.selected { border-color: var(--sage); background: var(--sage-light); transform: scale(1.12); }

/* ── Onboarding ── */
.step-indicator { display: flex; gap: 6px; margin-bottom: 40px; }
.step-dot       { flex: 1; height: 3px; background: var(--border); border-radius: 2px; transition: background .3s; }
.step-dot.done  { background: var(--sage); }
.step-dot.active{ background: var(--warm); }
.option-cards   { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.option-card {
  padding: 22px 16px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  cursor: pointer; text-align: center; transition: all var(--transition); background: var(--white);
}
.option-card:hover    { border-color: var(--sage); }
.option-card.selected { border-color: var(--sage); background: var(--sage-light); }
.option-icon  { font-size: 28px; margin-bottom: 8px; }
.option-label { font-size: 14px; font-weight: 400; color: var(--deep); }
.option-sub   { font-size: 12px; color: var(--stone); margin-top: 3px; }

/* ── Coach card ── */
.coach-card  { overflow: hidden; }
.coach-head  { height: 110px; display: flex; align-items: center; justify-content: center; }
.coach-body  { padding: 20px; }
.coach-name  { font-size: 16px; font-weight: 400; margin-bottom: 3px; color: var(--deep); }
.coach-spec  { font-size: 12px; color: var(--stone); font-weight: 300; margin-bottom: 12px; }
.coach-tags  { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.coach-tag   { font-size: 10px; padding: 3px 9px; border-radius: 20px; background: var(--sage-light); color: var(--sage-dark); letter-spacing: .04em; }
.coach-rating{ font-size: 13px; color: var(--warm); }
.ch-sage     { background: var(--sage); }
.ch-warm     { background: var(--warm); }
.ch-purple   { background: #8B7BA8; }

/* ── Class cards ── */
.class-card  { cursor: pointer; }
.class-thumb { height: 148px; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.class-body  { padding: 18px; }
.class-meta  { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }
.class-title { font-family: var(--font-serif); font-size: 18px; font-weight: 300; margin-bottom: 5px; }
.class-coach { font-size: 12px; color: var(--stone); }
.class-duration { font-size: 12px; color: var(--sage); font-weight: 400; }

/* ── Category colours for class thumbs ── */
.cat-stress     { background: var(--sage-light); }
.cat-strength   { background: var(--warm-light); }
.cat-recovery   { background: #eaecf5; }
.cat-morning    { background: #fdf6e3; }
.cat-breathwork { background: #f0ecf7; }
.cat-foundation { background: var(--cream-dark); }

/* ── Calendar dots ── */
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal-dot  { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--stone); background: var(--cream-dark); }
.cal-dot.active { background: var(--sage); color: var(--white); }
.cal-dot.today  { border: 1px solid var(--sage); }

/* ── Chart cards ── */
.chart-card  { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.chart-label { font-size: 12px; color: var(--stone); margin-bottom: 14px; letter-spacing: .04em; }
canvas       { width: 100% !important; display: block; }

/* ── Page hero strips (for inner pages) ── */
.page-hero {
  background: var(--cream-dark);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 600px 300px at 80% 50%, rgba(92,122,92,.08) 0%, transparent 60%);
}

/* ── Calm decorative rule ── */
.ornament {
  display: flex; align-items: center; gap: 16px; margin: 40px 0;
  color: var(--sage-mid); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ── Utility ── */
.text-muted   { color: var(--stone); }
.text-sage    { color: var(--sage); }
.text-sm      { font-size: 13px; }
.text-xs      { font-size: 11px; }
.text-center  { text-align: center; }
.hidden       { display: none !important; }
.divider      { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

.mt-4  { margin-top:  4px;  } .mt-8  { margin-top:  8px;  }
.mt-16 { margin-top:  16px; } .mt-24 { margin-top:  24px; }
.mt-32 { margin-top:  32px; } .mt-48 { margin-top:  48px; }
.mb-4  { margin-bottom: 4px;  } .mb-8  { margin-bottom: 8px;  }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px;  }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }

/* ── Live indicator pulse ── */
@keyframes livepulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #E25555; animation: liveplus 2s infinite; display: inline-block; }
@keyframes liveplus { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── Scroll fade animation ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Session card ── */
.session-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--border-light); }
.session-row:last-child { border-bottom: none; }
.session-info { flex: 1; }
.session-name { font-size: 14px; font-weight: 400; color: var(--deep); }
.session-meta { font-size: 12px; color: var(--stone); margin-top: 2px; }

/* ── Upcoming item ── */
.upcoming-item { padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.upcoming-item:last-child { border-bottom: none; }
.upcoming-time { font-size: 11px; color: var(--sage); letter-spacing: .05em; margin-bottom: 4px; }
.upcoming-name { font-size: 14px; font-weight: 400; color: var(--deep); }

/* ── Slot buttons ── */
.slot-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.slot-btn {
  padding: 8px 4px; font-size: 12px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--white); cursor: pointer;
  text-align: center; transition: all .15s; font-family: var(--font-sans);
}
.slot-btn:hover    { border-color: var(--sage); }
.slot-btn.selected { background: var(--sage); color: var(--white); border-color: var(--sage); }
.slot-btn.taken    { background: var(--cream-dark); color: var(--stone); cursor: not-allowed; }

/* ── Dashboard layout ── */
.dash-grid     { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.stat-row      { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
@media (max-width:900px) {
  .dash-grid   { grid-template-columns: 1fr; }
  .stat-row    { grid-template-columns: repeat(2,1fr); }
}

/* ── Plan cards ── */
.plan          { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; }
.plan.featured { border-color: var(--sage); border-width: 2px; }
.plan-badge    {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--sage); color: var(--white); font-size: 11px;
  padding: 4px 16px; border-radius: 20px; letter-spacing: .08em; white-space: nowrap;
}
.plan-name     { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--stone); margin-bottom: 16px; }
.plan-price    { font-family: var(--font-serif); font-size: 3.2rem; font-weight: 300; line-height: 1; }
.plan-period   { font-size: 12px; color: var(--stone); margin-top: 4px; margin-bottom: 28px; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li { font-size: 13px; color: var(--stone); padding: 9px 0; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; gap: 10px; }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }

/* ── Programs grid ── */
.prog-item { background: var(--white); padding: 32px 24px; transition: background var(--transition); cursor: pointer; }
.prog-item:hover { background: var(--sage-light); }
.prog-tag  { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--warm); margin-bottom: 14px; }
.prog-name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 300; margin-bottom: 10px; line-height: 1.2; }
.prog-desc { font-size: 12.5px; color: var(--stone); line-height: 1.8; }
.prog-meta { margin-top: 16px; font-size: 11px; color: var(--sage); }

/* ── FAQ ── */
.faq-item  { padding: 20px 0; border-bottom: 1px solid var(--border); }
.faq-q     { font-size: 15px; font-weight: 400; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--deep); }
.faq-a     { font-size: 13.5px; color: var(--stone); margin-top: 12px; line-height: 1.85; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-toggle { transition: transform .2s; font-size: 18px; color: var(--stone); flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ── Back link ── */
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--stone); margin-bottom: 24px; cursor: pointer; transition: color .15s; }
.back-link:hover { color: var(--deep); }

/* ── Detail rows ── */
.detail-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-size: 13.5px; }
.detail-row:last-child { border-bottom: none; }

/* ── Nature / dark section elements ── */
.nature-el { border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius-lg); padding: 18px 22px; display: flex; align-items: center; gap: 16px; }
.nature-el-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(92,122,92,.2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.nature-el-title { font-size: 14px; color: rgba(255,255,255,.8); font-weight: 400; }
.nature-el-sub   { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ── Mosaic tiles ── */
.mosaic-tile { border-radius: var(--radius-lg); overflow: hidden; }
.tile-fill { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.t1 { background: var(--sage-light); color: var(--sage); }
.t2 { background: var(--warm-light); color: #8a6030; }
.t3 { background: #EAE7F0; color: #5C4A7A; }
.t4 { background: #E7EEF2; color: #3A5F78; }
