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

:root {
  --green-dark:   #2C4A2D;
  --green-mid:    #4A7C59;
  --green-light:  #E8F0E9;
  --gold:         #B8954A;
  --gold-light:   #D4AF6A;
  --ivory:        #F8F5F0;
  --ivory-dark:   #EFEBE4;
  --text:         #1E1E1E;
  --text-light:   #5C5C5C;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow:       0 6px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.14);
  --radius:       12px;
  --transition:   0.28s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

.section { padding: 96px 0; }

/* ================================================
   TYPOGRAPHY HELPERS
   ================================================ */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  color: var(--green-dark);
  margin-bottom: 32px;
  max-width: 640px;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

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

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
}

.btn-full { width: 100%; text-align: center; }

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.animate-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   HEADER
   ================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(248, 245, 240, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
}
.logo-main-light { color: var(--white) !important; }
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
}
.nav a:hover { color: var(--green-dark); }
.nav .btn { padding: 10px 24px; font-size: 0.85rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green-dark);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--ivory-dark);
  z-index: 199;
  flex-direction: column;
  padding: 12px 0;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-link {
  padding: 14px 28px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.mobile-link:hover { background: var(--ivory); color: var(--green-dark); }

/* ================================================
   HERO
   ================================================ */
.hero {
  height: 100vh;
  min-height: 620px;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 28, 15, 0.78) 0%, rgba(15, 28, 15, 0.48) 60%, rgba(15, 28, 15, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 28px;
  color: var(--white);
  margin-top: 72px;
}

.hero-tag {
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-price {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}
.hero-price strong {
  color: var(--gold-light);
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.6rem;
  animation: bounce 2.2s ease-in-out infinite;
  cursor: pointer;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ================================================
   PROBLEM
   ================================================ */
.problem-section { background: var(--white); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.problem-intro {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 18px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem-list li {
  padding-left: 22px;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}
.problem-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}
.problem-list.warning li::before { color: #C85A2A; }

.problem-solution {
  background: var(--ivory);
  border-left: 4px solid var(--gold);
  padding: 28px 36px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}
.problem-solution strong { color: var(--green-dark); }

/* ================================================
   LOCATION
   ================================================ */
.location-section { background: var(--ivory); }

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.location-desc {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.8;
}
.location-desc strong { color: var(--text); }

.location-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.5;
}
.fact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.location-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ================================================
   ROUTE / HOW TO GET THERE
   ================================================ */
.route-section { background: var(--ivory); }

.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.route-block { margin-bottom: 28px; }
.route-block h3 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.route-block p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
}

.route-distances {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.route-distance {
  background: var(--white);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
  min-width: 108px;
  box-shadow: var(--shadow-sm);
}
.route-distance span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

.route-address {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 18px 24px;
  border-radius: 0 8px 8px 0;
}

.route-media img {
  border-radius: var(--radius);
  width: 100%;
  height: 260px;
  object-fit: cover;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.route-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.route-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* ================================================
   GLAMPING / ACCOMMODATION
   ================================================ */
.glamping-section { background: var(--ivory); }

.glamping-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.glamping-desc {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.8;
}

.glamping-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glamping-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.glamping-gallery img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-section { background: var(--white); }

.gallery-intro {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 1rem;
}

.gallery-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.tab-btn {
  padding: 11px 32px;
  border: 2px solid var(--green-dark);
  border-radius: 4px;
  background: transparent;
  color: var(--green-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--green-dark);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.gallery-grid.hidden { display: none; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-item.tall {
  grid-column: span 1;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  font-size: 0.8rem;
  padding: 32px 14px 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ================================================
   PROGRAM
   ================================================ */
.program-section { background: var(--ivory-dark); }

.program-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}
.program-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-mid), var(--gold));
  border-radius: 2px;
}

.program-day {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(44,74,45,0.10);
  position: relative;
}
.program-day:last-child { border-bottom: none; }
.program-day::before {
  content: '';
  position: absolute;
  left: 34px;
  top: 44px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green-mid);
  z-index: 1;
}

.day-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-dark);
  opacity: 0.12;
  min-width: 80px;
  line-height: 1;
  flex-shrink: 0;
  text-align: center;
  padding-top: 4px;
}

.day-body h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.day-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
}
.day-body p strong { color: var(--text); }

