/* ================================================
   TOORAK DENTAL STUDIO — Shared Stylesheet v2
   ================================================ */

:root {
  --white:      #FFFFFF;
  --cream:      #F7F5F2;
  --cream-dark: #EDE9E3;
  --warm-white: #FEFCF9;
  --navy:       #0B3D5E;
  --navy-light: #0F4D77;
  --gold:       #C9A96E;
  --gold-light: #D9BC8D;
  --gold-pale:  rgba(201,169,110,.1);
  --gold-border:rgba(201,169,110,.3);
  --charcoal:   #2C2C2A;
  --muted:      #6B6B68;
  --border:     rgba(0,0,0,.08);
  --shadow:     0 4px 24px rgba(0,0,0,.07);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.13);
  --radius:     12px;
  --heading:    Georgia, 'Times New Roman', serif;
  --body:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --nav-h:      72px;
  --max-w:      1160px;
}

/* ── Reset ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--charcoal); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--body); }

/* ── Typography ───────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--heading); color: var(--navy); line-height: 1.18; font-weight: normal; }
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
p  { line-height: 1.78; }

/* ── Container ────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ── Buttons ──────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 14px 30px; border-radius: 6px;
  font-weight: 700; font-size: 0.93rem; border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,.4); }

.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 13px 28px; border-radius: 6px;
  font-weight: 600; font-size: 0.93rem; border: 2px solid var(--navy); cursor: pointer;
  transition: all .2s;
}
.btn-outline-navy:hover { background: var(--navy); color: white; }

.btn-outline-white {
  display: inline-flex; align-items: center;
  background: transparent; color: white;
  padding: 13px 28px; border-radius: 6px;
  font-weight: 600; font-size: 0.93rem; border: 2px solid rgba(255,255,255,.65); cursor: pointer;
  transition: all .2s;
}
.btn-outline-white:hover { background: white; color: var(--navy); }

/* ── Section helpers ──────────────────────────── */
.section { padding: 96px 0; }
.section-white  { background: var(--white); }
.section-cream  { background: var(--cream); }
.section-navy   { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--muted); max-width: 540px; margin: 0 auto; font-size: 1.02rem; }

.label {
  display: inline-block; font-size: 0.74rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.gold-rule { width: 48px; height: 3px; background: var(--gold); margin: 16px 0 28px; border-radius: 2px; }
.gold-rule.center { margin: 16px auto 28px; }

/* ── Icon wrappers ────────────────────────────── */
.icon-wrap {
  width: 60px; height: 60px;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 22px; flex-shrink: 0;
}
.icon-wrap-circle {
  width: 72px; height: 72px;
  background: var(--gold-pale); border: 2px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 22px;
}
.icon-wrap-sm {
  width: 44px; height: 44px;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   NAVBAR
────────────────────────────────────────────── */
.navbar {
  background: var(--navy); height: var(--nav-h);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.nav-logo { display: inline-flex; align-items: center; gap: 11px; }
.nav-wordmark {
  font-family: var(--heading); font-size: 1.05rem; font-weight: normal;
  color: white; line-height: 1.2;
}
.nav-wordmark small {
  display: block; font-family: var(--body); font-size: 0.68rem;
  letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 400;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,.8); font-size: 0.88rem; letter-spacing: .02em; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links .nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 10px 22px; border-radius: 6px; font-weight: 700; font-size: .85rem;
  transition: background .2s, transform .1s;
}
.nav-links .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-hamburger span { width: 23px; height: 2px; background: white; border-radius: 2px; transition: all .3s; }

/* ─────────────────────────────────────────────
   HOME HERO
────────────────────────────────────────────── */
.hero-home {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  background: var(--cream);
}
.hero-home-left {
  display: flex; align-items: center;
  padding: 100px 60px 100px max(28px, calc((100vw - var(--max-w)) / 2));
}
.hero-home-content { max-width: 520px; }
.hero-home-content h1 { margin-bottom: 22px; }
.hero-home-content h1 em { font-style: italic; color: var(--gold); }
.hero-subtitle { font-size: 1.08rem; color: var(--muted); margin-bottom: 40px; max-width: 460px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-home-right { overflow: hidden; }
.hero-home-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Trust badges row below hero text */
.hero-trust-row { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.7); backdrop-filter: blur(4px);
  border: 1px solid var(--gold-border); border-radius: 100px;
  padding: 8px 16px; font-size: .82rem; font-weight: 600; color: var(--navy);
}
.hero-trust-badge span { color: var(--gold); font-size: 1rem; }

/* ─────────────────────────────────────────────
   STATS STRIP  (navy band)
────────────────────────────────────────────── */
.stats-strip-wrap { background: var(--navy); padding: 56px 0; }
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-item { text-align: center; padding: 8px 24px; }
.stats-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); }
.stats-num {
  display: block; font-family: var(--heading);
  font-size: 2.8rem; color: var(--gold); margin-bottom: 6px; line-height: 1;
}
.stats-lbl { font-size: .85rem; color: rgba(255,255,255,.65); letter-spacing: .02em; }

