/* =========================================================================
   Genesis Dental Care Limited — Shared stylesheet
   Brand: navy #122A74 · teal #017C8B · green #059649 · gold #E0B24A · cream #F4F9FA
   Type:  Fraunces (display) + Inter (body)
   ========================================================================= */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  --navy:        #122A74;
  --navy-700:    #0d2058;
  --navy-900:    #091540;
  --teal:        #017C8B;
  --teal-600:    #016774;
  --green:       #059649;
  --green-600:   #047b3c;
  --gold:        #E0B24A;
  --gold-soft:   #f6e7c2;
  --cream:       #F4F9FA;

  --ink:         #16242b;        /* body text */
  --muted:       #5b6b72;        /* secondary text */
  --line:        #e2ebee;        /* borders */
  --white:       #ffffff;
  --tint:        #eef6f8;        /* teal-tinted surface */

  --radius:      14px;
  --radius-lg:   22px;
  --radius-pill: 999px;

  --shadow-sm:   0 1px 2px rgba(9,21,64,.06), 0 2px 8px rgba(9,21,64,.05);
  --shadow-md:   0 6px 24px rgba(9,21,64,.09);
  --shadow-lg:   0 18px 50px rgba(9,21,64,.16);

  --maxw:        1140px;
  --gutter:      clamp(1.1rem, 4vw, 2.5rem);
  --header-h:    74px;

  --font-body:   'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display:'Fraunces', Georgia, 'Times New Roman', serif;

  --ease:        cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-600); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

