/* =============================================================
   Glow Dental Group - styles.css
   Aesthetic: soft luxury, warm rose & gold, sage accents.
   Accessibility: WCAG 2.1 AA contrast, visible focus rings,
   prefers-reduced-motion respected, prefers-color-scheme aware.
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette - checked for AA contrast on cream backgrounds */
  --cream:        #faf6f3;
  --cream-2:      #f4ebe5;
  --ivory:        #fffaf6;
  --rose-50:      #f9e8e3;
  --rose-300:     #e8b5a8;
  --rose-500:     #a8604f;   /* primary rose - 4.93:1 white-on-rose (WCAG AA) */
  --rose-600:     #8e4d3e;   /* hover - even higher contrast */
  --rose-700:     #6e3d31;   /* used for kicker/link text on cream - AAA */
  --rose-accent:  #c98b7d;   /* lighter rose for decorative use only (orbs, gradients) */
  --sage-200:     #d8e0d3;
  --sage-500:     #7c9072;
  --sage-700:     #4d5d44;
  --gold-400:     #c9a464;
  --gold-600:     #997a45;
  --ink-900:      #1f1612;   /* primary text - AAA contrast on cream */
  --ink-700:      #3d2f29;
  --ink-500:      #5e4d44;
  --ink-400:      #7a6a60;
  --line:         #e4d8cf;
  --shadow-soft:  0 1px 2px rgba(31,22,18,.06), 0 8px 24px rgba(31,22,18,.06);
  --shadow-lift:  0 2px 6px rgba(31,22,18,.08), 0 16px 40px rgba(31,22,18,.10);
  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    32px;

  /* Typography */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "Courier New", monospace;

  /* Layout */
  --container:    1180px;
  --gap:          clamp(16px, 2.5vw, 28px);
  --section-pad:  clamp(56px, 8vw, 112px);

  /* Focus */
  --focus-ring:   3px solid var(--rose-600);
  --focus-offset: 3px;
}

/* Optional font import - graceful fallback if blocked */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=Inter:wght@400;500;600;700&display=swap");

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: light; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--rose-700); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--rose-600); text-decoration-thickness: 2px; }

/* Visible focus on all interactive elements */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Visually hidden */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--ink-900); color: var(--ivory);
  padding: 12px 18px; border-radius: var(--radius-sm);
  z-index: 1000; font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus,
.skip-link:focus-visible { top: 12px; color: var(--ivory); text-decoration: none; outline: var(--focus-ring); outline-offset: var(--focus-offset); }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; color: var(--ink-900); line-height: 1.15; margin: 0 0 .4em; letter-spacing: -.01em; }
h1 { font-size: clamp(34px, 5.4vw, 60px); }
h2 { font-size: clamp(26px, 3.6vw, 42px); }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; font-family: var(--font-body); letter-spacing: -.005em; }
h1 em, h2 em { font-style: italic; color: var(--rose-700); }
p { margin: 0 0 1em; max-width: 65ch; }
.lead { font-size: clamp(17px, 1.7vw, 19px); color: var(--ink-700); line-height: 1.55; }
.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-700);
  font-weight: 600;
  margin: 0 0 14px;
  padding: 6px 12px;
  background: var(--rose-50);
  border-radius: 999px;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.section { padding: var(--section-pad) 0; }
.section.compact { padding: clamp(36px, 6vw, 72px) 0; }
.band { background: linear-gradient(180deg, var(--ivory) 0%, var(--cream-2) 100%); }
.dark-section { background: linear-gradient(135deg, var(--ink-900) 0%, #2a1d18 100%); color: var(--ivory); }
.dark-section h2, .dark-section h3 { color: var(--ivory); }
.dark-section .kicker { background: rgba(255,255,255,.08); color: var(--rose-300); }
.dark-section .lead { color: rgba(255,255,255,.78); }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.center-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.center-head .lead, .center-head p { margin-left: auto; margin-right: auto; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.actions.center { justify-content: center; }

/* ---------- Announcement banner ---------- */
.announce {
  background: linear-gradient(90deg, #6e3d31 0%, #8e4d3e 100%);
  color: #fff6f0;
}
.announce-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px clamp(20px, 4vw, 40px);
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  text-align: center;
}
.announce-inner span { color: var(--gold-400); font-size: 15px; }
.announce p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  max-width: none;
}
.announce strong { color: #fff; font-weight: 700; }
@media (max-width: 560px) {
  .announce p { font-size: 13px; }
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink-900); color: var(--ivory);
  font-size: 13px; padding: 9px 0;
}
.topbar a { color: var(--ivory); text-decoration: none; }
.topbar a:hover { color: var(--rose-300); text-decoration: underline; }
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
@media (max-width: 640px) {
  .topbar { font-size: 12px; }
  .topbar-inner > div:first-child { display: none; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(8px);
}
.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 40px);
  display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink-900); }
