/* ═══════════════════════════════════════════════════════════════
   vfayur — Design System v6
   Earth & Botanical · Traditional · Contemporary · Premium
   ═══════════════════════════════════════════════════════════════ */

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

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Warm ivory — primary page backgrounds */
  --ivory:   #FAF7F2;
  --ivory-2: #F2EBE0;
  --cream:   #E8DDD0;
  --linen:   #D9CDB8;

  /* Botanical green — PRIMARY brand identity */
  --green-800: #1A2E18;
  --green-700: #253D22;
  --green-600: #335430;
  --green-500: #3D6338;
  --green-400: #5A8A52;
  --green-300: #7DAF72;
  --green-200: #A8CFA0;
  --green-100: #D0E8CA;
  --green-50:  #EEF5E8;

  /* Earth / terracotta — warm secondary */
  --earth-700: #6A3010;
  --earth-600: #8A4018;
  --earth-500: #A05228;
  --earth-400: #BE7048;
  --earth-200: #E0B898;
  --earth-100: #F0D8C8;
  --earth-50:  #FAF0E8;

  /* Gold / ochre — luxury accent (prices, stars, premium) */
  --gold-700: #7A5C10;
  --gold-600: #9A7818;
  --gold-500: #B08C28;
  --gold-400: #C8A840;
  --gold-200: #E8D090;
  --gold-100: #F5E8BC;
  --gold-50:  #FAF4DC;

  /* Warm darks — sections, footer */
  --bark:     #141208;
  --timber:   #1E1A0E;
  --walnut:   #2C2216;
  --mahogany: #3A2018;

  /* Semantic */
  --bg:      var(--ivory);
  --bg-card: #FFFFFF;
  --bg-alt:  var(--ivory-2);
  --bg-green: var(--green-50);
  --bg-dark: var(--bark);

  --text:   #1C1A12;
  --text-2: #3A3020;
  --text-3: #7A6C58;

  --border:      rgba(61,99,56,.14);
  --border-2:    rgba(0,0,0,.07);
  --green-glow:  rgba(61,99,56,.10);
  --green-line:  rgba(61,99,56,.22);
  --earth-glow:  rgba(160,82,40,.08);
  --earth-line:  rgba(160,82,40,.20);
  --gold-glow:   rgba(176,140,40,.10);
  --gold-line:   rgba(176,140,40,.24);

  /* Typography */
  --display: 'Cinzel','Georgia',serif;
  --serif:   'Cormorant Garamond','Georgia',serif;
  --sans:    'DM Sans',system-ui,sans-serif;

  /* Layout */
  --max-w: 1300px;
  --pad:   clamp(20px,5vw,72px);

  /* Radius */
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 24px;
  --r-xl: 48px;

  /* Shadows */
  --sh-sm: 0 2px 12px rgba(0,0,0,.06);
  --sh:    0 6px 28px rgba(0,0,0,.09);
  --sh-lg: 0 20px 60px rgba(0,0,0,.13);

  /* Motion */
  --ease:   cubic-bezier(.4,0,.2,1);
  --ease-o: cubic-bezier(0,.55,.45,1);
  --t:      .25s var(--ease);
  --t2:     .45s var(--ease);
}

/* ── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html  { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body  { font-family:var(--sans); background:var(--bg); color:var(--text); line-height:1.7; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
img   { display:block; max-width:100%; height:auto; }
a     { color:inherit; text-decoration:none; }
ul,ol { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; color:inherit; }
input,textarea,select { font-family:inherit; }
::selection { background:var(--green-100); color:var(--green-700); }
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--ivory-2); }
::-webkit-scrollbar-thumb { background:var(--green-400); border-radius:3px; }

/* ── Layout ─────────────────────────────────────────────────── */
.wrap { width:100%; max-width:var(--max-w); margin:0 auto; padding:0 var(--pad); }
.section     { padding:clamp(64px,9vw,120px) 0; }
.section--sm { padding:clamp(40px,5vw,72px) 0; }
.section--light  { background:var(--bg); }
.section--alt    { background:var(--bg-alt); }
.section--green  { background:var(--green-50); }
.section--earth  { background:var(--earth-50); }
.section--gold   { background:var(--gold-50); }
.section--dark   { background:var(--bark); }
.grid-2    { display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,72px); }
.grid-3    { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-4    { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.grid-auto { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:24px; }
.flex         { display:flex; }
.flex-center  { display:flex; align-items:center; justify-content:center; }
.flex-between { display:flex; align-items:center; justify-content:space-between; }
.col          { display:flex; flex-direction:column; }
.gap-4 { gap:16px; }
.mt-2{margin-top:8px} .mt-3{margin-top:12px} .mt-4{margin-top:16px} .mt-5{margin-top:20px}
.mt-6{margin-top:24px} .mt-8{margin-top:32px} .mt-10{margin-top:40px} .mt-12{margin-top:48px}
.mb-2{margin-bottom:8px} .mb-3{margin-bottom:12px} .mb-4{margin-bottom:16px} .mb-5{margin-bottom:20px}
.mb-6{margin-bottom:24px} .mb-8{margin-bottom:32px} .mb-10{margin-bottom:40px}
.text-center { text-align:center; }
.center-block { max-width:620px; margin:0 auto; text-align:center; }

/* ── Typography ─────────────────────────────────────────────── */
.display-xl { font-family:var(--display); font-size:clamp(2.1rem,5.2vw,4.8rem); font-weight:500; line-height:1; letter-spacing:.01em; color:var(--text); }
.display-lg { font-family:var(--display); font-size:clamp(1.7rem,3.8vw,3.4rem); font-weight:500; line-height:1.06; letter-spacing:.01em; color:var(--text); }
.display-md { font-family:var(--display); font-size:clamp(1.25rem,2.3vw,2.3rem); font-weight:500; line-height:1.12; letter-spacing:.02em; color:var(--text); }
.h1 { font-family:var(--display); font-size:clamp(1.8rem,3.5vw,3.2rem); font-weight:500; line-height:1.1; letter-spacing:.015em; color:var(--text); }
.h2 { font-family:var(--display); font-size:clamp(1.3rem,2.5vw,2.2rem); font-weight:500; line-height:1.15; letter-spacing:.02em; color:var(--text); }
.h3 { font-family:var(--serif);   font-size:clamp(1.1rem,2vw,1.65rem);  font-weight:500; line-height:1.25; color:var(--text); }
.h4 { font-family:var(--serif);   font-size:1.1rem;  font-weight:600; line-height:1.3; color:var(--text); }
.editorial { font-family:var(--serif); font-size:clamp(.95rem,1.8vw,1.25rem); font-weight:300; line-height:1.85; color:var(--text-2); }
.body    { font-size:1rem;   line-height:1.75; color:var(--text-2); }
.body-sm { font-size:.88rem; line-height:1.7;  color:var(--text-2); }
.overline { font-family:var(--sans); font-size:.65rem; font-weight:700; letter-spacing:.24em; text-transform:uppercase; color:var(--earth-600); display:block; }
.overline--green { color:var(--green-600); }
.overline--light { color:var(--earth-200); }
.gold  { color:var(--gold-600); }
.green { color:var(--green-600); }
em.gold  { font-style:italic; color:var(--gold-600); }
em.green { font-style:italic; color:var(--green-500); }
.on-dark   { color:#FFFFFF; }
.on-dark-2 { color:rgba(255,255,255,.68); }
.on-dark-3 { color:rgba(255,255,255,.38); }

/* ── Dividers ─────────────────────────────────────────────── */
.divider      { height:1px; background:var(--cream); }
.divider-g    { height:1px; background:linear-gradient(90deg,transparent,var(--green-line),transparent); }
.divider-gold { height:1px; background:linear-gradient(90deg,transparent,var(--gold-line),transparent); }
.ornament { display:flex; align-items:center; gap:20px; margin:28px 0; }
.ornament::before,.ornament::after { content:''; flex:1; height:1px; background:var(--cream); }
.ornament span { font-family:var(--display); font-size:.72rem; letter-spacing:.22em; color:var(--green-400); text-transform:uppercase; }

/* ── Navigation ─────────────────────────────────────────── */
.nav { position:sticky; top:0; z-index:200; }
.nav__inner { background:rgba(250,247,242,.97); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border-bottom:1px solid var(--cream); transition:box-shadow var(--t2); }
.nav.scrolled .nav__inner { box-shadow:var(--sh); }
.nav__wrap { display:flex; align-items:center; justify-content:space-between; height:70px; padding:0 var(--pad); max-width:var(--max-w); margin:0 auto; }

/* Brand — logo.png + "vfayur" wordmark */
.nav__logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav__logo-svg { display:none !important; }
.nav__logo-img { width:42px; height:42px; object-fit:contain; display:block; flex-shrink:0; }
.nav__brand { font-family:var(--display); font-size:1.35rem; font-weight:600; color:var(--text); letter-spacing:.18em; line-height:1; transition:color var(--t); text-transform:lowercase; }
.nav__logo:hover .nav__brand { color:var(--earth-600); }

/* Keep legacy nav__logo-text/sub for backward compat (hidden if no child elements) */
.nav__logo-text { display:flex; flex-direction:column; gap:1px; }
.nav__logo-main { font-family:var(--display); font-size:1rem; font-weight:600; color:var(--text); letter-spacing:.1em; line-height:1; }
.nav__logo-sub  { font-family:var(--serif); font-size:.6rem; font-weight:300; color:var(--green-600); letter-spacing:.18em; text-transform:uppercase; }

.nav__links { display:flex; align-items:center; gap:2px; }
.nav__link { font-size:.7rem; font-weight:500; letter-spacing:.09em; text-transform:uppercase; color:var(--text-2); padding:9px 14px; border-radius:var(--r-sm); transition:all var(--t); position:relative; }
.nav__link::after { content:''; position:absolute; bottom:4px; left:50%; transform:translateX(-50%) scaleX(0); width:14px; height:1.5px; background:var(--green-500); transition:transform var(--t); }
.nav__link:hover, .nav__link.active { color:var(--green-600); }
.nav__link:hover::after, .nav__link.active::after { transform:translateX(-50%) scaleX(1); }
.nav__actions { display:flex; align-items:center; gap:10px; }
.nav__hamburger { display:none; flex-direction:column; gap:5px; padding:8px; }
.nav__hamburger span { display:block; width:22px; height:1.5px; background:var(--text); border-radius:2px; transition:all .3s var(--ease); }
.nav__hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity:0; }
.nav__hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer { position:fixed; inset:0; background:var(--ivory); z-index:500; display:flex; flex-direction:column; padding:28px var(--pad) 48px; transform:translateX(100%); transition:transform .45s var(--ease-o); overflow-y:auto; }
.nav__drawer.open { transform:translateX(0); }
.nav__drawer-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:44px; }
.nav__drawer-close { font-size:1.5rem; color:var(--text-2); line-height:1; font-weight:300; }
.nav__drawer-links { display:flex; flex-direction:column; gap:2px; }
.nav__drawer-link { font-family:var(--display); font-size:clamp(1.2rem,4.5vw,1.8rem); font-weight:400; color:var(--text-2); padding:12px 0; border-bottom:1px solid var(--cream); letter-spacing:.05em; transition:all var(--t); }
.nav__drawer-link:hover,.nav__drawer-link.active { color:var(--green-600); padding-left:6px; }
.nav__drawer-footer { margin-top:auto; padding-top:40px; display:flex; flex-direction:column; gap:12px; }
.nav__drawer-contact { font-size:.82rem; color:var(--text-3); display:flex; flex-direction:column; gap:8px; }
.nav__drawer-contact a { color:var(--green-500); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:13px 30px; border-radius:var(--r-xl); font-family:var(--sans); font-size:.78rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; cursor:pointer; transition:all var(--t2); white-space:nowrap; border:none; }
.btn-primary { background:var(--earth-600); color:#FFFFFF; box-shadow:0 3px 18px rgba(138,64,24,.30); }
.btn-primary:hover { background:var(--earth-700); box-shadow:0 8px 28px rgba(138,64,24,.42); }
.btn-earth { background:var(--earth-500); color:#FFFFFF; box-shadow:0 3px 18px var(--earth-glow); }
.btn-earth:hover { background:var(--earth-700); }
.btn-gold { background:var(--gold-500); color:#FFFFFF; box-shadow:0 3px 18px var(--gold-glow); }
.btn-gold:hover { background:var(--gold-700); }
.btn-outline { background:transparent; color:var(--green-600); border:1.5px solid var(--green-line); }
.btn-outline:hover { background:var(--green-50); border-color:var(--green-400); }
.btn-outline-dark { background:transparent; color:var(--text); border:1.5px solid var(--cream); }
.btn-outline-dark:hover { background:var(--ivory-2); border-color:var(--linen); }
.btn-outline-light { background:transparent; color:#FFFFFF; border:1.5px solid rgba(255,255,255,.35); }
.btn-outline-light:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.65); }
.btn-dark { background:var(--text); color:#FFFFFF; }
.btn-dark:hover { background:var(--green-700); }
.btn-sm  { padding:9px 20px; font-size:.7rem; }
.btn-lg  { padding:16px 40px; font-size:.82rem; }
.btn-full { width:100%; }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee-bar { background:var(--mahogany); padding:12px 0; overflow:hidden; white-space:nowrap; }
.marquee-bar__track { display:inline-flex; animation:marquee 44s linear infinite; }
.marquee-bar__track:hover { animation-play-state:paused; }
.marquee-bar__item { font-size:.65rem; font-weight:600; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.55); padding:0 28px; }
.marquee-bar__sep { color:var(--earth-200); padding:0 10px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero { padding:clamp(110px,14vw,160px) var(--pad) clamp(56px,7vw,88px); background:var(--walnut); position:relative; overflow:hidden; text-align:center; }
.page-hero__photo { position:absolute; inset:0; object-fit:cover; width:100%; height:100%; opacity:.35; }
.page-hero__inner { position:relative; z-index:1; max-width:680px; margin:0 auto; }
.page-hero h1 { color:#FFFFFF; margin-bottom:16px; }
.page-hero p { color:rgba(255,255,255,.72); font-size:1.05rem; max-width:520px; margin:0 auto; }

/* ── Homepage Hero ────────────────────────────────────────── */
.hero { position:relative; overflow:hidden; min-height:100svh; display:flex; align-items:flex-end; padding-bottom:clamp(48px,8vw,88px); }
.hero__photo { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.hero__overlay { position:absolute; inset:0; background:linear-gradient(160deg,rgba(20,18,8,.72) 0%,rgba(20,18,8,.35) 55%,rgba(20,18,8,.60) 100%); }
.hero__content { position:relative; z-index:2; padding:0 var(--pad); max-width:var(--max-w); margin:0 auto; width:100%; }
.hero__tag { display:flex; align-items:center; gap:14px; margin-bottom:24px; }
.hero__tag::before { content:''; width:28px; height:1px; background:var(--gold-400); }
.hero__tag span { font-size:.65rem; font-weight:700; letter-spacing:.26em; text-transform:uppercase; color:var(--gold-200); }
.hero__title { color:#FFFFFF; margin-bottom:22px; max-width:780px; }
.hero__sub { font-family:var(--serif); font-size:clamp(.95rem,1.7vw,1.22rem); font-weight:300; color:rgba(255,255,255,.78); max-width:500px; line-height:1.85; margin-bottom:36px; }
.hero__actions { display:flex; gap:14px; flex-wrap:wrap; align-items:center; margin-bottom:56px; }
.hero__stats { display:flex; gap:40px; flex-wrap:wrap; }
.hero__stat-num { font-family:var(--display); font-size:1.9rem; font-weight:400; color:var(--gold-200); line-height:1; }
.hero__stat-lbl { font-size:.62rem; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.42); margin-top:5px; }

/* ── Section headers ──────────────────────────────────────── */
.sec-hdr { margin-bottom:clamp(36px,5vw,60px); }
.sec-hdr--center { text-align:center; }
.sec-hdr--center .sec-hdr__body { margin:0 auto; }
.sec-hdr__label { display:flex; align-items:center; gap:14px; margin-bottom:14px; }
.sec-hdr--center .sec-hdr__label { justify-content:center; }
.sec-hdr__label::before,.sec-hdr__label::after { content:''; width:20px; height:1px; background:var(--green-300); }
.sec-hdr__body { max-width:520px; margin-top:12px; color:var(--text-2); font-size:1rem; line-height:1.8; }

/* ── Cards ───────────────────────────────────────────────── */
.card { background:var(--bg-card); border:1px solid var(--border-2); border-radius:var(--r-lg); overflow:hidden; transition:all var(--t2); }
.card:hover { box-shadow:var(--sh-lg); transform:translateY(-4px); border-color:var(--green-line); }

/* Service card */
.svc-card { display:flex; flex-direction:column; }
.svc-card__thumb { aspect-ratio:16/9; overflow:hidden; background:var(--green-50); position:relative; }
.svc-card__thumb img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.card:hover .svc-card__thumb img { transform:scale(1.04); }
.svc-card__thumb--placeholder { display:flex; align-items:center; justify-content:center; }
.svc-card__thumb--1 { background:linear-gradient(135deg,var(--green-100),var(--green-200)); }
.svc-card__thumb--2 { background:linear-gradient(135deg,var(--earth-100),var(--earth-200)); }
.svc-card__thumb--3 { background:linear-gradient(135deg,var(--ivory-2),var(--cream)); }
.svc-card__body { padding:24px 26px; flex:1; display:flex; flex-direction:column; }
.svc-card__tags { display:flex; gap:8px; margin-bottom:10px; flex-wrap:wrap; }
.svc-card__price { font-family:var(--display); font-size:1.05rem; color:var(--gold-600); background:var(--gold-50); border:1px solid var(--gold-line); padding:3px 12px; border-radius:var(--r-xl); }
.svc-card__dur { font-size:.65rem; color:var(--text-3); letter-spacing:.12em; text-transform:uppercase; background:var(--ivory-2); padding:3px 10px; border-radius:var(--r-xl); }
.svc-card__name { font-family:var(--serif); font-size:1.2rem; color:var(--text); margin-bottom:8px; line-height:1.25; margin-top:2px; }
.svc-card__desc { font-size:.85rem; color:var(--text-2); line-height:1.72; flex:1; margin-bottom:14px; }
.svc-card__bens { display:flex; flex-direction:column; gap:5px; margin-bottom:18px; }
.svc-card__ben { display:flex; gap:8px; align-items:flex-start; font-size:.8rem; color:var(--text-3); line-height:1.45; }
.svc-card__ben::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--green-400); flex-shrink:0; margin-top:5px; }

/* Product card */
.product-card { display:flex; flex-direction:column; }
.product-card__thumb { aspect-ratio:4/5; overflow:hidden; background:var(--ivory-2); position:relative; }
.product-card__thumb img { width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .5s var(--ease); }
.card:hover .product-card__thumb img { transform:scale(1.04); }
.product-card__cat { position:absolute; top:12px; left:12px; background:rgba(255,255,255,.92); color:var(--green-700); font-size:.6rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; padding:3px 8px; border-radius:var(--r-sm); }
.product-card__body { padding:18px 20px; flex:1; display:flex; flex-direction:column; }
.product-card__name { font-family:var(--serif); font-size:.95rem; font-weight:500; color:var(--text); margin-bottom:6px; line-height:1.3; }
.product-card__size { font-size:.7rem; color:var(--text-3); letter-spacing:.1em; text-transform:uppercase; margin-bottom:8px; }
.product-card__ings-toggle { font-size:.65rem; color:var(--earth-600); font-weight:600; letter-spacing:.06em; text-transform:uppercase; cursor:pointer; background:none; border:none; padding:0; display:flex; align-items:center; gap:4px; margin-bottom:10px; transition:color var(--t); }
.product-card__ings-toggle:hover { color:var(--earth-700); }
.product-card__ings-toggle svg { transition:transform .25s; }
.product-card__ings-toggle.open svg { transform:rotate(180deg); }
.product-card__ings { display:none; font-size:.7rem; color:var(--text-3); line-height:1.6; margin-bottom:10px; padding:10px 12px; background:var(--ivory-2); border-radius:var(--r-sm); border:1px solid var(--cream); }
.product-card__ings.open { display:block; }
#productGrid { align-items:start; }
.product-card__foot { display:flex; align-items:center; justify-content:space-between; margin-top:auto; }
.product-card__price { font-family:var(--display); font-size:1.1rem; color:var(--gold-600); }

/* Offering card (homepage) */
.offer-card { padding:36px 30px; cursor:pointer; }
.offer-card__num { font-family:var(--display); font-size:2.8rem; color:var(--green-100); line-height:1; margin-bottom:18px; transition:color var(--t2); }
.card:hover .offer-card__num { color:var(--green-300); }
.offer-card__line { width:28px; height:1.5px; background:var(--green-400); margin-bottom:18px; transition:width var(--t2); }
.card:hover .offer-card__line { width:48px; }
.offer-card__title { font-family:var(--display); font-size:1rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:10px; color:var(--text); }
.offer-card__desc { font-size:.88rem; color:var(--text-2); line-height:1.7; margin-bottom:18px; }
.offer-card__link { display:inline-flex; align-items:center; gap:6px; font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color:var(--earth-600); font-weight:600; transition:gap var(--t); }
.card:hover .offer-card__link { gap:12px; }

/* Blog card */
.blog-card { display:flex; flex-direction:column; }
.blog-card__thumb { aspect-ratio:3/2; overflow:hidden; background:var(--green-50); }
.blog-card__thumb img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.card:hover .blog-card__thumb img { transform:scale(1.04); }
.blog-card__thumb--1 { background:linear-gradient(135deg,var(--green-50),var(--green-100)); }
.blog-card__thumb--2 { background:linear-gradient(135deg,var(--earth-50),var(--earth-100)); }
.blog-card__thumb--3 { background:linear-gradient(135deg,var(--ivory-2),var(--cream)); }
.blog-card__body { padding:22px 24px; flex:1; display:flex; flex-direction:column; }
.blog-card__cat { font-size:.62rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--earth-600); margin-bottom:7px; }
.blog-card__title { font-family:var(--serif); font-size:.9rem; color:var(--text); line-height:1.35; margin-bottom:8px; }
.blog-card__excerpt { font-size:.82rem; color:var(--text-2); line-height:1.65; margin-bottom:14px; flex:1; }
.blog-card__meta { display:flex; gap:12px; font-size:.7rem; color:var(--text-3); margin-top:auto; }

/* Testimonial card */
.tcard { padding:30px; }
.tcard__stars { color:var(--gold-500); font-size:.85rem; letter-spacing:3px; margin-bottom:14px; }
.tcard__quote { font-family:var(--serif); font-size:.9rem; font-weight:300; font-style:italic; color:var(--text-2); line-height:1.8; margin-bottom:22px; }
.tcard__author { display:flex; align-items:center; gap:12px; }
.tcard__avatar { width:36px; height:36px; border-radius:50%; background:var(--green-100); display:flex; align-items:center; justify-content:center; font-family:var(--display); font-size:.68rem; font-weight:600; color:var(--green-700); flex-shrink:0; border:1.5px solid var(--green-line); }
.tcard__name { font-weight:600; font-size:.82rem; color:var(--text); display:block; }
.tcard__loc { font-size:.72rem; color:var(--text-3); margin-top:2px; }

/* Dosha cards */
.dosha-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.dosha-card { padding:32px 24px; text-align:center; border-radius:var(--r-lg); border:1px solid; cursor:pointer; transition:all var(--t2); }
.dosha-card--vata  { background:#F0F4F8; border-color:#BDD0E4; }
.dosha-card--pitta { background:#FAF3EC; border-color:#E8C8A0; }
.dosha-card--kapha { background:#EFF5EA; border-color:#B4D4A4; }
.dosha-card:hover { transform:translateY(-5px); box-shadow:var(--sh); }
.dosha-card__name { font-family:var(--display); font-size:1.35rem; letter-spacing:.08em; margin-bottom:4px; display:block; }
.dosha-card--vata  .dosha-card__name { color:#2A5A8A; }
.dosha-card--pitta .dosha-card__name { color:#8A4A1A; }
.dosha-card--kapha .dosha-card__name { color:#2A5A2A; }
.dosha-card__el { display:block; font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; color:var(--text-3); margin-bottom:12px; }
.dosha-card__desc { font-size:.85rem; color:var(--text-2); line-height:1.65; }

/* Stats bar */
.stats-bar { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item { padding:36px 24px; text-align:center; border-right:1px solid var(--cream); }
.stat-item:last-child { border-right:none; }
.stat-num { font-family:var(--display); font-size:clamp(2rem,3.5vw,3rem); color:var(--earth-600); line-height:1; }
.stat-lbl { font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:var(--text-3); margin-top:8px; }

/* About visual */
.about-visual { border-radius:var(--r-lg); overflow:hidden; }
.about-visual img { width:100%; height:100%; object-fit:cover; display:block; }
.about-visual--aspect { aspect-ratio:3/4; }
.about-badge { background:rgba(255,255,255,.95); backdrop-filter:blur(8px); border:1px solid var(--green-line); border-radius:var(--r); padding:16px 20px; }

/* Credentials */
.cred-list { display:flex; flex-direction:column; gap:8px; }
.cred { display:flex; align-items:center; gap:12px; padding:12px 16px; background:var(--ivory-2); border-radius:var(--r-sm); border:1px solid var(--cream); font-size:.85rem; color:var(--text-2); transition:all var(--t); }
.cred:hover { border-color:var(--green-line); color:var(--text); }
.cred__icon { width:30px; height:30px; border-radius:var(--r-sm); background:var(--green-50); border:1px solid var(--green-line); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cred__icon svg { width:16px; height:16px; stroke:var(--green-500); fill:none; }
.cert-pills { display:flex; flex-wrap:wrap; gap:7px; }
.cert-pill { padding:5px 12px; background:var(--green-50); border:1px solid var(--green-line); border-radius:var(--r-xl); font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--green-700); }

/* Service tabs */
.tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:40px; padding-bottom:20px; border-bottom:1px solid var(--cream); }
.tab { padding:9px 20px; border-radius:var(--r-xl); border:1.5px solid var(--cream); font-size:.72rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--text-3); cursor:pointer; transition:all var(--t); background:transparent; }
.tab:hover { border-color:var(--green-line); color:var(--green-600); }
.tab.active { background:var(--earth-600); color:#FFFFFF; border-color:transparent; box-shadow:0 3px 16px rgba(138,64,24,.28); }
.tab-content { display:none; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:22px; }
.tab-content.active { display:grid; }

/* CTA Banner */
.cta-banner { background:var(--walnut); padding:clamp(64px,9vw,110px) var(--pad); text-align:center; position:relative; overflow:hidden; }
.cta-banner__photo { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.25; }
.cta-banner__inner { position:relative; z-index:1; max-width:620px; margin:0 auto; }
.cta-banner h2 { color:#FFFFFF; margin-bottom:14px; }
.cta-banner p { color:rgba(255,255,255,.70); font-size:1rem; margin-bottom:32px; }
.cta-banner__actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* Forms */
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-label { font-size:.68rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--text-3); }
.form-input,.form-select,.form-textarea { padding:12px 16px; background:var(--ivory-2); border:1.5px solid var(--cream); border-radius:var(--r-sm); font-size:.95rem; color:var(--text); transition:all var(--t); outline:none; width:100%; }
.form-input::placeholder,.form-textarea::placeholder { color:var(--text-3); }
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color:var(--green-400); background:#FFFFFF; box-shadow:0 0 0 3px var(--green-glow); }
.form-select { -webkit-appearance:none; cursor:pointer; }
.form-textarea { min-height:100px; resize:vertical; line-height:1.6; }
.form-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:0 16px; }
.form-full { grid-column:1/-1; }
.form-note { display:flex; align-items:flex-start; gap:10px; padding:12px 16px; background:var(--green-50); border:1px solid var(--green-line); border-radius:var(--r-sm); font-size:.78rem; color:var(--text-2); line-height:1.55; }
.form-note svg { width:16px; height:16px; stroke:var(--green-500); flex-shrink:0; margin-top:1px; fill:none; stroke-width:1.5; }

/* FAQ */
.faq-item { border-bottom:1px solid var(--cream); }
.faq-q { width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:20px 0; cursor:pointer; font-family:var(--serif); font-size:1rem; color:var(--text); line-height:1.4; transition:color var(--t); background:none; border:none; text-align:left; }
.faq-q:hover { color:var(--green-600); }
.faq-q svg { flex-shrink:0; stroke:var(--green-500); transition:transform .3s; }
.faq-item.open .faq-q svg { transform:rotate(180deg); }
.faq-icon { width:26px; height:26px; border-radius:50%; border:1.5px solid var(--cream); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all .3s var(--ease); }
.faq-icon svg { width:12px; height:12px; stroke:var(--green-500); transition:transform .3s; }
.faq-item.open .faq-icon { border-color:var(--green-400); background:var(--green-50); }
.faq-item.open .faq-icon svg { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .45s var(--ease-o),padding .3s; font-size:.88rem; color:var(--text-2); line-height:1.75; }
.faq-item.open .faq-a { max-height:600px; padding-bottom:18px; }

/* Quiz */
.quiz-shell { max-width:700px; margin:0 auto; }
.quiz-progress { margin-bottom:40px; }
.quiz-progress__header { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.quiz-progress__step { font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--text-3); }
.quiz-progress__track { height:2px; background:var(--cream); border-radius:2px; overflow:hidden; }
.quiz-progress__fill { height:100%; background:linear-gradient(90deg,var(--green-500),var(--green-300)); border-radius:2px; transition:width .5s var(--ease-o); }
.quiz-question { font-family:var(--serif); font-size:clamp(1.15rem,2.3vw,1.6rem); color:var(--text); margin-bottom:28px; line-height:1.4; }
.quiz-opts { display:flex; flex-direction:column; gap:10px; }
.quiz-opt { display:flex; align-items:flex-start; gap:14px; padding:16px 20px; border:1.5px solid var(--cream); border-radius:var(--r); cursor:pointer; transition:all var(--t); background:var(--bg-card); }
.quiz-opt:hover { border-color:var(--green-line); background:var(--green-50); }
.quiz-opt.selected { border-color:var(--green-400); background:var(--green-50); }
.quiz-opt__radio { width:18px; height:18px; border-radius:50%; border:2px solid var(--cream); flex-shrink:0; margin-top:2px; transition:all var(--t); display:flex; align-items:center; justify-content:center; }
.quiz-opt.selected .quiz-opt__radio { border-color:var(--green-500); background:var(--green-500); }
.quiz-opt.selected .quiz-opt__radio::after { content:''; width:6px; height:6px; border-radius:50%; background:#FFFFFF; }
.quiz-opt__text { font-family:var(--serif); font-size:1.1rem; color:var(--text-2); line-height:1.5; }
.quiz-opt.selected .quiz-opt__text { color:var(--text); }
.quiz-nav { display:flex; justify-content:space-between; align-items:center; margin-top:32px; }
.quiz-result { text-align:center; animation:fadeUp .6s var(--ease-o); }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
.quiz-result__badge { width:64px; height:64px; border-radius:50%; margin:0 auto 16px; display:flex; align-items:center; justify-content:center; }
.quiz-result__badge svg { width:32px; height:32px; }
.quiz-result__dosha { font-family:var(--display); font-size:clamp(2rem,5vw,4rem); letter-spacing:.08em; margin-bottom:6px; }
.quiz-result__sub { font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; color:var(--text-3); margin-bottom:36px; }
.result-bars { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:32px; }
.result-bar__name { font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:var(--text-3); margin-bottom:6px; }
.result-bar__track { height:4px; background:var(--cream); border-radius:2px; margin-bottom:4px; overflow:hidden; }
.result-bar__fill--vata  { height:100%; background:#5B9BD5; border-radius:2px; transition:width .8s var(--ease-o); }
.result-bar__fill--pitta { height:100%; background:#D5855B; border-radius:2px; transition:width .8s var(--ease-o); }
.result-bar__fill--kapha { height:100%; background:#5B9B6A; border-radius:2px; transition:width .8s var(--ease-o); }
.result-bar__pct { font-size:.68rem; color:var(--text-3); }
.result-info { background:var(--ivory-2); border:1px solid var(--cream); border-radius:var(--r); padding:24px; margin-bottom:16px; text-align:left; }
.result-info h4 { font-family:var(--serif); font-size:.95rem; color:var(--green-600); margin-bottom:12px; }
.result-traits { display:grid; grid-template-columns:1fr 1fr; gap:6px; }
.result-traits li { font-size:.8rem; color:var(--text-2); display:flex; gap:6px; align-items:flex-start; }
.result-traits li::before { content:''; width:4px; height:4px; border-radius:50%; background:var(--green-400); flex-shrink:0; margin-top:6px; }

/* Category pills */
.cat-pills { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:36px; }
.cat-pill { padding:7px 16px; border-radius:var(--r-xl); border:1.5px solid var(--cream); font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--text-3); cursor:pointer; transition:all var(--t); }
.cat-pill:hover,.cat-pill.active { background:var(--green-500); color:#FFFFFF; border-color:var(--green-500); }

/* Article / prose content */
.prose { max-width:760px; margin:0 auto; }
.prose h2 { font-family:var(--display); font-size:clamp(1.3rem,2.5vw,1.9rem); font-weight:400; color:var(--text); margin:44px 0 16px; letter-spacing:.02em; }
.prose h3 { font-family:var(--serif); font-size:clamp(1.1rem,2vw,1.4rem); color:var(--text); margin:32px 0 12px; }
.prose p { font-size:1rem; color:var(--text-2); line-height:1.85; margin-bottom:20px; }
.prose ul { margin:0 0 20px 0; display:flex; flex-direction:column; gap:8px; }
.prose li { font-size:.95rem; color:var(--text-2); line-height:1.75; padding-left:20px; position:relative; }
.prose li::before { content:''; position:absolute; left:0; top:10px; width:6px; height:6px; border-radius:50%; background:var(--green-400); }
.prose blockquote { border-left:3px solid var(--green-400); padding:16px 24px; background:var(--green-50); border-radius:0 var(--r-sm) var(--r-sm) 0; margin:28px 0; font-family:var(--serif); font-size:1.05rem; font-style:italic; color:var(--text-2); line-height:1.8; }
.article-meta { display:flex; gap:20px; align-items:center; flex-wrap:wrap; font-size:.75rem; color:var(--text-3); letter-spacing:.08em; text-transform:uppercase; margin-bottom:36px; }
.article-tag { display:inline-flex; padding:4px 12px; background:var(--earth-50); border:1px solid var(--earth-line); border-radius:var(--r-xl); font-size:.65rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--earth-600); }

/* Contact */
.contact-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:56px; align-items:start; }
.contact-info-item { display:flex; gap:14px; align-items:flex-start; margin-bottom:22px; }
.contact-info-icon { width:40px; height:40px; border-radius:var(--r-sm); background:var(--green-50); border:1px solid var(--green-line); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-info-icon svg { width:18px; height:18px; stroke:var(--green-500); fill:none; }
.contact-info-lbl { font-size:.62rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--text-3); margin-bottom:4px; }
.contact-info-val { font-size:.9rem; color:var(--text); }
.contact-info-val a { color:var(--green-600); transition:color var(--t); }
.contact-info-val a:hover { color:var(--green-700); }

/* Footer */
.footer { background:var(--timber); border-top:1px solid rgba(255,255,255,.04); }
.footer__main { padding:64px 0 48px; }
.footer__grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr; gap:48px; }
.footer__logo { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.footer__logo img { width:40px; height:40px; object-fit:contain; border-radius:8px; flex-shrink:0; }
.footer__logo-name,.footer__brand { font-family:var(--display); font-size:1.35rem; letter-spacing:.18em; color:#FFFFFF; text-transform:lowercase; }
.footer__tag { font-family:var(--serif); font-size:.75rem; color:var(--green-200); font-style:italic; letter-spacing:.1em; margin-bottom:14px; }
.footer__desc { font-size:.8rem; color:rgba(255,255,255,.42); line-height:1.7; margin-bottom:18px; }
.footer__badge { display:inline-flex; align-items:center; gap:6px; padding:4px 12px; background:rgba(61,99,56,.18); border:1px solid rgba(61,99,56,.30); border-radius:var(--r-xl); font-size:.62rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--green-200); margin-bottom:20px; }
.footer__socials { display:flex; gap:8px; }
.footer__soc { width:32px; height:32px; border-radius:var(--r-sm); background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; font-size:.78rem; transition:all var(--t); color:rgba(255,255,255,.45); font-family:var(--sans); }
.footer__soc:hover { background:var(--earth-600); border-color:var(--earth-600); color:#FFFFFF; }
.footer__col-title { font-size:.6rem; font-weight:700; letter-spacing:.24em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:16px; }
.footer__links { display:flex; flex-direction:column; gap:6px; }
.footer__link { font-size:.82rem; color:rgba(255,255,255,.38); transition:color var(--t); padding:4px 0; display:block; }
.footer__link:hover { color:var(--green-200); }
.footer__contact-item { display:flex; align-items:flex-start; gap:8px; font-size:.78rem; color:rgba(255,255,255,.38); margin-bottom:9px; }
.footer__contact-item a { color:var(--green-200); transition:color var(--t); }
.footer__contact-item a:hover { color:#FFFFFF; }
.footer__divider { height:1px; background:rgba(255,255,255,.05); }
.footer__bottom { padding:18px 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.footer__copy { font-size:.7rem; color:rgba(255,255,255,.28); }
.footer__legal { display:flex; gap:20px; flex-wrap:wrap; }
.footer__legal button,.footer__legal a { font-size:.7rem; color:rgba(255,255,255,.28); transition:color var(--t); background:none; border:none; cursor:pointer; }
.footer__legal button:hover,.footer__legal a:hover { color:var(--green-200); }
.footer__disclaimer { background:rgba(0,0,0,.12); padding:14px var(--pad); font-size:.68rem; color:rgba(255,255,255,.22); text-align:center; line-height:1.6; border-top:1px solid rgba(255,255,255,.04); }

/* ── Inquiry Cart ─────────────────────────────────────────── */
.cart-trigger { position:fixed; bottom:28px; right:28px; background:var(--earth-600); color:#FFFFFF; border:none; border-radius:var(--r-xl); padding:13px 22px; font-family:var(--sans); font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; cursor:pointer; z-index:100; display:flex; align-items:center; gap:10px; box-shadow:0 4px 24px rgba(138,64,24,.45); transition:all var(--t2); }
.cart-trigger:hover { background:var(--earth-700); transform:translateY(-2px); box-shadow:0 8px 32px rgba(138,64,24,.55); }
.cart-trigger.empty { display:none; }
.cart-count { background:var(--earth-500); color:#FFFFFF; width:22px; height:22px; border-radius:50%; font-size:.7rem; font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cart-overlay { position:fixed; inset:0; background:rgba(0,0,0,.4); z-index:300; opacity:0; pointer-events:none; transition:opacity var(--t2); }
.cart-overlay.open { opacity:1; pointer-events:all; }
.cart-panel { position:fixed; top:0; right:0; width:min(460px,95vw); height:100vh; background:#FFFFFF; z-index:400; transform:translateX(100%); transition:transform .45s var(--ease-o); display:flex; flex-direction:column; box-shadow:-6px 0 40px rgba(0,0,0,.12); }
.cart-panel.open { transform:translateX(0); }
.cart-panel__head { background:var(--mahogany); padding:22px 24px; display:flex; align-items:center; justify-content:space-between; flex-shrink:0; }
.cart-panel__title { font-family:var(--display); font-size:1rem; letter-spacing:.1em; color:#FFFFFF; }
.cart-panel__close { color:rgba(255,255,255,.6); font-size:1.2rem; cursor:pointer; transition:color var(--t); background:none; border:none; line-height:1; }
.cart-panel__close:hover { color:#FFFFFF; }
.cart-panel__body { flex:1; overflow-y:auto; padding:24px; }
.cart-panel__empty { text-align:center; padding:48px 24px; color:var(--text-3); font-size:.9rem; }
.cart-panel__empty p { margin-top:8px; font-size:.82rem; }
.cart-items { display:flex; flex-direction:column; gap:10px; margin-bottom:20px; }
.cart-item { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; padding:14px 16px; background:var(--ivory-2); border-radius:var(--r-sm); border:1px solid var(--cream); }
.cart-item__info { flex:1; }
.cart-item__name { font-size:1rem; font-weight:600; color:var(--text); margin-bottom:3px; }
.cart-item__type { font-size:.72rem; color:var(--text-3); letter-spacing:.08em; text-transform:uppercase; }
.cart-item__price { font-family:var(--display); font-size:.95rem; color:var(--gold-600); margin-right:8px; }
.cart-item__remove { color:var(--text-3); cursor:pointer; font-size:1rem; line-height:1; transition:color var(--t); background:none; border:none; padding:2px; }
.cart-item__remove:hover { color:var(--earth-600); }
.cart-panel__form { border-top:1px solid var(--cream); padding:20px 24px; background:var(--ivory-2); flex-shrink:0; }
.cart-panel__form h4 { font-family:var(--serif); font-size:1rem; margin-bottom:16px; color:var(--text); }

/* Services inquiry select */
.services-select { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:20px; }
.svc-option { border:1.5px solid var(--cream); border-radius:var(--r); padding:16px; cursor:pointer; transition:all var(--t); background:var(--ivory-2); }
.svc-option:hover { border-color:var(--green-line); }
.svc-option.selected { border-color:var(--green-400); background:var(--green-50); }
.svc-option__name { font-weight:600; font-size:.83rem; color:var(--text); display:block; margin-bottom:3px; }
.svc-option__price { font-family:var(--display); font-size:1rem; color:var(--gold-600); }

/* Modal */
.modal-overlay { position:fixed; inset:0; background:rgba(20,18,8,.65); backdrop-filter:blur(6px); z-index:600; display:none; align-items:center; justify-content:center; padding:20px; }
.modal-overlay.open { display:flex; }
.modal { background:#FFFFFF; border-radius:var(--r-lg); max-width:520px; width:100%; padding:40px; position:relative; max-height:85vh; overflow-y:auto; animation:fadeUp .4s var(--ease-o); box-shadow:var(--sh-lg); }
.modal__close { position:absolute; top:14px; right:14px; width:32px; height:32px; border-radius:50%; background:var(--ivory-2); border:1px solid var(--cream); display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--text-3); transition:all var(--t); cursor:pointer; }
.modal__close:hover { background:var(--cream); color:var(--text); }
.modal h3 { font-family:var(--serif); font-size:1.5rem; margin-bottom:10px; color:var(--text); }
.modal p,.modal li { font-size:.88rem; color:var(--text-2); line-height:1.75; margin-bottom:8px; }

/* Toast */
.toast { position:fixed; bottom:100px; right:28px; background:var(--walnut); color:#FFFFFF; border:1px solid var(--green-line); border-radius:var(--r); padding:13px 20px; font-size:.82rem; z-index:800; transform:translateY(60px); opacity:0; transition:all .4s var(--ease-o); box-shadow:var(--sh-lg); max-width:300px; line-height:1.5; }
.toast.show { transform:translateY(0); opacity:1; }

/* Collaboration */
.collab-card { padding:32px; border:1.5px solid var(--cream); border-radius:var(--r-lg); transition:all var(--t2); }
.collab-card:hover { border-color:var(--green-line); box-shadow:var(--sh); }
.collab-card__icon { width:44px; height:44px; border-radius:var(--r-sm); background:var(--green-50); border:1px solid var(--green-line); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.collab-card__icon svg { width:22px; height:22px; stroke:var(--green-500); fill:none; }
.collab-card h4 { font-family:var(--serif); font-size:1.1rem; margin-bottom:8px; color:var(--text); }
.collab-card p { font-size:.85rem; color:var(--text-2); line-height:1.65; }

/* Legal pages */
.legal-content { max-width:800px; margin:0 auto; padding:clamp(48px,8vw,96px) var(--pad); }
.legal-content h1 { font-family:var(--display); font-size:clamp(1.8rem,3vw,2.6rem); color:var(--text); margin-bottom:8px; }
.legal-content .legal-date { font-size:.78rem; color:var(--text-3); margin-bottom:48px; letter-spacing:.06em; }
.legal-content h2 { font-family:var(--display); font-size:1.1rem; color:var(--text); margin:36px 0 12px; letter-spacing:.06em; text-transform:uppercase; }
.legal-content h3 { font-family:var(--serif); font-size:1.05rem; color:var(--text); margin:24px 0 8px; }
.legal-content p { font-size:.92rem; color:var(--text-2); line-height:1.8; margin-bottom:16px; }
.legal-content ul { display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.legal-content li { font-size:.9rem; color:var(--text-2); line-height:1.72; padding-left:20px; position:relative; }
.legal-content li::before { content:''; position:absolute; left:0; top:8px; width:5px; height:5px; border-radius:50%; background:var(--green-400); }
.legal-content a { color:var(--green-600); text-decoration:underline; text-underline-offset:2px; }
.legal-content .notice-box { background:var(--earth-50); border:1px solid var(--earth-line); border-radius:var(--r); padding:20px 24px; margin:24px 0; }
.legal-content .notice-box p { margin-bottom:0; }

/* Scroll reveal */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .65s var(--ease-o),transform .65s var(--ease-o); }
.reveal.visible { opacity:1; transform:none; }
.reveal-left { opacity:0; transform:translateX(-28px); transition:opacity .65s var(--ease-o),transform .65s var(--ease-o); }
.reveal-left.visible { opacity:1; transform:none; }
.reveal-right { opacity:0; transform:translateX(28px); transition:opacity .65s var(--ease-o),transform .65s var(--ease-o); }
.reveal-right.visible { opacity:1; transform:none; }
.delay-1{transition-delay:.08s} .delay-2{transition-delay:.16s} .delay-3{transition-delay:.24s}
.delay-4{transition-delay:.32s} .delay-5{transition-delay:.40s}

/* ── Responsive ────────────────────────────────────────────── */
@media(max-width:1100px) {
  .nav__link { padding:9px 10px; font-size:.66rem; }
}
@media(max-width:1080px) {
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .stats-bar { grid-template-columns:repeat(2,1fr); }
  .footer__grid { grid-template-columns:1fr 1fr; gap:36px; }
}
@media(max-width:940px) {
  .nav__links,.nav__actions .btn-primary { display:none; }
  .nav__hamburger { display:flex; }
}
@media(max-width:860px) {
  .grid-2 { grid-template-columns:1fr; gap:36px; }
  .grid-3 { grid-template-columns:1fr; }
  .dosha-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; gap:36px; }
  .result-bars { grid-template-columns:1fr; }
  .result-traits { grid-template-columns:1fr; }
}
@media(max-width:640px) {
  :root { --pad:20px; }
  .grid-4 { grid-template-columns:1fr; }
  .stats-bar { grid-template-columns:1fr 1fr; }
  .footer__grid { grid-template-columns:1fr; gap:28px; }
  .tab-content.active { grid-template-columns:1fr; }
  .form-grid-2 { grid-template-columns:1fr; }
  .hero__actions { flex-direction:column; align-items:flex-start; }
  .cta-banner__actions { flex-direction:column; align-items:center; }
  .services-select { grid-template-columns:1fr; }
  .cart-trigger { bottom:20px; right:20px; padding:11px 18px; font-size:.68rem; }
}
