/* ================================================================
   SAPPHIRE ROOTS — UNIFIED WEBSITE DESIGN SYSTEM
   Teal theme · Single source of truth for all pages
   ================================================================ */

:root {
  --teal-50:  #F6F2EC;
  --teal-100: #EDE6DB;
  --teal-200: #C4D1C8;
  --teal-300: #8BA293;
  --teal-400: #5B7361;
  --teal-500: #243650;
  --teal-600: #15233B;
  --teal-700: #1E2E47;
  --teal-800: #1A2840;
  --teal-900: #15233B;

  --primary: var(--teal-600);
  --primary-dark: var(--teal-800);
  --primary-deep: var(--teal-900);
  --primary-pale: var(--teal-100);
  --primary-tint: var(--teal-50);

  --gold: #C2603F;
  --gold-light: #D98B6F;

  --ink: #0A0A0F;
  --ink-soft: #243650;
  --cream: #F6F2EC;
  --white: #FFFFFF;
  --stone: #6B6B6B;
  --ash: #E2D9CC;
  --ash-light: #EDE6DB;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-soft: 0 4px 20px rgba(10,10,15,0.06);
  --shadow-deep: 0 12px 60px rgba(10,10,15,0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* Global list reset — prevents dot bullets appearing from inline page CSS */
ul, ol { list-style: none; padding: 0; margin: 0; }
/* Bare ul/li inside content areas get a clean teal-dot style automatically */
.content-body ul:not([class]), .article-body ul:not([class]),
.faq-a ul:not([class]), .page-content ul:not([class]) {
  margin-bottom: 16px;
}
.content-body ul:not([class]) li, .article-body ul:not([class]) li,
.faq-a ul:not([class]) li, .page-content ul:not([class]) li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; line-height: 1.75; padding: 5px 0;
}
.content-body ul:not([class]) li::before,
.article-body ul:not([class]) li::before,
.faq-a ul:not([class]) li::before,
.page-content ul:not([class]) li::before {
  content: ''; width: 7px; height: 7px;
  background: var(--primary); border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }

/* NAV */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 1000;
  height: var(--nav-height);
  border-bottom: 1px solid var(--ash);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(10,10,15,0.06); }
.nav-inner {
  max-width: 1400px; margin: 0 auto; height: 100%;
  padding: 0 32px;
  display: flex; align-items: center; gap: 16px;
  min-width: 0;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink); flex-shrink: 0;
}
.nav-brand-logo { height: 42px; width: auto; display: block; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 700;
  color: var(--ink); letter-spacing: 0.01em;
}
.nav-brand-sub {
  font-size: 9.5px; color: var(--stone);
  text-transform: uppercase; letter-spacing: 0.1em;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink); text-decoration: none;
  border-radius: 30px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover {
  background: var(--primary-pale);
  color: var(--primary-dark);
}
.nav-link.active {
  background: var(--primary-pale);
  color: var(--primary-dark);
  font-weight: 600;
}
.nav-link.has-dropdown::after {
  content: '▾';
  font-size: 9px; margin-left: 2px; opacity: 0.6;
}

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px); left: 0;
  min-width: 240px;
  background: white;
  border: 1px solid var(--ash);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-deep);
  padding: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13px; color: var(--ink);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--primary-pale);
  color: var(--primary-dark);
}
.nav-dropdown-menu a.active { font-weight: 600; }

.nav-cta {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; white-space: nowrap; margin-left: auto;
}
.nav-phone {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  border-radius: 30px;
  background: var(--ash-light);
  color: var(--ink); text-decoration: none;
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition);
}
.nav-phone span { white-space: nowrap; }
.nav-phone:hover { background: var(--primary-pale); color: var(--primary-dark); }
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: #25D366; color: white;
  border-radius: 50%;
  font-size: 16px; text-decoration: none;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.btn-wa:hover { transform: scale(1.08); }
.btn-book {
  padding: 10px 20px;
  background: var(--primary);
  color: white !important;
  border-radius: 40px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: all var(--transition);
}
.btn-book:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(13,148,136,0.25);
}
.nav-hamburger {
  display: none;
  background: none; border: none;
  font-size: 22px; cursor: pointer;
  padding: 6px 10px; color: var(--ink);
}

/* HERO */
.hero {
  min-height: calc(100vh - var(--nav-height));
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
  padding: 60px 32px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; width: 100%; align-items: center;
}
.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-pale);
  color: var(--primary-dark);
  border-radius: 30px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--primary); }
.hero-subtitle {
  font-size: 17px; color: var(--stone);
  margin-bottom: 36px; line-height: 1.7;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.page-hero {
  padding: 80px 32px;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary-dark));
  color: white;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(20,184,166,0.3), transparent 60%),
              radial-gradient(ellipse at bottom left, rgba(201,168,76,0.2), transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; }
.breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(201,168,76,0.2);
  color: var(--gold-light);
  border-radius: 30px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero h1, .page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.015em; margin-bottom: 20px;
  color: white;
}
.page-hero h1 em, .page-title em { font-style: italic; color: var(--gold-light); }
.page-hero p, .page-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.75);
  line-height: 1.7; max-width: 720px; margin-bottom: 24px;
}
.page-meta-row {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.6);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--primary); color: white !important;
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13,148,136,0.25);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 27px;
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink);
  border-radius: 50px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--teal); color: white !important; }

/* SECTIONS */
.section { padding: 100px 32px; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--primary-pale);
  color: var(--primary-dark);
  border-radius: 30px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.015em; margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--primary); }
.section-subtitle {
  font-size: 17px; color: var(--stone);
  max-width: 640px; margin: 0 auto; line-height: 1.7;
}
.section.dark { background: var(--primary-deep); color: white; }
.section.dark .section-title { color: white; }
.section.dark .section-title em { color: var(--gold-light); }
.section.dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--ash);
  text-decoration: none; color: inherit;
  transition: all var(--transition);
  display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-color: var(--primary);
}
.service-card-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px; color: var(--stone); line-height: 1.6;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center;
  padding: 60px 32px;
  max-width: 1200px; margin: 0 auto;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 600;
  color: var(--primary); line-height: 1;
}
.stat-label {
  font-size: 13px; color: var(--stone); margin-top: 8px;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ARTICLE */
.article-layout {
  max-width: 1280px; margin: 0 auto; padding: 60px 32px;
  display: grid; grid-template-columns: 1fr 320px; gap: 60px;
}
.article-body { min-width: 0; }
.article-sidebar {
  position: sticky; top: calc(var(--nav-height) + 20px);
  align-self: start; display: flex; flex-direction: column; gap: 16px;
}
.content-section { margin-bottom: 40px; }
.content-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 36px); font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 18px; color: var(--ink);
}
.content-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  margin-top: 28px; margin-bottom: 12px; color: var(--ink);
}
.content-p {
  font-size: 16px; line-height: 1.85;
  color: var(--ink); margin-bottom: 18px;
}
.content-ul, .content-ol {
  margin-bottom: 22px; padding-left: 0; list-style: none;
}
.content-ul li {
  position: relative; padding-left: 30px;
  font-size: 15.5px; line-height: 1.85;
  margin-bottom: 12px;
}
.content-ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--primary); font-weight: 700;
}
.info-box {
  background: var(--primary-pale);
  border-left: 4px solid var(--primary);
  padding: 20px 24px; border-radius: 8px;
  margin: 24px 0;
}
.info-box-title {
  font-weight: 700; color: var(--primary-dark); margin-bottom: 8px;
}

/* FORMS */
.contact-section { padding: 80px 32px; background: white; }
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-form-card {
  background: white; border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-soft);
  border: 1px solid var(--ash);
}
.contact-form-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; margin-bottom: 8px;
}
.form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.fg { display: block; margin-bottom: 16px; }
.fg label {
  display: block;
  font-size: 12px; font-weight: 700; color: var(--ink);
  margin-bottom: 5px; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--ash);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px;
  color: var(--ink); background: var(--cream);
  transition: border-color var(--transition);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--primary); background: white;
}
.fg textarea { min-height: 100px; resize: vertical; }
.submit-btn {
  width: 100%; padding: 14px;
  background: var(--primary); color: white;
  border: none; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background var(--transition);
}
.submit-btn:hover { background: var(--primary-dark); }

.success-box {
  text-align: center; padding: 32px 24px;
  background: #D1FAE5; border-radius: var(--radius);
}
.success-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; color: #065F46; margin-bottom: 10px;
}
.success-box p { color: #047857; margin-bottom: 16px; }
.wa-btn-big {
  display: inline-block; padding: 14px 28px;
  background: #25D366; color: white !important;
  border-radius: 50px; text-decoration: none;
  font-weight: 600; margin-top: 8px;
}
.form-error-box {
  background: #FEE2E2; color: #991B1B;
  padding: 12px 16px; border-radius: var(--radius-sm);
  margin-bottom: 16px; font-size: 14px;
  border-left: 4px solid #EF4444;
}

.contact-info-col { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: white;
  border: 1px solid var(--ash); border-radius: var(--radius);
}
.ci-icon {
  width: 44px; height: 44px;
  background: var(--primary-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ci-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 4px;
}
.ci-value {
  font-size: 15px; font-weight: 500;
  color: var(--ink); line-height: 1.5;
}
.ci-value a { color: inherit; }
.ci-link {
  display: inline-block;
  font-size: 13px; margin-top: 6px;
  color: var(--primary);
}
.map-embed {
  width: 100%; height: 400px; border: 0;
  border-radius: var(--radius); margin-top: 24px;
  box-shadow: var(--shadow-soft);
}

/* FOOTER */
.site-footer {
  background: var(--teal); color: white;
  padding: 80px 32px 32px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px;
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand .footer-logo img { height: 40px; width: auto; }
.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 13.5px; line-height: 1.7; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; padding: 9px 16px;
  background: rgba(255,255,255,0.08); color: white;
  border-radius: 30px; text-decoration: none;
  font-size: 12px; font-weight: 500;
  transition: background var(--transition);
}
.social-btn:hover { background: rgba(255,255,255,0.16); color: white; }
.footer-col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px; color: rgba(255,255,255,0.5);
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 13.5px; text-decoration: none;
  padding: 5px 0;
}
.footer-col a:hover { color: var(--teal-300); }
.footer-col p {
  font-size: 13.5px; color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.footer-col p a { display: inline; }
.footer-cta-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 11px 20px;
  background: var(--primary); color: white !important;
  border-radius: 30px; text-decoration: none;
  font-size: 13px; font-weight: 600;
  margin-top: 12px;
}
.footer-cta-btn:hover { background: var(--primary-dark); color: white !important; }
.footer-bottom {
  max-width: 1280px; margin: 48px auto 0; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.float-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366; color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition);
}
.float-wa:hover { transform: scale(1.1); }

