/* ============================================================
   Oral Hygiene Healthcare Centre — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
  /* Brand palette — drawn from the OHHC tooth logo */
  --teal-900:#063a40;
  --teal-800:#0a4d54;
  --teal-700:#0e7c86;
  --teal-600:#149aa6;
  --teal-500:#1fb2c0;
  --teal-400:#4fc7d6;
  --teal-100:#e3f6f8;
  --teal-50:#f2fbfc;

  --coral-600:#e0642f;
  --coral-500:#ef7b45;
  --coral-400:#f5985f;
  --coral-100:#fdece1;

  --ink-900:#15181a;
  --ink-800:#20242a;
  --ink-600:#4b545c;
  --ink-400:#7c868d;

  --cream-50:#fbf9f5;
  --cream-100:#f6f1e9;
  --white:#ffffff;

  --border:#e7e2d8;
  --shadow-sm: 0 2px 10px rgba(15,40,45,.06);
  --shadow-md: 0 10px 30px rgba(15,40,45,.10);
  --shadow-lg: 0 24px 60px rgba(15,40,45,.16);

  --font-display:'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink-800);
  background:var(--cream-50);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; font-size:1rem; }

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

section{ position:relative; }

/* ---------- Typography ---------- */
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--teal-900);
  line-height:1.12;
  margin:0 0 .5em;
  font-weight:600;
  letter-spacing:-.01em;
}
h1{ font-size:clamp(2.4rem, 4.6vw, 3.9rem); font-weight:600; }
h2{ font-size:clamp(1.9rem, 3.2vw, 2.7rem); }
h3{ font-size:clamp(1.25rem, 2vw, 1.55rem); }
p{ margin:0 0 1em; color:var(--ink-600); }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.74rem;
  color:var(--coral-600);
  margin-bottom:14px;
}
.eyebrow::before{
  content:'';
  width:26px; height:2px;
  background:var(--coral-500);
  display:inline-block;
}
.lede{ font-size:1.14rem; max-width:56ch; }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

.text-accent{ font-weight:700; color:var(--teal-700); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  border-radius:100px;
  font-weight:600;
  font-size:.98rem;
  border:1.5px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; flex-shrink:0; }
.btn-primary{
  background:linear-gradient(135deg, var(--teal-600), var(--teal-800));
  color:var(--white);
  box-shadow:0 10px 24px rgba(10,77,84,.28);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 16px 30px rgba(10,77,84,.34); }
.btn-accent{
  background:linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color:var(--white);
  box-shadow:0 10px 24px rgba(224,100,47,.30);
}
.btn-accent:hover{ transform:translateY(-2px); box-shadow:0 16px 30px rgba(224,100,47,.36); }
.btn-ghost{
  background:transparent;
  border-color:rgba(255,255,255,.55);
  color:var(--white);
}
.btn-ghost:hover{ background:rgba(255,255,255,.12); }
.btn-outline{
  background:transparent;
  border-color:var(--teal-700);
  color:var(--teal-800);
}
.btn-outline:hover{ background:var(--teal-700); color:var(--white); }
.btn-block{ width:100%; }
.btn:disabled{ opacity:.45; cursor:not-allowed; transform:none !important; }

/* ---------- Nav ---------- */
.site-header{
  position:relative; z-index:100;
  background:rgba(251,249,245,.86);
  backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 28px;
  max-width:var(--container); margin:0 auto;
}
.nav-brand{ display:flex; align-items:center; gap:12px; }
.nav-brand img{ height:108px; width:auto; }
@media (max-width:640px){ .nav-brand img{ height:80px; } }

.nav-links{ display:flex; align-items:center; gap:2px; }
.nav-links a{
  padding:10px 16px;
  font-weight:500;
  font-size:.95rem;
  color:var(--ink-700, var(--ink-800));
  border-radius:100px;
  transition:background .2s, color .2s;
}
.nav-links a:hover{ background:var(--teal-100); color:var(--teal-800); }
.nav-links a.active{ background:var(--teal-700); color:var(--white); }

.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-phone{ display:flex; align-items:center; gap:8px; font-weight:600; font-size:.9rem; color:var(--teal-800); }
.nav-phone svg{ width:16px; height:16px; color:var(--coral-600); }

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--white);
  align-items:center; justify-content:center;
}
.nav-toggle svg{ width:20px; height:20px; color:var(--teal-800); }