/* ================================================
   PRICE
   ================================================ */
.price-section { background: var(--green-dark); }
.price-section .section-tag { color: var(--gold-light); }
.price-section .section-title { color: var(--white); }

.price-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.price-left {
  background: rgba(255,255,255,0.06);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--gold-light);
  line-height: 1.1;
}
.price-per {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.price-dur {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.price-left .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text);
  font-weight: 600;
  margin-top: auto;
}
.price-left .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.price-right {
  padding: 48px 48px;
}
.price-right h3 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.includes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.includes-list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.food-note {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 20px 28px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.food-note strong { color: rgba(255,255,255,0.88); }

/* ================================================
   RESULTS
   ================================================ */
.results-section { background: var(--ivory); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.result-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-light);
  box-shadow: var(--shadow);
}
.result-icon { font-size: 2.6rem; margin-bottom: 16px; }
.result-text {
  font-size: 0.92rem;
  color: var(--green-dark);
  font-weight: 500;
  line-height: 1.45;
}

.results-note {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-light);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ================================================
   TEAM
   ================================================ */
.team-section { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); }

.team-card.featured {
  grid-column: span 2;
  background: var(--ivory-dark);
  border-left: 4px solid var(--gold);
}

.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
  overflow: hidden;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card.featured .team-avatar {
  width: 76px;
  height: 76px;
  font-size: 1.35rem;
}

.team-info h3 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.team-bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ================================================
   BOOKING
   ================================================ */
.booking-section { background: var(--ivory-dark); }

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking-desc {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.75;
}

.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item { display: flex; flex-direction: column; gap: 3px; }
.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text-light);
  font-weight: 600;
}
.contact-value { font-size: 1rem; color: var(--green-dark); font-weight: 500; }
.contact-link:hover { color: var(--gold); }

.booking-form {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-group input,
.form-group textarea {
  border: 1.5px solid #DDD;
  border-radius: 6px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--ivory);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(44,74,45,0.08);
}

.form-note {
  font-size: 0.76rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.55;
}
.form-note a { text-decoration: underline; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.72); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding: 64px 28px 56px;
}

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer ul a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--white); }

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 28px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-disclaimer { margin-bottom: 6px; }

/* ================================================
   RESPONSIVE — 960px
   ================================================ */
@media (max-width: 960px) {
  .nav { display: none; }
  .burger { display: flex; }

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

  .location-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location-image { order: -1; }
  .location-image img { height: 320px; }

  .route-grid { grid-template-columns: 1fr; gap: 36px; }

  .glamping-inner { grid-template-columns: 1fr; gap: 36px; }
  .glamping-gallery img { height: 220px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item.tall { grid-row: span 2; }

  .price-card { grid-template-columns: 1fr; }
  .price-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 32px 36px;
  }
  .price-dur { margin-bottom: 0; }
  .price-left .btn-primary { margin-top: 0; margin-left: auto; }
  .includes-list { grid-template-columns: 1fr; }

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

  .team-grid { grid-template-columns: 1fr; }
  .team-card.featured { grid-column: span 1; }

  .booking-inner { grid-template-columns: 1fr; gap: 48px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}

/* ================================================
   RESPONSIVE — 600px
   ================================================ */
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .hero { background-attachment: scroll; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; text-align: center; }

  .problem-solution { padding: 20px 24px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item.tall { grid-row: span 1; }

  .program-timeline::before { left: 22px; }
  .program-day { gap: 28px; padding: 28px 0; }
  .program-day::before { left: 16px; top: 36px; }
  .day-num { min-width: 44px; font-size: 2rem; }

  .price-right { padding: 32px 24px; }
  .price-left { padding: 28px 24px; }
  .price-amount { font-size: 2rem; }

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

  .booking-form { padding: 32px 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
}