.bottom-cta {
  padding: 90px 32px;
  background: linear-gradient(135deg, var(--ink), var(--primary-deep));
  color: white; text-align: center;
  position: relative; overflow: hidden;
}
.bottom-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.15), transparent 70%);
}
.bottom-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600; margin-bottom: 16px;
  position: relative; color: white;
}
.bottom-cta h2 em { font-style: italic; color: var(--gold-light); }
.bottom-cta p {
  font-size: 16px; color: rgba(255,255,255,0.75);
  max-width: 560px; margin: 0 auto 32px; position: relative;
}
.bottom-cta-buttons {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; position: relative;
}
.btn-cta-white {
  padding: 14px 30px;
  background: white; color: var(--ink) !important;
  border-radius: 50px; text-decoration: none;
  font-size: 14px; font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 20px; gap: 12px; }
  .nav-links {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-deep);
    transform: translateY(-200%);
    transition: transform var(--transition);
    gap: 0;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    border-top: 1px solid var(--ash);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links { align-items: stretch; text-align: left; }
  .nav-dropdown { width: 100%; }
  .nav-link { padding: 14px 16px; border-radius: 8px; width: 100%; justify-content: flex-start; text-align: left; font-size: 16px; border-bottom: 1px solid var(--ash); }
  .nav-dropdown-menu a { padding: 11px 16px; font-size: 14.5px; display: block; }
  .nav-dropdown-menu {
    position: static; box-shadow: none;
    transform: none; min-width: 0;
    padding: 0 0 0 16px; margin: 0;
    background: var(--ash-light); border: none;
    /* Collapsed by default on mobile */
    max-height: 0; overflow: hidden; opacity: 1; visibility: visible;
    transition: max-height 0.3s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 600px; padding: 4px 0 8px 16px; }
  .nav-dropdown > .has-dropdown::after { content: " ▾"; font-size: 11px; opacity: 0.6; }
  .nav-dropdown.open > .has-dropdown::after { content: " ▴"; }
  .nav-hamburger { display: block; }
  .nav-phone { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .article-layout { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; }
  .article-sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-band { grid-template-columns: repeat(2,1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .hero { padding: 40px 20px; }
  .page-hero { padding: 60px 20px; }
  .section { padding: 60px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta a { width: 100%; text-align: center; justify-content: center; }
  .nav-brand-text { display: none; }
  .nav-brand-logo { height: 38px; }
}

/* ================================================================
   FAQ ACCORDION — Beautiful modern design, used across all pages
   ================================================================ */
.faq-section { max-width: 860px; margin: 0 auto; }
.faq-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--ink); margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-pale);
}
.faq-item {
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: white;
  border: 1.5px solid var(--ash);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: var(--primary); }
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(13,148,136,0.1);
}
.faq-q {
  font-size: 15.5px; font-weight: 600; color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; user-select: none;
  padding: 20px 24px;
  transition: background var(--transition);
  line-height: 1.5;
}
.faq-q:hover { background: var(--primary-tint); }
.faq-item.open .faq-q { background: var(--primary-pale); color: var(--primary-dark); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--ash); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 300; color: var(--primary);
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--primary); color: white;
  transform: rotate(45deg);
}
.faq-a {
  font-size: 15px; color: var(--stone); line-height: 1.85;
  padding: 0 24px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 800px; padding: 4px 24px 22px; }
.faq-a p { margin-bottom: 10px; }
.faq-a strong { color: var(--ink); }
/* FAQ CTA Box */
.faq-cta {
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-tint));
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  padding: 32px; text-align: center; margin-top: 40px;
}
.faq-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; margin-bottom: 10px;
}
.faq-cta p { color: var(--stone); margin-bottom: 20px; font-size: 15px; }
