/* ===== FONTS ===== */

/* ===== TOKENS ===== */
:root {
  --bg: #f8f4ed;
  --bg-alt: #f0ece4;
  --surface: #ffffff;
  --fg: #1c1c1c;
  --fg-muted: #5a5a5a;
  --accent: #2d6a2d;
  --accent-warm: #d4a843;
  --border: #e2ddd5;
  --green-deep: #1a3a1a;
  --green-mid: #2d5a2d;
  --green-light: #f0f7ee;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 244, 237, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.header-nav {
  display: flex;
  gap: 2.5rem;
}
.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--fg); }
.header-nav .nav-book {
  background: var(--accent);
  color: white !important;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.15s;
}
.header-nav .nav-book:hover { background: var(--green-mid); transform: translateY(-1px); }
.header-nav .nav-contribuer {
  border: 1.5px solid var(--accent);
  color: var(--accent) !important;
  padding: 5px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.header-nav .nav-contribuer:hover { background: var(--accent); color: white !important; }
@media (max-width: 768px) {
  .header-nav { gap: 1rem; }
  .header-nav .nav-book,
  .header-nav .nav-contribuer { display: none; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 60%, rgba(45, 90, 45, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26, 58, 26, 0.6) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ab87a;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #f8f4ed;
  margin-bottom: 1.75rem;
  line-height: 1.1;
}
.hero-headline em {
  font-style: italic;
  color: #a8d4a8;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(248, 244, 237, 0.75);
  max-width: 440px;
  line-height: 1.7;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.hero-illustration {
  width: 100%;
  max-width: 420px;
  opacity: 0.85;
}
.hero-illustration svg { width: 100%; height: auto; }
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--green-deep) 0%, transparent 30%);
  pointer-events: none;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 7rem 2rem;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.manifesto-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 4rem;
}
.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pillar h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 7rem 2rem;
  background: var(--bg-alt);
}
.categories-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 3.5rem;
  line-height: 1.2;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.category-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.category-art {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}
.category-art svg { display: block; width: 100%; height: auto; }
.category-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.category-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.category-meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ===== PROCESS ===== */
.process {
  padding: 7rem 2rem;
  background: var(--green-deep);
}
.process-inner { max-width: 1000px; margin: 0 auto; }
.process .section-label { color: #7ab87a; }
.process .section-headline { color: #f8f4ed; }
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  padding: 2.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-warm);
  margin-bottom: 1.25rem;
  line-height: 1;
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #f8f4ed;
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 0.9rem;
  color: rgba(248, 244, 237, 0.65);
  line-height: 1.7;
}
.step-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(to right, rgba(212,168,67,0.4), rgba(212,168,67,0.1));
  align-self: flex-start;
  margin-top: 5rem;
}

/* ===== METRICS ===== */
.metrics {
  padding: 6rem 2rem;
  background: var(--accent-warm);
}
.metrics-inner { max-width: 900px; margin: 0 auto; }
.metrics-headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  color: var(--green-deep);
  text-align: center;
  margin-bottom: 3.5rem;
  line-height: 1.3;
}
.metrics-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.metric-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}
.metric-value {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.metric-label {
  font-size: 0.85rem;
  color: rgba(26, 58, 26, 0.7);
  font-weight: 500;
}
.metric-divider {
  width: 1px;
  height: 60px;
  background: rgba(26, 58, 26, 0.2);
}
.metrics-note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(26, 58, 26, 0.6);
  margin-top: 2rem;
  font-weight: 500;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  background: var(--bg);
}
.closing-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-deep);
  color: rgba(248, 244, 237, 0.8);
  padding: 5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.footer-brand .wordmark {
  font-size: 2rem;
  color: #a8d4a8;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(248, 244, 237, 0.5);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ab87a;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(248, 244, 237, 0.6);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #f8f4ed; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(248, 244, 237, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }
  .hero-visual { display: none; }
  .hero-content { padding: 4rem 2rem; }
  .hero-headline { font-size: 2.5rem; }
  .manifesto-pillars { grid-template-columns: 1fr; gap: 2rem; }
  .category-grid { grid-template-columns: 1fr; }
  .category-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; }
  .step-connector { display: none; }
  .metrics-grid { flex-direction: column; gap: 2rem; }
  .metric-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .invest-tracks { grid-template-columns: 1fr; }
}

