/* ==========================================================================
   Safalya Mind and Body Clinic — styles
   Mobile-first. All colours are tokens on :root.
   ========================================================================== */

@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 400 600; font-display: swap; src: url(assets/fonts/fraunces.woff2) format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: italic; font-weight: 400; font-display: swap; src: url(assets/fonts/fraunces-italic.woff2) format("woff2"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 400 600; font-display: swap; src: url(assets/fonts/dm-sans.woff2) format("woff2"); }
@font-face { font-family: "Noto Sans Gujarati"; font-style: normal; font-weight: 400 600; font-display: swap; src: url(assets/fonts/noto-gujarati.woff2) format("woff2"); unicode-range: U+0951-0952, U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839; }

:root {
  --cream: #FBF6EE;
  --cream-2: #F4ECDF;
  --paper: #FFFDF9;
  --sage: #5E8B7E;
  --sage-deep: #2F5D54;
  --sage-darker: #1F413A;
  --sage-soft: #DCE8E1;
  --sage-mist: #EAF1EC;
  --slate: #1F2D35;
  --muted: #4E5C65;
  --line: #E6DDCF;
  --accent: #A94F33;        /* terracotta — CTAs (AA with white) */
  --accent-hover: #8F4029;
  --accent-soft: #F6E3D9;
  --amber: #C98A2B;         /* stars only */
  --wa: #1E7E4A;            /* WhatsApp green, darkened for AA */
  --open: #1E7A4C;
  --closed: #9A3B2A;

  --font-serif: "Fraunces", "Iowan Old Style", Georgia, "Noto Sans Gujarati", serif;
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans Gujarati", sans-serif;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(31, 45, 53, .05), 0 2px 8px rgba(31, 45, 53, .04);
  --shadow: 0 2px 6px rgba(31, 45, 53, .05), 0 12px 32px -8px rgba(47, 93, 84, .16);
  --shadow-lg: 0 24px 60px -18px rgba(47, 93, 84, .30);
  --header-h: 68px;
  --gutter: 16px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  margin: 0;
  background: var(--cream);
  color: var(--slate);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: var(--sage-deep); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--sage-darker); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; font-variation-settings: "SOFT" 50, "WONK" 0; }
h1 { font-size: clamp(2.35rem, 7.4vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 4.6vw, 2.75rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--sage-soft); }

.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.icon { width: 1.2em; height: 1.2em; flex: none; }
.muted-small { color: var(--muted); font-size: .92rem; }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 100;
  background: var(--sage-darker); color: #fff; padding: 10px 16px; border-radius: 10px; font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 12px; color: #fff; }

