/* ============================================================
   PureClair Voyages — base.css
   Palette: Forêt #0E241C | Émeraude #0F7A5A | Sable #C4A35A
   Style: editorial voyage, calme, belge
   ============================================================ */

:root {
  --dark:      #0E241C;
  --dark-mid:  #16352A;
  --dark-lt:   #214A3B;
  --teal:      #0F7A5A;
  --teal-lt:   #7DD3B0;
  --teal-dk:   #0B5C44;
  --amber:     #C4A35A;
  --amber-lt:  #D8BD7E;
  --white:     #FFFFFF;
  --light:     #F3F7F5;
  --mid:       #D4E2DA;
  --text:      #13241C;
  --muted:     #4E6359;
  --danger:    #C45C4A;
  --success:   #0F7A5A;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 1px 3px rgba(14,36,28,.08), 0 4px 16px rgba(14,36,28,.06);
  --shadow-lg: 0 4px 6px rgba(14,36,28,.05), 0 10px 40px rgba(14,36,28,.12);
  --transition: 180ms ease;
  --max-w:     1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: var(--teal-dk); text-decoration: none; }
a:hover { text-decoration: underline; }
button:not(:disabled), [role="button"]:not(:disabled) { cursor: pointer; }

h1 { font-size: clamp(2rem, 4.5vw, 3.15rem); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); font-weight: 700; line-height: 1.25; letter-spacing: -.01em; }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; }
p  { font-size: 1rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dk);
  margin-bottom: .75rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--teal-dk);
  border-radius: 2px;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section    { padding: 80px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15,122,90,.35);
}
.btn-primary:hover { background: var(--teal-dk); box-shadow: 0 6px 20px rgba(15,122,90,.45); text-decoration: none; }
.btn-amber {
  background: var(--amber);
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(196,163,90,.32);
}
.btn-amber:hover { background: var(--amber-lt); text-decoration: none; }
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); text-decoration: none; }

.top-bar {
  background: var(--teal);
  color: rgba(255,255,255,.95);
  font-size: .75rem;
  text-align: center;
  padding: .45rem 20px;
  letter-spacing: .02em;
}

.site-header {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--mid);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: -.02em;
}
.logo em { color: var(--teal); font-style: normal; }
.logo .logo-sub {
  display: inline-block;
  margin-left: .45rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.logo:hover { text-decoration: none; }
.logo-icon {
  width: 32px;
  height: 32px;
  margin-right: .55rem;
  flex-shrink: 0;
  display: block;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-nav a:not(.btn) {
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark);
}
.header-nav a:not(.btn):hover { color: var(--teal-dk); text-decoration: none; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--dark);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--dark);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hero */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.hero-bg-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(15,122,90,.28) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-glow-2 {
  position: absolute;
  bottom: 0; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,163,90,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 22%, black 52%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 22%, black 52%);
}
.hero-content {
  position: relative;
  text-align: left;
  max-width: 560px;
  margin: 0;
  padding-bottom: 56px;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(15,122,90,.22);
  border: 1px solid rgba(125,211,176,.32);
  color: var(--teal-lt);
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: .03em;
}
.hero-badge i, .hero-badge svg { width: 14px; height: 14px; stroke-width: 2; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 strong { color: var(--amber); font-weight: 700; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
  max-width: 500px;
  margin: 0 0 2.25rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-note {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  padding-bottom: 40px;
}

.trust-strip {
  background: var(--dark-mid);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.62);
}
.trust-strip span { display: inline-flex; align-items: center; gap: .4rem; }
.trust-strip svg { width: 15px; height: 15px; }

.stats-row {
  background: var(--light);
  padding: 36px 0;
  border-bottom: 1px solid var(--mid);
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.03em;
}
.stat-item .desc {
  font-size: .78rem;
  color: var(--muted);
  max-width: 170px;
  line-height: 1.4;
  margin-top: .2rem;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.check-card {
  background: var(--light);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 24px;
}
.check-num {
  width: 32px; height: 32px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 12px;
}
.check-card h3 { color: var(--dark); font-size: 1rem; margin-bottom: .45rem; }
.check-card p { color: var(--text); font-size: .92rem; line-height: 1.65; }

.section-head { max-width: 680px; margin: 0 auto 2.2rem; text-align: center; }
.section-head h2 { color: var(--dark); margin-bottom: .75rem; }
.section-head p { color: var(--muted); line-height: 1.75; }
.section-kicker {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-dk); margin-bottom: .75rem;
}
.section-alt { background: var(--light); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 24px;
}
.step-num {
  width: 32px; height: 32px;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  margin-bottom: 12px;
}
.step-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--teal-dk); margin-bottom: .4rem;
}
.step-card h3 { color: var(--dark); margin-bottom: .4rem; }
.step-card p { color: var(--muted); font-size: .85rem; line-height: 1.65; }