@media (max-width: 900px){
  .nav-phone{ display:none; }
  .nav-links{
    position:absolute; top:calc(100% + 10px); left:16px; right:16px;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-lg);
    flex-direction:column; align-items:stretch;
    padding:10px;
    gap:8px;
    display:none;
    z-index:200;
  }
  .nav-links.open{ display:flex; animation:navDropIn .2s ease; }
  .nav-links li{ display:block; }
  .nav-links a{
    display:block; text-align:left; padding:14px 16px; font-size:1rem;
    border-radius:10px;
  }
  .nav-toggle{ display:inline-flex; }
}
@keyframes navDropIn{ from{ opacity:0; transform:translateY(-8px); } to{ opacity:1; transform:none; } }

/* ---------- Services dropdown ---------- */
.has-dropdown{ position:relative; }
.dropdown-toggle{
  display:flex; align-items:center; gap:6px;
  width:100%;
  padding:10px 16px;
  font-family:inherit;
  font-weight:500;
  font-size:.95rem;
  color:var(--ink-800);
  background:none;
  border:none;
  border-radius:100px;
  transition:background .2s, color .2s;
}
.dropdown-toggle:hover{ background:var(--teal-100); color:var(--teal-800); }
.dropdown-toggle.active{ background:var(--teal-700); color:var(--white); }
.dropdown-toggle .chev{ width:12px; height:12px; flex-shrink:0; transition:transform .2s ease; }
.has-dropdown.open .dropdown-toggle .chev{ transform:rotate(180deg); }

.dropdown-menu{ display:none; list-style:none; margin:0; padding:0; }
.dropdown-menu a{ font-weight:500; }

@media (min-width:901px){
  .nav-links{ overflow:visible; }
  .dropdown-toggle{ width:auto; justify-content:center; }
  .dropdown-menu{
    position:absolute; top:100%; left:0; margin-top:8px;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-lg);
    min-width:200px;
    padding:8px;
    z-index:200;
  }
  /* Invisible bridge over the visual gap so the mouse never leaves the
     hoverable area while moving from the toggle down into the menu. */
  .dropdown-menu::before{
    content:''; position:absolute; left:0; right:0; top:-8px; height:8px;
  }
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown.open .dropdown-menu{ display:block; }
  .dropdown-menu li a{ display:block; padding:10px 14px; border-radius:10px; font-size:.9rem; }
}

@media (max-width:900px){
  .has-dropdown.open .dropdown-menu{ display:block; }
  .dropdown-menu{ padding:2px 0 2px 14px; }
  .dropdown-menu li a{ display:block; padding:11px 16px; font-size:.92rem; color:var(--ink-600); }
}

/* ---------- Icon badge ---------- */
.icon-wrap{
  width:64px; height:64px;
  border-radius:20px;
  display:flex; align-items:center; justify-content:center;
  background:var(--teal-100);
  color:var(--teal-700);
  flex-shrink:0;
}
.icon-wrap svg{ width:30px; height:30px; stroke:currentColor; }
.icon-wrap.lg{ width:80px; height:80px; border-radius:24px; }
.icon-wrap.lg svg{ width:38px; height:38px; }
.icon-wrap.coral{ background:var(--coral-100); color:var(--coral-600); }
.icon-wrap.dark{ background:var(--teal-800); color:var(--teal-100); }

/* ---------- Cards ---------- */
.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:34px;
  box-shadow:var(--shadow-sm);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--teal-400); }

.badge{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white);
  border:1px solid var(--border);
  padding:9px 16px;
  border-radius:100px;
  font-size:.82rem;
  font-weight:600;
  color:var(--teal-800);
  box-shadow:var(--shadow-sm);
}
.badge svg{ width:16px; height:16px; color:var(--coral-600); }

/* ---------- Grids ---------- */
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center; }
.hero-grid > *{ min-width:0; }
@media (max-width:900px){ .hero-grid{ grid-template-columns:1fr; gap:44px; } }

