@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ─────────────────────────────────────────────
   ISOLA MAREA — Brand Identity System v1.0
   Color tokens, typography, layout primitives
───────────────────────────────────────────── */

:root {
  --olive-grove:   #3D4A31;
  --harvest-gold:  #C9A84C;
  --antique-cream: #EEE9DB;
  --terracotta:    #C97B4B;
  --warm-stone:    #8C8478;
  --charcoal:      #2C2C2C;
  --aged-linen:    #D4C9B8;
  --olive-light:   #5C6B47;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background-color: var(--antique-cream);
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.45s ease;
}
body.page-loaded {
  opacity: 1;
}

/* ── NAVIGATION ──────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(238, 233, 219, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--aged-linen);
}

.nav-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.38em;
  color: var(--olive-grove);
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-right: 24px;
}

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

.nav-links a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--charcoal);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--olive-grove); }

.nav-cta a {
  color: var(--antique-cream) !important;
  background: var(--olive-grove);
  padding: 8px 16px;
  letter-spacing: 0.12em;
  transition: background 0.2s;
}

.nav-cta a:hover {
  background: var(--olive-light) !important;
  color: var(--antique-cream) !important;
}

/* ── TYPOGRAPHY ──────────────────────────── */
h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(44px, 5.5vw, 68px);
  letter-spacing: 0.1em;
  color: var(--olive-grove);
  line-height: 1.1;
}

h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--olive-grove);
  line-height: 1.25;
}

h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  color: var(--harvest-gold);
  line-height: 1.4;
}

p { margin-bottom: 1.4em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

/* ── ACCENT ELEMENTS ─────────────────────── */
.gold-rule {
  width: 44px;
  height: 1px;
  background: var(--harvest-gold);
  margin: 22px 0;
}

.gold-rule.centered { margin-left: auto; margin-right: auto; }

.coords {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--warm-stone);
  text-transform: uppercase;
}

.caption {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--warm-stone);
  text-transform: uppercase;
}

.pull-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.65;
  color: var(--charcoal);
  border-left: 3px solid var(--harvest-gold);
  padding: 18px 32px;
  margin: 44px 0;
  max-width: 640px;
}

/* ── CTA ELEMENTS ────────────────────────── */
.cta-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
  margin-top: 8px;
}

.cta-link:hover { color: var(--olive-grove); border-color: var(--olive-grove); }

.cta-link.gold {
  color: var(--harvest-gold);
  border-color: var(--harvest-gold);
}

.cta-link.gold:hover {
  color: var(--antique-cream);
  border-color: var(--antique-cream);
}

.cta-btn {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--antique-cream);
  background: var(--olive-grove);
  padding: 15px 40px;
  transition: background 0.25s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover { background: var(--olive-light); }

/* ── HERO (parallax from scroll position 0) ─────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  /* Prevent hairline gap below hero */
  margin-bottom: -1px;
}

/* Dark overlay via pseudo-element (replaces .hero-bg div) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 10, 0.74);
  z-index: 0;
}
@media (max-width: 768px) {
  .hero::before {
    background: rgba(20, 16, 10, 0.82);
  }
}

/* Keep content above the overlay */
.hero-content,
.hero-scroll {
  position: relative;
  z-index: 1;
}

/* .hero-bg kept for any other pages that still use it */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 32px;
}

.hero-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(22px, 4vw, 46px);
  letter-spacing: 0.45em;
  color: var(--antique-cream);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(19px, 2.6vw, 30px);
  color: var(--antique-cream);
  letter-spacing: 0.32em;
  margin-bottom: 30px;
  text-shadow:
    0 1px 4px rgba(0,0,0,0.9),
    0 3px 12px rgba(0,0,0,0.7),
    0 6px 32px rgba(0,0,0,0.5);
  opacity: 1;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 24px);
  color: var(--antique-cream);
  opacity: 0.9;
  max-width: 580px;
  line-height: 1.65;
  margin: 0 auto;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--antique-cream);
  opacity: 0.6;
  text-transform: uppercase;
}

/* ── PAGE HEADER (inner pages) ───────────── */
.page-header {
  padding: 148px 52px 80px;
  max-width: 820px;
  margin: 0 auto;
}

.page-header .coords { margin-bottom: 20px; }
.page-header h1 { margin-bottom: 6px; }

/* ── LAYOUT UTILITIES ────────────────────── */
.wrap   { max-width: 1200px; margin: 0 auto; padding: 0 52px; }
.wrap-m { max-width: 860px;  margin: 0 auto; padding: 0 52px; }
.wrap-s { max-width: 680px;  margin: 0 auto; padding: 0 52px; }

