/* ============================================================
   GENEVA PADDLE ADVENTURES — Main Stylesheet
   Aesthetic: Organic / Swiss Editorial / Nature-first
   Palette: Deep forest, river jade, warm stone, chalk white
   ============================================================ */

:root {
  --forest:    #1a2e1e;      /* deep Swiss forest green */
  --jade:      #3d6b4f;      /* river jade */
  --moss:      #6a9478;      /* mid-tone moss */
  --sage:      #a8c4ae;      /* pale sage */
  --water:     #8fb8c8;      /* Rhône glacial blue */
  --stone:     #b0a090;      /* warm stone */
  --cream:     #f4f0e8;      /* chalk cream */
  --white:     #fdfcf9;      /* warm white */
  --ink:       #1c1c1a;      /* near-black ink */
  --ink-light: #4a4a44;      /* soft ink */
  --gold:      #c8a96e;      /* warm alpine gold accent */

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --max-w: 1240px;
  --section-pad: 100px 6vw;
  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5vw;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(26, 46, 30, 0.97);
  padding: 14px 5vw;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.08em;
}
.logo-sub {
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--sage);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--forest) !important;
  padding: 10px 22px !important;
  font-weight: 500 !important;
  opacity: 1 !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--cream) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: 0.2s; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.mobile-close {
  position: absolute;
  top: 28px; right: 5vw;
  font-size: 1.4rem;
  color: var(--sage);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,46,30,0.72) 0%,
    rgba(26,46,30,0.38) 50%,
    rgba(26,46,30,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 7vw;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.6rem;
}
.hero-title em {
  font-style: italic;
  color: var(--sage);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(244, 240, 232, 0.85);
  line-height: 1.7;
  margin-bottom: 2.6rem;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 7vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--sage);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.btn-primary:hover { background: var(--cream); }
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(244,240,232,0.4);
  color: var(--cream);
  padding: 14px 32px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--cream); }
.btn-sm {
  display: inline-block;
  background: var(--forest);
  color: var(--cream);
  padding: 9px 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.btn-sm:hover { background: var(--jade); }
.btn-full { width: 100%; text-align: center; padding: 18px; font-size: 0.88rem; }
.inline-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jade);
  border-bottom: 1px solid var(--moss);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.inline-link:hover { color: var(--forest); border-color: var(--forest); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.fade-in-section {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
.fade-in-section.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.30s !important; }
.delay-3 { transition-delay: 0.45s !important; }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1rem;
}

/* ============================================================
   CONCEPT
   ============================================================ */
.concept {
  background: var(--white);
  padding: var(--section-pad);
}
.concept-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}
.concept-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--forest);
  margin-bottom: 1.6rem;
}
.concept-text h2 em { font-style: italic; color: var(--jade); }
.concept-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-light);
  margin-bottom: 1.2rem;
}
.concept-text .inline-link { margin-top: 0.6rem; display: inline-block; }
.img-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.img-frame:hover img { transform: scale(1.03); }
.img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,46,30,0.82);
  color: var(--sage);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 10px 14px;
}

/* ============================================================
   PARALLAX DIVIDERS
   ============================================================ */
.parallax-divider {
  position: relative;
  height: 52vh;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-divider--short { height: 36vh; }
.parallax-layer {
  position: absolute;
  inset: -25%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.parallax-text-overlay {
  position: relative;
  z-index: 2;
  background: rgba(26,46,30,0.55);
  padding: 28px 48px;
  max-width: 680px;
  text-align: center;
  border-left: 3px solid var(--gold);
}
.parallax-text-overlay--right { border-left: none; border-right: 3px solid var(--gold); }
.parallax-text-overlay blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

/* ============================================================
   DEPARTURE
   ============================================================ */
.departure {
  background: var(--cream);
  padding: var(--section-pad);
}
.departure-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}
.map-placeholder {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--stone);
}
.map-pin {
  position: absolute;
  bottom: 18%;
  left: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.pin-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid white;
  box-shadow: 0 0 0 4px rgba(200,169,110,0.35);
  animation: pinPulse 2s infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200,169,110,0.35); }
  50% { box-shadow: 0 0 0 10px rgba(200,169,110,0.1); }
}
.map-pin span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--forest);
  color: var(--cream);
  padding: 4px 10px;
  white-space: nowrap;
}
.departure-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}
.departure-details {
  list-style: none;
  margin: 1.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.departure-details li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--ink-light);
  font-weight: 300;
}
.detail-icon { font-size: 1rem; }
.small-note {
  font-size: 0.8rem;
  color: var(--stone);
  margin-top: 0.8rem;
  letter-spacing: 0.04em;
}