.grid{ display:grid; gap:28px; }
.grid > *{ min-width:0; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-6{ grid-template-columns:repeat(6,1fr); }
@media (max-width: 980px){
  .grid-3,.grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-6{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width: 620px){
  .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; }
  .grid-6{ grid-template-columns:repeat(2,1fr); }
}

.section{ padding:100px 0; }
.section-sm{ padding:60px 0; }
@media (max-width:768px){
  .section{ padding:70px 0; }
}
.section-dark{ background:var(--teal-900); color:var(--teal-50); }
.section-dark h2, .section-dark h3{ color:var(--white); }
.section-dark p{ color:rgba(232,246,247,.78); }
.section-tint{ background:var(--teal-50); }
.section-cream{ background:var(--cream-100); }

.divider-tooth{
  display:flex; align-items:center; justify-content:center;
  gap:14px; margin:0 auto 20px;
}
.divider-tooth span{ width:44px; height:1px; background:var(--border); }
.divider-tooth svg{ width:22px; height:22px; color:var(--teal-500); }

/* ---------- Hero shapes ---------- */
.blob-bg{
  position:absolute; inset:0; overflow:hidden; z-index:0; pointer-events:none;
}
.blob-bg svg{ position:absolute; }

/* ---------- Footer ---------- */
.site-footer{
  background:var(--ink-900);
  color:rgba(255,255,255,.7);
  padding:70px 0 0;
}
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px;
  padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.1);
}
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.footer-brand img{ height:112px; width:auto; }
.site-footer h4{ color:var(--white); font-family:var(--font-body); font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; font-weight:600; margin-bottom:18px; }
.site-footer a{ color:rgba(255,255,255,.68); font-size:.94rem; transition:color .2s; }
.site-footer a:hover{ color:var(--teal-400); }
.footer-links li{ margin-bottom:11px; }
.footer-contact li{ display:flex; gap:10px; margin-bottom:14px; font-size:.92rem; align-items:flex-start; }
.footer-contact svg{ width:17px; height:17px; color:var(--coral-500); flex-shrink:0; margin-top:2px; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding:24px 0; font-size:.82rem; color:rgba(255,255,255,.45); gap:16px; flex-wrap:wrap;
}
.footer-credentials{ display:flex; gap:10px; flex-wrap:wrap; }
.footer-credentials span{
  border:1px solid rgba(255,255,255,.18); border-radius:100px; padding:6px 14px; font-size:.76rem; color:rgba(255,255,255,.65);
}
.footer-legal{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.footer-legal a{ color:rgba(255,255,255,.55); font-size:.82rem; }
.footer-legal a:hover{ color:var(--teal-400); }
.footer-legal span{ color:rgba(255,255,255,.3); }

/* ---------- Legal / policy pages ---------- */
.legal-layout{ display:grid; grid-template-columns:220px 1fr; gap:50px; align-items:start; }
@media (max-width:880px){ .legal-layout{ grid-template-columns:1fr; } }

.legal-toc{ position:sticky; top:110px; }
@media (max-width:880px){ .legal-toc{ display:none; } }
.legal-toc-label{ font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; font-weight:600; color:var(--ink-400); margin-bottom:14px; }
.legal-toc nav{ display:grid; border-left:2px solid var(--border); }
.legal-toc a{ display:block; padding:7px 0 7px 16px; font-size:.85rem; color:var(--ink-600); border-left:2px solid transparent; margin-left:-2px; transition:color .2s ease, border-color .2s ease; }
.legal-toc a:hover{ color:var(--teal-700); border-left-color:var(--teal-400); }

.legal-content{
  max-width:680px; background:var(--white); border:1px solid var(--border);
  border-radius:24px; padding:48px 52px; box-shadow:var(--shadow-sm);
}
@media (max-width:600px){ .legal-content{ padding:34px 26px; } }
.legal-content .meta{ color:var(--ink-400); font-size:.86rem; margin-bottom:2.4em; padding-bottom:1.8em; border-bottom:1px solid var(--border); }
.legal-content h2{
  font-size:1.28rem; font-weight:600; color:var(--teal-900);
  margin-top:2.4em; margin-bottom:.7em; padding-top:2em; border-top:1px solid var(--border);
  scroll-margin-top:110px;
}
.legal-content h2:first-of-type{ margin-top:0; padding-top:0; border-top:none; }
.legal-content h3{ font-size:1.05rem; color:var(--teal-800); margin-top:1.6em; margin-bottom:.5em; }
.legal-content p{ line-height:1.75; }
.legal-content ul{ list-style:disc; padding-left:1.3em; margin:0 0 1.2em; }
.legal-content ul li{ margin-bottom:.55em; line-height:1.65; color:var(--ink-600); }
.legal-content a{ color:var(--teal-700); text-decoration:underline; text-underline-offset:2px; }

.legal-help-card{
  max-width:680px; margin-top:32px; display:flex; gap:18px; align-items:center;
  background:var(--cream-100); border:1px solid var(--border); border-radius:20px; padding:26px 30px;
}
@media (max-width:560px){ .legal-help-card{ flex-direction:column; align-items:flex-start; } }

/* ---------- Utilities ---------- */
.flex{ display:flex; }
.flex-center{ display:flex; align-items:center; }
.gap-10{ gap:10px; } .gap-16{ gap:16px; } .gap-24{ gap:24px; }
.mt-0{ margin-top:0 !important; }
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

.pill-row{ display:flex; flex-wrap:wrap; gap:12px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  background:linear-gradient(160deg, var(--teal-900), var(--teal-800) 60%, var(--teal-700));
  color:var(--white);
  padding:130px 0 90px;
  position:relative;
  overflow:hidden;
}
.page-hero .eyebrow{ color:var(--coral-400); }
.page-hero .eyebrow::before{ background:var(--coral-400); }
.page-hero h1{ color:var(--white); }
.page-hero p{ color:rgba(232,246,247,.82); }
.page-hero .breadcrumb{ display:flex; gap:8px; align-items:center; font-size:.85rem; color:rgba(255,255,255,.6); margin-bottom:20px; }
.page-hero .breadcrumb a:hover{ color:var(--white); }

/* ---------- Forms ---------- */
.field{ margin-bottom:20px; }
.field label{ display:block; font-weight:600; font-size:.86rem; margin-bottom:8px; color:var(--teal-900); }
.field input, .field select, .field textarea{
  width:100%; padding:14px 16px; border-radius:12px;
  border:1.5px solid var(--border); background:var(--white);
  transition:border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--teal-500); box-shadow:0 0 0 4px var(--teal-100);
}
.field textarea{ resize:vertical; min-height:120px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:600px){ .field-row{ grid-template-columns:1fr; } }

