/* =========================================================
   Ombe Guestfarm & Safari — Section Styles
   ========================================================= */

/* Offset scroll target for sticky nav */
section[id] { scroll-margin-top: var(--nav-height); }

/* Remove default section padding for multi-sub-section parents */
#home, #hunting, #about { padding-block: 0; }

/* Section header — centred label + h2 + accent-line block */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .accent-line { margin-inline: auto; }
.section-header .section-intro { margin-inline: auto; }

/* =========================================================
   1. HOME
   ========================================================= */

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background: var(--dark-deep);
  overflow: hidden;
  padding-bottom: 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,42,24,0.85) 0%, rgba(26,42,24,0.3) 60%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--section-pad);
}
.hero-content .section-label { color: var(--accent); }
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.04em; }
.hero-content p {
  color: rgba(244,235,213,0.9);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  max-width: none;
  white-space: nowrap;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Video section */
.video-section {
  padding-block: 0;
  position: relative;
  background: var(--dark-deep);
}
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 80vh;
  overflow: hidden;
  background: #000;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,42,24,0.4);
  transition: background var(--ease);
  z-index: 2;
}
.video-play-btn:hover { background: rgba(26,42,24,0.2); }
.video-play-btn svg {
  width: 72px;
  height: 72px;
  fill: rgba(255,255,255,0.9);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform var(--ease);
}
.video-play-btn:hover svg { transform: scale(1.1); }
.video-play-btn.hidden { display: none; }

/* Home intro cards */
#home .intro-section {
  padding-block: var(--section-pad);
}
#home .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
#home .intro-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
#home .intro-text { padding: 1rem; }
#home .intro-text h2 { margin-bottom: 1rem; }
#home .intro-text p { margin-bottom: 1rem; opacity: 0.85; }
#home .read-more-text { display: none; }
#home .read-more-text.open { display: block; }
.read-more-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.04em;
}
.read-more-btn::after { content: ' ›'; }

/* Highlight 3-cards row */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,146,42,0.2);
}
.highlight-card {
  background: var(--light);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.highlight-card .icon {
  font-size: 1.75rem;
  color: var(--accent);
}
.highlight-card h4 { font-size: 1rem; }
.highlight-card p { font-size: 0.9rem; opacity: 0.8; }

/* Home intro cards (image + text, 3-col) */
.intro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(200,146,42,0.25);
  padding-block: 0;
  margin-block: 0;
}
.intro-card { background: var(--dark-deep); overflow: hidden; }
.intro-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.5s ease; }
.intro-card:hover img { transform: scale(1.04); }
.intro-card-body { padding: 1.5rem 1.75rem 2rem; }
.intro-card-body h3 { color: var(--text-on-dark); margin-bottom: 0.75rem; font-size: 1.05rem; }
.intro-card-body p { color: rgba(244,235,213,0.75); font-size: 0.875rem; line-height: 1.6; }

/* Video section — flush against hero */
.video-section { margin-bottom: 0; }

@media (max-width: 700px) {
  .intro-cards { grid-template-columns: 1fr; }
}

/* Generation label under photo */
.gen-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(244,235,213,0.6);
  margin-top: 0.5rem;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ---- Instagram Feed ---- */
.insta-section {
  background: var(--dark-deep);
  padding-block: var(--section-pad);
  text-align: center;
}
.insta-header {
  margin-bottom: 2.5rem;
}
.insta-header h2 {
  color: var(--text-on-dark);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}
.insta-feed {
  margin-bottom: 2rem;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.insta-cta {
  margin-top: 1.5rem;
}

/* ---- Our Legacy: full redesign ---- */
.leg-section {
  background: var(--light);
  color: var(--text);
}

/* Cinematic header */
.leg-hero {
  position: relative;
  height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leg-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.leg-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(10,16,10,0.5) 30%,
    rgba(10,16,10,0.75) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 4rem;
}
.leg-hero-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0.5rem 0 0;
  line-height: 1.2;
}
.leg-hero-content p {
  color: rgba(244,235,213,0.85);
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.65;
  margin-top: 1.25rem;
}

/* Timeline */
.leg-timeline-wrap {
  background: var(--dark);
  padding-block: 4rem;
}
.leg-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* horizontal gold line connecting all dots */
.leg-timeline::before {
  content: "";
  position: absolute;
  top: calc(180px + 0px); /* height of top photo area */
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent) 15%, var(--accent) 85%, transparent);
}
.leg-tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 1.5rem;
  text-align: center;
}
.leg-tl-top {
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}
.leg-tl-photo {
  width: 120px;
  height: 160px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  border: 2px solid var(--accent);
}
.leg-tl-founding {
  width: 120px;
  height: 160px;
  border: 2px solid rgba(200,146,42,0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,146,42,0.08);
}
.leg-tl-founding-icon {
  font-size: 3rem;
  color: rgba(200,146,42,0.5);
}
.leg-tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 2px var(--accent);
  margin: 1rem 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.leg-tl-bottom { flex: 1; }
.leg-tl-year {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.leg-tl-bottom h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.leg-tl-bottom p {
  color: rgba(244,235,213,0.65);
  font-size: 0.8rem;
  line-height: 1.55;
}

/* Hosts split */
.leg-hosts {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: center;
  padding-block: 5rem;
  background: var(--light);
}
.leg-hosts-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(200,146,42,0.3);
}
.leg-hosts-text .accent-line { margin-inline: 0; margin-block: 1rem; }
.leg-hosts-text span.section-label { display: block; margin-bottom: 0.5rem; }
.leg-hosts-text h3 {
  color: var(--dark);
  font-size: 2rem;
  margin: 0;
}
.leg-hosts-text p {
  color: var(--dark);
  opacity: 0.82;
  line-height: 1.8;
  margin-top: 1rem;
}

