/* ==========================================================
   Talk to Mahak — Shared Stylesheet
   Soft editorial sanctuary aesthetic
   ========================================================== */

:root{
  --cream:        #FAF6EF;
  --cream-deep:   #F3ECDF;
  --paper-edge:   #EDE3D2;
  --ink:          #2A2620;
  --ink-soft:     #6B655C;
  --ink-faint:    #9A938A;
  --sage:         #7A9082;
  --sage-deep:    #4A5D52;
  --sage-mist:    #DCE3DC;
  --terracotta:   #C97B5A;
  --terracotta-soft:#E8C9B6;
  --blush:        #EFD8C8;
  --crisis:       #B0463F;
  --crisis-soft:  #F4E3DF;

  --serif: 'Fraunces', 'Georgia', serif;
  --sans:  'Plus Jakarta Sans', system-ui, sans-serif;

  --maxw: 1180px;
  --maxw-narrow: 760px;
  --pad-x: clamp(20px, 4vw, 56px);
}

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

body{
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* paper grain */
body::before{
  content:""; position:fixed; inset:0;
  pointer-events:none; z-index:1;
  opacity:.35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.14  0 0 0 0 0.12  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

a{ color:inherit; text-decoration:none; }

/* ───────── NAV ───────── */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(250,246,239,0.78);
  border-bottom: 1px solid rgba(42,38,32,0.06);
}
.nav-inner{
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px var(--pad-x);
  display:flex; align-items:center; justify-content:space-between; gap: 24px;
}
.brand{
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; letter-spacing: -0.01em;
  display:flex; align-items:center; gap:10px;
  color: var(--ink);
}
.brand-dot{
  width:9px; height:9px; border-radius:50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px var(--sage-mist);
  animation: pulse 3.2s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ transform: scale(1); opacity:1; }
  50%{ transform: scale(1.15); opacity:.7; }
}
.nav-links{
  display:flex; align-items:center; gap: 32px;
  font-size: 14.5px; color: var(--ink-soft);
}
.nav-links a{ transition: color .25s ease; }
.nav-links a:hover, .nav-links a.active{ color: var(--ink); }
.nav-links a.active{ font-weight: 500; }
.nav-crisis{
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  color: var(--crisis); padding: 8px 16px;
  border: 1px solid var(--crisis); border-radius: 999px;
  transition: all .25s ease; white-space: nowrap;
}
.nav-crisis:hover{ background: var(--crisis); color: var(--cream); }
.nav-crisis::before{
  content:""; display:inline-block;
  width:6px; height:6px; border-radius:50%;
  background: var(--crisis); margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}
.nav-crisis:hover::before{ background: var(--cream); }
@media (max-width: 820px){
  .nav-links a:not(.nav-crisis){ display:none; }
}

/* ───────── BUTTONS ───────── */
.btn-primary{
  background: var(--ink); color: var(--cream);
  padding: 16px 30px; border-radius: 999px;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  border: none; cursor:pointer;
  transition: all .3s ease;
  display:inline-flex; align-items:center; gap: 10px;
  letter-spacing: 0.01em;
}
.btn-primary:hover{
  background: var(--sage-deep); transform: translateY(-2px);
}
.btn-primary svg{ transition: transform .3s ease; }
.btn-primary:hover svg{ transform: translateX(4px); }

.btn-secondary{
  background: transparent; color: var(--ink);
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--sans); font-size: 14.5px; font-weight: 500;
  border: 1px solid var(--ink-faint);
  cursor:pointer; transition: all .3s ease;
  display:inline-flex; align-items:center; gap: 10px;
}
.btn-secondary:hover{ border-color: var(--ink); }

