/*
 * Collectif Végé — Grassroots Preview Stylesheet
 */

/* =========================================
   1. VARIABLES & RESET
   ========================================= */

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

:root {
  /* Greens — warmer, less clinical */
  --green-dark:  #243d10;
  --green-mid:   #3a5e1a;
  --green-warm:  #527a28;
  --green-leaf:  #72a03a;
  --green-pale:  #b8d888;
  --green-bg:    #e8f0d0;
  --green-wash:  #f0f5e4;

  /* Earth / terracotta accents */
  --earth-dark:  #7a3a18;
  --earth-mid:   #a85228;
  --earth-light: #c87848;
  --earth-pale:  #f0dcc8;

  /* Paper tones */
  --paper:       #f5f0e4;   /* warm linen background */
  --paper-mid:   #ede7d6;
  --paper-dark:  #ddd5c0;

  /* Ink */
  --ink:         #252210;
  --ink-mid:     #4a4530;
  --ink-light:   #7a7558;

  --white:       #fffef8;   /* warm white */

  --max-width: 1100px;
  --nav-height: 64px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', system-ui, sans-serif;
  --font-hand:   'Caveat', cursive;   /* handwritten accent font */
}

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-mid);
  text-decoration: none;
}

a:hover {
  color: var(--green-warm);
}

/* =========================================
   2. LANGUAGE TOGGLE SYSTEM
   ========================================= */

.en { display: none; }
.fr { display: revert; }

body.lang-en .fr { display: none; }
body.lang-en .en { display: revert; }

span.fr { display: inline; }
span.en { display: none; }
body.lang-en span.fr { display: none; }
body.lang-en span.en { display: inline; }

/* =========================================
   3. UTILITIES
   ========================================= */

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

section {
  padding: 72px 0;
}

/* Handwritten section labels — grassroots feel */
.section-label {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--earth-mid);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--green-dark);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 1rem;
  color: var(--ink-mid);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink-mid);
}

/* Buttons — rounder, warmer, less corporate */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 40px;         /* pill shape — friendlier */
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--earth-mid);
  color: var(--white);
  border-color: var(--earth-mid);
}

.btn-primary:hover {
  background: var(--earth-dark);
  border-color: var(--earth-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1rem;
}

/* =========================================
   4. NAVIGATION
   ========================================= */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-brand:hover {
  color: var(--green-pale);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
  flex: 1;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav-links .nav-cta {
  background: var(--earth-mid);
  color: var(--white);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 40px;
  margin-left: 8px;
}

.nav-links .nav-cta:hover {
  background: var(--earth-dark);
  color: var(--white);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

.lang-divider { color: rgba(255,255,255,0.25); }

.lang-fr-label { color: var(--white); font-weight: 900; }
.lang-en-label { color: rgba(255,255,255,0.45); font-weight: 400; }
body.lang-en .lang-fr-label { color: rgba(255,255,255,0.45); font-weight: 400; }
body.lang-en .lang-en-label { color: var(--white); font-weight: 900; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* =========================================
   5. HERO SECTION
   ========================================= */

#hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(20, 40, 8, 0.62), rgba(30, 55, 10, 0.55)),
    url('../images/farm-workers-6.jpg') center / cover no-repeat;
  /* Fallback if photo not yet saved: */
  background-color: var(--green-dark);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--earth-mid);
  color: var(--white);
  font-family: var(--font-hand);
  font-size: 1.1rem;
  padding: 5px 18px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--green-pale);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Stats — warmer, simpler */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat {
  padding: 20px 32px 20px 0;
  margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-hand);
  font-size: 2.6rem;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* =========================================
   5b. COMMUNITY PHOTO STRIP (new section)
   ========================================= */

#community-photos {
  padding: 0;
  background: var(--green-dark);
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 360px;
}

.photo-strip-item {
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(20,40,8,0.72));
  color: rgba(255,255,255,0.9);
  font-family: var(--font-hand);
  font-size: 1.15rem;
  padding: 32px 20px 16px;
}

/* =========================================
   6. ABOUT SECTION
   ========================================= */

#a-propos {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Rough border instead of shadow — hand-crafted feel */
  border: 3px solid var(--paper-dark);
  outline: 6px solid var(--green-bg);
  aspect-ratio: 4/3;
  background: var(--green-bg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================
   7. HOW IT WORKS SECTION
   ========================================= */

#fonctionnement {
  background: var(--paper);
}

.steps-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--white);
  border: 2px solid var(--paper-dark);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.step-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 2px dashed var(--green-leaf);  /* dashed = hand-made feel */
  color: var(--green-dark);
  font-family: var(--font-hand);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step h3 {
  color: var(--green-dark);
}

/* =========================================
   8. SCHEDULE SECTION
   ========================================= */

#horaire {
  background: var(--white);
}

.schedule-intro {
  max-width: 640px;
  margin-bottom: 44px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.day-card {
  background: var(--paper);
  border: 2px solid var(--paper-dark);
  border-radius: var(--radius);
  padding: 22px 12px;
  text-align: center;
}

.day-card.highlight {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.day-card.highlight .day-name,
.day-card.highlight .day-time {
  color: var(--white);
}

.day-card.highlight .day-label {
  color: var(--green-pale);
}

.day-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.day-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  margin-bottom: 10px;
  display: block;
}

.day-time {
  font-family: var(--font-hand);
  font-size: 1rem;
  color: var(--green-warm);
}

.schedule-note {
  background: var(--earth-pale);
  border-left: 4px solid var(--earth-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 22px;
  font-size: 0.93rem;
  color: var(--ink-mid);
}

/* =========================================
   9. PRICING SECTION
   ========================================= */

/* Grassroots: warm cream background instead of dark corporate */
#tarifs {
  background: var(--paper-mid);
}

#tarifs h2 {
  color: var(--green-dark);
}

