/* ============================================
   GOUTHEZ OSTÉOPATHE DIJON - DESIGN MODERNE
   Palette : Beige chaud / Caramel / Terracotta
   ============================================ */

/* --- Variables --- */
:root {
  --primary: #C4956A;
  --primary-light: #DEB18F;
  --primary-dark: #8B6544;
  --primary-darker: #5C3D28;
  --accent: #D4845A;
  --accent-light: #E8A87C;
  --bg: #FDF8F4;
  --bg-warm: #F1D1B9;
  --bg-cream: #FAF0E8;
  --bg-card: #FFFFFF;
  --text: #3A2E26;
  --text-light: #7A6B5D;
  --text-muted: #A89888;
  --white: #FFFFFF;
  --border: rgba(139,101,68,0.08);
  --shadow-sm: 0 1px 3px rgba(92,61,40,0.06);
  --shadow-md: 0 4px 16px rgba(92,61,40,0.08);
  --shadow-lg: 0 12px 40px rgba(92,61,40,0.12);
  --shadow-xl: 0 20px 60px rgba(92,61,40,0.15);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'DM Serif Display', 'Playfair Display', Georgia, serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--primary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-darker);
  line-height: 1.2;
  font-weight: 400;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- SVG Icon Base --- */
.icon-svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.icon-svg.lg { width: 32px; height: 32px; }
.icon-svg.xl { width: 48px; height: 48px; stroke-width: 1.2; }

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10002;
  background: rgba(253,248,244,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(196,149,106,0.3);
}
.logo-icon svg { width: 26px; height: 26px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-darker);
  line-height: 1.2;
}
.logo-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 0.15rem; }
.nav a {
  padding: 0.5rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  color: var(--accent);
  background: rgba(212,132,90,0.06);
}

.nav-dropdown { position: relative; }
.nav-dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 0.6rem;
  min-width: 240px;
  z-index: 100;
  border: 1px solid var(--border);
}
.nav-dropdown:hover .nav-dropdown-content { display: block; }
.nav-dropdown-content a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}
.nav-dropdown-content a .dd-icon {
  width: 32px; height: 32px;
  background: var(--bg-cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-dropdown-content a .dd-icon svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
}
.nav-dropdown-content a:hover {
  background: var(--bg-cream);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: white !important;
  border-radius: var(--radius-full) !important;
  padding: 0.55rem 1.4rem !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 14px rgba(196,149,106,0.35);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,149,106,0.45) !important;
  color: white !important;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 10003;
  transition: background var(--transition);
}
.menu-toggle:hover { background: var(--bg-cream); }
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: all var(--transition);
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-cream) 40%, var(--bg-warm) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse, rgba(241,209,185,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,149,106,0.1);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(196,149,106,0.15);
}
.hero-badge svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; }

.hero h1 { margin-bottom: 1.2rem; }
.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 8px;
  background: rgba(212,132,90,0.15);
  border-radius: 4px;
  z-index: -1;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.2rem;
  max-width: 520px;
  line-height: 1.8;
}

.hero-btns, .hero-btns-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139,101,68,0.1);
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-dark);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 440px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.8);
}
.hero-card-img {
  height: 300px;
  background: linear-gradient(135deg, var(--bg-warm), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-card-img svg {
  width: 120px; height: 120px;
  stroke: rgba(255,255,255,0.4);
  stroke-width: 0.8;
  fill: none;
}
.hero-card-body { padding: 1.5rem; }
.hero-card-body h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.hero-card-body p { font-size: 0.85rem; color: var(--text-light); }

.hero-floating {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  animation: float 5s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.6);
}
.hero-floating svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; }
.hero-floating.top-right { top: 5%; right: -8%; animation-delay: 0.5s; }
.hero-floating.bottom-left { bottom: 45%; left: -8%; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  font-family: var(--font);
}
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 4px 16px rgba(196,149,106,0.35);
}
.btn-primary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,149,106,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-light);
}
.btn-outline:hover {
  background: var(--primary-dark);
  color: white;
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--accent);
}

/* --- Sections --- */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-cream); }
.section-warm { background: linear-gradient(135deg, var(--bg-warm), var(--primary-light)); }
.section-dark {
  background: linear-gradient(135deg, var(--primary-darker), var(--primary-dark));
  color: white;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-dark p { color: rgba(255,255,255,0.75); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-header .overline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.section-header .overline svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* --- Cards --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-warm));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.5; }

.card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.card-link:hover { gap: 0.6rem; color: var(--primary-dark); }
.card-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* --- Specialty Cards --- */
.specialty-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  display: block;
}
.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  color: var(--text);
}