.section        { padding: 96px 52px; max-width: 1200px; margin: 0 auto; }
.section-full   { padding: 96px 52px; }
.section-cream  { background: var(--antique-cream); }
.section-olive  { background: var(--olive-grove); }
.section-linen  { background: #F5F0E6; }

.section-olive h1,
.section-olive h2 { color: var(--antique-cream); }

.section-olive h3 { color: var(--harvest-gold); }

.section-olive p  { color: rgba(238, 233, 219, 0.82); }

hr {
  border: none;
  border-top: 1px solid var(--aged-linen);
}

/* ── FEATURE SPLIT ───────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.feature-split .fs-image { overflow: hidden; }

.feature-split .fs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-split .fs-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 68px;
  background: var(--antique-cream);
}

.feature-split.olive .fs-text {
  background: var(--olive-grove);
}

.feature-split.olive h2  { color: var(--antique-cream); }
.feature-split.olive h3  { color: var(--harvest-gold); }
.feature-split.olive p   { color: rgba(238, 233, 219, 0.82); }

/* ── IMAGE GRIDS ─────────────────────────── */
.img-strip-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
}

.img-strip-2 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3px;
}

.img-strip-3 img,
.img-strip-2 img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── EXPERIENCE CARDS ────────────────────── */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
  margin-top: 64px;
}

.exp-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  margin-bottom: 28px;
}

.exp-card h3 { margin-bottom: 12px; }

/* ── ARTICLE CARDS ───────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.article-card img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  margin-bottom: 24px;
}

.article-card .caption { margin-bottom: 12px; display: block; }

/* ── PHOTO CAPTION OVERLAY ───────────────── */
.img-overlay-wrap { position: relative; overflow: hidden; }

.img-overlay-wrap img { display: block; width: 100%; }

.img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(to top, rgba(61,74,49,0.80), transparent);
}

.img-overlay .caption { color: rgba(238,233,219,0.85); }

/* ── FIVE OFFERINGS GRID ─────────────────── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
  margin-top: 56px;
}

.offering h3 { font-size: 18px; margin-bottom: 12px; }
.offering p  { font-size: 15px; line-height: 1.75; }

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--olive-grove);
  color: var(--antique-cream);
  padding: 72px 52px 52px;
}

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

.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--antique-cream);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-inner h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--harvest-gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

footer p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(238, 233, 219, 0.65);
  max-width: none;
  margin-bottom: 6px;
}

footer a {
  color: rgba(238, 233, 219, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--harvest-gold); }

.footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(238, 233, 219, 0.38);
  padding-top: 36px;
  border-top: 1px solid rgba(238, 233, 219, 0.12);
  text-align: center;
}

/* ── INQUIRE SECTION ─────────────────────── */
.inquire-section {
  padding: 120px 52px;
  text-align: center;
  border-top: 1px solid var(--aged-linen);
}

.inquire-section h2 { max-width: 540px; margin: 0 auto 8px; }

.inquire-section p {
  max-width: 54ch;
  margin: 0 auto 40px;
  text-align: center;
}

.inquire-section .email-note {
  font-size: 13px;
  color: var(--warm-stone);
  letter-spacing: 0.08em;
  margin-top: 18px;
  margin-bottom: 0;
}

/* ── FARM SEASONS ────────────────────────── */
.farm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.farm-grid img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* ── EMAIL GATE (Events page) ────────────── */
.gate-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 52px;
  text-align: center;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.gate-form input[type="email"],
.gate-form input[type="text"] {
  font-family: Georgia, serif;
  font-size: 15px;
  padding: 14px 20px;
  border: 1px solid var(--aged-linen);
  background: white;
  color: var(--charcoal);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.gate-form input:focus { border-color: var(--harvest-gold); }

.gate-content { display: none; }
.gate-content.unlocked { display: block; }
.gate-wrap.unlocked { display: none; }

/* ── SERVICES GRID ───────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 60px;
}

.service-card {
  border-top: 1px solid var(--aged-linen);
  padding-top: 28px;
}

.service-card h3 { margin-bottom: 14px; }
.service-card p  { font-size: 15px; line-height: 1.8; }

/* ── CONTACT FORM ────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 580px;
}

.contact-form label {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-stone);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: Georgia, serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--aged-linen);
  background: white;
  color: var(--charcoal);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--harvest-gold); }

/* ── EVENTS LIST ─────────────────────────── */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.event-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--aged-linen);
}

.event-row:last-child { border-bottom: 1px solid var(--aged-linen); }

.event-date {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--harvest-gold);
  text-transform: uppercase;
  padding-top: 4px;
}

.event-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--olive-grove);
  margin-bottom: 8px;
}