/* ===== HERO GALLERY ===== */
.hero-gallery {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 3rem;
  gap: 1rem;
}
.gallery-img {
  border-radius: 16px;
  object-fit: cover;
  display: block;
}
.gallery-img-main {
  width: 340px;
  height: 480px;
  object-position: center;
}
.gallery-img-accent {
  width: 200px;
  height: 300px;
  object-position: center;
  margin-top: 100px;
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: #7ab87a;
  color: #1a3a1a;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-primary:hover {
  background: #8ec88e;
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: rgba(248, 244, 237, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(248, 244, 237, 0.25);
  border-radius: 8px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  color: #f8f4ed;
  border-color: rgba(248, 244, 237, 0.5);
}
.btn-seminaires {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-seminaires:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.btn-contrib {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent-warm);
  color: #1a3a1a;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  border: none;
}
.btn-contrib:hover { background: #e8bc5a; transform: translateY(-1px); }

/* Hero stats strip — 4 étangs hero highlight */
.hero-stats-strip {
  background: var(--green-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
}
.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #a8d4a8;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(248, 244, 237, 0.55);
  letter-spacing: 0.05em;
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}
@media (max-width: 600px) {
  .hero-stats-inner { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-sep { height: 30px; }
}

/* ===== INVEST SECTION ===== */
.invest {
  padding: 7rem 2rem;
  background: var(--bg-alt);
}
.invest-inner { max-width: 1100px; margin: 0 auto; }
.invest-intro {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 4rem;
  text-align: center;
}
.invest-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.invest-track {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}
.track-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a3a1a;
  background: #c8e6c8;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.track-badge-secondary { background: #e8d9b8; color: #5a4a1a; }
.track-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1rem;
}
.track-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 1.75rem; }
.track-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.track-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; color: var(--fg); font-weight: 500; }
.track-features svg { color: var(--accent); flex-shrink: 0; }
.track-img-wrap { border-radius: 12px; overflow: hidden; height: 200px; }
.track-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== CLOSING CTA ===== */
.closing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.btn-primary-large {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: #f8f4ed;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary-large:hover {
  background: #3d7a3d;
  transform: translateY(-2px);
}
.btn-ghost-large {
  display: inline-block;
  padding: 1rem 2rem;
  color: var(--fg-muted);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-large:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== TERRAIN (Vivre le terrain) ===== */
.terrain {
  padding: 7rem 2rem;
  background: var(--bg);
}
.terrain-inner { max-width: 1100px; margin: 0 auto; }
.terrain-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 1.5rem;
}
.terrain-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.terrain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.terrain-card-wide { grid-column: span 1; }
.terrain-img-wrap {
  position: relative;
  overflow: hidden;
}
.terrain-card-wide .terrain-img-wrap { height: 320px; }
.terrain-card-tall .terrain-img-wrap { height: 420px; }
.terrain-card:not(.terrain-card-wide):not(.terrain-card-tall) .terrain-img-wrap { height: 200px; }
.terrain-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.terrain-card:hover .terrain-img-wrap img { transform: scale(1.04); }
.terrain-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,26,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.terrain-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8f4ed;
  background: rgba(26,58,26,0.7);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.terrain-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.terrain-card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.terrain-card-body p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .terrain-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .terrain-card-wide { grid-column: span 2; }
  .terrain-card-tall .terrain-img-wrap { height: 280px; }
  .terrain-card:not(.terrain-card-wide):not(.terrain-card-tall) .terrain-img-wrap { height: 180px; }
}
@media (max-width: 600px) {
  .terrain-grid { grid-template-columns: 1fr; }
  .terrain-card-wide { grid-column: span 1; }
  .terrain-card-wide .terrain-img-wrap,
  .terrain-card-tall .terrain-img-wrap { height: 260px; }
  .terrain { padding: 5rem 1.5rem; }
}
@media (max-width: 480px) {
  .header-nav { gap: 1.5rem; }
  .footer-links { grid-template-columns: 1fr; }
  .manifesto, .categories, .terrain, .process, .closing { padding: 5rem 1.5rem; }
  .hero-content { padding: 3rem 1.5rem; }
  .hero-gallery { display: none; }
  .hero-actions { gap: 1rem; }
}

/* ===== RESERVE CTA (landing page section) ===== */
.reserve-cta {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.reserve-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.reserve-cta-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 1.75rem;
}
.reserve-cta-activities {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.reserve-act-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-light);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  width: fit-content;
}
.btn-reserve-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-reserve-cta:hover { background: var(--green-mid); transform: translateY(-2px); }
.reserve-cta-visual { border-radius: 20px; overflow: hidden; }
.reserve-cta-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.reserve-cta-visual:hover .reserve-cta-img { transform: scale(1.03); }

@media (max-width: 900px) {
  .reserve-cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .reserve-cta-visual { order: -1; }
  .reserve-cta-img { height: 280px; }
}