.brand:hover { color: var(--ink-900); }
.brand-logo { width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -.01em; }
.brand-tag { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--rose-700); font-weight: 600; }

.nav nav { margin-left: auto; }
.nav-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 4px; align-items: center;
}
.nav-links a {
  color: var(--ink-700);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--rose-50); color: var(--rose-700); }
.nav-links a[aria-current="page"] { color: var(--rose-700); background: var(--rose-50); }

.nav-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-left: auto;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  min-width: 44px; min-height: 44px;
  cursor: pointer;
  touch-action: manipulation;
}
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--ink-900); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-cta { display: none; }
  .brand-tag { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav nav[data-open="true"] { max-height: 80vh; }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    padding: 16px clamp(20px, 4vw, 40px) 24px;
    gap: 4px;
  }
  .nav-links a { padding: 14px 16px; font-size: 17px; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: 18px 0 0; font-size: 14px; }
.breadcrumbs ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  color: var(--ink-500);
}
.breadcrumbs li:not(:last-child)::after {
  content: "›"; margin-left: 8px; color: var(--ink-400);
}
.breadcrumbs a { color: var(--ink-500); text-decoration: none; }
.breadcrumbs a:hover { color: var(--rose-700); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--ink-900); font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  min-height: 44px;
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0); }
.btn.rose { background: var(--rose-500); color: white; border-color: var(--rose-500); }
.btn.rose:hover { background: var(--rose-600); border-color: var(--rose-600); color: white; }
.btn.light { background: var(--ivory); color: var(--ink-900); border-color: var(--line); }
.btn.light:hover { background: var(--cream-2); color: var(--ink-900); }
.btn.ghost { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn.ghost:hover { background: var(--ink-900); color: var(--ivory); }
.dark-section .btn.ghost { color: var(--ivory); border-color: var(--ivory); }
.dark-section .btn.ghost:hover { background: var(--ivory); color: var(--ink-900); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px); overflow: hidden; }
.hero.home {
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(168,96,79,.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(124,144,114,.10) 0%, transparent 60%),
    var(--cream);
}
.hero.simple { background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%); }
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-orb {
  position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,139,125,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-copy h1 { margin-top: 8px; }
.trust-mini {
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink-700);
}
.trust-mini strong { color: var(--rose-700); font-weight: 700; }

.hero-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.hero-card > img {
  width: 88px; height: 88px;
  margin: 0 0 18px;
  object-fit: contain;
}
.hero-card-h { font-size: clamp(20px, 2vw, 24px); margin-top: 6px; }
.stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 22px 0 0; padding: 0;
}
.stat {
  background: var(--cream); padding: 14px 16px;
  border-radius: var(--radius); border: 1px solid var(--line);
}
.stat dt { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500); margin: 0 0 4px; }
.stat dd { margin: 0; display: flex; align-items: baseline; gap: 6px; }
.stat dd strong { font-family: var(--font-display); font-size: 24px; color: var(--rose-700); font-weight: 600; }
.stat dd span { font-size: 12px; color: var(--ink-500); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--cream); padding: 0 0 var(--section-pad); margin-top: -20px; position: relative; z-index: 2; }
.trust-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-lift);
  display: grid; gap: clamp(20px, 3vw, 36px);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px) { .trust-card { grid-template-columns: 1fr; } }
.trust-item small {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--gold-600);
  letter-spacing: .1em;
}
.trust-item h2, .trust-item h3 { font-size: clamp(18px, 2vw, 22px); font-family: var(--font-display); font-weight: 600; margin: 6px 0 8px; }
.trust-item p { font-size: 15px; color: var(--ink-700); margin: 0; }

/* ---------- Cards ---------- */
.card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2.5vw, 30px);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  color: var(--ink-900);
  text-decoration: none;
  display: block;
}
.card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--rose-50); color: var(--rose-700);
  font-size: 22px; margin-bottom: 16px;
  font-weight: 600;
}
.card h3 { margin: 8px 0 8px; }
.card p { color: var(--ink-700); font-size: 15px; margin: 0; }
a.card { text-decoration: none; }
a.card:hover, .card.lift:hover,
a.card:focus-visible, .card.lift:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--rose-300);
}
.card-arrow {
  position: absolute; top: 22px; right: 22px;
  color: var(--rose-700);
  font-size: 18px;
  opacity: .5;
  transition: opacity .2s ease, transform .2s ease;
}
a.card:hover .card-arrow { opacity: 1; transform: translateX(4px); }

