/* ================================================================
   CREDENCE HIGH DENTAL CARE  ·  styles.css
   Luxury dental clinic — dark/light theme
================================================================ */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Dark theme (default) */
  --bg:           #0A0A0A;
  --surface:      #111111;
  --surface-2:    #161616;
  --gold:         #C9A96E;
  --gold-light:   #E8D5A3;
  --gold-dim:     #8B6914;
  --text:         #F5F0E8;
  --muted:        #9A8E7E;
  --border:       rgba(201, 169, 110, 0.2);
  --border-hi:    rgba(201, 169, 110, 0.55);
  --nav-glass:    rgba(10, 10, 10, 0.78);
  --error:        #C0392B;

  --ff-head: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;

  --sp:     100px;   /* section padding desktop */
  --sp-sm:   64px;   /* section padding mobile  */
  --cmax:  1200px;   /* container max-width      */
  --ease:    0.4s ease;
}

/* ─── LIGHT THEME ──────────────────────────────────────────── */
[data-theme="light"] {
  --bg:        #FAF8F5;
  --surface:   #FFFFFF;
  --surface-2: #F5F1EB;
  --text:      #1C1610;
  --muted:     #6B5E50;
  --border:    rgba(201, 169, 110, 0.28);
  --nav-glass: rgba(250, 248, 245, 0.84);
}

/* ─── LIGHT THEME image overlay tweak ─────────────────────── */
[data-theme="light"] .about-img-overlay {
  background: linear-gradient(to top, rgba(28,22,16,0.94) 0%, rgba(28,22,16,0.2) 70%, transparent 100%);
}

/* ─── GRAIN TEXTURE OVERLAY ────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background var(--ease), color 0.3s ease;
}

a { color: inherit; text-decoration: none; }
button { font-family: var(--ff-body); cursor: pointer; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* ─── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: var(--cmax);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

section {
  padding: var(--sp) 0;
  border-bottom: 1px solid var(--border);
}

.sec-center { text-align: center; margin-bottom: 60px; }

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
.overline {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--ff-head);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.13;
  color: var(--text);
  margin-bottom: 52px;
}

.gold-text { color: var(--gold); }

/* ─── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  0.75s ease var(--delay, 0s),
    transform 0.75s ease var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── SHARED BUTTONS ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0A0A0A;
  border: 1px solid var(--gold);
  padding: 14px 36px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--ease), transform 0.3s ease;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 36px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--ease), transform 0.3s ease;
}
.btn-outline:hover { background: rgba(201,169,110,0.1); transform: translateY(-2px); }

.btn-chat-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #0A0A0A;
  border: none;
  padding: 14px 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--ease), transform 0.3s ease;
  margin-top: 8px;
}
.btn-chat-wa:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-wa-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--gold);
  color: #0A0A0A;
  border: none;
  padding: 17px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--ease), transform 0.3s ease;
  margin-top: 8px;
}
.btn-wa-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--ease), padding var(--ease), border-bottom var(--ease);
}
#navbar.scrolled {
  background: var(--nav-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--cmax);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* Actual logo image — treated as a luxury badge/seal */
.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #FAF8F5;
  box-shadow: 0 0 0 1.5px rgba(201, 169, 110, 0.5),
              0 2px 12px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.4s ease, transform 0.3s ease;
}
.nav-logo:hover .logo-img {
  box-shadow: 0 0 0 2px var(--gold),
              0 4px 16px rgba(201, 169, 110, 0.25);
  transform: rotate(-3deg);
}

/* Footer logo slightly larger */
.logo-img--footer {
  width: 52px;
  height: 52px;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--gold); }

/* Nav right cluster */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Theme toggle */
.theme-btn {
  background: none;
  border: none;
  color: var(--muted);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--ease);
  width: 22px; height: 22px;
}
.theme-btn:hover { color: var(--gold); }
.theme-btn svg { width: 18px; height: 18px; }

[data-theme="dark"]  .icon-moon { display: none; }
[data-theme="dark"]  .icon-sun  { display: block; }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: block; }

/* Book pill */
.nav-book-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 9px 22px;
  border-radius: 9999px;
  background: transparent;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease);
}
.nav-book-btn:hover { background: var(--gold); color: #0A0A0A; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  transition: transform 0.35s ease, opacity 0.3s ease;
}

/* ════════════════════════════════════════
   MOBILE OVERLAY MENU
════════════════════════════════════════ */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#mobile-menu.open { opacity: 1; pointer-events: all; }

#mobile-menu ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 0;
}
#mobile-menu a {
  font-family: var(--ff-head);
  font-size: clamp(32px, 7vw, 48px);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  transition: color 0.3s;
}
#mobile-menu a:hover { color: var(--gold); }

