/* ==========================================================================
   Fatima Madhi Optometrist — design system
   Light & clinical-elegant: warm ivory, deep teal, soft gold.
   Mobile-first; breakpoints at 600 / 768 / 1024px.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg: #faf7f1;
  --bg-alt: #f2ede2;
  --surface: #ffffff;
  --ink: #20303a;
  --ink-soft: #55666f;
  --ink-faint: #7c8a92;

  --teal: #155e63;
  --teal-dark: #0d4145;
  --teal-ink: #eef5f4;
  --teal-soft: #e2efee;
  --teal-softer: #eef5f4;

  --gold: #b98a2f;
  --gold-dark: #9a6f1e;
  --gold-soft: #f6ecd8;

  --wa-green: #25d366;

  --border: #e7e0d1;
  --success: #2e7d5b;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(32, 48, 58, 0.06);
  --shadow-md: 0 10px 30px rgba(32, 48, 58, 0.09);
  --shadow-lg: 0 24px 60px rgba(32, 48, 58, 0.14);

  --font-head: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;

  --container: 1140px;
  --nav-h: 76px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 1.2em;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal-dark);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0;
  z-index: 200;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Layout utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: 4rem;
}

#visit-us {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

.section--alt {
  background: var(--bg-alt);
}


.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.section-head .lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Buttons ---------- */
.icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn svg {
  flex-shrink: 0;
}

.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--teal-dark);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--gold-dark);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--gold:hover {
  background: #855f18;
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn--outline:hover {
  background: var(--teal-soft);
}

.btn--light {
  background: #fff;
  color: var(--teal-dark);
}

.btn--light:hover {
  background: var(--teal-soft);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--lg {
  padding: 1rem 1.8rem;
  font-size: 1.02rem;
}


/* ---------- Header & navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand:hover {
  text-decoration: none;
}

.brand__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  display: block;
}

.brand__sub {
  display: block;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 2px;
}

.site-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-full);
  text-decoration: none;
}

.nav-link:hover,
.nav-link[aria-current='page'] {
  color: var(--teal-dark);
  background: var(--teal-soft);
  text-decoration: none;
}

.nav-link .caret {
  transition: transform 0.15s ease;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 230px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  list-style: none;
  margin: 0;
}

/* Desktop-only hover/focus dropdowns. On mobile these must not apply:
   touch taps trigger :hover, and the translateX(-50%) transform would shove
   the mobile submenu (position: static) off the left edge of the panel. */
@media (min-width: 768px) {
  .nav-item:hover .caret,
  .nav-item:focus-within .caret {
    transform: rotate(180deg);
  }

  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
}

.dropdown a:hover {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.header-cta {
  display: none;
}

/* Mobile menu */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--teal-dark);
  cursor: pointer;
}

.nav-toggle[aria-expanded='true'] .icon-open {
  display: none;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded='true'] .icon-close {
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  overflow-y: auto;
  padding: 1rem 1.25rem 5.5rem;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu .nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
}

.mobile-menu .nav-link {
  font-size: 1rem;
  padding: 0.7rem 0.75rem;
  justify-content: space-between;
  border-radius: var(--radius-sm);
}

.mobile-menu .dropdown {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  border: none;
  background: transparent;
  padding: 0 0 0.5rem 0.75rem;
  min-width: 0;
  display: none;
}

.mobile-menu .dropdown.is-open {
  display: block;
}

.mobile-menu .dropdown a {
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.mobile-menu__cta {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.mobile-menu__cta .btn {
  justify-content: center;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 3.5rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 340px at 85% -10%, rgba(185, 138, 47, 0.12), transparent 70%),
    radial-gradient(700px 420px at -10% 110%, rgba(21, 94, 99, 0.1), transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  text-decoration: none;
}

a.hero__eyebrow:hover {
  background: var(--teal);
  color: #fff;
  text-decoration: none;
}

.hero h1 {
  font-size: clamp(2.2rem, 6.5vw, 3.6rem);
  margin-bottom: 0.6em;
}

.hero h1 .accent {
  color: var(--teal);
}

.hero__lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 34em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero__note {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__media {
  position: relative;
}

.hero__photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.hero__badge {
  position: absolute;
  bottom: -1.1rem;
  left: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.hero__badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(46, 125, 91, 0.15);
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--teal-dark);
  color: #fff;
  padding-block: 1.6rem;
}

.trust-bar__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.trust-bar__item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4em;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0.8em;
}

.service-card .more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Info cards (eye health topics) */
.info-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.info-card {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.info-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4em;
  color: var(--teal-dark);
}

.info-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0.9em;
}

.info-card .more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.info-card:hover .more svg {
  transform: translateX(3px);
}

.info-card .more svg {
  transition: transform 0.15s ease;
}

/* ---------- About split ---------- */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split__media {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.about-quote {
  font-family: var(--font-head);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--teal-dark);
  border-left: 4px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 500;
}

.check-list svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- Hours & location ---------- */
.hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.hours-card__head {
  background: var(--teal);
  color: #fff;
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
}

.hours-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.hours-card td {
  padding: 0.95rem 1.6rem;
  border-bottom: 1px solid var(--border);
}

.hours-card tr:last-child td {
  border-bottom: none;
}

.hours-card td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--teal-dark);
}