.btn-crisis{
  background: var(--crisis); color: var(--cream);
  padding: 22px 36px; border-radius: 999px;
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  border: none; cursor: pointer; letter-spacing: -0.01em;
  transition: all .3s ease;
  display:inline-flex; align-items:center; gap: 14px;
}
.btn-crisis:hover{ background: #93362F; transform: translateY(-2px); }

/* ───────── REUSABLE TYPE ───────── */
.eyebrow{
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--sage-deep);
  font-weight: 500; margin-bottom: 28px;
  display:inline-flex; align-items:center; gap:10px;
  animation: rise .9s cubic-bezier(.2,.7,.2,1) both;
}
.eyebrow::before{ content:""; width:24px; height:1px; background: var(--sage-deep); }
.section-label{
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--terracotta);
  margin-bottom: 18px; letter-spacing: 0.02em;
}
.section-title{
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(34px, 4.6vw, 56px); line-height: 1.05;
  letter-spacing: -0.02em; max-width: 18ch;
  margin-bottom: 56px; color: var(--ink);
}
.page-title{
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(44px, 6.4vw, 80px); line-height: 1.0;
  letter-spacing: -0.025em; max-width: 16ch;
  margin-bottom: 32px; color: var(--ink);
}
.page-title em{ font-style: italic; color: var(--sage-deep); }
.lede{
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px); line-height: 1.45;
  color: var(--ink-soft); max-width: 56ch; margin-bottom: 56px;
}

/* ───────── REVEAL ───────── */
.reveal{ opacity: 0; transform: translateY(20px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }
@keyframes rise{
  from{ opacity:0; transform: translateY(18px); }
  to{ opacity:1; transform: translateY(0); }
}

/* ───────── CONTENT PAGE LAYOUT ───────── */
.page-hero{
  position:relative;
  padding: clamp(60px, 10vh, 110px) var(--pad-x) clamp(40px, 6vh, 70px);
  max-width: var(--maxw); margin: 0 auto;
  overflow: visible;
}
.page-hero-bg{ position:absolute; inset:0; pointer-events:none; overflow:visible; }
.blob{ position:absolute; border-radius:50%; filter: blur(60px); opacity:.55; }
.blob-1{ width: 380px; height:380px; background: var(--sage-mist); top: 10%; right: -100px; }
.blob-2{ width: 280px; height:280px; background: var(--blush); bottom: -60px; left: -80px; opacity:.45; }
.blob-3{ width: 220px; height:220px; background: var(--terracotta-soft); top: 40%; right: 30%; opacity:.3; }

.narrow{
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ───────── LEGAL / LONG-FORM PAGES ───────── */
.legal-wrap{
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 70px) var(--pad-x) 80px;
}
.legal-meta{
  font-size: 13px; color: var(--ink-faint);
  letter-spacing: 0.06em; margin-bottom: 40px;
  display: flex; gap: 24px; flex-wrap: wrap;
}
.legal-meta span{ display:inline-flex; align-items:center; gap: 8px; }
.legal-meta span::before{
  content:""; width:5px; height:5px; border-radius:50%;
  background: var(--sage);
}

.tldr{
  background: var(--cream-deep);
  border-left: 3px solid var(--sage);
  border-radius: 4px 14px 14px 4px;
  padding: 28px 32px; margin-bottom: 56px;
}
.tldr h3{
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 20px;
  margin-bottom: 14px; color: var(--sage-deep);
}
.tldr ul{ list-style: none; }
.tldr li{
  padding: 7px 0 7px 22px; position: relative;
  font-size: 15.5px; color: var(--ink); line-height: 1.55;
}
.tldr li::before{
  content: "—"; position: absolute; left: 0;
  color: var(--terracotta); font-family: var(--serif);
}

.legal-body h2{
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 2.6vw, 30px); letter-spacing: -0.01em;
  margin: 56px 0 18px; color: var(--ink);
}
.legal-body h2:first-child{ margin-top: 0; }
.legal-body h3{
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: 19px; margin: 28px 0 12px; color: var(--sage-deep);
}
.legal-body p{
  font-size: 16px; color: var(--ink); line-height: 1.7;
  margin-bottom: 16px;
}
.legal-body ul, .legal-body ol{
  padding-left: 22px; margin-bottom: 20px;
}
.legal-body li{
  font-size: 16px; color: var(--ink); line-height: 1.7;
  margin-bottom: 10px;
}
.legal-body strong{ color: var(--ink); font-weight: 600; }
.legal-body em{ color: var(--sage-deep); font-style: italic; }
.legal-body a{
  color: var(--sage-deep); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.legal-body a:hover{ color: var(--terracotta); }

.draft-banner{
  background: var(--terracotta-soft);
  border: 1px dashed var(--terracotta);
  padding: 16px 22px; border-radius: 12px;
  margin-bottom: 40px;
  font-size: 13.5px; color: var(--ink);
  line-height: 1.55;
}
.draft-banner strong{ color: var(--terracotta); }

/* ───────── CRISIS STRIP (shared) ───────── */
.crisis-strip{
  background: var(--crisis-soft);
  padding: 28px var(--pad-x);
  border-top: 1px solid rgba(176,70,63,0.15);
  border-bottom: 1px solid rgba(176,70,63,0.15);
}
.crisis-inner{
  max-width: var(--maxw); margin: 0 auto;
  display:flex; flex-wrap:wrap; gap: 18px 28px;
  align-items: center; justify-content: space-between;
}
.crisis-msg{ font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--crisis); }
.crisis-msg strong{
  font-weight: 500; font-style: normal; font-family: var(--sans);
  display:block; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 4px;
}
.crisis-lines{ display:flex; flex-wrap:wrap; gap: 14px 20px; font-size: 14.5px; }
.crisis-line{ display:flex; align-items:center; gap: 8px; color: var(--ink); }
.crisis-line span{ color: var(--ink-faint); }
.crisis-line a{ font-weight: 500; color: var(--crisis); transition: opacity .25s ease; }
.crisis-line a:hover{ opacity: .7; }

