/* ============================================================
   Family Dental Studio — premium & calm design system
   Palette: deep navy + cream + soft gold
   ============================================================ */

:root {
  --navy-900: #0B2545;
  --navy-800: #11305A;
  --navy-700: #1B3A5F;
  --navy-600: #2A4F7A;
  --cream: #F7F3EA;
  --cream-deep: #EFE8D8;
  --ivory: #FBF8F2;
  --gold: #C9A66B;
  --gold-deep: #A8884F;
  --gold-soft: #E6D6B5;
  --white: #FFFFFF;
  --text: #1A2238;
  --text-soft: #4A5468;
  --text-muted: #8089A0;
  --line: #E5DCC8;
  --line-soft: #F0EADD;
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 18px 50px rgba(11, 37, 69, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy-900);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }

p { color: var(--text-soft); }

a { color: var(--navy-800); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-deep); }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-head p { font-size: 1.05rem; margin-top: 0.75rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-900);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.brand-mark svg { width: 22px; height: 22px; }

.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-deep);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy-900); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--gold-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy-900);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy-900);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--navy-800);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-900);
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}
.btn-ghost:hover {
  background: var(--navy-900);
  color: var(--ivory);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--line);
}
.btn-light:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, var(--gold-soft) 0%, transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
}

/* Hero visual: layered photo card */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 166, 107, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.hero-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.hero-badge-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge-icon svg { width: 24px; height: 24px; }
.hero-badge-title { font-weight: 700; color: var(--navy-900); font-size: 0.95rem; }
.hero-badge-text { font-size: 0.8rem; color: var(--text-muted); }

.hero-badge-tl {
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy-900);
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-md);
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

/* ---------- Generic page intro ---------- */
.page-intro {
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-intro::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(closest-side, var(--gold-soft) 0%, transparent 70%);
  opacity: 0.5;
}
.page-intro h1 { position: relative; }
.page-intro p { position: relative; max-width: 640px; margin: 1rem auto 0; font-size: 1.08rem; }
.page-intro .breadcrumb {
  position: relative;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-intro .breadcrumb a { color: var(--text-muted); }
.page-intro .breadcrumb span { color: var(--gold-deep); margin: 0 0.5rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line-soft);
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.card-icon svg { width: 28px; height: 28px; }

/* ---------- Service grid (home preview) ---------- */
.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ---------- Values / Why us ---------- */
.values {
  background: var(--navy-900);
  color: var(--ivory);
}
.values h2 { color: var(--white); }
.values .section-eyebrow { color: var(--gold); }
.values p { color: rgba(255, 255, 255, 0.75); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
}
.value-item .card-icon {
  margin: 0 auto 1.2rem;
  background: rgba(201, 166, 107, 0.12);
  color: var(--gold);
}
.value-item h3 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 600; }
.value-item p { font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line-soft);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold-soft);
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin: 1.5rem 0 1.5rem;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.author-name { font-weight: 600; color: var(--navy-900); font-size: 0.95rem; }
.author-role { font-size: 0.82rem; color: var(--text-muted); }

.stars { color: var(--gold); margin-bottom: 0.6rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(closest-side, rgba(201, 166, 107, 0.3) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.5rem; position: relative; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); position: relative; font-size: 1.05rem; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; }

/* ---------- Services list page ---------- */
.service-cat {
  margin-bottom: 4rem;
}
.service-cat-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.service-cat-head h2 { margin: 0; }
.service-cat-head .cat-pill {
  background: var(--cream);
  color: var(--gold-deep);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.service-row {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  transition: all var(--transition);
}
.service-row:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-sm);
}
.service-row .card-icon { margin: 0; width: 50px; height: 50px; border-radius: 12px; }
.service-row .card-icon svg { width: 24px; height: 24px; }
.service-row h3 { margin: 0 0 0.3rem; font-size: 1.15rem; }
.service-row p { font-size: 0.92rem; margin: 0; }

.price-tag {
  font-family: 'Playfair Display', serif;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 1.25rem;
  white-space: nowrap;
  text-align: right;
}
.price-tag small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 2px;
}

.insurance-note {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}
.insurance-note h3 { font-family: 'Playfair Display', serif; }