.hours-card tr:last-child td:last-child {
  color: var(--gold-dark);
}

.hours-card__foot {
  padding: 0.9rem 1.6rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--teal-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.75rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 260px at 90% -20%, rgba(185, 138, 47, 0.25), transparent 70%),
    radial-gradient(420px 260px at 5% 120%, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 42em;
  margin-inline: auto;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding-block: 3rem 3.25rem;
}

.page-hero__inner {
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  margin-bottom: 0.4em;
}

.page-hero .lead {
  color: var(--ink-soft);
  font-size: 1.06rem;
  margin: 0;
}

.breadcrumb {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.9rem;
}

.breadcrumb a {
  color: var(--teal);
}

/* ---------- Article / prose ---------- */
.article {
  max-width: 780px;
}

.article h2 {
  font-size: 1.45rem;
  margin-top: 1.75em;
  color: var(--teal-dark);
}

.article h3 {
  font-size: 1.12rem;
  margin-top: 1.4em;
}

.article .lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.callout {
  background: var(--teal-soft);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.4rem;
  margin: 1.5rem 0;
}

.callout--gold {
  background: var(--gold-soft);
  border-left-color: var(--gold);
}

.callout p:last-child {
  margin-bottom: 0;
}

.notice {
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  color: #6b4f14;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  margin: 1.5rem 0;
}

.notice strong {
  color: var(--gold-dark);
}

/* ---------- Tip groups ---------- */

.tip-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 1.25rem 0 2.5rem;
}

.tip {
  display: flex;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.tip__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
}

.tip h3 {
  font-size: 1rem;
  margin: 0 0 0.25em;
  color: var(--teal-dark);
}

.tip p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ---------- Stat band ---------- */
.stat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  color: var(--teal);
  line-height: 1;
}

.stat__num .suffix {
  color: var(--gold-dark);
}

.stat__label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------- Photo grids & lightbox ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.photo-item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}

.photo-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.03);
}

.photo-item figcaption {
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.photo-grid--tall img {
  aspect-ratio: 3 / 4;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(13, 20, 24, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 960px);
  max-height: 78vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox__btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
}

.lightbox__prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- Contact cards ---------- */
.contact-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.contact-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.2em;
}

.contact-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.contact-card a {
  font-weight: 600;
}

/* ---------- Map ---------- */
.map-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-alt);
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-dark);
  color: #fff;
  padding-block: 3.5rem 6.5rem;
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1fr;
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 0.9rem;
}

.footer-brand .brand__sub {
  color: var(--gold);
}

.footer-brand p {
  max-width: 30em;
}

.footer-grid h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-grid a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer__hours {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer__hours .days {
  display: block;
  font-weight: 600;
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.footer__medical-aids {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

/* ---------- Mobile bottom bar ---------- */
.bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(32, 48, 58, 0.08);
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.65rem 0.25rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}

.bottom-bar a:hover {
  color: var(--teal);
}

.bottom-bar a[data-wa]:hover {
  color: var(--wa-green);
}

/* ---------- Reveal animation (only when JS is available) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.reveal-d4 {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------- 404 ---------- */
.error-page {
  text-align: center;
  padding-block: 5rem;
}

.error-page .code {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 1;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.error-page .code .slash {
  color: var(--gold);
}

/* ---------- Responsive ---------- */
@media (min-width: 600px) {
  .container {
    padding-inline: 1.75rem;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar__list {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .site-nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .bottom-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 3.5rem;
  }

  .hero {
    padding-block: 5rem;
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }

  .hero__media {
    margin-top: 1rem;
  }

  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .tip-list {
    grid-template-columns: 1fr 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-band {
    padding: 3.5rem 3rem;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-block: 5.5rem;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}