/* ---------- Misc ---------- */
.tag{
  display:inline-block; padding:5px 13px; border-radius:100px; font-size:.72rem;
  font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  background:var(--teal-100); color:var(--teal-700);
}
.tag.coral{ background:var(--coral-100); color:var(--coral-600); }

.stat{ text-align:center; }
.stat .num{ font-family:var(--font-display); font-size:clamp(2.1rem,4vw,3.1rem); color:var(--white); font-weight:600; }
.stat .label{ font-size:.85rem; letter-spacing:.05em; text-transform:uppercase; color:rgba(255,255,255,.68); margin-top:6px; }

/* ---------- CEO / professional portrait ---------- */
.portrait-frame{
  position:relative;
  max-width:420px;
  margin:0 auto;
}
.portrait-frame::before{
  content:'';
  position:absolute;
  inset:-22px -22px auto auto;
  width:78%; height:78%;
  background:linear-gradient(140deg, var(--teal-500), var(--teal-800));
  border-radius:32px;
  z-index:0;
}
.portrait-frame::after{
  content:'';
  position:absolute;
  left:-18px; bottom:-18px;
  width:56%; height:40%;
  border:3px solid var(--coral-400);
  border-radius:26px;
  z-index:0;
}
.portrait-photo{
  position:relative;
  z-index:1;
  aspect-ratio: 4 / 5;
  overflow:hidden;
  border-radius:28px;
  box-shadow:var(--shadow-lg);
  border:6px solid var(--white);
  background:var(--teal-800);
}
.portrait-photo img{
  width:100%; height:100%;
  object-fit:cover;
  object-position: 50% 15%;
  transform:scale(1.06);
  filter:contrast(1.1) saturate(1.05) brightness(1.06) sepia(.06);
}
.portrait-photo .portrait-tint{
  position:absolute; inset:0;
  background:linear-gradient(185deg, rgba(6,58,64,0) 55%, rgba(6,58,64,.75) 100%),
             linear-gradient(120deg, rgba(20,154,166,.16), rgba(224,100,47,.10));
  mix-blend-mode:normal;
}
.portrait-caption{
  position:absolute; z-index:2; left:22px; right:22px; bottom:20px;
  color:var(--white);
}
.portrait-caption .name{ font-family:var(--font-display); font-size:1.35rem; font-weight:600; margin-bottom:2px; }
.portrait-caption .role{ font-size:.82rem; letter-spacing:.06em; text-transform:uppercase; color:var(--teal-100); opacity:.9; }
.portrait-badge{
  position:absolute; z-index:2; top:-16px; right:-16px;
  background:var(--white);
  border-radius:18px;
  box-shadow:var(--shadow-md);
  padding:14px 18px;
  text-align:center;
  border:1px solid var(--border);
}
.portrait-badge .n{ font-family:var(--font-display); font-size:1.5rem; color:var(--coral-600); font-weight:600; line-height:1; }
.portrait-badge .t{ font-size:.66rem; letter-spacing:.05em; text-transform:uppercase; color:var(--ink-400); margin-top:3px; }
@media (max-width:640px){
  .portrait-frame::before, .portrait-frame::after{ display:none; }
}