/* Placeholder tokens the client must supply — deliberately visible */
.ph {
  display: inline-block; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; font-weight: 500;
  color: #6B4A12; background: #FBEFD5; border: 1px dashed #C98A2B; border-radius: 6px; padding: 1px 7px; vertical-align: middle; letter-spacing: 0;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-deep);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent); }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 60ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: .75em 1.35em; border-radius: 999px; border: 1.5px solid transparent;
  font: 600 1rem/1.2 var(--font-sans); text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { min-height: 44px; padding: .55em 1.1em; font-size: .95rem; }
.btn-lg { min-height: 54px; padding: .9em 1.6em; font-size: 1.05rem; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px -8px rgba(169, 79, 51, .55); }
.btn-accent:hover { background: var(--accent-hover); color: #fff; }
.btn-outline { background: transparent; color: var(--sage-darker); border-color: var(--sage); }
.btn-outline:hover { background: var(--sage-mist); color: var(--sage-darker); }
.btn-light { background: var(--paper); color: var(--sage-darker); }
.btn-light:hover { background: #fff; color: var(--sage-darker); }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: #17663B; color: #fff; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 238, .88);
  -webkit-backdrop-filter: saturate(1.4) blur(12px); backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(31, 45, 53, .4); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--slate); }
.brand:hover { color: var(--slate); }
.brand-mark { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--sage-darker); }
.brand-sub { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.nav-toggle {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--paper); color: var(--slate); cursor: pointer;
}
.nav-toggle .icon { width: 24px; height: 24px; }
.nav-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: 0 20px 30px -24px rgba(31, 45, 53, .5);
  padding: 8px var(--gutter) 20px; display: none;
}
.nav-menu.open { display: block; }
.nav-links { list-style: none; margin: 0; padding: 0; }
.nav-links a { display: block; padding: 12px 4px; font-weight: 500; color: var(--slate); text-decoration: none; border-bottom: 1px solid var(--line); }
.nav-links a:hover { color: var(--sage-deep); }
.nav-actions { display: flex; gap: 10px; align-items: center; margin-top: 16px; }
.lang-toggle {
  min-height: 44px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper);
  font: 500 .95rem var(--font-sans); color: var(--sage-darker); cursor: pointer;
}
.lang-toggle:hover { border-color: var(--sage); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 36px 0 40px; }
.blob { position: absolute; pointer-events: none; z-index: 0; }
.blob-hero-1 { width: 620px; right: -260px; top: -180px; color: var(--sage-mist); }
.hero-grid { position: relative; z-index: 1; display: grid; gap: 32px; align-items: center; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--sage-deep); }
.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 56ch; margin-bottom: 1.6rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero-ctas .btn { flex: 1 1 220px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 8px 14px 8px 12px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line);
  color: var(--slate); text-decoration: none; font-size: .95rem; box-shadow: var(--shadow-sm);
}
.trust-badge:hover { color: var(--slate); border-color: var(--sage); }
.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.stars svg { width: 15px; height: 15px; }
@media (max-width: 380px) { .trust-badge { font-size: .88rem; padding-inline: 10px 12px; } .stars svg { width: 13px; height: 13px; } }

.hero-visual { position: relative; max-width: 320px; margin-inline: auto; width: 100%; }
.hero-art { aspect-ratio: 1; }
.hero-illustration { width: 100%; height: 100%; }
.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: var(--paper); border-radius: var(--radius); padding: 12px 16px; box-shadow: var(--shadow);
  font-size: .88rem; line-height: 1.3; color: var(--slate);
}
.float-card .icon { color: var(--accent); width: 26px; height: 26px; }
.float-card-1 { left: -4px; bottom: 16%; }
.float-card-2 { right: 0; top: 8%; flex-direction: column; align-items: flex-start; gap: 0; }
.fc-big { display: inline-flex; align-items: center; gap: 4px; font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; color: var(--sage-darker); }
.float-card .star-i { color: var(--amber); width: 20px; height: 20px; }

.facts {
  position: relative; z-index: 1; list-style: none; margin: 36px 0 0; padding: 18px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 12px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.facts li { display: flex; flex-direction: column; line-height: 1.3; }
.facts strong { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--sage-darker); }
.facts span { font-size: .88rem; color: var(--muted); }

/* ---------- sections ---------- */
.section { position: relative; padding: 72px 0; }
.section-head { max-width: 720px; margin-bottom: 36px; }

