/* MS Psychiatry Clinic — v4 "Deep Teal Professional"
   Wide, mission-led medical layout. Navy/teal confidence, clean cards,
   no decorative motifs. Outfit headings + Hind Madurai body (Tamil-safe). */

:root {
  --navy: #2B2360;
  --navy-2: #201A4C;
  --teal: #0E8074;
  --teal-deep: #0A6259;
  --teal-tint: #E6F4F2;
  --page: #FFFFFF;
  --alt: #F4F7F8;
  --ink: #16232E;
  --body: #43525E;
  --muted: #6B7A86;
  --line: #E2E8EC;
  --line-dark: rgba(255, 255, 255, 0.14);
  --on-dark: #F4F8FA;
  --on-dark-muted: #A8B9C6;
  --star: #F0A92E;
  --wa: #1B8A5A;
  --cross: #D5392F;
  --danger: #C24438;
  --amber: #9C6D0F;
  --green-tint: #E4F3EC;
  --font-display: 'Outfit', 'Hind Madurai', system-ui, sans-serif;
  --font-body: 'Hind Madurai', 'Noto Sans Tamil', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 10px rgba(32, 26, 76, 0.06);
  --shadow: 0 16px 40px rgba(32, 26, 76, 0.12);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-group > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-deep); }
::selection { background: var(--teal-tint); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 820px; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--teal); color: #fff; padding: 10px 18px; z-index: 100; }
.skip-link:focus { left: 0; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: 1.12; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-size: clamp(40px, 5.4vw, 62px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin-bottom: 16px; }
h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.eyebrow {
  display: inline-block; font-family: var(--font-display);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); margin: 0 0 12px;
}
.eyebrow-light { color: #6ED0C5; }
.on-dark { color: var(--on-dark); }
.section-lede { font-size: 17.5px; color: var(--muted); margin: -4px 0 12px; max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-size: 15.5px; font-weight: 600;
  padding: 13px 24px; border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none;
  transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid #79C8BF; outline-offset: 2px; }
.btn-lg { font-size: 16.5px; padding: 16px 30px; }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(14, 128, 116, 0.3); }
.btn-primary:hover { background: var(--teal-deep); }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid var(--line-dark); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.35); }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { filter: brightness(1.07); }
.btn-outline { background: #fff; color: var(--teal-deep); border: 1.5px solid var(--teal); margin-top: 18px; }
.btn-outline:hover { background: var(--teal-tint); }

/* ---------- Top bar + header ---------- */
.topbar { background: var(--navy-2); color: var(--on-dark-muted); font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 7px 28px; max-width: var(--container); margin: 0 auto; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar .chip-status { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.topbar .chip-status .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.topbar .chip-status.is-open { color: #5ED4A0; }
.topbar .chip-status.is-closed { color: #E9C077; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 28px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-display); font-size: 19px; font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
.brand-sub { font-size: 11.5px; color: var(--muted); }
.site-nav { display: flex; gap: 26px; font-size: 15px; font-weight: 500; }
.site-nav a { color: var(--ink); text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; transition: color 0.15s ease, border-color 0.15s ease; }
.site-nav a:hover, .site-nav a.is-active { color: var(--teal-deep); border-bottom-color: var(--teal); }
.btn-call { padding: 11px 20px; }

.nav-toggle { display: none; background: none; border: none; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; padding: 8px 28px 20px; border-top: 1px solid var(--line); background: #fff; }
.mobile-nav a { padding: 13px 2px; text-decoration: none; color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav a.btn { border-bottom: none; margin-top: 14px; color: #fff; }
.mobile-nav.is-open { display: flex; }

/* ---------- Hero (wide, dark, mission-led) ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy-2) 8%, #332A73 55%, #0F5B54 135%);
  color: var(--on-dark);
  padding: 84px 0 88px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.hero-copy h1 { color: #fff; }
.hero-copy h1 .accent { color: #63D3C4; }
.hero-mission { font-size: 19px; line-height: 1.7; color: var(--on-dark-muted); margin: 0; max-width: 56ch; }
.hero-mission strong { color: #fff; font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; }
.hero-ctas.center { justify-content: center; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 28px; list-style: none; margin: 6px 0 0; padding: 0; font-size: 14px; color: var(--on-dark-muted); }
.trust-row li { display: flex; align-items: center; gap: 7px; }
.trust-row strong { color: #fff; }

.hero-card { position: relative; justify-self: end; width: min(430px, 100%); }
.hero-card-photo {
  margin: 0; background: #fff; border-radius: var(--radius-lg);
  padding: 12px 12px 0; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.hero-card-photo img { width: 100%; height: 430px; object-fit: cover; border-radius: 10px; }
.hero-card-name { display: flex; flex-direction: column; gap: 2px; padding: 14px 10px 16px; text-align: center; }
.hero-card-name .n { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--ink); }
.hero-card-name .q { font-size: 13.5px; font-weight: 600; color: var(--teal-deep); }
.hero-badge {
  position: absolute; top: -14px; left: -14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--ink); border-radius: 999px;
  font-size: 13px; font-weight: 700; padding: 9px 16px;
  box-shadow: var(--shadow);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.hero-badge.is-open .dot { background: #17A56F; animation: pulse 2s ease infinite; }
.hero-badge.is-closed .dot { background: var(--amber); }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(23, 165, 111, 0.45); } 50% { box-shadow: 0 0 0 6px rgba(23, 165, 111, 0); } }

/* ---------- Stats strip ---------- */
.stats-band { background: var(--page); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 28px 14px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat-value { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--navy); display: flex; align-items: center; gap: 7px; }
.stat-label { font-size: 13.5px; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--alt); }
.section-dark { background: var(--navy); color: var(--on-dark); }

/* ---------- Tabs (clean underline) ---------- */
.tabs { margin-top: 18px; }
.tablist { display: flex; gap: 30px; border-bottom: 2px solid var(--line); }
.tab {
  font-family: var(--font-display); font-size: 16.5px; font-weight: 700;
  color: var(--muted); background: none; border: none; cursor: pointer;
  padding: 12px 2px; margin-bottom: -2px; border-bottom: 3px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.tab:hover { color: var(--ink); }
.tab.is-active { color: var(--teal-deep); border-bottom-color: var(--teal); }
.tab:focus-visible { outline: 3px solid #79C8BF; outline-offset: 2px; border-radius: 4px; }
.tabpanel { padding-top: 28px; }
.tabpanel[hidden] { display: none; }

.condition-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.condition-card {
  background: var(--page); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; display: flex; flex-direction: column; gap: 6px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}
.condition-card:hover { border-color: #B9DED8; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.condition-card h3 { font-size: 16.5px; }
.condition-card h3 span[lang="ta"] { color: var(--teal-deep); font-weight: 600; }
.condition-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }
.panel-footnote { font-size: 13.5px; color: var(--muted); margin: 16px 2px 0; }
.conditions-note { margin: 26px 0 0; font-size: 15.5px; color: var(--body); }

/* ---------- Journey ---------- */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; list-style: none; margin: 30px 0 0; padding: 0; }
.journey-step {
  background: var(--page); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 10px;
}
.journey-step .step-num {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
}
.journey-step h3 { font-size: 17px; }
.journey-step p { margin: 0; font-size: 14.5px; color: var(--body); }

/* ---------- Why us (dark band) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.why-card { display: flex; flex-direction: column; gap: 10px; padding: 26px 22px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-dark); border-radius: var(--radius); }
.why-card svg { color: #63D3C4; }
.why-card h3 { color: #fff; font-size: 16.5px; }
.why-card p { margin: 0; font-size: 14px; color: var(--on-dark-muted); }

/* ---------- Online follow-up ---------- */
.online-strip {
  display: grid; grid-template-columns: 1.5fr auto; gap: 40px; align-items: center;
  background: var(--teal-tint); border: 1px solid #CBE7E2; border-radius: var(--radius-lg);
  padding: 44px 48px;
}
.online-strip h2 { margin-bottom: 10px; }
.online-strip p { margin: 0; font-size: 15.5px; color: var(--body); max-width: 62ch; }
.fine-inline { display: block; margin-top: 10px; font-size: 13.5px; color: var(--muted); }

/* ---------- Doctor ---------- */
.doctor-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.doctor-photo-wrap { margin: 0; position: relative; }
.doctor-photo-wrap img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.doctor-photo-wrap figcaption {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255, 255, 255, 0.95); border-radius: 9px;
  padding: 9px 15px; font-size: 13px; font-weight: 600; color: var(--ink);
}
.doctor-copy { display: flex; flex-direction: column; gap: 12px; }
.doctor-quals { font-family: var(--font-display); font-weight: 700; color: var(--teal-deep); font-size: 15px; margin: 0; }
.doctor-copy p { margin: 0; color: var(--body); }
.doctor-points { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.doctor-points li { position: relative; padding-left: 30px; font-size: 15px; color: var(--body); }
.doctor-points li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 5px;
  background-color: var(--teal-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 12.5l4 4 8-9' stroke='%230A6259' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* ---------- Timings + contact ---------- */
.timing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.timing-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 10px 0 24px; font-size: 15.5px; background: var(--page); }
.timing-table th, .timing-table td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--line); }
.timing-table tr:last-child th, .timing-table tr:last-child td { border-bottom: none; }
.timing-table th { font-weight: 600; color: var(--ink); }
.timing-table td { color: var(--body); text-align: right; font-weight: 600; }
.timing-table .closed { color: var(--danger); }
.contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; font-size: 15.5px; color: var(--body); }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.contact-list svg { color: var(--teal-deep); flex-shrink: 0; margin-top: 4px; }
.finding-note p { margin: 0 0 10px; font-size: 15.5px; color: var(--body); max-width: 54ch; }
.finding-transit { font-size: 14px !important; color: var(--muted) !important; }
.finding-photo { margin: 18px 0 0; }
.finding-photo img { width: 100%; height: 250px; object-fit: cover; border-radius: var(--radius); }
.finding-photo figcaption { font-size: 13.5px; color: var(--muted); margin-top: 10px; }

/* ---------- Reviews ---------- */
.rating-head { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.rating-head h2 { margin: 0; }
.stars { color: var(--star); font-size: 22px; letter-spacing: 3px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  margin: 0; background: var(--page); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-card p { margin: 0; font-size: 15px; color: var(--body); }
.review-card cite { font-style: normal; font-size: 13px; font-weight: 600; color: var(--muted); }
.review-cta { margin: 26px 0 0; font-size: 15.5px; color: var(--body); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.faq details { background: var(--page); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 22px; }
.faq details[open] { border-color: #B9DED8; }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--font-display); font-size: 16.5px; font-weight: 700;
  padding: 17px 0; cursor: pointer; list-style: none; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--teal); border-radius: 2px; transition: transform 0.2s ease; }
.faq-icon::before { left: 0; top: 8px; width: 18px; height: 2.4px; }
.faq-icon::after { left: 7.8px; top: 0; width: 2.4px; height: 18px; }
.faq details[open] .faq-icon::after { transform: scaleY(0); }
.faq details p { margin: 0 0 20px; font-size: 15px; color: var(--body); max-width: 64ch; }

/* ---------- CTA band / footer ---------- */
.bottom-cta { background: linear-gradient(150deg, var(--navy) 20%, #0F5B54 120%); color: #fff; text-align: center; padding: 80px 0; }
.bottom-cta h2 { color: #fff; margin-bottom: 8px; }
.bottom-cta p { color: var(--on-dark-muted); margin: 0 0 28px; font-size: 17px; }

.site-footer { background: var(--navy-2); color: var(--on-dark-muted); font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: 40px; padding: 48px 0 36px; }
.footer-col h3 { color: #fff; font-size: 15px; margin-bottom: 14px; letter-spacing: 0.02em; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand strong { color: #fff; font-family: var(--font-display); font-size: 17px; }
.footer-col p { margin: 0 0 8px; line-height: 1.6; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: var(--on-dark-muted); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 18px 0; font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---------- WhatsApp FAB & mobile action bar ---------- */
.whatsapp-fab {
  position: fixed; right: 20px; bottom: 22px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(27, 138, 90, 0.45);
  transition: transform 0.16s ease;
}
.whatsapp-fab:hover { transform: scale(1.07); }

.action-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(32, 26, 76, 0.12);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.action-bar a {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font-display); font-size: 14px; font-weight: 700; text-decoration: none;
  padding: 12px 6px; border-radius: 10px;
}
.action-call { background: var(--teal); color: #fff; }
.action-wa { background: var(--green-tint); color: var(--wa); }
.action-map { background: #EAF0F4; color: var(--navy); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-group > * { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal-group.is-visible > * { opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Design preview pill ---------- */
@media (max-width: 640px) {
  .design-pill { bottom: 86px !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero { padding: 56px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-card { justify-self: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .condition-grid { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .online-strip { grid-template-columns: 1fr; padding: 32px 28px; }
  .doctor-grid { grid-template-columns: 1fr; gap: 32px; }
  .doctor-photo-wrap img { height: 380px; }
  .timing-grid { grid-template-columns: 1fr; gap: 40px; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-nav, .btn-call { display: none; }
  .nav-toggle { display: block; }
  .topbar-loc { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero-ctas .btn { width: 100%; }
  .hero-card-photo img { height: 360px; }
  .hero-badge { left: 10px; }
  .condition-grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .tablist { gap: 18px; overflow-x: auto; }
  .tab { white-space: nowrap; font-size: 15px; }
  .action-bar { display: grid; }
  .whatsapp-fab { display: none; }
  body { padding-bottom: 74px; }
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.about-mission {
  font-family: var(--font-display); font-size: 22px; font-weight: 600; line-height: 1.45;
  color: var(--navy); margin: 10px 0 0;
  border-left: 4px solid var(--teal); padding-left: 22px;
}
.about-copy p { margin: 0 0 16px; color: var(--body); font-size: 16px; }
.about-photo { margin: 22px 0 0; }
.about-photo img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius); }
.about-photo figcaption { font-size: 13.5px; color: var(--muted); margin-top: 10px; }
@media (max-width: 1020px) { .about-grid { grid-template-columns: 1fr; gap: 26px; } }