/* ---------- Office showcase ---------- */
.office-grid {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (max-width: 900px) { .office-grid { grid-template-columns: 1fr; } }
.office-frame { position: relative; }
.office-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
.caption-card {
  position: absolute; bottom: -20px; left: 24px;
  background: var(--ivory); padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  max-width: 70%;
}
.caption-card strong { display: block; font-family: var(--font-display); font-size: 17px; }
.caption-card span { font-size: 13px; color: var(--ink-500); }

/* ---------- Doctor ---------- */
.doctor-wrap {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(280px, 1fr) 2fr;
  align-items: start;
}
@media (max-width: 900px) { .doctor-wrap { grid-template-columns: 1fr; } }
.doctor-card {
  background: linear-gradient(180deg, var(--rose-50) 0%, var(--ivory) 100%);
  border: 1px solid var(--rose-300);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  text-align: center;
}
.doctor-card img {
  width: 120px; height: 120px;
  margin: 0 auto 20px;
  object-fit: contain;
}
.doctor-card img.doctor-photo {
  width: 100%;
  height: auto;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.6);
  margin-bottom: 22px;
}
.doctor-card p { margin: 8px auto 0; }
.text-stack > p { margin-bottom: 18px; }
.text-stack > p:last-child { margin-bottom: 0; }
.quote {
  margin: 28px 0 0;
  padding: 24px 28px;
  border-left: 3px solid var(--rose-500);
  background: var(--rose-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink-900);
  line-height: 1.4;
}
.quote cite { display: block; margin-top: 12px; font-size: 14px; color: var(--ink-500); font-style: normal; font-family: var(--font-body); }

/* ---------- Pathways ---------- */
.pathway {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  color: var(--ivory);
  text-decoration: none;
  display: block;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.pathway:hover,
.pathway:focus-visible {
  background: rgba(255,255,255,.07);
  border-color: var(--rose-300);
  transform: translateY(-3px);
  color: var(--ivory);
}
.pathway small {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--rose-300); font-weight: 600;
}
.pathway h3 { color: var(--ivory); margin: 12px 0 10px; font-family: var(--font-display); font-size: 24px; font-weight: 500; }
.pathway p { color: rgba(255,255,255,.72); font-size: 15px; margin: 0; }

/* ---------- SEO pill row ---------- */
.seo-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.seo-pills.center { justify-content: center; }
.pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--ink-700);
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.pill:hover {
  background: var(--rose-50);
  border-color: var(--rose-300);
  color: var(--rose-700);
}

/* ---------- Steps ---------- */
.step-grid { list-style: none; padding: 0; margin: 0; }
.step-card { position: relative; padding-top: 60px; }
.step-num {
  position: absolute; top: 22px; left: 22px;
  width: 36px; height: 36px;
  background: var(--rose-500); color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
}

/* ---------- FAQ cards ---------- */
.faq-card h3 { font-size: 17px; margin-bottom: 8px; }