/* Landscape strip */
.leg-landscape {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.leg-landscape-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.leg-landscape-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem min(5rem, 6vw);
  background: linear-gradient(to top, rgba(10,16,10,0.82) 0%, transparent 100%);
}
.leg-landscape-caption p {
  color: rgba(244,235,213,0.88);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 700px;
}

/* Hunt section header */
.hunt-header { padding: 3rem 0 2rem; background: var(--dark); color: var(--text-on-dark); }
.hunt-header h2 { margin-bottom: 0.5rem; }

/* Two hunting method cards */
.hunt-methods-section { background: var(--dark); padding-bottom: var(--section-pad); }
.hunt-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.hunt-method-card {
  background: var(--dark);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 8px;
  overflow: hidden;
  color: var(--text-on-dark);
}
.hunt-method-card > img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.hunt-method-body { padding: 1.5rem; }
.hunt-method-body h3 { color: var(--accent); margin-bottom: 0.75rem; font-size: 1.2rem; }
.hunt-method-body p { color: var(--text-on-dark); opacity: 0.82; line-height: 1.75; font-size: 0.9rem; margin-bottom: 1rem; }
.hunt-method-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}
.hunt-method-imgs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

/* Day flow catering grid */
.catering-section { padding-block: var(--section-pad); background: var(--light); color: var(--text); }
.day-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto 1fr auto;
  gap: 1.25rem;
}
.day-segment {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0.75rem;
}
.day-time {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-top: 2px solid var(--accent);
  padding-top: 0.5rem;
}
.day-segment > img,
.day-segment .day-segment-img2 {
  width: 100%;
  aspect-ratio: 4/3.3;
  object-fit: cover;
  border-radius: 4px;
}
.day-segment-body { display: flex; flex-direction: column; gap: 0.5rem; }
.day-segment h4 { color: var(--dark); font-size: 1rem; margin: 0; }
.day-segment p { font-size: 0.83rem; opacity: 0.75; line-height: 1.65; }
.day-segment .bullet-list { gap: 0.2rem; }
.day-segment .bullet-list li { font-size: 0.78rem; opacity: 0.75; line-height: 1.35; }

/* Accommodation header: 2-col text+bullets left, main photo right */
.accom-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.accom-header img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
}
.accom-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}
.accom-strip img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

/* Sustainability — reimagined */
.sustain-wrap {
  padding-block: var(--section-pad);
}
.sustain-header {
  text-align: center;
  margin-bottom: 3rem;
}
.sustain-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid rgba(200,146,42,0.25);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 4rem;
}
.sustain-pillar {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(200,146,42,0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sustain-pillar:last-child { border-right: none; }
.sustain-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.sustain-pillar h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark);
  margin-bottom: 0.25rem;
}
.sustain-pillar p {
  font-size: 0.83rem;
  opacity: 0.78;
  line-height: 1.6;
}
.sustain-butchery {
  padding-block: var(--section-pad);
}
.sustain-butchery-content {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.sustain-butchery-content h3 { color: var(--text-on-dark); }
.sustain-butchery-content p  { opacity: 0.82; line-height: 1.75; }
.sustain-butchery-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.sustain-butchery-imgs img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  border: 1px solid rgba(200,146,42,0.2);
}
.sustain-wildlife {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.sustain-wild-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.sustain-wild-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.sustain-wild-card:hover img { transform: scale(1.05); }
.sustain-wild-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .legacy-hosts { grid-template-columns: 1fr; }
  .legacy-landscape { grid-template-columns: 1fr; }
  .legacy-landscape-caption img { width: 100%; }
  .hunt-methods-grid { grid-template-columns: 1fr; }
  .day-flow-grid { grid-template-columns: 1fr 1fr; }
  .accom-header { grid-template-columns: 1fr; }
  .accom-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .day-flow-grid { grid-template-columns: 1fr; }
  .accom-strip { grid-template-columns: 1fr 1fr; }
}

/* About hosts wrapper */
.about-hosts-section { padding-block: var(--section-pad); background: var(--light); }

/* Foundation wrapper needs padding */
.foundation-section { padding-block: var(--section-pad); }

/* Travel layout */
.travel-hero-img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.travel-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.travel-children-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}
.travel-children-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.travel-rates-img-row {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .travel-two-col,
  .travel-children-block { grid-template-columns: 1fr; }
  .travel-rates-img-row { flex-direction: column; }
}

/* Contact footer */
.site-footer { border-top: 1px solid rgba(200,146,42,0.2); margin-top: 3rem; padding-top: 2rem; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(244,235,213,0.4);
}

/* Generations strip */

/* Pangolin strip */
.pangolin-strip {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-deep);
}
.pangolin-strip .pangolin-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}
.pangolin-strip .container {
  position: relative;
  z-index: 1;
}
.pangolin-strip h2 { color: var(--white); }
.pangolin-strip p {
  color: rgba(244,235,213,0.85);
  max-width: 500px;
  margin-top: 1rem;
}

/* =========================================================
   2. HUNTING
   ========================================================= */
.hunting-method {
  padding-block: var(--section-pad);
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: calc(var(--gap) * 2);
  align-items: start;
}
/* Reverse layout: images left, text right */
.method-grid.reverse {
  grid-template-columns: 1.1fr 1fr;
}
.method-grid.reverse .method-imgs { order: -1; }