/* ---------- Booking flow ---------- */
.booking-shell{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:32px;
  box-shadow:var(--shadow-lg);
  padding:50px;
  max-width:900px;
  margin:0 auto;
}
@media (max-width:640px){ .booking-shell{ padding:28px 20px; border-radius:22px; } }

.progress-bar{
  display:flex; align-items:flex-start; justify-content:space-between;
  margin-bottom:50px;
  gap:6px;
}
.progress-step{
  flex:1; text-align:center; position:relative;
}
.progress-step .dot{
  width:34px; height:34px; border-radius:50%;
  background:var(--cream-100); border:2px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.85rem; color:var(--ink-400);
  margin:0 auto 8px;
  transition:all .3s ease;
}
.progress-step .lbl{ font-size:.72rem; color:var(--ink-400); font-weight:600; letter-spacing:.02em; }
.progress-step::after{
  content:''; position:absolute; top:17px; left:50%; width:100%; height:2px;
  background:var(--border); z-index:-1;
}
.progress-step:last-child::after{ display:none; }
.progress-step.done .dot{ background:var(--teal-700); border-color:var(--teal-700); color:var(--white); }
.progress-step.done::after{ background:var(--teal-700); }
.progress-step.current .dot{ background:var(--white); border-color:var(--coral-500); color:var(--coral-600); box-shadow:0 0 0 5px var(--coral-100); }
.progress-step.current .lbl{ color:var(--coral-600); }

.booking-step{ display:none; }
.booking-step.active{ display:block; animation:fadeIn .4s ease; }
@keyframes fadeIn{ from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:none; } }

.select-card{
  border:1.5px solid var(--border);
  border-radius:18px;
  padding:24px;
  cursor:pointer;
  transition:all .25s ease;
  background:var(--white);
}
.select-card:hover{ border-color:var(--teal-400); transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.select-card.selected{ border-color:var(--teal-600); background:var(--teal-50); box-shadow:0 0 0 4px var(--teal-100); }
.select-card .icon-wrap{ margin-bottom:14px; }
.select-card .price{ font-family:var(--font-display); color:var(--coral-600); font-weight:600; font-size:1.2rem; margin-top:10px; }

.step-nav{ display:flex; justify-content:space-between; margin-top:36px; gap:14px; }
.step-nav .btn{ white-space:normal; }
@media (max-width:560px){
  .step-nav{ flex-direction:column-reverse; }
  .step-nav .btn{ width:100%; }
}

/* Calendar */
.calendar{ max-width:520px; margin:0 auto; }
.cal-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
.cal-head button{
  width:38px; height:38px; border-radius:12px; border:1.5px solid var(--border); background:var(--white);
  display:flex; align-items:center; justify-content:center; color:var(--teal-800);
}
.cal-head button:disabled{ opacity:.3; cursor:not-allowed; }
.cal-head .label{ font-family:var(--font-display); font-weight:600; color:var(--teal-900); font-size:1.15rem; }
.cal-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:6px; }
.cal-dow{ text-align:center; font-size:.72rem; font-weight:700; color:var(--ink-400); padding-bottom:8px; text-transform:uppercase; }
.cal-cell{
  aspect-ratio:1; border-radius:10px; border:1px solid transparent; background:var(--cream-100);
  font-weight:600; font-size:.9rem; color:var(--ink-800); display:flex; align-items:center; justify-content:center;
  transition:all .2s ease;
}
.cal-cell.blank{ background:transparent; }
.cal-cell:not(.disabled):not(.blank):hover{ background:var(--teal-100); }
.cal-cell.disabled{ color:var(--border); cursor:not-allowed; background:transparent; }
.cal-cell.selected{ background:var(--teal-700); color:var(--white); }
.cal-cell.fully-booked{ color:var(--coral-400); background:var(--coral-100); text-decoration:line-through; opacity:.7; }