/* ---------- Booking page ---------- */
.booking-shell {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.demo-toggle-bar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  display: inline-flex;
  gap: 0.3rem;
  margin-bottom: 2rem;
}
.demo-toggle-bar button {
  background: transparent;
  border: none;
  padding: 0.6rem 1.2rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  border-radius: 999px;
  transition: all var(--transition);
}
.demo-toggle-bar button.active {
  background: var(--navy-900);
  color: var(--ivory);
}

.demo-banner {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.demo-banner svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; }

.booking-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.booking-step-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}
.step-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.booking-step-head h3 { margin: 0; font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--navy-900); }

/* Service choice */
.service-choice {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.service-choice label {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  cursor: pointer;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  background: var(--ivory);
}
.service-choice label:hover {
  border-color: var(--gold);
  background: var(--cream);
}
.service-choice input { display: none; }
.service-choice input:checked + span {
  /* fallback */
}
.service-choice label.selected {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--ivory);
}

/* Calendar */
.calendar {
  margin-bottom: 2rem;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cal-head h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy-900);
}
.cal-nav {
  display: flex;
  gap: 0.4rem;
}
.cal-nav button {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.cal-nav button:hover { border-color: var(--gold); color: var(--gold-deep); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day-name {
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 0.5rem 0;
  font-weight: 600;
}
.cal-day {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.18s ease;
  position: relative;
}
.cal-day.muted { color: var(--text-muted); opacity: 0.4; cursor: default; }
.cal-day:hover:not(.muted):not(.full) { background: var(--cream); }
.cal-day.has-slots::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-day.selected {
  background: var(--navy-900);
  color: var(--gold);
}
.cal-day.selected::after { background: var(--gold); }
.cal-day.full {
  color: var(--text-muted);
  background: repeating-linear-gradient(
    -45deg,
    var(--cream-deep),
    var(--cream-deep) 2px,
    transparent 2px,
    transparent 6px
  );
  cursor: not-allowed;
}
.cal-day.today {
  border: 1.5px solid var(--gold);
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.cal-legend-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.legend-dot.available { background: var(--gold); }
.legend-dot.full {
  background: repeating-linear-gradient(-45deg, var(--cream-deep), var(--cream-deep) 2px, transparent 2px, transparent 5px);
  border: 1px solid var(--line);
}
.legend-dot.today { background: transparent; border: 1.5px solid var(--gold); }

/* Time slots */
.slot-section h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}
.slot {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.4rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-900);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.slot:hover:not(:disabled) { border-color: var(--gold); color: var(--gold-deep); }
.slot.selected {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--gold);
}
.slot:disabled, .slot.taken {
  background: var(--cream);
  color: var(--text-muted);
  text-decoration: line-through;
  cursor: not-allowed;
  border-color: transparent;
}

/* Full state */
.full-state {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}
.full-state .full-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.full-state .full-icon svg { width: 32px; height: 32px; }
.full-state h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; }
.full-state p { max-width: 460px; margin: 0.7rem auto 1.5rem; }

.waitlist-form {
  display: flex;
  gap: 0.6rem;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.waitlist-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
}
.waitlist-form input:focus {
  outline: none;
  border-color: var(--gold);
}

/* Summary card */
.summary-card {
  background: var(--navy-900);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.summary-card h3 { color: var(--white); font-family: 'Playfair Display', serif; }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}
.summary-row .label { color: rgba(255, 255, 255, 0.7); }
.summary-row .val { color: var(--white); font-weight: 500; text-align: right; }
.summary-row .val.empty { color: rgba(255, 255, 255, 0.35); font-style: italic; font-weight: 400; }