.method-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.method-imgs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
}
.method-imgs .main-img {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.method-text { padding-block: 1rem; }
.method-text h2 { margin-bottom: 0.75rem; }
.method-text p { margin-bottom: 1rem; opacity: 0.9; }

/* Catering tabs */
.catering-section { padding-block: var(--section-pad); background: var(--light); }
.catering-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--light-mid);
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}
.tab-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--ease), border-color var(--ease);
}
.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.tab-btn:hover { color: var(--accent); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.meal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.meal-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.meal-text h3 { margin-bottom: 0.75rem; }
.meal-text p { margin-bottom: 1rem; opacity: 0.9; }

/* Accommodation */
.accommodation-section { padding-block: var(--section-pad); }
.accom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.accom-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 3px;
}
.accom-grid img.wide {
  grid-column: span 2;
  aspect-ratio: 2;
}
.accom-amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(244,235,213,0.06);
  border-radius: 4px;
  border-left: 3px solid var(--accent);
}
.amenity-icon { font-size: 1.25rem; flex-shrink: 0; color: var(--accent); }


/* =========================================================
   3. ACTIVITIES
   ========================================================= */
#activities { padding-block: var(--section-pad); }

.activities-banner {
  text-align: center;
  padding-block: 4rem 2rem;
}
.activities-banner-bg { display: none; }
.activities-banner-overlay { display: none; }
.activities-banner-content {
  text-align: center;
  max-width: 850px;
  margin-inline: auto;
}
.activities-banner-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.activities-banner-content .accent-line {
  margin-inline: auto;
  margin-bottom: 2rem;
}
.activities-banner-header {
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.activities-banner-content p {
  color: rgba(244,235,213,0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.activities-banner-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  border-radius: 6px;
  margin-top: 2.5rem;
}

/* ---- Activities: Section header ---- */
.act-section-header {
  text-align: center;
  padding-block: 5rem 3rem;
  max-width: 720px;
  margin-inline: auto;
}
.act-section-header p {
  color: rgba(244,235,213,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* ---- Activities: Row grids ---- */
.act-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
.act-row--1 { grid-template-columns: 1fr; }
.act-row--2 { grid-template-columns: 1fr 1fr; }
.act-row--4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Activities: Hover card ---- */
.act-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-deep);
  border-radius: 6px;
  border: 1px solid rgba(200,146,42,0.35);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.act-card:hover {
  border-color: rgba(200,146,42,0.7);
  box-shadow: 0 0 0 1px rgba(200,146,42,0.2), 0 8px 32px rgba(0,0,0,0.4);
}
.act-row--1 .act-card  { height: 520px; }
.act-row--2 .act-card  { height: 440px; }
.act-row--4 .act-card  { height: 360px; }

/* crossfade images fill the card */
.act-card .fade-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  transition: transform 0.6s ease;
}
.act-card:hover .fade-container { transform: scale(1.04); }

/* golden number */
.act-num {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}
.act-row--4 .act-num { font-size: 3rem; top: 1rem; left: 1rem; }

/* overlay: gradient + title + hidden body */
.act-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2.5rem;
  background: linear-gradient(to top,
    rgba(8,14,8,0.92) 0%,
    rgba(8,14,8,0.3) 50%,
    transparent 80%);
  transition: background 0.4s ease;
}
.act-row--4 .act-card-overlay { padding: 1.25rem 1.5rem; }
.act-card:hover .act-card-overlay {
  background: linear-gradient(to top,
    rgba(8,14,8,0.97) 0%,
    rgba(8,14,8,0.75) 55%,
    rgba(8,14,8,0.2) 100%);
}

.act-card-title {
  color: var(--white);
  font-size: 1.45rem;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  transition: margin-bottom 0.35s ease;
}
.act-row--4 .act-card-title { font-size: 1rem; }
.act-card:hover .act-card-title { margin-bottom: 0.75rem; }

.act-card-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.45s ease, opacity 0.35s ease 0.05s, transform 0.4s ease;
}
.act-card:hover .act-card-body {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}
.act-card-body p {
  color: rgba(244,235,213,0.88);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0 0 0.5rem;
}
.act-detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: rgba(244,235,213,0.6);
  border-top: 1px solid rgba(200,146,42,0.25);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.act-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
}

/* touch devices: always show body */
@media (hover: none) {
  .act-card-body { max-height: 300px; opacity: 1; transform: translateY(0); }
  .act-card-title { margin-bottom: 0.75rem; }
}

/* ---- Activities: Children card (always visible, split layout) ---- */
.act-card--children {
  height: auto !important;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  cursor: default;
}
.act-card--children .act-num { z-index: 4; }
.act-children-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.act-children-mosaic img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.act-children-text {
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  background: var(--dark-deep);
}
.act-children-text h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin: 0;
}
.act-children-lead {
  color: rgba(244,235,213,0.6);
  font-style: italic;
  font-size: 0.9rem;
  margin: 0;
}
.act-children-text .bullet-list { gap: 0.35rem; }


.fade-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark-deep);
}
.fade-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

/* 2 image crossfade */
.fade-container.count-2 img { animation: xfade2 12s infinite; }
.fade-container.count-2 img:nth-child(1) { animation-delay: 0s; }
.fade-container.count-2 img:nth-child(2) { animation-delay: 6s; }

@keyframes xfade2 {
  0% { opacity: 1; }
  40% { opacity: 1; }
  50% { opacity: 0; }
  90% { opacity: 0; }
  100% { opacity: 1; }
}

/* 3 image crossfade */
.fade-container.count-3 img { animation: xfade3 18s infinite; }
.fade-container.count-3 img:nth-child(1) { animation-delay: 0s; }
.fade-container.count-3 img:nth-child(2) { animation-delay: 6s; }
.fade-container.count-3 img:nth-child(3) { animation-delay: 12s; }

@keyframes xfade3 {
  0% { opacity: 1; }
  23.33% { opacity: 1; }
  33.33% { opacity: 0; }
  90% { opacity: 0; }
  100% { opacity: 1; }
}

/* =========================================================
   4. TROPHIES
   ========================================================= */
#trophies { padding-block: var(--section-pad); }

.trophies-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.trophies-intro .accent-line { margin-inline: auto; }

.trophy-category-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--light-mid);
}

.trophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--gap);
  margin-bottom: 2rem;
}
.trophy-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.trophy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.trophy-card-img {
  width: 100%;
  aspect-ratio: 16/15;
  object-fit: cover;
  display: block;
}
.trophy-card--no-img {
  background: var(--light);
  border: 1px solid rgba(200,146,42,0.18);
}
.trophy-card-body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.trophy-card-body h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.trophy-price {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  background: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.trophy-card-body p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.8;
  margin: 0;
}

/* Predators — light sub-section */
.predators-section {
  background: transparent;
  padding-block: var(--section-pad);
  margin-top: 3rem;
  margin-inline: calc(-1 * (100vw - min(var(--container), 100% - 2rem)) / 2 - 1rem);
  padding-inline: calc((100vw - min(var(--container), 100% - 2rem)) / 2 + 1rem);
}
.trophy-card--predator { background: var(--white); border: 1px solid rgba(42,56,40,0.12); }
.trophy-card--predator .trophy-card-body h4 { color: var(--dark); }
.trophy-card--predator .trophy-card-body p { color: var(--text); opacity: 0.8; }

.not-released {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light-mid);
  border-radius: 4px;
  border-left: 4px solid var(--accent);
}
.not-released h4 { margin-bottom: 0.5rem; font-size: 0.95rem; }
.not-released p { font-size: 0.875rem; opacity: 0.8; }

/* =========================================================
   5. TRAVEL & BOOKING
   ========================================================= */
#travel { padding-block: var(--section-pad); }
#contact { padding-top: var(--section-pad); padding-bottom: 0; }


.travel-tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(200,146,42,0.3);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.travel-tab-btn {
  padding: 0.85rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,235,213,0.55);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.travel-tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.travel-tab-btn:hover { color: rgba(244,235,213,0.85); }

.travel-panel { display: none; }
.travel-panel.active { display: block; }

.travel-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--gap) * 2);
  align-items: start;
}
.travel-content-grid img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.info-block { margin-bottom: 2.5rem; }
.info-block h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,146,42,0.2);
}
.info-block p,
.info-block li {
  font-size: 0.9rem;
  color: rgba(244,235,213,0.85);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
.info-block ul { padding-left: 0; }
.info-block ul li {
  padding-left: 1.25rem;
  position: relative;
}
.info-block ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Rates table */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.rates-table th {
  background: rgba(200,146,42,0.15);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
}
.rates-table td {
  padding: 0.7rem 1rem;
  color: rgba(244,235,213,0.85);
  border-bottom: 1px solid rgba(200,146,42,0.1);
}
.rates-table tr:hover td { background: rgba(255,255,255,0.04); }

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.included-card {
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  padding: 1.5rem;
}
.included-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--accent);
}
.included-card li {
  font-size: 0.875rem;
  color: rgba(244,235,213,0.8);
  padding: 0.3rem 0 0.3rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.included-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8em;
}
.included-card li.no::before { content: '✗'; color: #c25; }

/* =========================================================
   6. ABOUT US
   ========================================================= */
.about-hosts {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: calc(var(--gap) * 2);
  align-items: center;
}
.about-hosts-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.about-hosts-imgs img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
}
.about-hosts-imgs img.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
  object-position: center;
}
.about-hosts-text h2 { margin-bottom: 1rem; }
.about-hosts-text p { margin-bottom: 1rem; opacity: 0.85; }

.pillar-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.pillar-icon { color: var(--accent); font-size: 1rem; }

/* Timeline */
.timeline-section { padding-block: var(--section-pad); }
.timeline-section h2 { text-align: center; margin-bottom: 3rem; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}
.timeline::before {
  content: '';
  position: absolute;
  top: 3.5rem;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.timeline-card {
  position: relative;
  text-align: center;
  padding-top: 1rem;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark-deep);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.timeline-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 2px solid rgba(200,146,42,0.3);
}
.timeline-card h4 { color: var(--text-on-dark); margin-bottom: 0.5rem; }
.timeline-card p { font-size: 0.875rem; color: rgba(244,235,213,0.75); }
.timeline-quote {
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(244,235,213,0.6);
  border-left: 2px solid var(--accent);
  padding-left: 0.75rem;
  margin-top: 0.75rem;
  text-align: left;
}

/* Generation alternating rows */
.gens-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.gen-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.gen-row--reverse .gen-imgs { order: 2; }
.gen-row--reverse .gen-content { order: 1; }

.gen-year-badge {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.gen-content h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.gen-content h4 {
  color: var(--text-on-dark);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.gen-content p {
  font-size: 0.9rem;
  color: rgba(244,235,213,0.75);
  line-height: 1.7;
}
.gen-single-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(200,146,42,0.2);
}
.gen-row + .gen-row {
  border-top: 1px solid rgba(200,146,42,0.15);
  padding-top: 3.5rem;
}

@media (max-width: 700px) {
  .gen-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .gen-row--reverse .gen-imgs { order: 0; }
  .gen-row--reverse .gen-content { order: 0; }
}

/* Farm life strip below hosts intro */
.about-farm-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 3rem;
}
.about-farm-strip img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

/* Generation image grid inside timeline cards */
.gen-img-grid {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.gen-img-grid--2 { grid-template-columns: 1fr 1fr; }
.gen-img-grid--4 { grid-template-columns: 1fr 1fr; }
.gen-img-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(200,146,42,0.2);
}

/* Quote block inside generation cards */
.gen-quote {
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(244,235,213,0.65);
  border-left: 2px solid var(--accent);
  padding: 0.5rem 0 0.5rem 0.75rem;
  margin-top: 0.75rem;
  text-align: left;
}
.gen-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.35rem;
}

/* Foundation */
.foundation-section { padding-block: var(--section-pad); }