/* ─────────────────────────────────────────────
   SERVICE CARDS  (homepage overview)
────────────────────────────────────────────── */
.services-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card {
  background: var(--warm-white); border-radius: var(--radius);
  padding: 40px 32px; box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.04);
  border-top: 3px solid var(--gold);
  transition: box-shadow .25s, transform .25s;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card h3 { margin-bottom: 12px; }
.svc-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.78; margin-bottom: 22px; }
.svc-link { font-size: 0.84rem; font-weight: 700; color: var(--gold); letter-spacing: .03em; transition: color .2s; }
.svc-link::after { content: ' →'; }
.svc-link:hover { color: var(--navy); }

/* ─────────────────────────────────────────────
   FEATURE SPLIT  (2-col text + image)
────────────────────────────────────────────── */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feature-split img { border-radius: var(--radius); width: 100%; height: 440px; object-fit: cover; box-shadow: var(--shadow-lg); }
.feature-text .gold-rule { margin-top: 20px; }
.feature-text p { color: var(--muted); margin-bottom: 18px; line-height: 1.85; }

/* Gold pull-quote style */
.gold-pull {
  border-left: 4px solid var(--gold); padding: 16px 20px;
  background: var(--gold-pale); border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic; color: var(--navy); font-family: var(--heading); font-size: 1.02rem; line-height: 1.6;
}

/* ─────────────────────────────────────────────
   TEAM CARDS
────────────────────────────────────────────── */
.team-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 720px; margin: 0 auto; }
.team-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--warm-white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border-top: 3px solid var(--gold);
  transition: box-shadow .25s, transform .25s;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-photo { width: 100%; height: 292px; object-fit: cover; object-position: top center; }
.team-info { padding: 28px 24px; }
.team-name { font-family: var(--heading); font-size: 1.2rem; color: var(--navy); margin-bottom: 4px; }
.team-role {
  font-size: 0.74rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
  padding-bottom: 12px; border-bottom: 1px solid var(--cream-dark);
}
.team-bio { font-size: 0.87rem; color: var(--muted); line-height: 1.72; }

/* ─────────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--warm-white); border-radius: var(--radius);
  padding: 36px 32px; position: relative;
  border: 1px solid var(--gold-border);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}
.testi-quote { font-size: 5rem; font-family: Georgia; color: var(--gold); opacity: .25; line-height: .5; position: absolute; top: 24px; left: 24px; }
.testi-stars { color: var(--gold); font-size: .84rem; margin-bottom: 12px; position: relative; z-index: 1; }
.testi-text { font-style: italic; font-size: 0.93rem; color: var(--charcoal); line-height: 1.82; margin-bottom: 24px; position: relative; z-index: 1; padding-top: 8px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-size: 1rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testi-loc { font-size: 0.76rem; color: var(--muted); }

/* ─────────────────────────────────────────────
   HIGHLIGHT INFO CARD  (gold-tinted card)
────────────────────────────────────────────── */
.gold-info-card {
  display: flex; gap: 28px; align-items: center;
  background: linear-gradient(135deg, rgba(201,169,110,.12), rgba(201,169,110,.04));
  border: 1px solid var(--gold-border); border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 32px 36px; margin-top: 40px;
}
.gold-info-card img { border-radius: 8px; flex-shrink: 0; }
.gold-info-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.gold-info-card p { font-size: .91rem; color: var(--muted); margin-bottom: 18px; }

/* ─────────────────────────────────────────────
   AI BANNER
────────────────────────────────────────────── */
.ai-banner {
  background: var(--cream); padding: 88px 0;
  text-align: center; border-top: 1px solid var(--cream-dark);
}
.ai-banner h2 { margin-bottom: 16px; }
.ai-banner p { color: var(--muted); max-width: 540px; margin: 0 auto 40px; font-size: 1.02rem; }
.ai-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

/* AI feature chips */
.ai-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.ai-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: white; border: 1px solid var(--gold-border);
  border-radius: 100px; padding: 8px 18px;
  font-size: .82rem; font-weight: 600; color: var(--navy);
}
.ai-chip span { color: var(--gold); }

#vapi-call-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 14px 30px; border-radius: 6px;
  font-weight: 700; font-size: 0.93rem; border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
#vapi-call-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,.4); }
#vapi-call-btn::before { content: '📞'; }