.event-desc { font-size: 15px; line-height: 1.75; color: var(--charcoal); max-width: none; margin: 0; }

.event-tag {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--antique-cream);
  background: var(--terracotta);
  padding: 5px 12px;
  white-space: nowrap;
}

/* ── WORLD MAP REGIONS ───────────────────── */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 60px;
}

.region-card {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.region-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}

.region-card:hover img { transform: scale(1.04); }

.region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,74,49,0.78) 0%, rgba(61,74,49,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 24px;
}

.region-overlay h3 {
  color: var(--antique-cream);
  font-size: 24px;
  margin-bottom: 4px;
}

.region-overlay .caption { color: rgba(238,233,219,0.7); }

/* ── TESTIMONIALS ────────────────────────── */

/* Featured wide review */
.review-featured {
  padding: 96px 52px;
  background: var(--antique-cream);
  border-top: 1px solid var(--aged-linen);
  border-bottom: 1px solid var(--aged-linen);
}

.review-featured-inner {
  max-width: 820px;
  margin: 0 auto;
}

.review-featured blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.6;
  color: var(--charcoal);
  border-left: 3px solid var(--harvest-gold);
  padding: 4px 0 4px 36px;
  margin: 0 0 32px;
}

.review-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 39px;
}

.review-meta-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--olive-grove);
}

.review-meta-type {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--antique-cream);
  background: var(--terracotta);
  padding: 4px 11px;
}

/* Review grid — 3 cards */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 0;
}

.review-card {
  background: #F5F0E6;
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-card blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.65;
  color: var(--charcoal);
  flex: 1;
  margin: 0;
}

.review-card-meta {
  border-top: 1px solid var(--aged-linen);
  padding-top: 20px;
}

.review-card .review-meta-name {
  display: block;
  margin-bottom: 6px;
}

.review-card .review-meta-type {
}

/* Review card alternate color */
.review-card.dark {
  background: var(--olive-grove);
}

.review-card.dark blockquote { color: rgba(238,233,219,0.9); }
.review-card.dark .review-meta-name { color: var(--harvest-gold); }
.review-card.dark .review-card-meta { border-color: rgba(238,233,219,0.15); }

/* Full-width testimonial band */
.review-band {
  background: var(--olive-grove);
  padding: 96px 52px;
  text-align: center;
}

.review-band blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.5;
  color: var(--antique-cream);
  max-width: 780px;
  margin: 0 auto 36px;
}

.review-band .review-meta-name {
  color: var(--harvest-gold);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.review-band .review-meta-type {
  background: rgba(238,233,219,0.15);
  color: rgba(238,233,219,0.7);
  margin-left: 12px;
}

/* Two-column review duo */
.review-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.review-duo .review-card {
  padding: 52px 52px 48px;
}

.review-duo .review-card blockquote {
  font-size: 20px;
}

/* Stars */
.review-stars {
  color: var(--harvest-gold);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

/* Manifesto band */
.manifesto-band {
  background: var(--olive-grove);
  padding: 80px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.manifesto-line {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  color: rgba(238,233,219,0.75);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.manifesto-line.primary {
  font-size: clamp(22px, 3vw, 34px);
  color: var(--antique-cream);
  font-style: italic;
}

/* Review count badge */
.review-intro {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.review-count-badge {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-stone);
  border: 1px solid var(--aged-linen);
  padding: 6px 14px;
}

/* ── PHOTO CAROUSEL ─────────────────────────────────────── */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 520px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 52px 32px;
  background: linear-gradient(transparent, rgba(28,22,14,0.68));
  color: var(--antique-cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(238,233,219,0.12);
  border: 1px solid rgba(238,233,219,0.28);
  color: var(--antique-cream);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  z-index: 10;
  backdrop-filter: blur(6px);
  line-height: 1;
}

.carousel-btn:hover { background: rgba(238,233,219,0.26); }
.carousel-btn.prev  { left: 28px; }
.carousel-btn.next  { right: 28px; }

.carousel-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 10;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(238,233,219,0.38);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--harvest-gold);
  transform: scale(1.35);
}

/* Section break before The Pull */
.section-break {
  padding: 56px 52px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.section-break .gold-rule.centered {
  width: 72px;
}

.section-break-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-stone);
}

/* ── SQUARE IMAGE STRIP ──────────────────────────────────── */
.img-strip-squares {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.img-strip-squares .sq-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.img-strip-squares .sq-wrap + .sq-wrap {
  border-left: 3px solid var(--harvest-gold);
}

.img-strip-squares .sq-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.img-strip-squares .sq-wrap:hover img {
  transform: scale(1.04);
}

/* ── PARALLAX SECTIONS ───────────────────────────────────── */
.parallax-band {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 460px;
  position: relative;
}

.parallax-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 14, 0.28);
}