.foundation-feature {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.foundation-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.foundation-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,32,18,0.85) 0%, rgba(20,32,18,0.3) 50%, transparent 100%);
}
.foundation-feature-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 2rem var(--gap);
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}
.foundation-feature-quote p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--light);
  line-height: 1.6;
}

.foundation-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.fp-card {
  background: rgba(42,56,40,0.06);
  border: 1px solid rgba(42,56,40,0.12);
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
}
.fp-icon {
  color: var(--accent);
  font-size: 0.6rem;
  margin-bottom: 0.75rem;
}
.fp-card h4 {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.fp-card p {
  font-size: 0.83rem;
  color: var(--text);
  opacity: 0.75;
  line-height: 1.6;
}

.foundation-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr;
  gap: 0.6rem;
  height: 260px;
}
.foundation-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .foundation-pillars { grid-template-columns: 1fr 1fr; }
  .foundation-mosaic {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
  }
  .foundation-mosaic img { aspect-ratio: 4/3; height: auto; }
  .foundation-feature { height: 260px; }
}

/* =========================================================
   7. CONTACT
   ========================================================= */
.contact-info-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.contact-layout {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding-bottom: 3rem;
  align-items: stretch;
}

.contact-map {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(200,146,42,0.2);
  min-height: 420px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.contact-layout > .contact-form {
  flex: 1 1 0;
  min-width: 0;
}

.contact-info-block { margin-bottom: 2rem; }
.contact-info-block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.contact-info-block p {
  color: rgba(244,235,213,0.8);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.contact-info-block a {
  color: var(--accent);
  transition: opacity var(--ease);
}
.contact-info-block a:hover { opacity: 0.7; }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 6px;
  padding: 2rem 2rem 2.5rem;
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-on-dark);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,235,213,0.65);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,146,42,0.25);
  border-radius: 3px;
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--ease), background var(--ease);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(244,235,213,0.3); }

.input-error { border-color: #e05555 !important; }
.email-error {
  display: block;
  color: #e07070;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  min-height: 1em;
}

.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background var(--ease);
}
.form-submit:hover { background: var(--accent-hover); }

/* Instagram / Social */
.social-strip {
  border-top: 1px solid rgba(200,146,42,0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}
.social-strip p {
  color: rgba(244,235,213,0.7);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  transition: opacity var(--ease);
}
.instagram-link:hover { opacity: 0.7; }

/* Footer logos + copyright */
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,146,42,0.2);
  margin-top: 2rem;
  flex-wrap: wrap;
}
.footer-logos img { height: 52px; width: auto; opacity: 0.85; }
.footer-logo-main { height: 48px; }

.footer-copyright {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  font-size: 0.8rem;
  color: rgba(244,235,213,0.4);
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

@media (max-width: 900px) {
  #home .intro-grid,
  .method-grid,
  .meal-grid,
  .travel-content-grid,
  .about-hosts,
  .foundation-grid,
  .contact-layout { grid-template-columns: 1fr; }

  .method-grid.reverse { direction: ltr; }

  .accom-grid { grid-template-columns: 1fr 1fr; }
  .accom-grid img.wide { grid-column: span 2; }

  .highlight-cards { grid-template-columns: 1fr; gap: 0; }

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

  .predators-section {
    margin-inline: -1rem;
    padding-inline: 1rem;
  }

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

  .butchery-grid { grid-template-columns: 1fr 1fr; }
  .butchery-grid img.tall { display: none; }

  .city-tour-banner { grid-template-columns: 1fr; }
  .city-tour-banner img { height: 180px; }
}

@media (max-width: 600px) {
  .gens-grid { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
  .trophy-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-list { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .catering-tabs { flex-direction: column; border-bottom: none; gap: 0.25rem; }
  .tab-btn { border: 1px solid var(--light-mid); border-radius: 3px; text-align: center; margin-bottom: 0; }
  .tab-btn.active { background: var(--accent); color: var(--white); border-color: var(--accent); }
  .travel-tabs-bar { flex-direction: column; border-bottom: none; gap: 0.25rem; }
  .travel-tab-btn { border: 1px solid rgba(200,146,42,0.3); border-radius: 3px; text-align: center; margin-bottom: 0; }
  .travel-tab-btn.active { background: var(--accent); border-color: var(--accent); }
}

/* =========================================================
   VISUAL IMPROVEMENTS
   ========================================================= */

/* ----------------------------------------------------------
   1. STATS BAR
   ---------------------------------------------------------- */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent);
  padding: 1.25rem 1rem;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.25rem 2.5rem;
  gap: 0.2rem;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.28);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stats-bar { gap: 0.25rem 0; }
  .stat-item { padding: 0.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.15); width: 50%; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
}

/* ----------------------------------------------------------
   4. ACTIVITY CARDS — full-bleed image overlay (magazine cover style)
   ---------------------------------------------------------- */
.activity-card {
  position: relative;
  min-height: 360px;
  border-radius: 6px;
  overflow: hidden;
  display: block;  /* override flex */
  border: none;
  cursor: pointer;
}
.activity-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: unset;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.activity-card:hover img { transform: scale(1.07); }
.activity-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top,
    rgba(12,20,10,0.95) 0%,
    rgba(12,20,10,0.75) 50%,
    transparent 100%);
  transition: padding 0.4s ease;
  display: flex;
  flex-direction: column;
}
.activity-card:hover .activity-body { padding-bottom: 1.75rem; }
.activity-body h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.activity-body p {
  color: rgba(244,235,213,0.0);
  font-size: 0.82rem;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, color 0.35s ease 0.1s;
  flex: unset;
  margin-bottom: 0;
}
.activity-card:hover .activity-body p {
  max-height: 100px;
  color: rgba(244,235,213,0.82);
}
.activity-meta {
  margin-top: 0.6rem;
  border-top: 1px solid rgba(200,146,42,0.35);
  padding-top: 0.5rem;
}
.activity-price {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.trophy-card {
  transition: transform var(--ease), box-shadow var(--ease);
}
.trophy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* ----------------------------------------------------------
   6. HERO SCROLL ARROW
   ---------------------------------------------------------- */
.hero-scroll-arrow {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 3;
  opacity: 0.7;
  animation: hero-bounce 2.2s ease-in-out infinite;
  cursor: pointer;
}
.hero-scroll-arrow .arrow-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}
.hero-scroll-arrow .arrow-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  margin-top: -4px;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ----------------------------------------------------------
   7. SECTION LABEL DECORATION — side lines on centred labels
   ---------------------------------------------------------- */