/* ─────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
footer { background: var(--navy); padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 32px;
}
.footer-about p { font-size: .87rem; color: rgba(255,255,255,.6); line-height: 1.8; max-width: 280px; margin-top: 16px; }
.footer-powered { font-size: .79rem; color: rgba(255,255,255,.35); margin-top: 20px; font-style: italic; }
.footer-powered a { color: var(--gold); }
.footer-col h4 { color: white; font-family: var(--body); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.6); font-size: .86rem; margin-bottom: 10px; line-height: 1.7; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: rgba(255,255,255,.35); }

/* ─────────────────────────────────────────────
   PAGE HERO  (inner pages)
────────────────────────────────────────────── */
.page-hero { background: var(--white); padding: 72px 0 64px; border-bottom: 1px solid var(--border); }
.breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--navy); } .breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--muted); max-width: 540px; font-size: 1.02rem; }

/* Page hero with split image */
.page-hero-split { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.page-hero-split-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px max(28px, calc((100vw - var(--max-w)) / 2));
}
.page-hero-split-img { overflow: hidden; }
.page-hero-split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─────────────────────────────────────────────
   SERVICES PAGE
────────────────────────────────────────────── */
.svc-section { padding: 72px 0 0; }
.svc-section:last-of-type { padding-bottom: 80px; }

.svc-section-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 36px; padding-bottom: 20px;
  border-bottom: 2px solid var(--cream);
}
.svc-section-header h2 { font-size: 1.9rem; }

.svc-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-detail-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 28px 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.svc-detail-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-detail-card-inner { display: flex; gap: 16px; align-items: flex-start; }
.svc-detail-text h3 { margin-bottom: 8px; font-size: 1.05rem; }
.svc-detail-text p { font-size: .88rem; color: var(--muted); margin-bottom: 14px; line-height: 1.72; }
.price-badge {
  display: inline-block; font-size: .82rem; font-weight: 700;
  color: var(--navy); background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  padding: 5px 12px; border-radius: 100px;
}

.cta-banner { background: var(--navy); padding: 88px 0; text-align: center; }
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto 40px; }

/* ─────────────────────────────────────────────
   ABOUT PAGE
────────────────────────────────────────────── */
.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-split p { color: var(--muted); margin-bottom: 20px; line-height: 1.88; }
.story-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.story-image img { width: 100%; height: 460px; object-fit: cover; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  text-align: center; padding: 48px 32px 40px;
  background: var(--warm-white); border-radius: var(--radius);
  box-shadow: var(--shadow); border-top: 3px solid var(--gold);
  transition: box-shadow .25s, transform .25s;
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--muted); font-size: .91rem; line-height: 1.78; }

/* Credentials row */
.creds-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.cred-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  border-radius: 8px; padding: 10px 16px;
  font-size: .82rem; font-weight: 600; color: var(--navy);
}
.cred-badge span { font-size: 1rem; }

/* ─────────────────────────────────────────────
   CONTACT PAGE
────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start; }
.contact-form-card {
  background: white; border-radius: var(--radius);
  padding: 48px 44px; box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}
.contact-form-card h2 { margin-bottom: 8px; }
.contact-form-card > p { color: var(--muted); margin-bottom: 36px; font-size: .94rem; }

.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: .81rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: .03em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,.1); border-radius: 8px;
  font-family: var(--body); font-size: .93rem; color: var(--charcoal);
  background: var(--cream); outline: none;
  transition: border-color .2s, background .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: white; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-submit {
  width: 100%; padding: 15px; background: var(--gold); color: var(--navy);
  border: none; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: background .2s, transform .15s;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

.contact-details h3 { margin-bottom: 28px; }
.detail-row { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.detail-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--gold); margin-bottom: 3px; }
.detail-value { font-size: .92rem; color: var(--charcoal); line-height: 1.6; }
.detail-value a { color: var(--navy); } .detail-value a:hover { color: var(--gold); }

.hours-table { width: 100%; font-size: .86rem; border-collapse: collapse; }
.hours-table td { padding: 5px 0; }
.hours-table td:first-child { color: var(--muted); }
.hours-table td:last-child { font-weight: 600; text-align: right; }

.team-callout {
  display: flex; align-items: center; gap: 18px;
  background: linear-gradient(135deg, rgba(201,169,110,.1), rgba(201,169,110,.04));
  border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 22px;
  margin-top: 32px;
}
.team-callout img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; object-position: top center; flex-shrink: 0; border: 2px solid var(--gold-border); }
.team-callout-text p:first-child { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: .95rem; }
.team-callout-text p:last-child { font-size: .84rem; color: var(--muted); }

.map-section { padding-top: 72px; }
.map-section h3 { margin-bottom: 20px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ─────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-home { grid-template-columns: 1fr; }
  .hero-home-right { display: none; }
  .hero-home-left { padding: 72px 28px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-item:nth-child(2) { border-right: none; }
  .stats-item:nth-child(1), .stats-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 32px; margin-bottom: 24px; }
  .services-grid-3 { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .team-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .team-grid-2 { grid-template-columns: 1fr; max-width: 400px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .page-hero-split { grid-template-columns: 1fr; }
  .page-hero-split-content { padding: 56px 28px; }
  .page-hero-split-img img { height: 260px; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .story-split { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .contact-info-row { grid-template-columns: 1fr; gap: 32px; }
  .gold-info-card { flex-direction: column; }
}
/* ── Booking Calendars ────────────────────────── */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}
.booking-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.booking-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.booking-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.booking-name {
  font-family: var(--heading);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: normal;
}
.booking-role {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── Contact Info Row ─────────────────────────── */
.contact-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 600px) {
  h1 { font-size: 1.9rem; }
  .section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--navy); padding: 24px 28px; gap: 20px; box-shadow: 0 6px 20px rgba(0,0,0,.2); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .team-grid-3 { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .stats-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.08); padding: 20px 0 !important; margin-bottom: 0 !important; }
  .stats-item:last-child { border-bottom: none; }
  .contact-form-card { padding: 32px 24px; }
  .ai-banner { padding: 64px 0; }
}