/* ── SCROLL REVEAL ANIMATIONS ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger children inside a reveal parent */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.36s; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.60s; }

/* ── TIDE / WAVE DIVIDERS ────────────────────────────────── */
.wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: -1px 0 0;
  padding: 0;
  font-size: 0;
}

.wave svg {
  display: block;
  width: 100%;
  margin-bottom: -1px;
}

/* ── HERO TIDE BREATHE ───────────────────────────────────── */
@keyframes tide-breathe {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 0.32; }
}

.hero::before {
  animation: tide-breathe 7s ease-in-out infinite;
}

/* ── HERO SCROLL INDICATOR ───────────────────────────────── */
@keyframes tide-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

.hero-scroll {
  animation: tide-bob 2.8s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS — Full audit & fix
   Breakpoints: 768px tablet/phone, 480px small phone
═══════════════════════════════════════════════════════════ */

/* ── iOS FIX: background-attachment:fixed is broken on all iOS Safari ── */
@supports (-webkit-touch-callout: none) {
  .hero, .parallax-band { background-attachment: scroll; }
}
@media (hover: none) {
  .hero, .parallax-band { background-attachment: scroll; }
}

/* ── NAV TOGGLE: hidden on desktop, shown on mobile ── */
.nav-toggle {
  display: none;
}

/* ── MOBILE MENU OVERLAY: always in DOM but hidden ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--antique-cream);
  z-index: 250;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  padding: 80px 24px 48px;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu li {
  list-style: none;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--aged-linen);
}

.mobile-menu li:first-of-type {
  border-top: 1px solid var(--aged-linen);
}

.mobile-menu a {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.14em;
  color: var(--olive-grove);
  text-decoration: none;
  text-transform: uppercase;
  padding: 18px 0;
}

.mobile-menu .nav-cta a {
  color: var(--terracotta) !important;
  background: none;
  padding: 18px 0;
}

.mobile-menu .mobile-close {
  position: fixed;
  top: 18px;
  right: 22px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--olive-grove);
  line-height: 1;
  z-index: 260;
}

/* ── TABLET & MOBILE (≤ 768px) ───────────────────────────── */
@media (max-width: 768px) {

  /* Nav */
  nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

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

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--olive-grove);
  }

  /* Layout containers */
  .wrap, .wrap-m, .wrap-s {
    padding: 0 22px;
  }

  .section {
    padding: 56px 22px;
  }

  .section-full {
    padding: 56px 22px;
  }

  .page-header {
    padding: 96px 22px 52px;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 20px;
  }

  /* Feature split: image on top, text below */
  .feature-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-split .fs-image {
    height: 280px;
  }

  .feature-split .fs-text {
    padding: 44px 24px;
  }

  /* Force image-first order on mobile */
  .feature-split.reverse .fs-image { order: -1; }

  /* Image strips → single column */
  .img-strip-3 {
    grid-template-columns: 1fr;
  }

  .img-strip-2 {
    grid-template-columns: 1fr;
  }

  .img-strip-3 img,
  .img-strip-2 img {
    height: 240px;
  }

  /* Square strip → single column */
  .img-strip-squares {
    grid-template-columns: 1fr !important;
  }

  .img-strip-squares .sq-wrap + .sq-wrap {
    border-left: none;
    border-top: 3px solid var(--harvest-gold);
  }

  /* Experience cards → single column */
  .exp-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-top: 36px;
  }

  /* Article cards → single column */
  .article-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 36px;
  }

  /* Offerings → 2-col on tablet, 1-col on phone */
  .offerings-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  /* Review grid → single column */
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 32px 22px 28px;
  }

  .review-duo {
    grid-template-columns: 1fr;
  }

  .review-duo .review-card {
    padding: 36px 24px;
  }

  .review-duo .review-card blockquote {
    font-size: 18px;
  }

  .review-featured {
    padding: 56px 22px;
  }

  .review-featured blockquote {
    font-size: clamp(17px, 4.5vw, 22px);
    padding: 4px 0 4px 18px;
  }

  .review-featured-meta {
    padding-left: 21px;
  }

  .review-band {
    padding: 56px 22px;
  }

  /* Manifesto */
  .manifesto-band {
    padding: 52px 22px;
  }

  /* Inquire */
  .inquire-section {
    padding: 64px 22px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  footer {
    padding: 48px 22px 32px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 36px;
  }

  /* Events */
  .event-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  /* Farm grid */
  .farm-grid {
    grid-template-columns: 1fr;
  }

  .farm-grid img {
    height: 260px;
  }

  /* Regions */
  .regions-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .region-card {
    height: 240px;
  }

  /* Carousel */
  .carousel {
    height: 280px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .carousel-btn.prev { left: 12px; }
  .carousel-btn.next { right: 12px; }

  /* Pull quote */
  .pull-quote {
    padding: 12px 18px;
    margin: 24px 0;
    font-size: clamp(17px, 4vw, 22px);
  }

  /* Typography */
  p { max-width: 100%; }

  /* Section break */
  .section-break {
    padding: 36px 22px 0;
  }

  /* Gate wrap */
  .gate-wrap {
    padding: 56px 22px;
  }

  /* Review intro */
  .review-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

}

/* ── PHONE ONLY (≤ 480px) ────────────────────────────────── */
@media (max-width: 480px) {

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

  .img-strip-3 img,
  .img-strip-2 img {
    height: 200px;
  }

  .farm-grid img {
    height: 220px;
  }

  .region-card {
    height: 200px;
  }

  .carousel {
    height: 240px;
  }

  .review-featured blockquote {
    font-size: 17px;
  }

  .review-card {
    padding: 28px 18px;
  }

  footer {
    padding: 40px 18px 28px;
  }

  .page-header {
    padding: 88px 18px 44px;
  }

  .hero-content {
    padding: 0 16px;
  }

}

/* ── ADDITIONAL MOBILE FIXES FOR INLINE SECTIONS (≤ 768px) ── */
@media (max-width: 768px) {

  /* ── Work with Me: 2-col form layout → stacked ── */
  .contact-form {
    width: 100%;
  }

  /* ── Events: pricing tier cards (2-col → stacked) ── */
  /* handled via JS for inline grids; ensure cards look right stacked */
  [style*="background:#E8C4A0"],
  [style*="background: #E8C4A0"] {
    padding: 40px 24px !important;
  }

  /* ── Experience 02 flex split: stack image below text ── */
  /* The JS handles flex collapse; ensure inner text padding is mobile-friendly */
  [style*="flex:1"][style*="padding:96px"] {
    padding: 44px 22px !important;
  }

  /* ── Feature splits with inline order styles → always image first ── */
  .feature-split [style*="order:2"],
  .feature-split [style*="order: 2"] {
    order: -1 !important;
  }

  /* ── All inline photo strip images → sensible height ── */
  [style*="grid-template-columns:1fr 1fr 1fr"] img,
  [style*="grid-template-columns: 1fr 1fr 1fr"] img {
    height: 220px !important;
    width: 100%;
  }

  /* ── Photo strip divider background → hide when stacked ── */
  [style*="background:#d4c9b0"],
  [style*="background: #d4c9b0"] {
    background: none !important;
    gap: 0 !important;
  }

  /* ── Inline section padding overrides ── */
  section[style*="padding:96px 52px"],
  section[style*="padding: 96px 52px"],
  section[style*="padding:80px 52px"],
  section[style*="padding: 80px 52px"],
  section[style*="padding:104px 52px"],
  section[style*="padding: 104px 52px"] {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  /* ── Groups hero image ── */
  img[style*="height:560px"],
  img[style*="height: 560px"] {
    height: 260px !important;
  }

  /* ── Inline large-height images ── */
  img[style*="height:480px"],
  img[style*="height: 480px"],
  img[style*="height:500px"],
  img[style*="height: 500px"] {
    height: 240px !important;
  }

  /* ── Events pricing tiers grid → single column ── */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    background: none !important;
    gap: 3px !important;
  }

  /* ── Groups/beyond-sicily inline max-width containers ── */
  [style*="max-width:1000px"],
  [style*="max-width: 1000px"],
  [style*="max-width:860px"],
  [style*="max-width: 860px"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* ── Inline min-height section wrappers ── */
  [style*="min-height:560px"],
  [style*="min-height: 560px"] {
    min-height: auto !important;
  }

  /* ── CTA buttons: full width on mobile ── */
  .cta-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* ── Radici callout box ── */
  [style*="padding:40px 44px"],
  [style*="padding: 40px 44px"] {
    padding: 28px 20px !important;
  }

}

/* ── PHONE ONLY additions (≤ 480px) ── */
@media (max-width: 480px) {

  [style*="font-size:clamp"],
  [style*="font-size: clamp"] {
    font-size: 16px;
  }

  /* Keep hero text readable */
  .hero h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  /* Tier cards fully padded on small screens */
  [style*="padding:52px 44px"],
  [style*="padding: 52px 44px"] {
    padding: 32px 18px !important;
  }

}