/* ───────── FOOTER ───────── */
footer{ padding: 56px var(--pad-x) 36px; background: var(--cream); }
.foot-inner{ max-width: var(--maxw); margin: 0 auto; }
.foot-grid{
  display:grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid var(--paper-edge);
}
@media (max-width: 720px){
  .foot-grid{ grid-template-columns: 1fr 1fr; }
  .foot-brand{ grid-column: span 2; }
}
.foot-brand p{
  color: var(--ink-soft); font-size: 14.5px; line-height: 1.6;
  max-width: 38ch; margin-top: 14px;
}
.foot-col h6{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 15px; color: var(--ink-soft); margin-bottom: 16px;
}
.foot-col ul{ list-style: none; }
.foot-col li{ margin-bottom: 10px; }
.foot-col a{ color: var(--ink); font-size: 14.5px; transition: color .25s ease; }
.foot-col a:hover{ color: var(--sage-deep); }
.foot-bottom{
  display:flex; flex-wrap:wrap; gap: 14px;
  justify-content:space-between; padding-top: 28px;
  font-size: 13px; color: var(--ink-faint);
}
.foot-bottom .made{ font-family: var(--serif); font-style: italic; }
.foot-bottom .made span{ color: var(--terracotta); }

/* ===========================================================
   HOMEPAGE specific
   =========================================================== */
.hero{
  position:relative;
  padding: clamp(70px, 12vh, 140px) var(--pad-x) clamp(80px, 14vh, 160px);
  max-width: var(--maxw); margin: 0 auto; overflow: visible;
}
.hero-bg{ position: absolute; inset: 0; pointer-events:none; overflow: visible; }
.hero h1{
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(44px, 7.6vw, 96px); line-height: 0.98;
  letter-spacing: -0.025em; color: var(--ink);
  margin-bottom: 36px; max-width: 14ch;
  animation: rise 1s .1s cubic-bezier(.2,.7,.2,1) both;
}
.hero h1 em{ font-style: italic; font-weight: 300; color: var(--sage-deep); }
.hero-sub{
  font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-soft);
  max-width: 52ch; line-height: 1.55; margin-bottom: 48px;
  animation: rise 1s .25s cubic-bezier(.2,.7,.2,1) both;
}
.cta-row{
  display:flex; flex-wrap:wrap; align-items:center; gap: 20px 28px;
  animation: rise 1s .4s cubic-bezier(.2,.7,.2,1) both;
}
.reassure{ font-size: 13.5px; color: var(--ink-faint); display:inline-flex; align-items:center; gap: 8px; }
.reassure .dot{ width:5px; height:5px; border-radius:50%; background: var(--sage); display:inline-block; }

.who{ padding: clamp(60px, 10vh, 120px) var(--pad-x); max-width: var(--maxw); margin: 0 auto; }
.who-grid{
  display:grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px); align-items: start;
}
@media (max-width: 820px){ .who-grid{ grid-template-columns: 1fr; } }
.who-label{
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2vw, 26px); color: var(--sage-deep); line-height: 1.4;
}
.who-label::before{ content:"— "; color: var(--terracotta); }
.who-body p{
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.4;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 28px;
}
.who-body p:last-child{ margin-bottom: 0; }
.who-body strong{ font-weight: 500; color: var(--sage-deep); font-style: italic; }
.who-body .signature{
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(28px, 3vw, 38px); color: var(--terracotta);
  margin-top: 8px; letter-spacing: -0.01em;
  transform: rotate(-1.5deg); display: inline-block; padding-left: 12px;
}