.section-header .section-label,
.trophies-intro .section-label,
.activities-intro .section-label,
.timeline-section .section-label,
.pangolin-strip .section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: 100%;
}
.section-header .section-label::before,
.section-header .section-label::after,
.trophies-intro .section-label::before,
.trophies-intro .section-label::after,
.activities-intro .section-label::before,
.activities-intro .section-label::after,
.timeline-section .section-label::before,
.timeline-section .section-label::after,
.pangolin-strip .section-label::before,
.pangolin-strip .section-label::after {
  content: '';
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--accent);
  opacity: 0.55;
}

/* ----------------------------------------------------------
   8. PANGOLIN STRIP — taller, more dramatic
   ---------------------------------------------------------- */
.pangolin-strip {
  min-height: 520px;
}
.pangolin-strip .pangolin-bg {
  opacity: 0.28;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.pangolin-strip:hover .pangolin-bg { transform: scale(1); }
.pangolin-strip h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.25rem;
}
.pangolin-strip p {
  max-width: 540px;
  font-size: 1.05rem;
}
.pangolin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,146,42,0.18);
  border: 1px solid rgba(200,146,42,0.5);
  border-radius: 2px;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pangolin-badge::before {
  content: '●';
  font-size: 0.45em;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ----------------------------------------------------------
   9. TIMELINE — giant decorative year behind cards
   ---------------------------------------------------------- */
.timeline-card {
  position: relative;
  overflow: hidden;
}
.timeline-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.timeline-year::after {
  content: attr(data-year);
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(200,146,42,0.06);
  letter-spacing: -0.05em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.timeline-img {
  border: 3px solid rgba(200,146,42,0.35);
  transition: border-color var(--ease);
}
.timeline-card:hover .timeline-img { border-color: var(--accent); }

/* ----------------------------------------------------------
   10. HUNTING METHOD — pull-quote callout
   ---------------------------------------------------------- */
.method-quote {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0 0;
  background: rgba(200,146,42,0.06);
  border-radius: 0 3px 3px 0;
}
.method-quote p {
  font-style: italic;
  font-size: 0.95rem !important;
  opacity: 0.85 !important;
  margin: 0 !important;
  color: inherit;
  line-height: 1.6;
}

/* Global: custom text selection */
::selection { background: rgba(200,146,42,0.3); color: inherit; }

/* Global: custom scrollbar (webkit) */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-deep); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-hover); }

/* =============================================================
   VISUAL IMPROVEMENT BATCH 2
   ============================================================= */

/* 1. Ken Burns slow-zoom on card images */
.intro-card,
.gen-card,
.activity-card,
.timeline-card { overflow: hidden; }

.intro-card img,
.gen-card img,
.timeline-img,
.about-hosts-imgs img {
  transition: transform 7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.intro-card:hover img,
.gen-card:hover img,
.timeline-card:hover .timeline-img { transform: scale(1.07); }
.about-hosts-imgs img:hover { transform: scale(1.04); }

/* 2. Stat counter — number overflows during animation, clip it */
.stat-num { display: inline-block; min-width: 2ch; }

/* 3. Floating WhatsApp button */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s, background 0.2s, box-shadow 0.2s;
}
.whatsapp-fab.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.whatsapp-fab:hover   { background: #1da851; transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.whatsapp-fab svg     { width: 28px; height: 28px; flex-shrink: 0; }
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid rgba(37,211,102,0.45);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* 4. Back-to-top button */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 900;
  width: 42px;
  height: 42px;
  background: rgba(26,42,24,0.92);
  border: 1px solid rgba(200,146,42,0.5);
  color: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s, background 0.2s, color 0.2s;
  backdrop-filter: blur(4px);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover   { background: var(--accent); color: #fff; border-color: var(--accent); }
.back-to-top svg     { width: 18px; height: 18px; }

/* 5. Section wave dividers */
.section-wave { display: block; width: 100%; overflow: hidden; line-height: 0; margin: 0; padding: 0; }
.section-wave svg { display: block; width: 100%; height: 56px; }

/* 6. Section side-nav dots */
.section-dots {
  position: fixed;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.section-dots li a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  text-decoration: none;
}
.section-dots li a .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244,235,213,0.25);
  border: 1.5px solid rgba(244,235,213,0.35);
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.section-dots li a .dot-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,235,213,0.75);
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.section-dots li a:hover .dot-label,
.section-dots li.active a .dot-label { opacity: 1; transform: translateX(0); }
.section-dots li.active a .dot,
.section-dots li a:hover .dot {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.5);
}
@media (max-width: 1024px) { .section-dots { display: none; } }

/* 7. Staggered entrance for grid children */
.intro-cards .intro-card:nth-child(2) { transition-delay: 0.1s; }
.intro-cards .intro-card:nth-child(3) { transition-delay: 0.2s; }
.gens-grid .gen-card:nth-child(2) { transition-delay: 0.08s; }
.gens-grid .gen-card:nth-child(3) { transition-delay: 0.16s; }
.gens-grid .gen-card:nth-child(4) { transition-delay: 0.24s; }
.activity-grid .activity-card:nth-child(2) { transition-delay: 0.06s; }
.activity-grid .activity-card:nth-child(3) { transition-delay: 0.12s; }
.activity-grid .activity-card:nth-child(4) { transition-delay: 0.18s; }
.activity-grid .activity-card:nth-child(5) { transition-delay: 0.24s; }
.activity-grid .activity-card:nth-child(6) { transition-delay: 0.30s; }
.activity-grid .activity-card:nth-child(7) { transition-delay: 0.36s; }
.activity-grid .activity-card:nth-child(8) { transition-delay: 0.42s; }
.trophy-grid .trophy-card:nth-child(even) { transition-delay: 0.07s; }