.mobile-book-btn { margin-top: 52px; font-size: 13px; padding: 12px 40px; }

#mobile-close {
  position: absolute;
  top: 22px; right: 24px;
  background: none;
  border: none;
  color: var(--muted);
  transition: color 0.3s;
}
#mobile-close:hover { color: var(--gold); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  border-bottom: none;
  padding: 0;
}
#hero .container { width: 100%; }

/* Radial gold glow top-right */
#hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 72%; height: 88%;
  background: radial-gradient(ellipse at top right,
    rgba(201,169,110,0.09) 0%, transparent 62%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(46px, 6.5vw, 80px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-h1 .gold-text { display: block; }

.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.78;
  max-width: 510px;
  margin-bottom: 46px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(201,169,110,0.25);
  margin-bottom: 42px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 5px; }
.stat-num {
  font-family: var(--ff-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-sep {
  width: 1px;
  height: 46px;
  background: var(--border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 44px 36px;
  transition:
    background  var(--ease),
    border-color var(--ease),
    box-shadow  var(--ease),
    transform   var(--ease);
}
.service-card:hover {
  background: var(--surface-2);
  border-color: var(--border-hi);
  box-shadow: 0 8px 32px rgba(201,169,110,0.12);
  transform: translateY(-4px);
}

.svc-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 22px;
}
.svc-icon svg { width: 100%; height: 100%; }

.svc-name {
  font-family: var(--ff-head);
  font-size: 21px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-quote {
  font-family: var(--ff-head);
  font-size: clamp(22px, 2.8vw, 38px);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.4;
  padding-left: 32px;
  border-left: 2px solid var(--gold-dim);
}
.q-mark { font-size: 1.4em; line-height: 0; vertical-align: -0.3em; }
.q-close { vertical-align: -0.15em; }

.about-h2 { margin-bottom: 20px; font-size: clamp(26px, 3vw, 42px); }

.about-body {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.82;
  margin-bottom: 36px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}
.chk { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--ease), transform 0.3s ease;
}
.testi-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}

.testi-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-dim) 0%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 400;
  color: #0A0A0A;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.testi-source {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.testi-footer {
  display: flex;
  justify-content: center;
}

.testi-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px 24px;
}

.testi-rating-num {
  font-family: var(--ff-head);
  font-size: 22px;
  color: var(--text);
  line-height: 1;
}

.testi-rating-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.testi-rating-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   TEAM / DOCTOR
════════════════════════════════════════ */
.doctor-wrap {
  display: flex;
  justify-content: center;
}

.doctor-card {
  max-width: 480px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: clamp(40px, 5vw, 64px) clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.doc-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-dim) 0%, var(--gold) 55%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 52px;
  font-weight: 300;
  color: #0A0A0A;
  margin-bottom: 28px;
  padding: 2px;
  box-shadow: 0 0 0 2px rgba(201,169,110,0.25), 0 6px 24px rgba(201,169,110,0.2);
  overflow: hidden;
}

.doc-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.doc-name {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
}

.badge-pill {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 9999px;
  margin-bottom: 22px;
}

.doc-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.78;
  margin-bottom: 32px;
}

.doc-divider {
  width: 60px; height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.doc-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.doc-phone:hover { color: var(--gold-light); }

/* ════════════════════════════════════════
   BOOKING FORM
════════════════════════════════════════ */
.form-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: clamp(32px, 5vw, 64px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 28px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.lbl-opt { font-size: 9px; opacity: 0.7; text-transform: none; letter-spacing: 0; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 300;
  padding: 11px 2px;
  outline: none;
  border-radius: 0;
  transition: border-color var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(154,142,126,0.45); font-size: 14px; }
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 90px; }

/* Select */
.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 300;
  padding: 11px 28px 11px 2px;
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--ease);
}
.select-wrap select:focus { border-bottom-color: var(--gold); }
.select-wrap select option { background: var(--surface); color: var(--text); }
.sel-arrow {
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 8px;
  color: var(--gold);
  pointer-events: none;
}

/* Date + Time side-by-side row */
.datetime-row {
  display: flex;
  gap: 12px;
}
.datetime-row input {
  flex: 1;
  min-width: 0;
}

/* Hint text below the datetime row */
.dt-hint {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 7px;
  letter-spacing: 0.03em;
  opacity: 0.75;
}

/* Date & time native controls — match existing input style */
input[type="date"],
input[type="time"] {
  color-scheme: dark;
}
[data-theme="light"] input[type="date"],
[data-theme="light"] input[type="time"] {
  color-scheme: light;
}

/* Gold-tint the browser calendar/clock picker icon */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.55;
  filter: invert(72%) sepia(28%) saturate(600%) hue-rotate(2deg) brightness(1.1);
  transition: opacity 0.3s ease;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Validation error */