.time-slots{
  display:none; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:26px;
}
@media (max-width:560px){ .time-slots{ grid-template-columns:repeat(3,1fr); } }
.time-slot{
  padding:12px 8px; border-radius:12px; border:1.5px solid var(--border); background:var(--white);
  font-weight:600; font-size:.88rem; color:var(--ink-800); transition:all .2s ease;
}
.time-slot:hover{ border-color:var(--teal-400); }
.time-slot.selected{ background:var(--teal-700); border-color:var(--teal-700); color:var(--white); }
.time-slot.booked{
  background:var(--cream-100); color:var(--ink-400); text-decoration:line-through;
  cursor:not-allowed; border-color:var(--border); opacity:.6;
}

.summary-list{ display:grid; gap:0; border:1px solid var(--border); border-radius:16px; overflow:hidden; margin:26px 0; background:var(--white); box-shadow:var(--shadow-sm); }
.summary-list .row{ display:flex; align-items:center; gap:20px; padding:14px 20px; font-size:.94rem; }
.summary-list .row:nth-child(odd){ background:var(--cream-100); }
.summary-list .row span:first-child{ flex:0 0 230px; color:var(--ink-400); font-weight:500; }
.summary-list .row span:last-child{ flex:1 1 auto; text-align:left; font-weight:600; color:var(--teal-900); }
@media (max-width:480px){
  .summary-list .row span:first-child{ flex-basis:150px; }
}

/* ---------- Results gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:768px){ .gallery-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } }
.gallery-item{
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md);
  overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .3s ease, box-shadow .3s ease;
}
.gallery-item:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.gallery-item img{ width:100%; height:280px; object-fit:cover; display:block; }
.gallery-item .cap{ padding:16px 18px; text-align:center; font-weight:600; color:var(--teal-900); font-size:.92rem; }

/* A tidy, compact 2-image variant — genuinely small thumbnails, not stretched full-width */
.gallery-grid-2{
  grid-template-columns:repeat(2, 150px);
  max-width:320px;
  margin-left:auto; margin-right:auto;
  gap:16px;
  justify-content:center;
}
.gallery-grid-2 .gallery-item img{ width:150px; height:200px; object-fit:cover; }
.gallery-grid-2 .gallery-item .cap{ padding:10px 8px; font-size:.78rem; }
@media (max-width:400px){
  .gallery-grid-2{ grid-template-columns:130px; }
  .gallery-grid-2 .gallery-item img{ width:130px; }
}

.pay-options{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:24px; }
@media (max-width:560px){ .pay-options{ grid-template-columns:1fr; } }
.pay-card{ border:1.5px solid var(--border); border-radius:18px; padding:24px; text-align:center; }
.pay-card .icon-wrap{ margin:0 auto 14px; }

/* ---------- FAQ accordion ---------- */
.faq-list{ max-width:800px; margin:0 auto; display:grid; gap:14px; }
.faq-item{
  background:var(--white);
  border:1.5px solid var(--border);
  border-radius:16px;
  padding:6px 26px;
  transition:border-color .2s ease;
}
.faq-item[open]{ border-color:var(--teal-400); }
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:20px 0;
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.05rem;
  color:var(--teal-900);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .faq-icon{
  flex-shrink:0;
  width:28px; height:28px;
  border-radius:50%;
  background:var(--teal-100);
  color:var(--teal-700);
  display:flex; align-items:center; justify-content:center;
  transition:transform .25s ease, background .25s ease, color .25s ease;
}
.faq-item[open] summary .faq-icon{ transform:rotate(45deg); background:var(--coral-500); color:var(--white); }
.faq-item .faq-answer{ padding:0 0 22px; margin:0; color:var(--ink-600); }