/* about */
.about { background: var(--paper); }
.about-grid { display: grid; gap: 40px; align-items: center; }
.about-photo { position: relative; max-width: 300px; margin-inline: auto; width: 100%; }
.photo-placeholder {
  aspect-ratio: 14 / 17; border-radius: 180px 180px var(--radius-lg) var(--radius-lg);
  background: linear-gradient(160deg, var(--sage-soft), #C4D9CF 60%, #B5CFC3);
  display: grid; place-items: center; align-content: center; gap: 14px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.photo-placeholder::after {
  content: ""; position: absolute; inset: auto -20% -30% -20%; height: 55%;
  background: radial-gradient(ellipse at 50% 0, rgba(255,255,255,.35), transparent 70%);
}
.monogram { font-family: var(--font-serif); font-size: 5rem; font-weight: 500; color: var(--sage-deep); line-height: 1; }
.leaf-deco { position: absolute; width: 64px; height: 64px; right: -6px; bottom: 24px; color: var(--accent); background: var(--accent-soft); border-radius: 50%; padding: 14px; box-shadow: var(--shadow-sm); }
.role { font-size: 1.05rem; font-weight: 600; color: var(--sage-deep); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pill-list { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--sage-mist); color: var(--sage-darker); font-size: .93rem; font-weight: 500; }
.pill-list .icon { color: var(--sage-deep); }
.video-note { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line); }
.video-note .icon { width: 28px; height: 28px; color: var(--accent); margin-top: 2px; }
.video-note p { margin: 0; font-size: .96rem; color: var(--muted); }
.video-note a { font-weight: 600; white-space: nowrap; }

/* conditions */
.card-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; grid-template-columns: 1fr; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px 18px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #D5E3DB; }
.card-icon { width: 44px; height: 44px; padding: 8px; border-radius: 14px; background: var(--sage-mist); color: var(--sage-deep); margin-bottom: 14px; }
.card h3 { margin-bottom: .35em; }
.card p { font-size: .96rem; color: var(--muted); margin: 0; }
.card-cta { background: var(--sage-deep); border-color: var(--sage-deep); color: #fff; display: flex; flex-direction: column; }
.card-cta h3 { color: #fff; }
.card-cta p { color: #E4EEE9; margin-bottom: 18px; }
.card-cta .btn { align-self: flex-start; margin-top: auto; }

/* approach */
.approach { background: var(--sage-darker); color: #EDF3F0; overflow: hidden; }
.approach .eyebrow { color: #BFD8CD; }
.approach h2 { color: #fff; }
.blob-approach { width: 700px; left: -300px; bottom: -380px; color: rgba(255, 255, 255, .04); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; counter-reset: s; position: relative; z-index: 1; }
.step { position: relative; padding: 24px; border-radius: var(--radius); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); }
.step-num { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--cream); color: var(--sage-darker); font-family: var(--font-serif); font-weight: 600; margin-bottom: 14px; }
.step h3 { color: #fff; }
.step p { margin: 0; color: #CFE0D8; font-size: .98rem; }

/* testimonials */
.quote-grid { display: grid; gap: 18px; }
.quote {
  margin: 0; position: relative; background: var(--paper); border-radius: var(--radius-lg); padding: 30px 26px 24px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.quote-mark { width: 34px; height: 28px; color: var(--sage-soft); margin-bottom: 12px; }
.quote blockquote { margin: 0 0 18px; font-family: var(--font-serif); font-size: 1.18rem; line-height: 1.5; color: var(--slate); flex: 1; }
.quote blockquote p { margin: 0; }
.quote figcaption { display: flex; flex-direction: column; font-size: .92rem; border-top: 1px solid var(--line); padding-top: 14px; }
.quote figcaption span { color: var(--muted); }
.reviews-more { margin-top: 28px; text-align: center; }
.fine-print { text-align: center; font-size: .85rem; color: var(--muted); margin-top: 14px; }

/* booking */
.booking { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.book-wrap { display: grid; gap: 36px; align-items: start; }
.book-steps { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.book-steps li { display: flex; align-items: center; gap: 14px; font-size: 1.05rem; }
.book-steps li > span:first-child {
  display: inline-grid; place-items: center; flex: none; width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--sage); color: var(--sage-deep); background: var(--paper);
  font-family: var(--font-serif); font-weight: 600;
}
.book-alt { margin: 26px 0 0; color: var(--muted); }
.book-alt a { font-weight: 600; }
.book-panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 22px 18px; }
.cal-inline { width: 100%; min-height: 560px; overflow: auto; border-radius: var(--radius); }
.cal-loading { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 240px; color: var(--muted); }
.spinner { width: 22px; height: 22px; border-radius: 50%; border: 3px solid var(--sage-soft); border-top-color: var(--sage-deep); animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.wa-form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; min-width: 0; margin: 0; padding: 0; border: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row-age { grid-template-columns: 5.5rem 1fr; }
.field label, .field legend { font-size: .9rem; font-weight: 600; color: var(--slate); padding: 0; }
.optional { font-weight: 400; color: var(--muted); }
.field input:not([type="radio"]), .field select {
  width: 100%; min-height: 50px; padding: 10px 14px; border-radius: 12px;
  background: var(--cream); color: var(--slate); border: 1.5px solid var(--line);
  font: 400 16px/1.3 var(--font-sans); appearance: none; -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field input[type="number"] { -moz-appearance: textfield; }
.field input::-webkit-outer-spin-button, .field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%232F5D54' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 38px;
}
.field input:not([type="radio"]):hover, .field select:hover { border-color: #D3C6B2; }
.field input:not([type="radio"]):focus, .field select:focus { outline: none; background-color: var(--paper); border-color: var(--sage); box-shadow: 0 0 0 4px rgba(94, 139, 126, .2); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--closed); }
.field input::placeholder { color: #85807A; }
.field input::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .7; }
.field select option:disabled { color: #A9A39A; }

.seg { display: grid; grid-template-columns: 1fr 1fr; min-height: 50px; padding: 4px; gap: 4px; border-radius: 12px; background: var(--cream); border: 1.5px solid var(--line); }
.seg input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.seg label { display: grid; place-items: center; text-align: center; border-radius: 9px; font-size: .88rem; font-weight: 500; color: var(--muted); cursor: pointer; line-height: 1.15; padding: 4px; transition: background-color .2s, color .2s; }
.seg input:checked + label { background: var(--sage-deep); color: #fff; box-shadow: var(--shadow-sm); }
.seg input:focus-visible + label { outline: 3px solid var(--accent); outline-offset: 2px; }

.btn-block { width: 100%; white-space: normal; text-align: center; }
@media (max-width: 420px) { .hide-sm { display: none; } }
.form-error { color: var(--closed); font-size: .92rem; font-weight: 500; margin: 0; }
.form-error:empty { display: none; }
.form-note { font-size: .85rem; color: var(--muted); text-align: center; margin: 0; }
html:not(.js) #wa-form { display: none; }
.form-notice { background: var(--accent-soft); color: #7A3622; border-radius: var(--radius-sm); padding: 10px 14px; font-size: .92rem; margin: 0 0 16px; }

/* visit */
.visit { background: var(--paper); }
.visit-grid { display: grid; gap: 36px; }
.info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.info-row .icon { color: var(--sage-deep); margin-top: 4px; }
.info-row a { font-weight: 600; }
.hours-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin: 28px 0 10px; }
.hours-head h3 { display: flex; align-items: center; gap: 8px; margin: 0; }
.hours-head h3 .icon { color: var(--sage-deep); }
.status-badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px; border-radius: 999px; font-size: .88rem; font-weight: 600; }
.status-badge:empty { display: none; }
.status-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.status-badge.is-open { background: #E1F1E7; color: var(--open); }
.status-badge.is-open::before { box-shadow: 0 0 0 0 rgba(30, 122, 76, .5); animation: pulse 2s infinite; }
.status-badge.is-closed { background: #F7E4DE; color: var(--closed); }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(30, 122, 76, 0); } 100% { box-shadow: 0 0 0 0 rgba(30, 122, 76, 0); } }
.hours { width: 100%; border-collapse: separate; border-spacing: 0; font-size: .98rem; }
.hours th, .hours td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.hours th { font-weight: 500; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.today th, .hours tr.today td { background: var(--sage-mist); font-weight: 600; color: var(--sage-darker); }
.hours tr.today th { border-radius: 10px 0 0 10px; }
.hours tr.today td { border-radius: 0 10px 10px 0; }
.today-tag { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; background: var(--sage-deep); color: #fff; padding: 2px 7px; border-radius: 6px; margin-left: 8px; vertical-align: 2px; }
.hours .is-closed-day td { color: var(--closed); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); min-height: 340px; background: var(--sage-mist); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* footer */
.site-footer { background: var(--slate); color: #D5DDE1; padding: 56px 0 110px; font-size: .96rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.footer-grid { display: grid; gap: 30px; margin-bottom: 30px; }
.footer-brand { font-family: var(--font-serif); font-size: 1.45rem; color: #fff; margin-bottom: 2px; }
.footer-gu { font-family: "Noto Sans Gujarati", var(--font-sans); color: #BFD8CD; margin-bottom: 14px; }
.footer-h { font-family: var(--font-sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: #BFD8CD; font-weight: 600; margin-bottom: 14px; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-list a { display: inline-flex; align-items: center; gap: 10px; min-height: 28px; }
.emergency { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius); padding: 14px 18px; color: #fff; }
.emergency a { text-decoration: underline; }
.copyright { font-size: .85rem; color: #AAB6BD; margin: 18px 0 0; }

/* floating WhatsApp (desktop) + mobile bar */
.fab-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 40; display: none;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(30, 126, 74, .6); transition: transform .2s;
}
.fab-whatsapp svg { width: 30px; height: 30px; }
.fab-whatsapp:hover { transform: scale(1.06); color: #fff; }
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 253, 249, .96); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -20px rgba(31, 45, 53, .5);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 6px; min-height: 48px; border-radius: 14px;
  font-weight: 600; font-size: .95rem; text-decoration: none; color: var(--sage-darker); background: var(--sage-mist);
}
.mobile-bar a:nth-child(2) { color: #17663B; background: #E3F2E9; }
.mobile-bar .mb-book { background: var(--accent); color: #fff; }

/* ---------- Gujarati mode ---------- */
html[lang="gu"] .hero h1, html[lang="gu"] .hero-sub, html[lang="gu"] .eyebrow, html[lang="gu"] .btn, html[lang="gu"] .mobile-bar, html[lang="gu"] .trust-badge {
  font-family: "Noto Sans Gujarati", var(--font-sans);
}
html[lang="gu"] .hero h1 { font-weight: 600; line-height: 1.3; font-size: clamp(2rem, 6.4vw, 3.5rem); }
html[lang="gu"] .hero h1 em { font-style: normal; }
html[lang="gu"] .eyebrow { letter-spacing: .02em; text-transform: none; font-size: .9rem; }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- breakpoints ---------- */
@media (min-width: 560px) {
  :root { --gutter: 24px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(4, 1fr); padding: 22px 26px; }
  .hero-ctas .btn { flex: 0 0 auto; }
}

@media (min-width: 768px) {
  .section { padding: 96px 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
  .book-panel { padding: 30px 30px 26px; }
}

@media (min-width: 960px) {
  :root { --header-h: 78px; --gutter: 32px; }
  .nav-toggle { display: none; }
  .nav-menu { position: static; display: flex !important; align-items: center; gap: 28px; padding: 0; background: none; border: 0; box-shadow: none; }
  .nav-links { display: flex; gap: 26px; }
  .nav-links a { border: 0; padding: 8px 0; font-size: .98rem; position: relative; }
  .nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transition: transform .25s; }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
  .nav-actions { margin: 0; }

  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 48px; }
  .hero-visual { max-width: 440px; }
  .about-photo { max-width: 420px; }
  .blob-hero-1 { width: 820px; right: -200px; top: -240px; }
  .about-grid { grid-template-columns: .8fr 1.2fr; gap: 72px; }
  .card-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .steps::before { content: ""; position: absolute; left: 24px; right: 24px; top: 47px; height: 1px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.3) 0 6px, transparent 6px 12px); z-index: -1; }
  .step { background: transparent; border: 0; padding: 24px 12px 0 24px; }
  .visit-grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
  .book-wrap { grid-template-columns: .85fr 1.15fr; gap: 64px; }
  .book-intro { position: sticky; top: calc(var(--header-h) + 32px); }
  .map-wrap iframe { min-height: 100%; }
  .mobile-bar { display: none; }
  .fab-whatsapp { display: grid; }
  .site-footer { padding-bottom: 56px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; }
}

@media (min-width: 1200px) {
  .card-grid { grid-template-columns: repeat(4, 1fr); }
}