/* ---------- Form section ---------- */
.form-section { background: var(--ink-900); color: var(--ivory); }
.form-section--compact { padding: clamp(44px, 6vw, 76px) 0; }
.form-section--embed { padding: clamp(56px, 7vw, 88px) 0; }
.form-intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto clamp(24px, 4vw, 40px);
}
.form-section h2,
.form-intro h2,
.contact-cta h2 { color: var(--ivory); }
.form-intro .kicker,
.contact-cta .kicker { background: rgba(255,255,255,.08); color: var(--rose-300); }
.form-section .lead { color: rgba(255,255,255,.82); }
.form-lead { font-size: 18px; color: rgba(255,255,255,.82); }
.form-intro .form-lead { margin-left: auto; margin-right: auto; }
.contact-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 14px;
}
.contact-list--inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.contact-list li {
  display: flex; align-items: flex-start; gap: 14px;
  color: rgba(255,255,255,.88);
}
.contact-list a { color: var(--rose-300); text-decoration: none; }
.contact-list a:hover { color: var(--ivory); text-decoration: underline; }
.contact-list address { font-style: normal; }
.ci {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  max-width: 980px;
  margin: 0 auto;
}
.contact-cta .form-lead { margin-bottom: 0; }
.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.paubox-embed {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.paubox-embed--centered {
  margin: 0 auto;
}
.paubox-embed iframe {
  display: block;
  width: 100%;
  height: 760px;
  min-height: 760px;
  border: 0;
}
.paubox-mobile-cta {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: clamp(32px, 6vw, 48px) clamp(24px, 5vw, 40px);
  background: var(--ivory);
  border-radius: var(--radius-lg);
  max-width: 480px;
  margin: 0 auto;
}
.paubox-mobile-cta > p {
  color: var(--ink-700);
  margin: 0;
  font-size: 17px;
  max-width: 36ch;
}
.paubox-mobile-btn { font-size: 17px; padding: 16px 32px; }
.paubox-mobile-note { font-size: 13px; color: var(--ink-500); margin: 0; max-width: none; }
.form-note--embed {
  max-width: 860px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  text-align: center;
}
.form-note--embed a { color: var(--rose-300); }
@media (max-width: 760px) {
  .contact-list--inline { grid-template-columns: 1fr; }
  .contact-cta { align-items: flex-start; flex-direction: column; }
  .contact-cta-actions { justify-content: flex-start; }
  .paubox-embed { display: none; }
  .paubox-mobile-cta { display: flex; }
}

/* ---------- Homepage CTA block ---------- */
.cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-block h2 { color: var(--ivory); }
.cta-block .kicker { background: rgba(255,255,255,.08); color: var(--rose-300); }
.cta-block .lead { color: rgba(255,255,255,.78); margin-bottom: clamp(20px, 3vw, 36px); }
.cta-block .actions { justify-content: center; }

/* ---------- Homepage CTA section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--ink-900) 0%, #2d1c18 60%, #3a2015 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 420px;
  background: radial-gradient(ellipse, rgba(169,96,79,.18) 0%, transparent 68%);
  pointer-events: none;
}
.cta-ornament {
  display: block;
  font-size: 26px;
  color: var(--gold-400);
  margin-bottom: 14px;
  line-height: 1;
}
.cta-trust {
  margin-top: 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,.60);
  letter-spacing: .03em;
}

/* Ghost button on dark form-section backgrounds */
.form-section .btn.ghost {
  color: rgba(255,255,255,.82);
  border-color: rgba(255,255,255,.45);
}
.form-section .btn.ghost:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.65);
}
.form-consent {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  text-align: center;
  line-height: 1.5;
  letter-spacing: .01em;
}

/* ---------- Contact page map ---------- */
.contact-address { font-style: normal; line-height: 1.6; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--cream-2);
  min-height: 360px;
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------- Legal pages ---------- */
.legal-card { max-width: 800px; margin: 0 auto; }
.legal-card h2 { margin-bottom: 16px; }
.legal-card h3 { margin: 28px 0 10px; font-family: var(--font-body); font-size: 18px; color: var(--ink-900); }
.legal-card p, .legal-card li { color: var(--ink-700); line-height: 1.7; }
.legal-card ul { padding-left: 22px; }
.legal-card li { margin-bottom: 6px; }

/* Consent / info callout */
.notice {
  background: var(--sage-200);
  border: 1px solid var(--sage-500);
  border-left: 4px solid var(--sage-700);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 0 auto;
  max-width: 820px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--sage-700);
}
.notice strong { color: var(--sage-700); }

/* ---------- 404 ---------- */
.nf-links { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.nf-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 24px; }
.nf-links a { color: var(--rose-700); font-weight: 500; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.78);
  margin-top: 0;
}
.footer-grid {
  display: grid; gap: clamp(24px, 3vw, 40px);
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  padding: clamp(48px, 6vw, 72px) clamp(20px, 4vw, 40px);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
footer img { width: 48px; height: 48px; margin-bottom: 12px; }
footer strong { color: var(--ivory); }
.footer-tag { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--rose-300); }
.footer-h {
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 600;
}
footer address { font-style: normal; line-height: 1.7; }
footer a { color: rgba(255,255,255,.78); text-decoration: none; }
footer a:hover { color: var(--rose-300); text-decoration: underline; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom {
  background: #170f0c;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,.55); max-width: none; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: space-between; align-items: baseline; }
.footer-disclaimer { font-size: 12px; max-width: 600px; }

/* ---------- Print ---------- */
@media print {
  .topbar, .site-header, .nav-toggle, .form-section, footer, .skip-link { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
  .card { box-shadow: none; border: 1px solid #ccc; }
}

/* ---------- High contrast / forced colors ---------- */
@media (forced-colors: active) {
  .btn { border: 2px solid currentColor; }
  .card { border: 1px solid currentColor; }
}