.form-error {
  display: block;
  font-size: 12px;
  color: var(--error);
  margin-top: 6px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.form-error.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 12px;
}
.contact-item { display: flex; align-items: flex-start; gap: 16px; }

.ci-icon {
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.ci-icon svg { width: 100%; height: 100%; }

.ci-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.ci-value {
  font-size: 14px;
  color: var(--text);
  font-weight: 300;
  line-height: 1.72;
}
.ci-link { color: var(--gold); transition: color 0.3s; }
.ci-link:hover { color: var(--gold-light); }

.map-wrap {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-head);
  font-size: 19px;
  color: var(--gold);
}
.footer-logo:hover .logo-img {
  box-shadow: 0 0 0 2px var(--gold),
              0 4px 16px rgba(201, 169, 110, 0.25);
  transform: rotate(-3deg);
}

.footer-tagline {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}

.footer-col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.social-row { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: border-color var(--ease), background var(--ease);
}
.social-link:hover { border-color: var(--gold); background: rgba(201,169,110,0.1); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom span { font-size: 12px; color: var(--muted); }

/* ════════════════════════════════════════
   FLOATING ACTION BUTTON
════════════════════════════════════════ */
#fab {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  z-index: 90;
  animation: fab-pulse 2.6s ease-in-out infinite;
  transition: transform 0.3s ease, background 0.3s ease;
}
#fab:hover { transform: scale(1.1); background: var(--gold-light); }
#fab svg { flex-shrink: 0; }

@keyframes fab-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(201,169,110,0.55), 0 4px 22px rgba(201,169,110,0.35); }
  65%  { box-shadow: 0 0 0 16px rgba(201,169,110,0),   0 4px 22px rgba(201,169,110,0.35); }
  100% { box-shadow: 0 0 0 0   rgba(201,169,110,0),   0 4px 22px rgba(201,169,110,0.35); }
}

/* ════════════════════════════════════════
   BOOKING MODAL
════════════════════════════════════════ */
#modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#modal-backdrop.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: clamp(28px, 4vw, 52px);
  width: 100%;
  max-width: 640px;
  max-height: 90dvh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
#modal-backdrop.open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.3s;
}
.modal-close:hover { color: var(--gold); }

.modal-title {
  font-family: var(--ff-head);
  font-size: 30px;
  font-weight: 300;
  color: var(--text);
  margin: 8px 0 6px;
}
.modal-sub { font-size: 13px; color: var(--muted); margin-bottom: 32px; }

/* ════════════════════════════════════════
   HERO IMAGE
════════════════════════════════════════ */

/* Two-column grid inside hero */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 100vh;
  padding: 110px 0 64px;
}

/* Remove padding from hero-content (grid handles it now) */
.hero-content { padding: 0; }

.hero-img-col {
  position: relative;
  display: flex;
  align-items: center;
  /* Create room for the offset border on right + bottom */
  padding: 0 22px 22px 0;
}

/* Decorative gold offset frame — sits behind and to the bottom-right */
.hero-img-frame {
  position: relative;
  width: 100%;
}

/* Gold border: offset bottom-right shadow-frame */
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 22px -22px -22px 22px;   /* shifted right & down by 22px */
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
  /* Subtle inner glow on the border */
  box-shadow: inset 0 0 0 1px rgba(201, 169, 110, 0.06);
}

/* Corner accent — top-left thin gold lines for a jewellery-bracket feel */
.hero-img-frame::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 36px;
  height: 36px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  border-radius: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.7;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: block;
  position: relative;
  z-index: 1;
  filter: brightness(0.92) saturate(0.9);
  transition: filter 0.5s ease;
}
.hero-img:hover { filter: brightness(1) saturate(1); }

/* ════════════════════════════════════════
   ABOUT IMAGE
════════════════════════════════════════ */
.about-img-col { position: relative; }

.about-img-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.85);
  transition: filter 0.5s ease;
}
.about-img-frame:hover .about-img {
  filter: brightness(0.95) saturate(0.95);
}

/* Quote gradient overlay at bottom of image */
.about-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 32px 32px;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.6)  50%,
    transparent            100%
  );
}