/* 8. Trophy card hover gold glow */
.trophy-card {
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  border: 1px solid transparent;
}
.trophy-card:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 10px 36px rgba(200,146,42,0.22);
  transform: translateY(-4px);
  border-color: var(--accent);
}

/* 9. Hero parallax — transform applied via JS on scroll */
.hero { overflow: hidden; }
.hero-bg { will-change: transform; transform: scale(1.08) translateY(0); }

/* 10. Card shimmer sweep on hover */
.intro-card,
.gen-card { position: relative; }
.intro-card::after,
.gen-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.06) 50%, transparent 70%);
  background-size: 250% 100%;
  background-position: 200% 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.intro-card:hover::after,
.gen-card:hover::after {
  opacity: 1;
  animation: card-shimmer 0.75s ease forwards;
}
@keyframes card-shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -50% 0; }
}

/* =============================================================
   LAYOUT IMPROVEMENT BATCH 1
   ============================================================= */

/* Fix: section-dots <ul> needs the flex layout, not the <nav> */
.section-dots ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
}

/* 1. Hero: vertically centred content */
.hero {
  align-items: center;
  padding-bottom: 0;
}
.hero-content {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 8rem;
}

/* 2. Stats bar: taller, bigger numbers */
.stats-bar {
  padding-block: 2.75rem;
}
.stat-item {
  padding-inline: clamp(1.5rem, 4vw, 4.5rem);
}
.stat-num {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}
.stat-divider {
  height: 60px;
}

/* 3. Intro cards: first card full-width horizontal split */
@media (min-width: 700px) {
  .intro-cards {
    grid-template-columns: 1fr 1fr;
  }
  .intro-cards .intro-card:first-child {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
  }
  .intro-cards .intro-card:first-child img {
    flex: 0 0 52%;
    width: 52%;
    aspect-ratio: 16/9;
    height: auto;
  }
  .intro-cards .intro-card:first-child .intro-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem;
  }
  .intro-cards .intro-card:first-child h3 {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
  }
  .intro-cards .intro-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.75;
    opacity: 0.85;
  }
}

/* 4. Activity grid: first card is a featured hero */
@media (min-width: 700px) {
  .activity-card:first-child {
    grid-column: span 2;
    min-height: 500px;
  }
  .activity-card:first-child .activity-body {
    padding: 3rem 2.5rem 2rem;
  }
  .activity-card:first-child .activity-body h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  .activity-card:first-child:hover .activity-body p {
    max-height: 140px;
    font-size: 0.9rem;
  }
}

/* 5. Timeline: staggered 2-column layout */
@media (min-width: 700px) {
  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3.5rem;
  }
  .timeline::before { display: none; }
  .timeline-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,146,42,0.18);
    border-radius: 6px;
    padding: 1.75rem 1.5rem;
    text-align: left;
  }
  .timeline-card .timeline-dot {
    margin: 0 0 0.75rem;
    width: 14px;
    height: 14px;
  }
  .timeline-card:nth-child(even) {
    margin-top: 5rem;
  }
  .timeline-card:hover {
    border-color: rgba(200,146,42,0.45);
    background: rgba(255,255,255,0.07);
  }
}

/* 6. Method text: sticky while images scroll past */
@media (min-width: 900px) {
  .method-text {
    position: sticky;
    top: calc(var(--nav-height) + 2.5rem);
    align-self: start;
  }
}

/* 7. Trophy cards: larger minimum, price more prominent */
.trophy-grid {
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
}
.trophy-price {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.6rem;
}
.trophy-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

/* 8. Pangolin strip: cinematic with right-aligned text */
.pangolin-strip {
  min-height: 600px;
  justify-content: flex-end;
  background: linear-gradient(to right, transparent 30%, rgba(12,20,10,0.7) 100%),
              var(--dark-deep);
}
.pangolin-strip .pangolin-bg {
  opacity: 0.5;
  object-position: 25% center;
}
.pangolin-strip .container {
  max-width: 580px;
  text-align: right;
}
.pangolin-strip .section-label {
  display: flex;
  justify-content: flex-end;
}
.pangolin-strip p {
  margin-left: auto;
}
.pangolin-badge {
  margin-left: auto;
  margin-right: 0;
}

/* 9. About hosts: overlapping stacked photos */
@media (min-width: 700px) {
  .about-hosts-imgs {
    position: relative;
    display: block;
    height: 500px;
  }
  .about-hosts-imgs img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 74%;
    height: 82%;
    aspect-ratio: unset;
    object-fit: cover;
    border-radius: 4px;
    z-index: 1;
    cursor: pointer;
    transition: z-index 0s, transform 0.3s ease, box-shadow 0.3s ease;
  }
  .about-hosts-imgs img:nth-child(2) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 56%;
    height: 62%;
    aspect-ratio: unset;
    object-fit: cover;
    border-radius: 4px;
    border: 4px solid var(--light);
    z-index: 2;
    cursor: pointer;
    transition: z-index 0s, transform 0.3s ease, box-shadow 0.3s ease;
  }
  .about-hosts-imgs img:first-child:hover {
    z-index: 3;
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }
  .about-hosts-imgs img:nth-child(2):hover {
    z-index: 3;
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }
  .about-hosts-imgs img.wide {
    position: static;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
  }
}