/* ---- Headings --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.45rem); }
p  { color: var(--muted); }
strong { color: var(--ink); }

/* ---- Layout helpers --------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 820px; }
.section { padding-block: clamp(3.5rem, 2.5rem + 5vw, 6.5rem); }
.section--tint { background: var(--tint); }
.section--cream { background: var(--cream); }
.narrow { max-width: 720px; }
.center { text-align: center; margin-inline: auto; }
.stack > * + * { margin-top: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.center .eyebrow::before { display: none; }

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: .75rem; font-size: 1.08rem; }
.lead { font-size: clamp(1.08rem, 1rem + 0.4vw, 1.25rem); color: var(--muted); }

/* ---- Skip link & focus ----------------------------------------------- */
.skip-link {
  position: absolute; left: 1rem; top: -3.5rem;
  background: var(--navy); color: #fff; padding: .65rem 1rem; border-radius: 10px;
  z-index: 1000; transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color: #fff; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .95rem 1.5rem; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(5,150,73,.28); }
.btn--primary:hover { background: var(--green-600); color: #fff; }
.btn--secondary { background: var(--navy); color: #fff; }
.btn--secondary:hover { background: var(--navy-700); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn--on-dark { background: #fff; color: var(--navy); }
.btn--on-dark:hover { background: var(--gold-soft); color: var(--navy-900); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }

/* ====================================================================== */
/*  HEADER / NAV                                                          */
/* ====================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,249,250,.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand-mark { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.02; }
.brand-name {
  font-family: var(--font-display); font-weight: 600; color: var(--navy);
  font-size: 1.16rem; letter-spacing: -.01em;
}
.brand-sub {
  font-family: var(--font-body); font-weight: 600; font-size: .6rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--teal); margin-top: .12rem;
}
.brand .sr-only-brand { position: absolute; }
@media (max-width: 400px) {
  .brand-sub { display: none; }
  .brand-name { font-size: 1.05rem; }
  .brand-mark { height: 40px; }
}
.nav-menu { display: flex; align-items: center; gap: 1.75rem; }
.nav-links {
  display: flex; align-items: center; gap: .35rem;
}
.nav-links a {
  color: var(--navy); font-weight: 500; font-size: .97rem;
  padding: .5rem .8rem; border-radius: 10px;
  position: relative; transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { background: var(--tint); color: var(--teal-600); }
.nav-links a[aria-current="page"] { color: var(--teal); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .25rem;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-cta { padding: .7rem 1.2rem; }

/* "Open now" status chip (filled in by main.js from build-time hours) */
.open-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 600; white-space: nowrap;
  padding: .45rem .85rem; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: #fff; color: var(--navy);
}
.open-chip .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.open-chip.is-open .dot { background: var(--green); box-shadow: 0 0 0 3px rgba(5,150,73,.18); }
.open-chip.is-closed .dot { background: #b9c6cc; }
.open-chip.is-closed { color: var(--muted); }
@media (max-width: 1080px) and (min-width: 881px) { .open-chip { display: none; } }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy); }
.nav-toggle .icon-close { display: none; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: grid; gap: .25rem; padding: 1rem var(--gutter) 1.5rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; align-items: stretch; gap: .1rem; }
  .nav-links a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav-links a[aria-current="page"]::after { left: 1rem; right: auto; width: 22px; bottom: .55rem; }
  .nav-actions { margin-top: .75rem; }
  .nav-cta { width: 100%; }
  body.nav-open { overflow: hidden; }
}

/* ====================================================================== */
/*  HERO                                                                  */
/* ====================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(110% 130% at 85% 0%, var(--teal) 0%, var(--navy) 52%, var(--navy-900) 100%);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 40% at 12% 90%, rgba(224,178,74,.18), transparent 70%),
    radial-gradient(30% 30% at 95% 85%, rgba(5,150,73,.20), transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 2rem + 8vw, 7rem);
}
.hero h1 { color: #fff; }
.hero .tagline {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem);
  margin-bottom: .6rem;
}
.hero p.lead { color: rgba(255,255,255,.82); margin-top: 1.1rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.2rem; }
.hero-meta li { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.9); font-size: .95rem; }
.hero-meta svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-card .logo-plate {
  background: #fff; border-radius: var(--radius); padding: 1.4rem 1.6rem;
  display: flex; align-items: center; justify-content: center;
}
.hero-card .logo-plate img { width: 100%; max-width: 250px; }
.hero-card h2 { color: #fff; font-size: 1.25rem; margin-top: 1.4rem; }
.hero-card ul { margin-top: 1rem; display: grid; gap: .7rem; }
.hero-card li { display: flex; gap: .6rem; color: rgba(255,255,255,.88); font-size: .95rem; }
.hero-card li svg { width: 20px; height: 20px; color: var(--green); flex: none; }

.wave-divider { display: block; width: 100%; height: auto; color: var(--cream); }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; max-width: 460px; }
}

/* ====================================================================== */
/*  CARDS / GRIDS                                                         */
/* ====================================================================== */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card h3 { margin-bottom: .4rem; }
.card p { font-size: .97rem; }

.feature .icon-badge { margin-bottom: 1.1rem; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d4e6ea; }

.icon-badge {
  width: 54px; height: 54px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--tint); color: var(--teal);
}
.icon-badge svg { width: 28px; height: 28px; }
.icon-badge--gold { background: var(--gold-soft); color: #9a7415; }
.icon-badge--green { background: #e3f6ec; color: var(--green-600); }
.icon-badge--navy { background: #e7ecfb; color: var(--navy); }

/* ---- Services ---- */
.service-card { display: flex; flex-direction: column; }
.service-card .icon-badge { margin-bottom: 1rem; }
.service-card h3 { font-size: 1.15rem; }

.service-group + .service-group { margin-top: clamp(2.5rem, 2rem + 2vw, 4rem); }
.service-group__head { display: flex; align-items: baseline; gap: .9rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.service-group__head h2 { font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem); }
.service-group__head .count { color: var(--muted); font-size: .9rem; }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--teal-600) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 1.5rem + 4vw, 4rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(35% 60% at 90% 10%, rgba(224,178,74,.25), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); margin: .8rem auto 1.6rem; max-width: 50ch; }
.cta-band .hero-actions { justify-content: center; margin-top: 0; }

/* ====================================================================== */
/*  CONTACT / HOURS / MAP / BOOKING                                       */
/* ====================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { display: grid; gap: 1.2rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list .icon-badge { width: 46px; height: 46px; flex: none; }
.info-list .icon-badge svg { width: 22px; height: 22px; }
.info-list .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.info-list .value { color: var(--ink); font-weight: 500; }
.info-list a.value { color: var(--teal); }
.info-list a.value:hover { color: var(--teal-600); text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th { text-align: left; }
.hours-table caption { text-align: left; font-family: var(--font-display); color: var(--navy); font-size: 1.2rem; margin-bottom: .8rem; font-weight: 600; }
.hours-table td, .hours-table th { padding: .65rem 0; border-bottom: 1px solid var(--line); font-size: .98rem; }
.hours-table tr:last-child td, .hours-table tr:last-child th { border-bottom: 0; }
.hours-table .day { color: var(--ink); font-weight: 500; }
.hours-table .time { text-align: right; color: var(--muted); }
.hours-table tr.is-today .day,
.hours-table tr.is-today .time { color: var(--teal-600); font-weight: 600; }
.hours-table tr.is-closed .time { color: #b23a48; }
.hours-note { margin-top: 1rem; font-size: .9rem; }

.map-embed {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); background: var(--tint);
  aspect-ratio: 16 / 10;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.booking-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); box-shadow: var(--shadow-md);
}
/* ---- Appointment request → WhatsApp ---- */
.booking-request {
  border: 2px dashed #c3d6db; border-radius: var(--radius);
  background: var(--tint); padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
}
.booking-request__lead { margin-bottom: 1.5rem; color: var(--muted); }

.booking-form { display: grid; gap: 1.1rem; }
.booking-form .field { display: grid; gap: .4rem; }
.booking-form label {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600; color: var(--navy);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%; font: inherit; color: var(--navy);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: .8rem 1rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.booking-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23133b52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; background-size: 16px; padding-right: 2.6rem; }
.booking-form textarea { resize: vertical; min-height: 110px; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(5,150,73,.15);
}
.booking-form__actions { display: flex; justify-content: center; margin-top: .25rem; }
.booking-form .disclaimer { text-align: center; }

/* ---- Steps (how booking works) ---- */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.steps li { display: flex; gap: 1rem; align-items: flex-start; }
.steps li::before {
  counter-increment: step; content: counter(step);
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 600;
  display: grid; place-items: center;
}
.steps h3 { font-size: 1.1rem; margin-bottom: .15rem; }
.steps p { font-size: .95rem; }

/* ---- FAQ accordion ---- */
.faq { display: grid; gap: .75rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 1.1rem 3rem 1.1rem 1.35rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.25rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--green);
  transition: transform .2s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 1.35rem 1.2rem; color: var(--muted); }
.faq-item a { font-weight: 600; }

/* ---- Reservation fee policy card ---- */
.policy-list { display: grid; gap: .7rem; }
.policy-list li {
  position: relative; padding-left: 1.6rem; font-size: .95rem; color: var(--muted);
}
.policy-list li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
}
.policy-list strong { color: var(--navy); }