/* ============================================================
   OFFERS
   ============================================================ */
.offers {
  background: var(--white);
  padding: var(--section-pad);
}
.offers-header {
  max-width: var(--max-w);
  margin: 0 auto 3.6rem;
}
.offers-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.18;
}
.offers-header h2 em { font-style: italic; color: var(--jade); }
.offers-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--stone);
}
.offer-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.offer-card:hover { box-shadow: 0 12px 48px rgba(26,46,30,0.12); z-index: 2; position: relative; }
.offer-card--wide { grid-column: span 2; flex-direction: row; }
.offer-card--wide .offer-img { width: 45%; flex-shrink: 0; aspect-ratio: unset; }
.offer-card--premium {
  background: var(--forest);
  justify-content: center;
}
.offer-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.offer-img img { transition: transform 0.7s ease; }
.offer-card:hover .offer-img img { transform: scale(1.05); }
.offer-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.offer-body--premium {
  padding: 48px 36px;
}
.offer-body--premium .offer-tag { color: var(--sage); }
.offer-body--premium h3 { color: var(--cream); }
.offer-body--premium p { color: rgba(244,240,232,0.75); }
.offer-body--premium .offer-price { color: var(--gold); }
.offer-body--premium .btn-sm {
  background: var(--gold);
  color: var(--forest);
}
.offer-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.7rem;
}
.offer-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.offer-body h3 span {
  font-style: italic;
  font-weight: 300;
}
.offer-body p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-light);
  flex: 1;
  margin-bottom: 1.4rem;
}
.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cream);
  padding-top: 1rem;
  margin-top: auto;
}
.offer-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
}
.offer-price small {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--stone);
}

/* ============================================================
   EQUIPMENT PREVIEW
   ============================================================ */
.equip-preview {
  background: var(--cream);
  padding: var(--section-pad);
}
.equip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
}
.equip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}
.equip-text h2 em { font-style: italic; color: var(--jade); }
.equip-text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--ink-light);
  margin-bottom: 1rem;
}
.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.equip-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sage);
}
.equip-item img { transition: transform 0.6s ease; }
.equip-item:hover img { transform: scale(1.06); }
.equip-item p {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,46,30,0.75);
  color: var(--sage);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 10px;
  margin: 0;
}

/* ============================================================
   NATURE TEASER
   ============================================================ */
.nature-teaser {
  background: var(--forest);
  padding: var(--section-pad);
}
.nature-inner {
  max-width: var(--max-w);
  margin: 0 auto 3.6rem;
}
.nature-inner .section-label { color: var(--sage); }
.nature-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.18;
  margin-bottom: 1.4rem;
}
.nature-inner h2 em { font-style: italic; color: var(--sage); }
.nature-inner p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(244,240,232,0.75);
  max-width: 600px;
  margin-bottom: 1.2rem;
}
.nature-inner .inline-link { color: var(--gold); border-color: var(--gold); }
.nature-photos {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 340px;
  gap: 3px;
}
.nature-photo { overflow: hidden; }
.nature-photo--tall { grid-row: span 1; }
.nature-photo img { transition: transform 0.7s ease; }
.nature-photo:hover img { transform: scale(1.05); }

/* ============================================================
   BOOKING / CALENDAR
   ============================================================ */