/* Quote style inside overlay (override the old bordered version) */
.about-img-overlay .about-quote {
  font-family: var(--ff-head);
  font-size: clamp(17px, 1.9vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.45;
  padding: 0;
  border: none;
}
.about-img-overlay .q-mark { font-size: 1.3em; line-height: 0; vertical-align: -0.25em; }
.about-img-overlay .q-close { vertical-align: -0.12em; }

/* ════════════════════════════════════════
   RESPONSIVE — 1024px
════════════════════════════════════════ */
@media (max-width: 1023px) {
  /* Hero: stack vertically on tablet */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 100px 0 64px;
  }
  .hero-img-col { order: -1; padding: 0 16px 16px 0; } /* image above headline on tablet */
  .hero-img { height: 360px; }
  .hero-img-frame::before { inset: 16px -16px -16px 16px; }
  .hero-img-frame::after  { top: -8px; left: -8px; width: 28px; height: 28px; }

  .about-grid   { gap: 48px; }
  .about-img    { height: 360px; }
  .contact-grid { gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ════════════════════════════════════════
   RESPONSIVE — 767px  (2-col services)
════════════════════════════════════════ */
@media (max-width: 767px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════
   RESPONSIVE — 640px  (mobile)
════════════════════════════════════════ */
@media (max-width: 640px) {
  section { padding: var(--sp-sm) 0; }

  /* Nav */
  .nav-links,
  .nav-book-btn { display: none; }
  .hamburger    { display: flex; }

  /* Hero */
  .hero-grid  { grid-template-columns: 1fr; gap: 32px; padding: 88px 0 56px; }
  .hero-img-col { padding: 0; } /* no frame space needed on mobile */
  .hero-img     { height: 240px; }
  .hero-img-frame::before,
  .hero-img-frame::after { display: none; } /* hide frame on small screens */
  .hero-btns  { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }
  .stat-sep   { height: 34px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid   { grid-template-columns: 1fr; gap: 36px; }
  .about-img    { height: 280px; }
  .about-img-overlay { padding: 28px 20px 20px; }
  .feature-list { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 320px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════
   NAVBAR DROPDOWN
════════════════════════════════════════ */
.nav-dropdown { position: relative; }

.nav-dropdown-btn {
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--ease);
}
.nav-dropdown-btn:hover { color: var(--gold); }

.nav-chevron { transition: transform 0.25s ease; }
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--surface);
  border: 1px solid var(--border);
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 110;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-dropdown-item:hover { color: var(--gold); background: var(--surface-2); }

/* ─── Service card "Learn More" link ─── */
.svc-learn-more {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--ease), gap 0.2s;
}
.svc-learn-more:hover { color: var(--gold-light); gap: 8px; }

/* ════════════════════════════════════════
   LANDING PAGES — PAGE HERO
════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border);
}
.page-hero .overline { margin-bottom: 16px; }

.page-hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.page-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   LANDING PAGES — BENEFITS GRID
════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.benefit-icon { width: 44px; height: 44px; color: var(--gold); flex-shrink: 0; }
.benefit-title {
  font-family: var(--ff-head);
  font-size: 21px;
  font-weight: 400;
  color: var(--text);
}
.benefit-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════════════════
   LANDING PAGES — PROCESS STEPS
════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.step-num {
  font-family: var(--ff-head);
  font-size: 56px;
  color: var(--gold);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════════════════
   LANDING PAGES — BEFORE / AFTER
════════════════════════════════════════ */
.ba-section-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.ba-card {
  display: block;
  border: 1px solid var(--border-hi);
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}
.ba-card:hover .ba-img { transform: scale(1.04); }
.ba-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.ba-label {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.12em;
}
.ba-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 3px;
}

/* ════════════════════════════════════════
   LANDING PAGES — PRICING
════════════════════════════════════════ */
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
  max-width: 380px;
  width: 100%;
  text-align: center;
  transition: border-color var(--ease);
}
.price-card.featured {
  border-color: rgba(201,169,110,0.6);
  box-shadow: 0 0 0 1px rgba(201,169,110,0.1);
}
.price-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 5px 14px;
  margin-bottom: 28px;
}
.price-from {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.price-tag {
  font-family: var(--ff-head);
  font-size: clamp(42px, 6vw, 56px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.price-note { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.price-divider { height: 1px; background: var(--border); margin: 24px 0; }
.price-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}
.price-includes li { display: flex; align-items: flex-start; gap: 10px; }
.price-includes svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ════════════════════════════════════════
   LANDING PAGES — FAQ ACCORDION
════════════════════════════════════════ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--gold); }
.faq-chevron { color: var(--gold); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ════════════════════════════════════════
   LANDING PAGES — CTA STRIP
════════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(135deg, rgba(201,169,110,0.07) 0%, rgba(201,169,110,0.02) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}
.cta-strip .section-heading { margin-bottom: 12px; }
.cta-strip-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.6;
}
.cta-strip-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   LANDING PAGES — RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .page-hero        { padding: 100px 0 56px; }
  .process-steps    { grid-template-columns: 1fr; }
  .ba-grid          { grid-template-columns: 1fr; }
  .page-hero-btns   { flex-direction: column; align-items: flex-start; }
}