/* 10. Contact: info blocks in horizontal row above the form */
@media (min-width: 700px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-layout > .reveal:first-child {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(200,146,42,0.18);
  }
  .contact-info-block {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
  }
}

/* =============================================================
   LAYOUT IMPROVEMENT BATCH 2
   ============================================================= */

/* 1. Accommodation mosaic: hero full-width + 4 equal thumbnails */
@media (min-width: 600px) {
  .accom-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
  .accom-grid img.wide {
    grid-column: 1 / -1;
    aspect-ratio: 21/9;
  }
  .accom-grid img:not(.wide) {
    aspect-ratio: 4/3;
  }
}

/* 2. Meal panels: wider image, centred alignment, landscape ratio */
.meal-grid {
  grid-template-columns: 1.25fr 1fr;
  gap: calc(var(--gap) * 1.75);
  align-items: center;
}
.meal-grid img {
  aspect-ratio: 16/10;
  border-radius: 4px;
}
.meal-text h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

/* 3. Contact form: name + email row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }

/* 4. Footer: expanded 3-column layout */
.site-footer {
  padding-block: 3.5rem 2rem;
  margin-top: 0;
  background: var(--dark-deep);
  border-top: 1px solid rgba(200,146,42,0.18);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--gap) 2.5rem;
  align-items: center;
  padding-bottom: 2rem;
  font-size: 0.875rem;
  color: rgba(244,235,213,0.5);
}
.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.footer-logo-col img {
  max-height: 110px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.footer-logo-col img.logo-white {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-badge-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,235,213,0.45);
}
.footer-copy {
  border-top: 1px solid rgba(200,146,42,0.1);
  padding: 1.25rem 0;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.73rem;
  color: rgba(244,235,213,0.4);
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-links a {
  color: rgba(244,235,213,0.55);
  font-size: 0.82rem;
  transition: color var(--ease);
  text-decoration: none;
}
.footer-links a:hover { color: var(--accent); }
.footer-links li:not(:has(a)) {
  color: rgba(244,235,213,0.45);
  font-size: 0.82rem;
}
.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(200,146,42,0.1);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.73rem;
}
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* 5. Sustainability responsive */
@media (max-width: 900px) {
  .sustain-pillars { grid-template-columns: repeat(3, 1fr); }
  .sustain-butchery-imgs { grid-template-columns: 1fr; }
  .sustain-butchery-imgs img { height: 240px; }
}
@media (max-width: 600px) {
  .sustain-pillars { grid-template-columns: 1fr 1fr; }
  .sustain-wildlife { grid-template-columns: 1fr; }
}

/* 6. Generation strip: horizontal scroll on mobile */
@media (max-width: 680px) {
  .gens-grid {
    grid-template-columns: repeat(4, 74vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
    scrollbar-width: none;
  }
  .gens-grid::-webkit-scrollbar { display: none; }
  .gen-card { scroll-snap-align: start; }
}

/* 7. Tablet (600–860px) layout fixes */
@media (max-width: 860px) and (min-width: 600px) {
  .method-grid,
  .method-grid.reverse {
    grid-template-columns: 1fr;
    gap: var(--gap);
  }
  .method-grid.reverse .method-imgs { order: 0; }
  .about-hosts { grid-template-columns: 1fr; }
  .about-hosts-imgs { height: 320px; }
  .about-farm-strip { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; }
  .timeline-card:nth-child(even) { margin-top: 0; }
  .foundation-grid { grid-template-columns: 1fr; }
  .gens-grid { grid-template-columns: repeat(2, 1fr); }
  .butchery-grid { grid-template-columns: 1fr 1fr; }
  .butchery-grid img.tall { display: none; }
}

/* 8. Foundation images: 3-col mosaic with tall anchor */
@media (min-width: 700px) {
  .foundation-imgs {
    grid-template-columns: 1.1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.6rem;
  }
  .foundation-imgs img { aspect-ratio: 1; border-radius: 4px; }
  .foundation-imgs img.tall {
    grid-row: 1 / -1;
    aspect-ratio: unset;
    height: 100%;
    object-fit: cover;
  }
}

/* 9. Butchery grid: tighter, better proportions */
.butchery-grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
}
.butchery-grid img {
  aspect-ratio: 4/5;
}
.butchery-grid img.tall {
  aspect-ratio: 3/5;
}

/* 10. Accommodation amenities: polished icon cards */
.accom-amenities {
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 0.65rem;
}
.amenity-item {
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  gap: 0.65rem;
  align-items: flex-start;
  transition: background 0.2s;
}
.amenity-item:hover { background: rgba(255,255,255,0.09); }
.amenity-icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ---- Welcome Section ---- */
.welcome-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 5rem;
}
.welcome-video-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
}
.welcome-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.welcome-video-btn {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(200,146,42,0.5);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.welcome-video-btn:hover { background: rgba(200,146,42,0.2); border-color: var(--accent); }
.welcome-text .section-label {
  font-size: 1rem;
  letter-spacing: 0.12em;
}
.welcome-text p {
  margin-bottom: 1.25rem;
  opacity: 0.85;
  line-height: 1.8;
  font-size: 1.05rem;
}
@media (max-width: 760px) {
  .welcome-section { grid-template-columns: 1fr; gap: 2rem; }
  .welcome-video-wrap { height: 280px; }
}

/* ---- Hosts Intro Strip ---- */
.hosts-intro-strip {
  background: var(--dark);
  color: var(--text-on-dark);
  padding-block: var(--section-pad);
}
.hosts-intro-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.hosts-intro-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}
.hosts-intro-text p {
  margin-bottom: 1.25rem;
  opacity: 0.85;
  line-height: 1.8;
}
@media (max-width: 680px) {
  .hosts-intro-grid { grid-template-columns: 1fr; }
  .hosts-intro-img { max-width: 200px; }
}