#tarifs .section-label {
  color: var(--earth-mid);
}

.pricing-header {
  margin-bottom: 44px;
}

.pricing-intro {
  color: var(--ink-mid);
  max-width: 660px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--paper-dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.price-card.featured {
  border-color: var(--green-leaf);
  border-width: 2px;
  background: var(--green-wash);
}

.price-card.featured h3 { color: var(--green-dark); }
.price-card.featured .price-card-label { color: var(--green-warm); }
.price-card.featured .price-amount { color: var(--green-mid); }
.price-card.featured .price-range,
.price-card.featured .price-detail { color: var(--ink-light); }
.price-card.featured .price-desc { color: var(--ink-mid); }

.price-card-label {
  font-family: var(--font-hand);
  font-size: 1rem;
  color: var(--earth-mid);
  margin-bottom: 6px;
  display: block;
}

.price-card h3 {
  color: var(--green-dark);
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.price-amount {
  font-family: var(--font-hand);
  font-size: 2.6rem;
  color: var(--green-warm);
  line-height: 1;
  margin-bottom: 4px;
}

.price-range {
  font-size: 0.82rem;
  color: var(--ink-light);
  margin-bottom: 14px;
}

.price-desc {
  font-size: 0.92rem;
  color: var(--ink-mid);
  margin-bottom: 0;
}

.price-detail {
  font-size: 0.82rem;
  color: var(--ink-light);
  margin-top: 8px;
  margin-bottom: 0;
}

.subsidized-note {
  background: var(--earth-pale);
  border: 1px solid var(--earth-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--ink-mid);
}

.subsidized-note strong {
  color: var(--earth-dark);
}

/* =========================================
   10. IMPORTANT DATES SECTION
   ========================================= */

#dates {
  background: var(--white);
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.date-card {
  background: var(--paper);
  border: 2px solid var(--paper-dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.date-card.mandatory {
  border-color: var(--earth-light);
  background: var(--earth-pale);
}

.date-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.date-label {
  font-family: var(--font-hand);
  font-size: 1rem;
  color: var(--green-warm);
  margin-bottom: 6px;
  display: block;
}

.date-card.mandatory .date-label {
  color: var(--earth-dark);
}

.date-value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.date-note {
  font-size: 0.88rem;
  color: var(--ink-light);
  margin: 0;
}

/* =========================================
   11. GALLERY / HARVEST SECTION
   ========================================= */

#galerie {
  background: var(--paper);
}

.gallery-header {
  max-width: 680px;
  margin-bottom: 44px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-bg);
  cursor: pointer;
  border: 2px solid var(--paper-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.8rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  font-weight: 300;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }

/* =========================================
   12. FAQ SECTION
   ========================================= */

#faq {
  background: var(--white);
}

.faq-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--paper);
  border-radius: var(--radius);
  border: 2px solid var(--paper-dark);
  overflow: hidden;
}

.faq-item.open {
  border-color: var(--green-leaf);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--green-warm);
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green-warm);
  transition: all 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--green-mid);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 18px 20px 20px;
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.75;
  border-top: 1px solid var(--paper-dark);
}

.faq-answer-inner ul {
  padding-left: 20px;
  margin-top: 10px;
}

.faq-answer-inner li { margin-bottom: 5px; }

.faq-answer-inner a {
  color: var(--green-warm);
  text-decoration: underline;
}

/* =========================================
   13. WHAT TO BRING SECTION
   ========================================= */

#apporter {
  background: var(--paper);
}

.bring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 44px;
}

.bring-section-title {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--earth-mid);
  margin-bottom: 14px;
}

.bring-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bring-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--ink-mid);
}

.bring-list li::before {
  content: '✓';
  flex-shrink: 0;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-leaf);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 900;
  text-align: center;
  line-height: 20px;
}

/* =========================================
   14. REGISTRATION SECTION
   ========================================= */

#inscription {
  background: var(--white);
}

.register-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 44px;
}

.register-header a {
  color: var(--green-warm);
  text-decoration: underline;
}

.zeffy-wrapper {
  background: var(--paper);
  border: 2px solid var(--paper-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.zeffy-wrapper iframe {
  width: 100%;
  height: 720px;
  border: none;
  display: block;
}

.register-note {
  text-align: center;
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--ink-light);
}

.register-note a { color: var(--green-warm); }

/* =========================================
   15. FOOTER
   ========================================= */

#footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.6);
  padding: 52px 0 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 36px;
}

.footer-brand {
  font-family: var(--font-hand);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin: 0;
}

.footer-heading {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--green-pale);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  word-break: break-all;
}

.footer-contact a:hover { color: var(--green-pale); }

.footer-location {
  font-size: 0.82rem;
  margin-top: 12px;
  color: rgba(255,255,255,0.32);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================
   16. MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 1000px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 16px;
    font-size: 0.97rem;
  }

  .nav-links .nav-cta { margin-left: 0; }
  .menu-toggle { display: flex; }
}

@media (max-width: 768px) {
  section { padding: 52px 0; }

  .photo-strip {
    grid-template-columns: 1fr;
    height: auto;
  }

  .photo-strip-item { height: 240px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image { order: -1; }

  .steps-grid { grid-template-columns: 1fr; }

  .schedule-grid { grid-template-columns: repeat(3, 1fr); }

  .pricing-grid { grid-template-columns: 1fr; }

  .dates-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .bring-grid { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-stats { gap: 0; }

  .stat {
    padding: 14px 20px 14px 0;
    margin-right: 20px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