.help{ background: var(--cream-deep); padding: clamp(70px, 11vh, 130px) var(--pad-x); position: relative; overflow: hidden; }
.help-inner{ max-width: var(--maxw); margin: 0 auto; }
.help-cards{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 820px){ .help-cards{ grid-template-columns: 1fr; } }
.help-card{
  background: var(--cream); border: 1px solid var(--paper-edge);
  border-radius: 18px; padding: 36px 32px 38px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.help-card:hover{
  transform: translateY(-4px); border-color: var(--sage);
  box-shadow: 0 18px 40px -28px rgba(74,93,82,0.35);
}
.help-icon{
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--sage-mist); display:flex; align-items:center; justify-content:center;
  margin-bottom: 24px; color: var(--sage-deep);
}
.help-card h3{ font-family: var(--serif); font-weight: 400; font-size: 24px; margin-bottom: 12px; letter-spacing: -0.01em; }
.help-card p{ font-size: 15.5px; color: var(--ink-soft); line-height: 1.65; }

.whom{ padding: clamp(70px, 11vh, 130px) var(--pad-x); max-width: var(--maxw); margin: 0 auto; }
.whom-grid{ display:grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--paper-edge); }
@media (max-width: 720px){ .whom-grid{ grid-template-columns: 1fr; } }
.whom-card{ padding: 36px 0 40px; border-bottom: 1px solid var(--paper-edge); padding-right: 32px; }
.whom-card:nth-child(even){ padding-left: 32px; border-left: 1px solid var(--paper-edge); }
@media (max-width: 720px){ .whom-card:nth-child(even){ padding-left: 0; border-left: none; } }
.whom-tag{ font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--terracotta); font-weight: 500; margin-bottom: 14px; }
.whom-card h4{ font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.35; color: var(--ink); margin-bottom: 14px; }
.whom-card p{ color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; max-width: 45ch; }

.boundaries{ background: var(--sage-deep); color: var(--cream); padding: clamp(70px, 11vh, 130px) var(--pad-x); position: relative; overflow: hidden; }
.boundaries::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(122,144,130,0.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201,123,90,0.18), transparent 55%);
  pointer-events:none;
}
.boundaries-inner{ max-width: var(--maxw); margin: 0 auto; position:relative; }
.boundaries .section-label{ color: var(--terracotta-soft); }
.boundaries .section-title{ color: var(--cream); max-width: 22ch; }
.b-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); margin-top: 16px; }
@media (max-width: 720px){ .b-grid{ grid-template-columns: 1fr; } }
.b-col h5{ font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 22px; color: var(--cream); }
.b-col h5 span{ color: var(--terracotta-soft); }
.b-col ul{ list-style:none; }
.b-col li{
  padding: 14px 0; border-top: 1px solid rgba(250,246,239,0.12);
  font-size: 16px; line-height: 1.55; color: rgba(250,246,239,0.85);
  display:flex; gap: 12px; align-items: flex-start;
}
.b-col li:last-child{ border-bottom: 1px solid rgba(250,246,239,0.12); }
.b-col .mark{ flex-shrink:0; font-family: var(--serif); font-style: italic; color: var(--terracotta-soft); width: 16px; }

.privacy{ padding: clamp(70px, 11vh, 130px) var(--pad-x); max-width: var(--maxw); margin: 0 auto; }
.privacy-grid{ display:grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
@media (max-width: 820px){ .privacy-grid{ grid-template-columns: 1fr; } }
.priv-promise{
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.25; color: var(--ink);
}
.priv-promise em{ color: var(--sage-deep); font-style: italic; font-weight: 400; }
.priv-list{ list-style: none; }
.priv-list li{
  padding: 18px 0; border-top: 1px solid var(--paper-edge);
  display:flex; gap: 18px; align-items: flex-start;
  color: var(--ink-soft); font-size: 15.5px; line-height: 1.6;
}
.priv-list li:last-child{ border-bottom: 1px solid var(--paper-edge); }
.priv-list strong{
  display:block; font-family: var(--serif); font-weight: 400;
  color: var(--ink); font-size: 17px; margin-bottom: 4px;
}
.priv-icon{
  flex-shrink:0; width: 32px; height: 32px; border-radius: 10px;
  background: var(--sage-mist); color: var(--sage-deep);
  display:flex; align-items:center; justify-content:center;
}

.final{ padding: clamp(80px, 14vh, 160px) var(--pad-x); text-align: center; background: var(--cream-deep); position: relative; overflow: hidden; }
.final-inner{ max-width: 760px; margin: 0 auto; position: relative; }
.final h2{ font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 6vw, 76px); line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 24px; color: var(--ink); }
.final h2 em{ font-style: italic; color: var(--sage-deep); }
.final p{ color: var(--ink-soft); font-size: 17px; margin-bottom: 40px; max-width: 48ch; margin-left:auto; margin-right:auto; }