.includes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.includes-item {
  display: flex;
  gap: 16px;
  background: var(--light);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 22px;
}
.includes-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 10px;
  color: var(--teal-dk);
}
.includes-icon svg { width: 20px; height: 20px; }
.includes-item h4 { color: var(--dark); font-size: .98rem; margin-bottom: .3rem; }
.includes-item p { color: var(--muted); font-size: .85rem; line-height: 1.65; }

.before-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.before-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 24px;
}
.before-card h3 { color: var(--dark); margin-bottom: .5rem; font-size: 1rem; }
.before-card p { color: var(--muted); font-size: .87rem; line-height: 1.7; }

.cta-section {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--dark) 100%);
  color: var(--white);
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.72); max-width: 540px; margin: 0 auto 2rem; }
.steps-inline {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.step-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.step-inline-num {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
  flex-shrink: 0;
}

/* Form */
.form-section { background: var(--white); }
.form-container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.form-intro h2 { color: var(--dark); margin-bottom: .75rem; }
.form-intro p  { color: var(--muted); margin-bottom: 1.5rem; line-height: 1.75; }
.form-intro ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.form-intro ul li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
}
.form-intro ul li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.form-card {
  background: var(--light);
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-card h3 { color: var(--dark); margin-bottom: 1.5rem; font-size: 1.1rem; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--mid);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal);
}
.form-group input.error { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: .72rem; margin-top: 4px; display: none; }
.field-error.visible { display: block; }
#consent-error { display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-check-group {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 14px 0;
}
.form-check-group input { margin-top: 2px; flex-shrink: 0; accent-color: var(--teal); width: auto; }
.btn-submit { width: 100%; justify-content: center; font-size: 1rem; padding: .95rem; margin-top: .25rem; }
.form-note { font-size: .7rem; color: var(--muted); text-align: center; margin-top: .6rem; line-height: 1.5; }
#form-success { display: none; text-align: center; padding: 12px 0 4px; }
#form-success.visible { display: block; }
#form-success .ok-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: rgba(15,122,90,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--success); font-size: 1.5rem; font-weight: 700;
}
#form-success h3 { color: var(--dark); margin-bottom: .5rem; }
#form-success p { color: var(--muted); font-size: .9rem; line-height: 1.65; }
#form-success ul {
  list-style: none; text-align: left; margin-top: 1rem;
  color: var(--muted); font-size: .85rem;
  display: flex; flex-direction: column; gap: .4rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.split-copy h2 { color: var(--dark); margin-bottom: 1rem; }
.split-copy p { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }

/* Portraits */
.portrait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portrait-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.portrait-card .who {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-dk);
  margin-bottom: .7rem;
}
.portrait-card h3 { color: var(--dark); margin-bottom: .5rem; font-size: 1.05rem; }
.portrait-card p { color: var(--muted); font-size: .88rem; line-height: 1.7; }

/* Saison */
.saison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: .9rem;
}
.saison-table th, .saison-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--mid);
  vertical-align: top;
}
.saison-table th {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.saison-table td { color: var(--text); line-height: 1.55; }
.saison-table tr:last-child td { border-bottom: 0; }

.not-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 1.5rem;
}
.not-item {
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--mid);
  background: var(--white);
}
.not-item h3 { font-size: .95rem; color: var(--dark); margin-bottom: .35rem; }
.not-item p { font-size: .86rem; color: var(--muted); line-height: 1.65; }