/* ---- Sticky mobile action bar ---- */
.mobile-bar {
  display: none;
  position: fixed; inset: auto 0 0 0; z-index: 95;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(11,42,58,.12);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .95rem .5rem; font-weight: 600; font-size: .92rem; color: var(--navy);
}
.mobile-bar a + a { border-left: 1px solid var(--line); }
.mobile-bar svg { width: 19px; height: 19px; flex: none; }
.mobile-bar a:nth-child(2) svg { color: #25d366; }
.mobile-bar__cta { background: var(--green); color: #fff !important; }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  .wa-fab { display: none; }        /* the bar covers WhatsApp on phones */
  body { padding-bottom: 56px; }    /* keep footer content above the bar */
}

/* ---- WhatsApp floating button ---- */
.wa-fab {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .15s var(--ease), box-shadow .2s var(--ease);
}
.wa-fab:hover { color: #fff; transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 28px rgba(0,0,0,.3); }
.wa-fab svg { width: 30px; height: 30px; }
@media (max-width: 520px) { .wa-fab { right: 1rem; bottom: 1rem; width: 52px; height: 52px; } }

/* ---- About / values / placeholder ---- */
.value-card .icon-badge { margin-bottom: 1rem; }
.placeholder-box {
  border: 2px dashed var(--gold); background: var(--gold-soft);
  border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  color: #6b561e;
}
.placeholder-box .tag {
  display: inline-block; background: var(--gold); color: var(--navy-900);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 6px; margin-bottom: .8rem;
}
.placeholder-box h3 { color: #6b561e; }
.placeholder-box p { color: #7a6324; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.media-frame {
  border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--teal), var(--navy));
  aspect-ratio: 4/3; display: grid; place-items: center; color: rgba(255,255,255,.6);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame .ph { text-align: center; padding: 2rem; font-size: .9rem; }
.media-frame .ph svg { width: 48px; height: 48px; margin: 0 auto .6rem; color: rgba(255,255,255,.7); }

/* ====================================================================== */
/*  FOOTER                                                                */
/* ====================================================================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.78); }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 2rem;
  padding-block: clamp(3rem, 2rem + 3vw, 4.5rem);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img {
  height: 84px; width: auto; background: #fff; border-radius: 12px; padding: .6rem .7rem;
}
.footer-brand .tagline { font-family: var(--font-display); font-style: italic; color: var(--gold); margin-top: .9rem; }
.footer-brand p { color: rgba(255,255,255,.6); margin-top: .6rem; font-size: .92rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .55rem; font-size: .95rem; }
.footer-hours li { display: flex; justify-content: space-between; gap: 1rem; }
.footer-hours .time { color: #fff; white-space: nowrap; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: .2rem; }
.social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.social a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.social a:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }

/* ---- Breadcrumb / page hero (interior pages) ---- */
.page-hero {
  background: radial-gradient(120% 140% at 90% -10%, var(--teal) 0%, var(--navy) 55%, var(--navy-900) 100%);
  color: #fff; padding-block: clamp(2.6rem, 2rem + 4vw, 4.5rem);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(30% 50% at 10% 100%, rgba(224,178,74,.16), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.82); margin-top: .8rem; max-width: 60ch; }
.breadcrumb { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; display: flex; gap: .5rem; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-current] { color: var(--gold); }

/* ---- Utility ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.disclaimer { font-size: .85rem; color: var(--muted); }

/* ---- Reveal-on-scroll (progressive enhancement) ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

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

/* ---- Print ---- */
@media print {
  .site-header, .site-footer, .nav-toggle, .cta-band, .booking-request, .wa-fab, .mobile-bar { display: none !important; }
  body { background: #fff; }
}