.specialty-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.specialty-card-img svg {
  width: 56px; height: 56px;
  stroke: var(--primary-dark);
  fill: none;
  stroke-width: 1.2;
  transition: transform var(--transition);
}
.specialty-card:hover .specialty-card-img svg {
  transform: scale(1.1);
}

.specialty-card-body { padding: 1.5rem; }
.specialty-card-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.specialty-card-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* --- Team --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.team-card-img {
  height: 260px;
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-warm));
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-img svg {
  width: 80px; height: 80px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 0.8;
}
.team-card-body { padding: 1.8rem; }
.team-card-body h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.team-card-body .role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.team-card-body p { font-size: 0.9rem; color: var(--text-light); }

/* --- Info Boxes --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.info-box {
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.info-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.info-box-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-warm));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.1rem;
}
.info-box-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; }

.info-box h3,
.info-box h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary-darker);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.info-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0 0 0.3rem 0;
}
/* Wrapped structure (icon + text div side by side) */
.info-box > div:not(.info-box-icon) {
  flex: 1;
}

/* --- CTA --- */
.cta-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, var(--primary-darker), var(--primary-dark), var(--primary));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: var(--font);
  transition: color var(--transition);
  gap: 1rem;
}
.faq-question:hover { color: var(--accent); }
.faq-question .icon-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-question .icon-toggle svg {
  width: 14px; height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}
.faq-item.open .faq-question .icon-toggle {
  background: var(--accent);
}
.faq-item.open .faq-question .icon-toggle svg {
  stroke: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* --- Footer --- */
.footer {
  background: var(--primary-darker);
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h4 {
  color: white;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer p, .footer a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.footer a:hover { color: white; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition);
}
.footer-links a:hover { transform: translateX(3px); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 9rem 0 4.5rem;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-cream) 50%, var(--bg-warm) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .overline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 1.8rem;
}
.breadcrumb a { color: var(--primary-dark); }
.breadcrumb svg { width: 14px; height: 14px; stroke: var(--text-muted); fill: none; }

/* --- Content --- */
.content-section { padding: 4.5rem 0; }
.content-wrapper {
  max-width: 780px;
  margin: 0 auto;
}
.content-wrapper h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.content-wrapper h3 { margin-top: 2rem; margin-bottom: 0.8rem; }
.content-wrapper p { margin-bottom: 1.1rem; font-size: 1rem; }
.content-wrapper ul, .content-wrapper ol {
  margin: 1rem 0 1.5rem 0;
  padding-left: 0;
}
.content-wrapper li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}
.content-wrapper li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.highlight-box {
  background: linear-gradient(135deg, var(--bg-cream), rgba(241,209,185,0.3));
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.content-cta {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.content-cta h3 { margin-bottom: 0.5rem; }
.content-cta p { color: var(--text-light); margin-bottom: 1.5rem; }

/* --- Map --- */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: saturate(0.85) contrast(1.05);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Accessibility --- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  top: -100%; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  font-size: 0.85rem;
}
.skip-link:focus { top: 0; color: white; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 380px; margin: 0 auto; }
  .hero-floating { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    background: #ffffff;
    padding: 5.5rem 2rem 2rem;
    z-index: 10000;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
  }
  .nav.open a {
    padding: 1rem 1rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: none;
  }
  .nav.open a:not(.nav-cta).active,
  .nav.open a:not(.nav-cta):hover {
    color: var(--accent);
    font-weight: 600;
    background: none;
  }
  .nav.open .nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    border-radius: var(--radius-full) !important;
    border-bottom: none;
    margin-top: 1rem;
    text-align: center;
  }
  .nav.open .nav-dropdown {
    position: static;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
  }
  .nav.open .nav-dropdown > .nav-dropdown-trigger {
    border-bottom: none;
    padding: 1rem 1rem;
    font-size: 1.05rem;
  }
  .nav.open .nav-dropdown-content,
  .nav.open .nav-dropdown:hover .nav-dropdown-content {
    display: none;
    position: static;
    transform: none;
    left: auto;
    top: auto;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1.5rem;
    min-width: auto;
    background: transparent;
  }
  .nav.open .nav-dropdown.mobile-open .nav-dropdown-content {
    display: block;
  }
  .nav.open .nav-dropdown-trigger::after {
    content: '\203A';
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s;
    font-size: 1.2em;
  }
  .nav.open .nav-dropdown.mobile-open .nav-dropdown-trigger::after {
    transform: rotate(90deg);
  }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 3rem; }
  .page-hero { padding: 7rem 0 3.5rem; }
}

@media (max-width: 480px) {
  .hero-btns, .hero-btns-row { flex-direction: column; align-items: stretch; }
  .hero-btns .btn, .hero-btns-row .btn { white-space: nowrap; justify-content: center; padding: 0.85rem 1.2rem; font-size: 0.9rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}