/* ===========================================================
   CRISIS PAGE
   =========================================================== */
.crisis-page{
  padding: clamp(60px, 10vh, 110px) var(--pad-x) clamp(80px, 12vh, 140px);
  max-width: 860px; margin: 0 auto;
}
.crisis-opener{
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 6vw, 72px); line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.crisis-opener em{ font-style: italic; color: var(--terracotta); }
.crisis-lede{
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--ink-soft); line-height: 1.6;
  max-width: 56ch; margin-bottom: 48px;
}
.primary-call{
  background: var(--cream-deep); border: 1px solid var(--paper-edge);
  border-radius: 22px; padding: 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; margin-bottom: 32px;
}
.primary-call h3{
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 8px;
}
.primary-call p{ color: var(--ink-soft); font-size: 15.5px; }
.help-options{
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; margin: 40px 0 60px;
}
@media (max-width: 640px){ .help-options{ grid-template-columns: 1fr; } }
.help-option{
  background: var(--cream); border: 1px solid var(--paper-edge);
  border-radius: 16px; padding: 24px 26px;
  transition: border-color .3s ease, transform .3s ease;
}
.help-option:hover{ border-color: var(--sage); transform: translateY(-2px); }
.help-option .label{
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--terracotta); font-weight: 500; margin-bottom: 8px;
}
.help-option .name{
  font-family: var(--serif); font-size: 19px; color: var(--ink);
  margin-bottom: 4px;
}
.help-option .number{
  font-size: 17px; font-weight: 500; color: var(--sage-deep);
}
.help-option .desc{ font-size: 13.5px; color: var(--ink-soft); margin-top: 8px; line-height: 1.5; }

.specialized{ margin: 60px 0; }
.specialized h3{
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(24px, 2.6vw, 30px); margin-bottom: 24px; color: var(--ink);
}
.specialized-list{ list-style: none; }
.specialized-list li{
  padding: 18px 0; border-top: 1px solid var(--paper-edge);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  align-items: baseline;
}
.specialized-list li:last-child{ border-bottom: 1px solid var(--paper-edge); }
.specialized-list .who{
  font-family: var(--serif); font-style: italic;
  color: var(--ink); font-size: 17px;
}
.specialized-list .contact{
  font-size: 15px; color: var(--sage-deep); font-weight: 500;
}

.grounding{
  background: var(--sage-mist); border-radius: 22px;
  padding: 40px; margin: 60px 0;
}
.grounding h3{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(24px, 2.6vw, 30px); margin-bottom: 8px; color: var(--sage-deep);
}
.grounding .intro{ color: var(--ink-soft); font-size: 15.5px; margin-bottom: 28px; }
.grounding ol{ list-style: none; counter-reset: g; }
.grounding li{
  counter-increment: g; padding: 12px 0 12px 48px; position: relative;
  font-size: 16px; line-height: 1.6; color: var(--ink);
}
.grounding li::before{
  content: counter(g); position: absolute; left: 0; top: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px; font-weight: 500;
}

.return-note{
  text-align: center; padding: 40px 0 0;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2vw, 24px); color: var(--ink-soft);
  line-height: 1.5;
}
.return-note a{ color: var(--terracotta); text-decoration: underline; text-underline-offset: 4px; }

/* ===========================================================
   CHAT PAGE
   =========================================================== */
.chat-layout{
  min-height: calc(100vh - 72px);
  display: grid; grid-template-columns: 300px 1fr;
}
@media (max-width: 820px){ .chat-layout{ grid-template-columns: 1fr; } }