.summary-form {
  margin-top: 1.5rem;
}
.summary-form .field { margin-bottom: 1rem; }
.summary-form label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
}
.summary-form input, .summary-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
  transition: all var(--transition);
}
.summary-form input:focus, .summary-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}
.summary-form input::placeholder, .summary-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.summary-form textarea { resize: vertical; min-height: 80px; }
.summary-confirm-btn {
  width: 100%;
  margin-top: 1rem;
  background: var(--gold);
  color: var(--navy-900);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.summary-confirm-btn:hover {
  background: var(--gold-deep);
  color: var(--white);
}
.summary-confirm-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.contact-info { display: grid; gap: 1.2rem; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.contact-card .card-icon { margin: 0; width: 48px; height: 48px; border-radius: 12px; }
.contact-card .card-icon svg { width: 22px; height: 22px; }
.contact-card h4 { font-family: 'Inter', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.3rem; font-weight: 600; }
.contact-card .val { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy-900); font-weight: 600; }
.contact-card .sub { color: var(--text-soft); font-size: 0.9rem; margin-top: 0.2rem; }

.hours-list {
  list-style: none;
  margin-top: 0.5rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--line-soft);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--text-soft); }
.hours-list .time { color: var(--navy-900); font-weight: 500; }
.hours-list .closed { color: var(--gold-deep); }

.map-block {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
}
.map-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 0%, transparent 47%, rgba(201, 166, 107, 0.18) 50%, transparent 53%, transparent 100%),
    linear-gradient(-45deg, transparent 0%, transparent 47%, rgba(201, 166, 107, 0.12) 50%, transparent 53%, transparent 100%),
    radial-gradient(circle at 30% 30%, rgba(201, 166, 107, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(201, 166, 107, 0.12) 0%, transparent 50%);
  background-size: 60px 60px, 60px 60px, 100% 100%, 100% 100%;
}
.map-pin {
  position: relative;
  z-index: 2;
  text-align: center;
}
.map-pin .pin {
  width: 64px; height: 64px;
  background: var(--gold);
  color: var(--navy-900);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 8px rgba(201, 166, 107, 0.18), 0 12px 30px rgba(0, 0, 0, 0.3);
  animation: pulse 2.4s ease-in-out infinite;
}
.map-pin .pin svg { width: 30px; height: 30px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(201, 166, 107, 0.18), 0 12px 30px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 0 0 18px rgba(201, 166, 107, 0.08), 0 12px 30px rgba(0, 0, 0, 0.3); }
}
.map-pin h3 { color: var(--white); }
.map-pin p { color: rgba(255, 255, 255, 0.7); }

.contact-form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: all var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 100px; }

/* ---------- About / Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: all var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream), var(--cream-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo .initials {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold-deep);
  font-weight: 500;
}
.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(11, 37, 69, 0.05));
}
.team-body { padding: 1.5rem; text-align: center; }
.team-body h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.team-body .role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.team-body p { font-size: 0.9rem; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-story-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--cream), var(--cream-deep));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-story-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 166, 107, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(11, 37, 69, 0.1) 0%, transparent 60%);
}
.about-story-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(11, 37, 69, 0.85);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  z-index: 2;
}
.about-story-badge .est {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}
.about-story-badge .label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.75);
}

.about-story-text h2 { margin-bottom: 1.2rem; }
.about-story-text p {
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { color: var(--white); }
.footer-brand .brand { color: var(--white); }
.footer-brand .brand small { color: var(--gold); }
.footer-brand p { color: rgba(255, 255, 255, 0.6); margin-top: 1rem; max-width: 300px; font-size: 0.92rem; }

.footer-col h5 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.6); }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-900); }
.footer-social svg { width: 16px; height: 16px; }

/* ---------- Toast / Modal-like confirm ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-900);
  color: var(--ivory);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  max-width: 90%;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast .check {
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--navy-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toast .check svg { width: 16px; height: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { aspect-ratio: 5 / 4; }
  .booking-shell { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-banner { padding: 2.5rem; }
}

@media (max-width: 700px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 2.5rem 0 4rem; }
  .nav { height: 64px; }
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--ivory);
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.9rem 0; border-bottom: 1px solid var(--line-soft); }
  .nav-links a::after { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .stat-num { font-size: 1.6rem; }
  .service-row {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0.8rem;
  }
  .service-row .price-tag { text-align: left; font-size: 1.15rem; }
  .service-row .card-icon { width: 42px; height: 42px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner { padding: 2rem; flex-direction: column; align-items: flex-start; }
  .demo-toggle-bar { flex-wrap: wrap; }
}