.reserve {
  background: var(--white);
  padding: var(--section-pad);
}
.reserve-header {
  max-width: var(--max-w);
  margin: 0 auto 3.6rem;
}
.reserve-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.18;
  margin-bottom: 1.2rem;
}
.reserve-header h2 em { font-style: italic; color: var(--jade); }
.reserve-header p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.7;
}

.calendar-widget {
  max-width: 520px;
  margin: 0 auto 3rem;
  border: 1px solid rgba(176,160,144,0.35);
  background: var(--cream);
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--forest);
  color: var(--cream);
}
.cal-month-year {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}
.cal-nav {
  background: none;
  border: none;
  color: var(--sage);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 10px;
  transition: color 0.2s;
}
.cal-nav:hover { color: var(--gold); }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  padding: 12px 0 6px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  border-bottom: 1px solid rgba(176,160,144,0.2);
}
.weekend-day { color: var(--jade); }
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px;
  gap: 3px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 300;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.cal-day.empty { pointer-events: none; }
.cal-day.past { color: rgba(176,160,144,0.4); pointer-events: none; }
.cal-day.weekend-available {
  color: var(--forest);
  font-weight: 500;
  background: rgba(61,107,79,0.1);
  border: 1px solid rgba(61,107,79,0.3);
}
.cal-day.weekend-available:hover { background: var(--jade); color: var(--white); }
.cal-day.weekday-request {
  color: var(--ink-light);
}
.cal-day.weekday-request:hover { background: rgba(176,160,144,0.18); }
.cal-day.selected {
  background: var(--forest) !important;
  color: var(--gold) !important;
  font-weight: 500;
}
.cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-legend {
  display: flex;
  gap: 1.4rem;
  padding: 12px 16px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--stone);
  border-top: 1px solid rgba(176,160,144,0.2);
  flex-wrap: wrap;
}
.leg {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 0;
  vertical-align: middle;
  margin-right: 4px;
}
.leg.available { background: rgba(61,107,79,0.25); border: 1px solid rgba(61,107,79,0.5); }
.leg.request { background: transparent; border: 1px solid rgba(176,160,144,0.5); }
.leg.past { background: rgba(176,160,144,0.15); }

/* Booking form */
.booking-form {
  max-width: 680px;
  margin: 0 auto;
}
.selected-date-display {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--stone);
  margin-bottom: 2rem;
  font-style: italic;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: span 2; }
.form-group label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid rgba(176,160,144,0.45);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--jade); }
.form-note {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--stone);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

/* Confirm */
.booking-confirm {
  text-align: center;
  padding: 3rem 2rem;
}
.confirm-icon {
  font-size: 2.4rem;
  color: var(--jade);
  margin-bottom: 1rem;
  display: block;
  width: 60px; height: 60px;
  border: 2px solid var(--jade);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
}
.booking-confirm h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 0.8rem;
}
.booking-confirm p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest);
  color: var(--cream);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 6vw 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo-main {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 0.6rem;
}
.footer-brand p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.footer-contact {
  font-size: 0.8rem !important;
}
.footer-contact a {
  color: var(--sage);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-links h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(244,240,232,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-langs {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-langs h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.5rem;
}
.footer-langs a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(244,240,232,0.5);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-langs a:hover, .lang-active { color: var(--gold) !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 6vw;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(168,196,174,0.55);
  letter-spacing: 0.06em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .offer-card--wide { grid-column: span 2; flex-direction: column; }
  .offer-card--wide .offer-img { width: 100%; aspect-ratio: 16/7; }
  .offer-card--premium { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 5vw; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .concept-inner,
  .departure-inner,
  .equip-inner { grid-template-columns: 1fr; }
  .nature-photos { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .nature-photo--tall { grid-row: span 1; }
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card--wide { flex-direction: column; }
  .offer-card--wide .offer-img { width: 100%; }
  .offer-card--premium { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .parallax-divider { background-attachment: scroll; }
  .parallax-layer { background-attachment: scroll; }
  .hero-parallax-bg { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .nature-photos { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr 1fr; }
}