.chat-sidebar{
  background: var(--cream-deep);
  border-right: 1px solid var(--paper-edge);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 28px;
}
@media (max-width: 820px){ .chat-sidebar{ border-right: none; border-bottom: 1px solid var(--paper-edge); padding: 24px var(--pad-x); } }
.side-greeting{
  font-family: var(--serif); font-style: italic;
  font-size: 19px; color: var(--sage-deep); line-height: 1.45;
}
.suggestions h5{
  font-size: 11.5px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--ink-faint);
  margin-bottom: 14px; font-weight: 500;
}
.chip-list{ display: flex; flex-direction: column; gap: 8px; }
.chip{
  background: var(--cream); border: 1px solid var(--paper-edge);
  padding: 12px 16px; border-radius: 12px;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  cursor: pointer; text-align: left;
  transition: all .25s ease;
}
.chip:hover{ border-color: var(--sage); background: white; transform: translateX(2px); }
.side-bottom{ margin-top: auto; padding-top: 24px; border-top: 1px solid var(--paper-edge); }
.side-crisis{
  display: block; padding: 14px 16px; border-radius: 12px;
  background: var(--crisis-soft); color: var(--crisis);
  font-size: 13.5px; font-weight: 500; text-align: center;
  border: 1px solid rgba(176,70,63,0.15);
  transition: background .25s ease;
}
.side-crisis:hover{ background: var(--crisis); color: var(--cream); }
.side-foot{ font-size: 12px; color: var(--ink-faint); line-height: 1.5; margin-top: 16px; }

.chat-main{
  display: flex; flex-direction: column;
  min-height: calc(100vh - 72px);
  background: var(--cream);
}
.chat-stream{
  flex: 1; padding: 40px var(--pad-x);
  max-width: 760px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; gap: 20px;
  overflow-y: auto;
}
.msg{ max-width: 75%; display: flex; flex-direction: column; gap: 6px; }
.msg-mahak{ align-self: flex-start; }
.msg-user{ align-self: flex-end; align-items: flex-end; }
.msg-meta{
  font-size: 11.5px; color: var(--ink-faint);
  text-transform: uppercase; letter-spacing: 0.12em;
  display: flex; align-items: center; gap: 6px;
}
.msg-meta::before{
  content:""; width:6px; height:6px; border-radius:50%; background: var(--sage);
}
.msg-user .msg-meta::before{ background: var(--terracotta); }
.msg-bubble{
  padding: 16px 20px; border-radius: 18px;
  font-size: 15.5px; line-height: 1.6;
}
.msg-mahak .msg-bubble{
  background: var(--cream-deep);
  border-bottom-left-radius: 4px; color: var(--ink);
}
.msg-user .msg-bubble{
  background: var(--sage-mist);
  border-bottom-right-radius: 4px; color: var(--ink);
}
.msg-bubble p + p{ margin-top: 10px; }
.welcome-message{
  background: white; border: 1px solid var(--paper-edge);
  border-radius: 18px; padding: 28px 32px;
  margin-bottom: 12px; max-width: 100%;
}
.welcome-message h4{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; color: var(--ink); margin-bottom: 12px;
}
.welcome-message p{
  font-size: 15px; color: var(--ink-soft); line-height: 1.6;
  margin-bottom: 8px;
}

.chat-input-wrap{
  border-top: 1px solid var(--paper-edge);
  background: var(--cream); padding: 20px var(--pad-x);
}
.chat-input{
  max-width: 760px; margin: 0 auto;
  display: flex; gap: 12px; align-items: flex-end;
}
.chat-input textarea{
  flex: 1; resize: none;
  border: 1px solid var(--paper-edge); border-radius: 18px;
  padding: 14px 18px;
  font-family: var(--sans); font-size: 15.5px;
  color: var(--ink); background: white;
  min-height: 52px; max-height: 160px;
  transition: border-color .25s ease;
  font-family: var(--sans);
}
.chat-input textarea:focus{ outline: none; border-color: var(--sage); }
.chat-input textarea::placeholder{ color: var(--ink-faint); font-style: italic; }
.chat-send{
  background: var(--ink); color: var(--cream);
  width: 52px; height: 52px; border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .25s ease;
  flex-shrink: 0;
}
.chat-send:hover{ background: var(--sage-deep); transform: scale(1.05); }
.chat-disclaimer{
  max-width: 760px; margin: 12px auto 0;
  font-size: 11.5px; color: var(--ink-faint);
  text-align: center; font-style: italic;
}