.quote-band {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0;
}
.quote-band blockquote {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.92);
}
.quote-band cite {
  display: block;
  margin-top: 1.25rem;
  font-size: .82rem;
  font-style: normal;
  color: var(--teal-lt);
  letter-spacing: .04em;
}

/* FAQ */
.faq-section { background: var(--light); }
.faq-section h2 { color: var(--dark); text-align: center; margin-bottom: 2rem; }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q .plus { color: var(--teal); font-size: 1.1rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0 20px; }
.faq-item.open .faq-a { max-height: 640px; padding: 0 20px 18px; }
.faq-a p { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.faq-a a { color: var(--teal-dk); }

.final-cta { text-align: center; }
.final-cta h2 { color: var(--dark); margin-bottom: 1rem; }
.final-cta p { color: var(--muted); max-width: 540px; margin: 0 auto 1.5rem; line-height: 1.7; }

/* Footer */
.site-footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 56px 0 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { color: var(--white); margin-bottom: .75rem; }
.footer-brand .logo .logo-sub { color: rgba(255,255,255,.45); }
.footer-brand p { font-size: .8rem; color: rgba(255,255,255,.42); line-height: 1.7; max-width: 340px; }
.footer-col h4 {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35); margin-bottom: .85rem; font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer-col ul li, .footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-col ul li a:hover { color: var(--teal-lt); text-decoration: none; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: 0 0 24px; }
.warn-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: .7rem;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
  margin-bottom: 20px;
}
.warn-box strong { color: rgba(255,255,255,.55); }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  font-size: .68rem;
  color: rgba(255,255,255,.32);
  line-height: 1.7;
}
.footer-bottom a { color: rgba(255,255,255,.48); }
.footer-bottom strong { color: rgba(255,255,255,.6); }

/* Cookie */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  background: var(--dark-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  max-width: 560px;
  margin: 0 auto;
}
.cookie-inner { display: flex; flex-direction: column; gap: 14px; }
.cookie-text { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.55; }
.cookie-text a { color: var(--teal-lt); }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }
.cookie-btn {
  padding: .6rem 1.35rem;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.cookie-btn-accept { background: var(--teal); color: var(--white); border: 1.5px solid var(--teal); }
.cookie-btn-reject { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }

/* Legal */
.legal-hero {
  background: var(--dark);
  color: var(--white);
  padding: 48px 0 40px;
}
.legal-hero h1 { color: var(--white); margin-top: .4rem; }
.legal-hero p { color: rgba(255,255,255,.55); margin-top: .75rem; max-width: 560px; }
.legal-page { max-width: 800px; margin: 56px auto 80px; padding: 0 24px; }
.legal-page h1 { color: var(--dark); margin-bottom: 1.5rem; }
.legal-page h2 { color: var(--dark); margin: 2rem 0 .75rem; font-size: 1.15rem; }
.legal-page h3 { color: var(--dark); margin: 1.2rem 0 .5rem; font-size: 1rem; }
.legal-page p  { color: var(--muted); margin-bottom: .85rem; line-height: 1.75; }
.legal-page ul, .legal-page ol { margin: .5rem 0 1rem 1.4rem; color: var(--muted); }
.legal-page li { margin-bottom: .4rem; line-height: 1.6; }
.legal-page a { color: var(--teal-dk); }
.about-photo {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 8px 0 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 1.5rem 0;
}
.contact-card {
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--light);
}
.contact-card h3 { color: var(--dark); margin-bottom: .4rem; }
.contact-card p { color: var(--muted); font-size: .9rem; margin: 0; }

.map-note {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 8px;
}

@media (max-width: 960px) {
  .form-container { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .check-grid, .before-grid, .portrait-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .includes-list, .not-list, .split, .contact-grid { grid-template-columns: 1fr; }
  .split img { height: 280px; }
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 22px;
    border-bottom: 1px solid var(--mid);
    gap: 14px;
  }
  .nav-toggle { display: flex; }
}
@media (max-width: 620px) {
  section { padding: 56px 0; }
  .hero { padding: 56px 0 0; min-height: 0; }
  .hero-photo { display: none; }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .steps-inline { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top, .footer-bottom { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .stats-inner { gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .logo .logo-sub { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