/* ═══════════════════════════════════════════════
   FIXED BUTTON STACK
   ═══════════════════════════════════════════════ */
.fixed-btn-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.fbs-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  border-radius: 26px;
  padding: 0 20px;
  border: none;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  text-align: left;
}
.fbs-btn:hover { transform: scale(1.03); box-shadow: 0 6px 22px rgba(0,0,0,.3); }
.fbs-btn:active { transform: scale(.98); }
.fbs-gold { background: #C9A96E; }
.fbs-navy { background: #0B3D5E; }
.fbs-icon { width: 20px; height: 20px; flex-shrink: 0; stroke: #fff; fill: none; }

/* ═══════════════════════════════════════════════
   MIA CHAT PANEL
   ═══════════════════════════════════════════════ */
.mia-panel {
  position: fixed;
  bottom: 156px;
  right: 24px;
  width: 360px;
  height: 520px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  z-index: 9998;
  overflow: hidden;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}
.mia-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mia-header {
  background: #0B3D5E;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.mia-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  color: #fff;
  font-weight: normal;
  line-height: 1.2;
}
.mia-status {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.mia-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  flex-shrink: 0;
  animation: miaPulse 1.8s ease-in-out infinite;
}
@keyframes miaPulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.mia-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.65);
  font-size: 24px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  margin-left: auto;
  flex-shrink: 0;
}
.mia-close:hover { color: #fff; }
.mia-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  background: #F7F5F2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mia-msg-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.mia-msg-row.user { flex-direction: row-reverse; }
.mia-avatar-icon {
  width: 28px;
  height: 28px;
  background: #0B3D5E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mia-bubble {
  max-width: 240px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.55;
}
.mia-bubble.ai {
  background: #fff;
  color: #2C2C2A;
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.mia-bubble.user {
  background: #0B3D5E;
  color: #fff;
  border-radius: 14px 14px 4px 14px;
}
.mia-typing {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  align-items: center;
}
.mia-typing-dot {
  width: 7px;
  height: 7px;
  background: #0B3D5E;
  border-radius: 50%;
  animation: miaBounce .9s ease-in-out infinite;
}
.mia-typing-dot:nth-child(2) { animation-delay: .15s; }
.mia-typing-dot:nth-child(3) { animation-delay: .3s; }
@keyframes miaBounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }
.mia-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.07);
  flex-shrink: 0;
}
.mia-input-row textarea {
  flex: 1;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 20px;
  padding: 8px 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  resize: none;
  outline: none;
  max-height: 80px;
  line-height: 1.45;
  color: #2C2C2A;
}
.mia-input-row textarea:focus { border-color: #C9A96E; }
#miaSendBtn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #C9A96E;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s ease;
}
#miaSendBtn svg { width: 15px; height: 15px; stroke: #fff; fill: none; }
#miaSendBtn:hover { background: #b8944f; }
#miaSendBtn:disabled { background: #ddd; cursor: default; }
.mia-footer {
  text-align: center;
  padding: 5px 0 6px;
  font-size: 10px;
  color: #aaa;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.05);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .mia-panel {
    width: 100%;
    right: 0;
    bottom: 0;
    border-radius: 16px 16px 0 0;
    height: 72vh;
  }
  .fixed-btn-stack {
    bottom: 16px;
    right: 16px;
  }
  .fbs-btn {
    font-size: 13px;
    padding: 0 14px;
    height: 48px;
  }
}