/* ===========================================================
   ABOUT / CONTACT / SAFETY content blocks
   =========================================================== */
.note-from{
  max-width: 720px; margin: 60px auto;
  padding: 0 var(--pad-x);
}
.note-from .author{
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--terracotta);
  margin-bottom: 32px;
}
.note-from p{
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px); line-height: 1.45;
  color: var(--ink); margin-bottom: 24px;
}
.note-from .signoff{
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 28px; color: var(--terracotta);
  margin-top: 24px; transform: rotate(-1.5deg);
  display: inline-block;
}

.values{
  background: var(--cream-deep);
  padding: clamp(60px, 10vh, 100px) var(--pad-x);
}
.values-inner{ max-width: var(--maxw); margin: 0 auto; }
.values-grid{
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 36px 60px; margin-top: 40px;
}
@media (max-width: 720px){ .values-grid{ grid-template-columns: 1fr; } }
.value h4{
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px); margin-bottom: 12px;
  color: var(--sage-deep);
}
.value p{ font-size: 15.5px; color: var(--ink-soft); line-height: 1.65; }

.team{
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(60px, 10vh, 100px) var(--pad-x);
}
.team-grid{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 32px;
}
@media (max-width: 820px){ .team-grid{ grid-template-columns: 1fr; } }
.person{
  background: var(--cream); border: 1px solid var(--paper-edge);
  border-radius: 16px; padding: 28px 24px;
}
.person .role{
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--terracotta); margin-bottom: 10px; font-weight: 500;
}
.person h5{
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; margin-bottom: 10px; color: var(--ink);
}
.person p{ font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.person.placeholder{
  border-style: dashed; background: transparent;
  opacity: 0.7;
}

/* ───────── CONTACT ───────── */
.contact-grid{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin: 40px 0;
}
@media (max-width: 720px){ .contact-grid{ grid-template-columns: 1fr; } }
.contact-card{
  background: var(--cream-deep); border-radius: 18px;
  padding: 32px 30px;
}
.contact-card.priority{
  background: transparent; border: 1px solid var(--crisis);
}
.contact-card .label{
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--terracotta); margin-bottom: 12px; font-weight: 500;
}
.contact-card.priority .label{ color: var(--crisis); }
.contact-card h4{
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; margin-bottom: 12px; color: var(--ink);
}
.contact-card p{
  font-size: 15px; color: var(--ink-soft); line-height: 1.6;
  margin-bottom: 14px;
}
.contact-card a{
  display: inline-block; color: var(--sage-deep); font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
}
.contact-card.priority a{ color: var(--crisis); }

.contact-form{
  background: var(--cream-deep); border-radius: 18px;
  padding: 36px 32px; margin: 40px 0;
}
.contact-form label{
  display: block; font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-soft); margin-bottom: 8px;
}
.contact-form input, .contact-form textarea, .contact-form select{
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--paper-edge); background: white;
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  margin-bottom: 20px; transition: border-color .25s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus{
  outline: none; border-color: var(--sage);
}
.contact-form textarea{ min-height: 140px; resize: vertical; }

/* ───────── SAFETY page ───────── */
.practice{
  padding: 32px 0; border-top: 1px solid var(--paper-edge);
  display: grid; grid-template-columns: 0.4fr 1fr;
  gap: 32px;
}
@media (max-width: 720px){ .practice{ grid-template-columns: 1fr; gap: 12px; } }
.practice:last-child{ border-bottom: 1px solid var(--paper-edge); }
.practice .stage{
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--terracotta); font-weight: 500;
}
.practice .stage.live{ color: var(--sage-deep); }
.practice .stage.building{ color: var(--terracotta); }
.practice .stage.planned{ color: var(--ink-faint); }
.practice h4{
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px); color: var(--ink);
  margin-bottom: 10px;
}
.practice p{ font-size: 15.5px; color: var(--ink-soft); line-height: 1.65; }

.honesty-note{
  background: var(--terracotta-soft); border-radius: 16px;
  padding: 28px 32px; margin: 40px 0;
}
.honesty-note h4{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 20px; color: var(--ink); margin-bottom: 10px;
}
.honesty-note p{ font-size: 15px; color: var(--ink); line-height: 1.65; }
