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

:root {
  --cream:        #FAFAFA;
  --dark:         #1C1C1C;
  --amber:        #AF703A;
  --amber-light:  #c47f44;
  --muted:        #6B6560;
  --sand:         #F3EDE6;
  --rule:         rgba(28, 28, 28, 0.12);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* prevent horizontal scroll caused by any overflowing element */
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* Ensure all images are responsive by default */
img { max-width: 100%; height: auto; }

/* ─── UTILITY ─── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: visible;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 26px 60px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}
nav.scrolled {
  background: var(--cream);
  border-bottom-color: var(--rule);
}
nav.scrolled .nav-logo { color: var(--dark); }
nav.scrolled .nav-links a { color: var(--muted); }
nav.scrolled .nav-links a:hover { color: var(--dark); }

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: rgba(250,250,250,0.9);
  transition: color 0.3s;
}
nav.scrolled .nav-logo,
.mar-inner-page .nav-logo { color: var(--dark); }
.nav-logo em { font-style: italic; color: var(--amber); }

/* Logo displayed in the hero above the section label */
.hero-logo {
  display: block;
  height: 68px;
  width: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1); /* white on dark hero */
}

.nav-links { display: flex; gap: 40px; list-style: none; margin-left: auto; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,250,250,0.92); text-decoration: none; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--amber);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.nav-links a:hover { color: #FAFAFA; }
.nav-links a:hover::after { transform: scaleX(1); }

/* Nav right cluster: social icons + CTA */
.nav-right {
  display: flex; align-items: center; gap: 20px; margin-left: 28px;
}
.nav-social {
  display: flex; align-items: center; gap: 14px;
}
.nav-social-link {
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,250,250,0.7);
  transition: color 0.2s; text-decoration: none;
}
.nav-social-link:hover { color: #FAFAFA; }
nav.scrolled .nav-social-link,
.mar-inner-page .nav-social-link { color: var(--muted); }
nav.scrolled .nav-social-link:hover,
.mar-inner-page .nav-social-link:hover { color: var(--dark); }

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; background: var(--amber); border: none;
  padding: 12px 28px; cursor: pointer; border-radius: 1px;
  transition: background 0.2s; text-decoration: none;
}
.nav-cta:hover { background: var(--amber-light); }

/* ─── HERO ─── */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 620px; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 55%;
  filter: contrast(0.92) saturate(0.88) brightness(1.06) sepia(0.18);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(15,12,8,0.82) 0%,
    rgba(15,12,8,0.42) 38%,
    rgba(15,12,8,0.06) 65%,
    transparent 100%
  );
}
.hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 60px 64px; z-index: 10;
  animation: fadeUp 1s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { margin-bottom: 18px; }
.hero-content .section-label { color: #ffffff; }
.hero-content .section-label::before { background: #ffffff; }

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(52px,6.5vw,92px); line-height: 1.0;
  letter-spacing: 0.01em; color: #FAFAFA; max-width: 800px; margin-bottom: 22px;
}
.hero-headline em { font-style: italic; color: var(--amber); }

.hero-body {
  font-size: 15px; line-height: 1.75;
  color: rgba(250,250,250,0.65); max-width: 480px; margin-bottom: 36px;
}
.cta-row { display: flex; align-items: center; gap: 28px; }
.cta-btn-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.hero-trust {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 17px);
  color: rgba(250,250,250,0.70);
  margin: 0;
  line-height: 1.3;
}

.hero-slogan {
  margin: 18px 0 24px;
  font-family: var(--font-sans);
  font-size: clamp(10px, 1.05vw, 13px);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
}

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dark); background: #FAFAFA; border: none;
  padding: 15px 36px; cursor: pointer; border-radius: 1px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--amber); color: #FAFAFA; transform: translateY(-1px); }

.link-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,250,250,0.55); text-decoration: none;
  border-bottom: 1px solid rgba(250,250,250,0.25); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.link-secondary:hover { color: #FAFAFA; border-color: rgba(250,250,250,0.6); }

.scroll-hint {
  position: absolute; bottom: 32px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 10; opacity: 0.35;
}
.scroll-hint span {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: #FAFAFA;
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.scroll-line {
  width: 1px; height: 44px; background: #FAFAFA;
  animation: scrollPulse 2s ease-in-out infinite; transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(0.35); opacity: 0.1; }
}

/* ─── STAT STRIP ─── */
.stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule); border-bottom: 1px solid var(--rule);
}
.stat-item { background: var(--cream); padding: 22px 20px; text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 30px; color: var(--amber); line-height: 1; display: block;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-top: 5px; display: block;
}

/* ─── DIVIDER ─── */
.divider {
  max-width: 1200px; margin: 0 auto;
  padding: 0 60px; border-bottom: 1px solid var(--rule);
}

/* ─── INTRO TEXT ─── */
.intro {
  max-width: 1200px; margin: 0 auto; padding: 88px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.intro-label { margin-bottom: 20px; }
.intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(28px,2.8vw,44px); line-height: 1.12;
}
.intro-title em { font-style: italic; color: var(--amber); }
.intro-body { padding-top: 52px; font-size: 15px; line-height: 1.9; color: var(--muted); }
.intro-body p + p { margin-top: 18px; }

/* ─── WHY TRAVEL WITH ME ─── */
.why {
  background: var(--sand); padding: 100px 0;
}
.why-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
}
.why-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 64px; gap: 60px;
}
.why-header-left { flex-shrink: 0; max-width: 400px; }
.why-label { color: var(--amber); margin-bottom: 18px; }
.why-label::before { background: var(--amber); }
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(36px,3.5vw,54px); line-height: 1.1; color: var(--dark);
}
.why-title em { font-style: italic; color: var(--amber); }
.why-subtitle {
  font-size: 15px; line-height: 1.85; color: var(--muted);
  max-width: 420px; padding-top: 8px;
}

.why-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.why-card {
  background: var(--cream); padding: 40px 32px 36px;
  border: 1px solid var(--rule);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  border-color: rgba(175,112,58,0.35);
  box-shadow: 0 4px 24px rgba(175,112,58,0.08);
}
/* why-card-num merged above */
.why-card-accent {
  width: 36px; height: 3px;
  background: var(--amber);
  margin-bottom: 24px; display: block;
  border-radius: 1px;
}
.why-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 13px; line-height: 1;
  color: var(--amber); margin-bottom: 10px; display: block;
  letter-spacing: 0.18em; font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}
.why-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 20px; color: var(--dark);
  margin-bottom: 10px; letter-spacing: 0.01em;
}
.why-card-title em { font-style: italic; color: var(--amber); }
.why-card-body {
  font-size: 14px; line-height: 1.85; color: var(--muted);
}

/* ─── SURF BANNER ─── */
.surf-banner {
  position: relative; overflow: hidden;
  min-height: 460px;
  display: flex; align-items: center;
}
.surf-banner-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  filter: contrast(0.92) saturate(0.88) brightness(1.06) sepia(0.18);
}
.surf-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(15,12,8,0.62) 0%,
    rgba(15,12,8,0.30) 55%,
    rgba(15,12,8,0.10) 100%
  );
}
.surf-banner-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 72px 60px;
  max-width: 620px; margin-left: 60px;
}
.surf-banner-label { color: var(--amber); margin-bottom: 16px; }
.surf-banner-label::before { background: var(--amber); }
.surf-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(26px,2.8vw,40px); line-height: 1.2;
  color: #FAFAFA; margin-bottom: 20px;
}
.surf-banner-body {
  font-size: 15px; line-height: 1.8;
  color: rgba(250,250,250,0.65); margin-bottom: 32px; max-width: 480px;
}
.btn-surf {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dark); background: #FAFAFA; border: none;
  padding: 14px 32px; cursor: pointer; border-radius: 1px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-surf:hover { background: var(--amber); color: #FAFAFA; }

/* ─── HOW IT WORKS ─── */
.how {
  max-width: 1200px; margin: 0 auto; padding: 100px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.how-image { position: relative; border-radius: 2px; overflow: hidden; }
.how-image img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: center; display: block;
}
.how-image-accent {
  position: absolute; bottom: -16px; right: -16px;
  width: 55%; height: 55%;
  border: 1px solid rgba(175,112,58,0.2); border-radius: 2px; z-index: -1;
}
.how-label { margin-bottom: 16px; }
.how-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(32px,3vw,48px); line-height: 1.1;
  margin-top: 16px; margin-bottom: 36px;
}
.how-title em { font-style: italic; color: var(--amber); }
.how-steps { display: flex; flex-direction: column; }
.how-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--rule);
}
.how-step:first-child { border-top: 1px solid var(--rule); }
.how-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 28px; color: var(--amber);
  line-height: 1; flex-shrink: 0; min-width: 28px;
}
.how-step-text { font-size: 14px; line-height: 1.78; color: var(--muted); padding-top: 4px; }

/* ─── ROUTES ─── */
.routes { background: var(--sand); padding: 100px 0; }
.routes-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(32px,3vw,48px); line-height: 1.1; margin-top: 14px;
}
.section-title em { font-style: italic; color: var(--amber); }
.section-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid var(--rule); padding-bottom: 2px;
  white-space: nowrap; margin-bottom: 4px; transition: color 0.2s;
}
.section-link:hover { color: var(--dark); }
.route-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.route-card {
  position: relative; aspect-ratio: 3/4;
  border-radius: 2px; overflow: hidden; cursor: pointer;
  text-decoration: none; display: block;
}
.route-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: contrast(0.92) saturate(0.88) brightness(1.06) sepia(0.18);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.route-card:hover img { filter: contrast(0.97) saturate(0.94) brightness(1.02) sepia(0.08); transform: scale(1.04); }
.route-card-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(20,15,8,0.72) 0%, rgba(20,15,8,0.08) 50%, transparent 100%);
}
/* Amber vintage tint overlay — matches why-travel card style */
.route-card::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: rgba(238, 182, 98, 0.11);
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.route-card:hover::after { opacity: 0.4; }
.route-card-info { z-index: 3; position: absolute; }
.route-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 24px; }
.route-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,250,250,0.5); margin-bottom: 6px; display: block;
}
.route-card .route-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500; font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #FAFAFA; line-height: 1.2;
}
.route-arrow {
  position: absolute; bottom: 24px; right: 24px;
  width: 36px; height: 36px;
  border: 1px solid rgba(250,250,250,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,250,250,0.6); font-size: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.route-card:hover .route-arrow { background: var(--amber); border-color: var(--amber); color: #fff; }

/* ─── ABOUT ─── */
.about {
  max-width: 1200px; margin: 0 auto; padding: 100px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  border-radius: 2px; display: block;
  filter: contrast(0.92) saturate(0.88) brightness(1.06) sepia(0.18);
  transition: filter 0.5s ease;
}
.about-accent {
  position: absolute; bottom: -20px; left: -20px;
  width: 55%; height: 55%;
  border: 1px solid rgba(175,112,58,0.18); border-radius: 2px; z-index: -1;
}
.about-label { margin-bottom: 16px; }
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(32px,3vw,48px); line-height: 1.1;
  margin-top: 14px; margin-bottom: 28px;
}
.about-title em { font-style: italic; color: var(--amber); }
.about-body { font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 20px; }
.btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dark); background: transparent; border: 1px solid var(--dark);
  padding: 14px 32px; cursor: pointer; border-radius: 1px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none; display: inline-block; margin-top: 12px;
}
.btn-outline:hover { background: var(--dark); color: var(--cream); }

/* ─── REVIEWS ─── */
.reviews {
  background: var(--dark); padding: 100px 0;
}
.reviews-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
}
.reviews-header { margin-bottom: 56px; }
.reviews-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(32px,3vw,48px); line-height: 1.1;
  color: #FAFAFA; margin-top: 14px;
}
.reviews-title em { font-style: italic; color: var(--amber); }
.reviews-header .section-label { color: var(--amber); }
.reviews-header .section-label::before { background: var(--amber); }

.review-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch;
}

/* Featured card with photo */
.review-card--featured {
  grid-row: span 1;
}
.review-card-img-wrap {
  position: relative; width: 100%; aspect-ratio: 3/2; overflow: hidden; border-radius: 2px; margin-bottom: 0;
}
.review-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block;
  filter: contrast(0.92) saturate(0.88) brightness(1.06) sepia(0.18);
}

.review-card {
  background: rgba(250,250,250,0.04);
  border: 1px solid rgba(250,250,250,0.08);
  border-radius: 2px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.25s;
}
.review-card:hover { border-color: rgba(175,112,58,0.4); }

.review-card-body {
  padding: 32px 32px 28px; flex: 1; display: flex; flex-direction: column;
}
.review-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; line-height: 0.8; color: var(--amber); opacity: 0.5;
  display: block; margin-bottom: 16px;
}
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-style: italic;
  font-size: 16px; line-height: 1.65; color: rgba(250,250,250,0.75);
  flex: 1; margin-bottom: 24px;
}
.review-footer {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(250,250,250,0.08); padding-top: 20px;
}
.review-name {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500; font-size: 13px; letter-spacing: 0.08em;
  color: #FAFAFA; text-transform: uppercase;
}
.review-route {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); margin-top: 3px;
}

/* ─── FOOTER ─── */
footer, .site-footer {
  background: var(--dark);
  border-top: none;
}
.site-footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 72px 60px 40px;
}
.footer-brand {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,250,250,0.1);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 22px; letter-spacing: 0.05em;
  color: rgba(250,250,250,0.9); text-decoration: none; display: inline-block;
}
.footer-logo em { font-style: italic; color: var(--amber); }
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,250,250,0.6); margin-top: 8px;
}
.footer-cols {
  display: grid; grid-template-columns: 1fr 1fr 2fr; gap: 60px;
  margin-bottom: 56px;
}
.footer-col-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); display: block; margin-bottom: 20px;
}
.footer-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; letter-spacing: 0.08em;
  color: rgba(250,250,250,0.78); text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(250,250,250,1); }
.footer-social-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-social-link {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; letter-spacing: 0.08em;
  color: rgba(250,250,250,0.78); text-decoration: none;
  transition: color 0.2s;
}
.footer-social-link:hover { color: rgba(250,250,250,1); }
.footer-newsletter-text {
  font-family: 'Barlow', sans-serif; font-weight: 300;
  font-size: 14px; line-height: 1.7;
  color: rgba(250,250,250,0.72); margin-bottom: 20px;
}
.footer-newsletter-row {
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(250,250,250,0.25);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.footer-newsletter-row:focus-within { border-bottom-color: var(--amber); }
.footer-newsletter-form input[type="email"] {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 300;
  color: rgba(250,250,250,0.8); padding: 8px 0;
}
.footer-newsletter-form input[type="email"]::placeholder { color: rgba(250,250,250,0.3); }
.footer-newsletter-form button {
  background: none; border: none; cursor: pointer;
  color: var(--amber); padding: 8px 4px; display: flex; align-items: center;
  transition: color 0.2s;
}
.footer-newsletter-form button:hover { color: var(--amber-light); }
.footer-newsletter-notice {
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 0;
}
.footer-newsletter-notice--ok  { color: #7EC8A0; }
.footer-newsletter-notice--err { color: #E8957A; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(250,250,250,0.1);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px;
}
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,250,250,0.6);
}
.footer-legal {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(250,250,250,0.6);
}
.footer-legal a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(250,250,250,0.95); }
.footer-legal button.mar-cookie-reopen {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(250,250,250,0.6); transition: color 0.2s;
}
.footer-legal button.mar-cookie-reopen:hover { color: rgba(250,250,250,0.95); }

/* ─── CONTACT INFO STRIP ─── */
.contact-info-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
.contact-info-item {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px; padding: 36px 40px;
  border-right: 1px solid var(--rule);
  text-decoration: none; transition: background 0.2s;
}
.contact-info-item:last-child { border-right: none; }
.contact-info-item:hover { background: var(--sand); }
.contact-info-icon {
  color: var(--amber); display: flex; align-items: center;
  margin-bottom: 6px;
}
.contact-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.contact-info-value {
  font-family: 'Barlow', sans-serif; font-weight: 300;
  font-size: 14px; color: var(--dark); line-height: 1.4;
}

/* ─── INTRO CENTRED ─── */
.intro-c { padding: 100px 60px 90px; text-align: center; max-width: 860px; margin: 0 auto; }
.intro-c-rule { width: 44px; height: 1px; background: var(--amber); margin: 0 auto 32px; }
.intro-c-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 500; font-size: 16px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--amber); margin-bottom: 28px; }
.intro-c-headline { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(34px,4vw,56px); line-height: 1.18; color: var(--dark); margin-bottom: 36px; }
.intro-c-headline em { font-style: italic; color: var(--amber); }
.intro-c-mid-rule { width: 1px; height: 48px; background: var(--amber); opacity: 0.35; margin: 0 auto 36px; }
.intro-c-body { font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.9; color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ─── HOW IT WORKS ─── */
.how-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.how-split-photo { position: relative; overflow: hidden; }
.how-split-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block;
  filter: contrast(0.92) saturate(0.88) brightness(1.06) sepia(0.18);
  transition: filter 0.5s ease; }
.how-split-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,10,5,0.05) 0%, rgba(15,10,5,0.18) 100%); }
.how-split-text { padding: 72px 72px 72px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.how-split-label { margin-bottom: 18px; }
.how-split-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(28px,2.6vw,42px); line-height: 1.12; margin-top: 10px; margin-bottom: 32px; }
.how-split-title em { font-style: italic; color: var(--amber); }
.how-split-prose { font-family: 'Barlow Condensed', sans-serif; font-weight: 300; font-size: clamp(14px,1.3vw,16px); line-height: 1.9; color: var(--muted); }
.how-split-prose em { font-style: italic; color: var(--amber); }
.how-split-prose p + p { margin-top: 18px; }
.how-split-rule { width: 1px; height: 44px; background: var(--amber); opacity: 0.38; margin: 28px 0; }
.how-split-steps {
  list-style: none; padding: 0; margin: 0;
  counter-reset: step-counter;
}
.how-split-steps li {
  counter-increment: step-counter;
  display: grid; grid-template-columns: 28px 1fr; gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-family: 'Barlow', sans-serif; font-weight: 300;
  font-size: clamp(13px,1.2vw,15px); line-height: 1.75; color: var(--muted);
}
.how-split-steps li::before {
  content: counter(step-counter);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  color: var(--amber); opacity: 0.7;
}
.how-split-steps li em { font-style: italic; color: var(--amber); }

/* ─── WHY — OPTION A: vintage strip ─── */
.why-strip { padding: 88px 0; background: var(--cream); }
.why-strip-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.why-strip-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; gap: 60px; }
.why-strip-header-left { max-width: 420px; }
.why-strip-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(34px,3.2vw,50px); line-height: 1.1; margin-top: 14px; }
.why-strip-title em { font-style: italic; color: var(--amber); }
.why-strip-sub { font-size: 14px; line-height: 1.85; color: var(--muted); max-width: 340px; padding-bottom: 4px; }
.why-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 28px; }
.why-strip-card { display: flex; flex-direction: column; }
.why-strip-photo-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 1px; }
.why-strip-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease; }
.why-strip-card:hover .why-strip-photo-wrap img {
  transform: scale(1.02); }
.why-strip-tint { position: absolute; inset: 0; background: rgba(238, 182, 98, 0.11); mix-blend-mode: multiply; pointer-events: none; }
.why-strip-text { padding: 18px 0 0; border-top: 1px solid var(--rule); }
.why-strip-label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 7px; }
.why-strip-heading { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-style: italic; font-size: clamp(18px,1.7vw,23px); line-height: 1.2; color: var(--dark); margin-bottom: 9px; }
.why-strip-phrase { font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 13px; line-height: 1.8; color: var(--muted); }

/* ─── WHY — OPTION B: mixed boxes ─── */
.why-mix { padding: 88px 0; background: var(--sand); }
.why-mix-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.why-mix-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 60px; }
.why-mix-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(34px,3.2vw,50px); line-height: 1.1; margin-top: 14px; }
.why-mix-title em { font-style: italic; color: var(--amber); }
.why-mix-sub { font-size: 14px; line-height: 1.85; color: var(--muted); max-width: 340px; padding-bottom: 4px; }

/* Asymmetric grid: row 1 = 2 large + 1 tall; row 2 = 1 text-only + 2 photo */
.why-mix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
/* Cell spans */
.wmix-span2 { grid-column: span 2; }

.why-mix-cell { position: relative; overflow: hidden; border-radius: 2px; }
/* Photo cells */
.wmix-photo { aspect-ratio: unset; }
.wmix-photo img { width: 100%; height: 100%; object-fit: cover; display: block;
  filter: sepia(0.32) contrast(0.88) brightness(0.94) saturate(0.70) hue-rotate(5deg);
  transition: filter 0.5s, transform 0.6s; }
.why-mix-cell:hover img { filter: contrast(0.97) saturate(0.94) brightness(1.02) sepia(0.08); transform: scale(1.025); }
.wmix-tint { position: absolute; inset: 0; background: rgba(175,112,58,0.08); mix-blend-mode: multiply; pointer-events: none; }
/* Overlay text on photo cells */
.wmix-photo-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 28px;
  background: linear-gradient(to top, rgba(10,7,4,0.78) 0%, transparent 100%); z-index: 2; }
.wmix-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,250,250,0.5); display: block; margin-bottom: 7px; }
.wmix-h-xl { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: clamp(28px,2.8vw,40px); line-height: 1.05; color: #fafafa; }
.wmix-h-lg { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; font-size: clamp(20px,2vw,28px); line-height: 1.1; color: #fafafa; }
.wmix-h-md { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; font-size: clamp(17px,1.6vw,22px); line-height: 1.15; color: #fafafa; }

/* Solid coloured cells */
.wmix-solid { display: flex; flex-direction: column; justify-content: flex-end; padding: 36px 36px 36px; min-height: 260px; }
.wmix-sand  { background: #E8DDD4; }
.wmix-dark  { background: var(--dark); }
.wmix-amber-bg { background: rgba(175,112,58,0.12); border: 1px solid rgba(175,112,58,0.2); }
.wmix-solid .wmix-label { color: var(--amber); margin-bottom: 10px; }
.wmix-solid .wmix-h-lg  { color: var(--dark); }
.wmix-dark .wmix-label  { color: rgba(250,250,250,0.45); }
.wmix-dark .wmix-h-lg   { color: #fafafa; }
.wmix-body { font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 13px; line-height: 1.8; color: var(--muted); margin-top: 12px; }
.wmix-dark .wmix-body   { color: rgba(250,250,250,0.55); }


/* ════════════════════════════════════════════════════════
   RESPONSIVE — tablet (≤1024px) + mobile (≤767px)
   ════════════════════════════════════════════════════════ */

/* ── Hamburger button ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 200;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: #FAFAFA;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
nav.scrolled .nav-burger span { background: var(--dark); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Hide mobile-only CTA list item on desktop */
.nav-cta-mobile { display: none !important; }

/* ── TABLET: 768px – 1024px ── */
@media (min-width: 768px) and (max-width: 1024px) {

  /* Nav */
  nav { padding: 22px 40px; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 13px; color: rgba(250,250,250,0.95); }
  nav.scrolled .nav-links a,
  .mar-inner-page .nav-links a { color: var(--muted); }
  .nav-cta-desktop { padding: 10px 22px; font-size: 12px; }

  /* Hero */
  .hero-content { padding: 0 40px 52px; }
  .hero-headline { font-size: clamp(44px, 6vw, 68px); }
  .hero-headline em {
    color: #D4934A;
    text-shadow: 0 1px 12px rgba(0,0,0,0.55), 0 0px 4px rgba(0,0,0,0.4);
  }
  .hero-body { font-size: 14px; max-width: 420px; }
  .scroll-hint { right: 40px; }

  /* Intro centred */
  .intro-c { padding: 80px 48px 72px; }
  .intro-c-headline { font-size: clamp(30px, 4vw, 46px); }

  /* How it works */
  .how-split { grid-template-columns: 1fr 1fr; min-height: 560px; }
  .how-split-text { padding: 52px 48px; }

  /* Why strip — 2 columns on tablet */
  .why-strip { padding: 72px 0; }
  .why-strip-inner { padding: 0 40px; }
  .why-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .why-strip-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
  .why-strip-sub { max-width: 100%; }
  .why-strip-phrase { font-size: 16px; }

  /* Routes — 2 col on tablet (3 portrait cards too tight) */
  .routes-inner { padding: 0 40px; }
  .route-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-header { padding: 0 40px; }

  /* About — keep 2-col but reduce gap */
  .about { padding: 72px 40px; gap: 48px; }

  /* Reviews — 2 col on tablet portrait, 3 on landscape handled by 1fr */
  .reviews-inner { padding: 0 40px; }
  .review-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Surf banner */
  .surf-banner-content { padding: 0 40px; }

  /* Footer */
  footer { padding: 40px; }

  /* Divider */
  .divider { padding: 0 40px; }

  /* Intro old two-col */
  .intro { padding: 64px 40px; gap: 48px; }
}

/* ── MOBILE: ≤767px ── */
@media (max-width: 767px) {

  /* Nav — hamburger mode */
  nav { padding: 18px 24px; }
  .nav-burger { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-social { display: none; } /* social icons hidden on mobile, visible in footer */
  .nav-right { gap: 0; margin-left: 0; }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100dvh;
    background: var(--dark);
    justify-content: center;
    align-items: center;
    gap: 0;
    list-style: none;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
    z-index: 150;
    padding: 80px 0 48px;
  }
  .nav-links.open { transform: translateX(0); }

  .nav-links li { width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links a {
    display: block;
    font-size: 15px; letter-spacing: 0.2em;
    color: #fff;
    padding: 20px 0;
  }
  .nav-links a:hover { color: #fff; opacity: 0.8; }
  .nav-links a::after { display: none; }

  /* Show CTA inside mobile nav list */
  .nav-cta-mobile { display: block !important; border-bottom: none !important; padding-top: 28px; }
  .nav-cta-mobile .nav-cta {
    display: inline-block;
    background: var(--amber); color: #fff;
    padding: 16px 48px; font-size: 14px; letter-spacing: 0.18em; font-weight: 700;
    box-shadow: 0 4px 24px rgba(175,112,58,0.35);
  }

  /* Hero */
  .hero { min-height: 100dvh; }
  .hero-content { padding: 0 24px 48px; }
  .hero-headline { font-size: clamp(36px, 9.5vw, 54px); max-width: 100%; }
  .hero-headline em {
    color: #D4934A;
    text-shadow: 0 1px 12px rgba(0,0,0,0.55), 0 0px 4px rgba(0,0,0,0.4);
  }
  .hero-body { font-size: 16px; max-width: 100%; margin-bottom: 28px; }
  .cta-row { flex-direction: column; align-items: stretch; gap: 12px; max-width: 320px; }
  .cta-row .btn-primary { text-align: center; }
  .cta-row .link-secondary {
    text-align: center; padding: 12px 0;
    border-bottom: none; border-top: 1px solid rgba(250,250,250,0.2);
  }
  .scroll-hint { display: none; }
  /* Allow section-label to wrap on mobile — prevents "du Sud" overflow */
  .section-label { white-space: normal; }

  /* Intro centred */
  .intro-c { padding: 60px 24px 52px; }
  .intro-c-headline { font-size: clamp(28px, 8vw, 40px); }
  .intro-c-body { font-size: 16px; }

  /* How it works — stack: photo on top, text below */
  .how-split {
    grid-template-columns: 1fr;
    grid-template-rows: 320px auto;
    min-height: unset;
  }
  .how-split-photo { height: 320px; }
  .how-split-photo img { object-position: center 25%; }
  .how-split-text { padding: 48px 24px 52px; }

  /* Why strip — single column */
  .why-strip { padding: 60px 0; }
  .why-strip-inner { padding: 0 24px; }
  .why-strip-header {
    flex-direction: column; align-items: flex-start;
    gap: 16px; margin-bottom: 36px;
  }
  .why-strip-header-left { max-width: 100%; }
  .why-strip-sub { max-width: 100%; }
  .why-strip-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-strip-photo-wrap { aspect-ratio: 3/2; }

  /* Routes */
  .routes { padding: 60px 0; }
  .routes-inner { padding: 0 24px; }
  .section-header { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .route-cards {
    display: flex; flex-direction: column; gap: 16px;
    padding: 0 24px;
  }
  .route-card { width: 100%; min-height: 260px; border-radius: 2px; }

  /* About */
  .about {
    display: flex; flex-direction: column;
    padding: 60px 24px; gap: 40px;
  }
  .about-image-wrap { width: 100%; max-width: 100%; }
  .about-image-wrap img { width: 100%; }
  .about-text { padding: 0; }
  .about-title { font-size: clamp(28px, 8vw, 40px); }

  /* Reviews */
  .reviews-inner { padding: 0 24px; }
  .review-cards {
    display: flex; flex-direction: column; gap: 20px;
  }
  .review-card { width: 100%; }

  /* Surf banner */
  .surf-banner-content { padding: 48px 24px; text-align: center; margin-left: auto; margin-right: auto; max-width: 100%; }
  .surf-banner-title { font-size: clamp(32px, 9vw, 48px); }
  .surf-banner-label { justify-content: center; }

  /* Footer */
  footer {
    flex-direction: column; gap: 16px; text-align: center;
    padding: 36px 24px;
  }

  /* Divider */
  .divider { padding: 0 24px; }

  /* Old two-col intro (if still present) */
  .intro { display: flex; flex-direction: column; gap: 32px; padding: 52px 24px; }
  .intro-body { padding-top: 0; }

  /* Why old section */
  .why-inner { padding: 0 24px; }
  .why-header { flex-direction: column; gap: 20px; margin-bottom: 40px; }

  /* Phone body text — 16px across key sections */
  .why-strip-sub { font-size: 16px; }
  .why-strip-phrase { font-size: 16px; }
  .about-body { font-size: 16px; }
  .surf-banner-body { font-size: 16px; }
  .how-step-text { font-size: 16px; }
  .how-split-steps li { font-size: 16px; }
  .how-split-prose { font-size: 16px; }
}




/* ─── KODAK PORTRA ARGENTIQUE GRAIN ─── */
.route-card::before,
.why-strip-photo-wrap::before,
.how-split-photo::before,
.hero::before,
.about-image-wrap::before,
.review-card-img-wrap::before,
.surf-banner::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 4;
  background-image: url('../img/grain.png');
  background-size: 256px 256px;
  background-repeat: repeat;
  opacity: 0.06;
  mix-blend-mode: soft-light;     /* soft-light for Portra's creamier grain feel */
  pointer-events: none;
  animation: grainShift 0.15s steps(1) infinite;
}
@keyframes grainShift {
  0%   { background-position: 0 0; }
  25%  { background-position: -48px -24px; }
  50%  { background-position: 24px -72px; }
  75%  { background-position: -72px 36px; }
  100% { background-position: 36px 12px; }
}
.route-card:hover::before,
.why-strip-card:hover .why-strip-photo-wrap::before {
  animation-play-state: paused;
  opacity: 0.03;
}


/* ═══════════════════════════════════════════════════════════
   INNER PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── Shared inner-page nav override ── */
.mar-inner-page nav { background: var(--cream); border-bottom: 1px solid var(--rule); }
.mar-inner-page .nav-logo { color: var(--dark); }
.mar-inner-page .nav-links a { color: var(--muted); }
.mar-inner-page .nav-links a:hover { color: var(--dark); }
.mar-inner-page .nav-burger span { background: var(--dark); }

/* On mobile, the nav-links becomes a full-screen dark drawer —
   restore pure white text regardless of page type */
@media (max-width: 767px) {
  .mar-inner-page .nav-links a { color: #fff; }
  .mar-inner-page .nav-links a:hover { color: #fff; opacity: 0.8; }
  /* Lang switch + CTA button text */
  .nav-links .nav-lang-switch a { color: #fff; }
  .nav-cta-mobile .nav-cta,
  .nav-cta-mobile .nav-cta:hover { color: #fff !important; }
}

/* ── Shared inner-page header (dark, 2-col grid) ── */
.inner-page-header {
  padding-top: 92px; /* nav height */
}
.inner-page-header--dark { background: var(--dark); }

/* Full-bleed photo header — cinematic, Wandrist-inspired */
.inner-page-header--photo {
  position: relative;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  min-height: max(640px, 72vh);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 0;
}
.iph-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.72) 0%,
    rgba(10,8,5,0.32) 45%,
    rgba(10,8,5,0.06) 100%
  );
  z-index: 1;
}
.inner-page-header--photo .iph-inner {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 80px;
}

.iph-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 60px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.iph-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(48px,5.5vw,80px); line-height: 1.0;
  color: #FAFAFA; letter-spacing: 0.01em; margin-top: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.iph-title em { font-style: italic; color: var(--amber); }
.inner-page-header--photo .section-label {
  text-shadow: 0 1px 10px rgba(0,0,0,0.30);
}

/* ── Wandrist-inspired: full-bleed cinematic header, text centred over photo ── */
.inner-page-header--cinematic {
  justify-content: center;
  min-height: max(700px, 80vh);
  background-position: center center;
}
.inner-page-header--cinematic .iph-overlay {
  /* Lighter centre-band gradient — photo remains identifiable */
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.06) 0%,
    rgba(10,8,5,0.34) 30%,
    rgba(10,8,5,0.40) 65%,
    rgba(10,8,5,0.18) 100%
  );
}
/* Stronger overlay variant for pages with warm/bright photos (Let's Plan) */
.iph-overlay--strong {
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.10) 0%,
    rgba(10,8,5,0.40) 30%,
    rgba(10,8,5,0.44) 65%,
    rgba(10,8,5,0.22) 100%
  ) !important;
}
.inner-page-header--cinematic .iph-inner {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  max-width: 860px;
  padding: 80px 60px;
}
.inner-page-header--cinematic .iph-title {
  font-size: clamp(52px, 7vw, 96px);
  margin-top: 12px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.55), 0 1px 8px rgba(0,0,0,0.40);
}
.inner-page-header--cinematic .section-label {
  justify-content: center;
  text-shadow: 0 1px 14px rgba(0,0,0,0.50);
}
.inner-page-header--dark .section-label { color: var(--amber); }
.inner-page-header--dark .section-label::before { background: var(--amber); }
.iph-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 22px; line-height: 1.6;
  color: rgba(250,250,250,0.55); padding-bottom: 6px;
}
.iph-intro-body {
  font-size: 15px; line-height: 1.75; margin: 0;
  color: rgba(250,250,250,0.65);
}

/* ── Shared btn-primary ── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); background: var(--dark); border: none;
  padding: 16px 40px; cursor: pointer; border-radius: 1px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none; display: inline-block; white-space: nowrap;
}
.btn-primary:hover { background: var(--amber); transform: translateY(-1px); }


/* ════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════ */

.person-section { width: 100%; }
.person-layout {
  max-width: 1200px; margin: 0 auto; padding: 100px 60px;
  display: grid; gap: 80px; align-items: start;
  border-bottom: 1px solid var(--rule);
}
.person-layout--left  { grid-template-columns: 5fr 7fr; }
.person-layout--right { grid-template-columns: 7fr 5fr; }

.person-photos { position: relative; }
.person-photo-main {
  width: 100%; border-radius: 2px; overflow: hidden; display: block;
}
.person-photo-main img {
  width: 100%; object-fit: cover; display: block;
  filter: contrast(0.92) saturate(0.88) brightness(1.06) sepia(0.18);
}

.person-text { padding-top: 8px; }
.person-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 10px; display: block;
}
.person-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(36px,3.8vw,56px); line-height: 1.05;
  margin-bottom: 10px; letter-spacing: 0.01em;
}
.person-name em { font-style: italic; color: var(--amber); }
.person-place {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 40px; display: flex; align-items: center; gap: 8px;
}
.person-place::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--rule);
}
.person-body { font-size: 15px; line-height: 1.95; color: var(--muted); }
.person-body p + p { margin-top: 18px; }

.person-quote {
  margin: 36px 0; padding-left: 24px; border-left: 2px solid var(--amber);
}
.person-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-style: italic;
  font-size: 20px; line-height: 1.55; color: var(--dark);
}

.person-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.person-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); padding: 7px 14px;
  border: 1px solid var(--rule); border-radius: 1px;
}

/* ── La Charte ── */
.charte-section {
  background: var(--dark);
  padding: 100px 0;
}
.charte-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}
.charte-header {
  margin-bottom: 64px;
  text-align: center;
}
.charte-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.1;
  color: #FAFAFA;
  margin-top: 14px;
}
.charte-title em { font-style: italic; color: var(--amber); }
.charte-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.charte-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(250,250,250,0.08);
}
.charte-item:first-child { border-top: 1px solid rgba(250,250,250,0.08); }
.charte-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 6px;
}
.charte-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.2;
  color: rgba(250,250,250,0.88);
  letter-spacing: 0.01em;
}
.charte-text em {
  font-style: normal;
  color: var(--amber);
}

/* Values */
.values-section { background: var(--sand); padding: 80px 0; }
.values-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.values-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 52px; gap: 40px;
}
.values-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(28px,2.8vw,42px); line-height: 1.1; margin-top: 14px;
}
.values-title em { font-style: italic; color: var(--amber); }
.values-subtitle {
  font-size: 14px; line-height: 1.8; color: var(--muted); max-width: 380px; padding-bottom: 4px;
}
.values-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
}
.value-item {
  background: var(--cream); padding: 40px 32px 36px; transition: background 0.25s;
}
.value-item:hover { background: #ede6de; }
.value-bar { width: 32px; height: 2px; background: var(--amber); margin-bottom: 20px; display: block; }
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 20px; margin-bottom: 12px;
}
.value-title em { font-style: italic; color: var(--amber); }
.value-body { font-size: 14px; line-height: 1.8; color: var(--muted); }

/* About CTA */
.about-cta {
  max-width: 1200px; margin: 0 auto; padding: 80px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  border-top: 1px solid var(--rule);
}
.about-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(26px,2.5vw,38px); line-height: 1.2;
}
.about-cta-text em { font-style: italic; color: var(--amber); }


/* ════════════════════════════════
   ROUTES TRAVELLED PAGE
   ════════════════════════════════ */

.routes-page-header {
  padding: 160px 60px 80px;
  max-width: 1200px; margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.routes-page-header-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.routes-page-intro { font-size: 15px; line-height: 1.9; color: var(--muted); padding-bottom: 4px; }

.route-section {
  max-width: 1200px; margin: 0 auto; padding: 80px 60px;
  border-bottom: 1px solid var(--rule);
}
.route-section--alt { background: var(--sand); max-width: 100%; padding-left: 60px; padding-right: 60px; }
.route-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  margin-bottom: 64px;
}
.route-eyebrow { margin-bottom: 16px; }
.route-section .route-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500; font-size: 20px; letter-spacing: 0.04em; text-transform: uppercase;
  line-height: 1.2; margin-bottom: 20px;
  color: var(--dark); white-space: nowrap;
}
.route-path {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.route-stop {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dark); padding: 6px 14px;
  border: 1px solid var(--rule); border-radius: 1px; background: var(--cream);
}
.route-stop-arrow { font-size: 12px; color: var(--amber); opacity: 0.6; }
.route-budget {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--sand); padding: 16px 24px; border-radius: 1px; margin-top: 4px;
}
.route-budget-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 32px; color: var(--amber); line-height: 1;
}
.route-budget-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.route-price-note {
  font-family: 'Barlow', sans-serif;
  font-size: 12px; font-style: italic; color: var(--muted);
  margin-top: 6px; margin-bottom: 20px; line-height: 1.5;
}
.route-description { font-size: 15px; line-height: 1.9; color: var(--muted); padding-top: 4px; }
/* ── "What's Included" trigger button ── */
.included-trigger {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 28px;
  background: none; border: 1px solid var(--dark);
  padding: 14px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dark); cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.included-trigger:hover {
  background: var(--dark); color: #FAFAFA;
}
.included-trigger[aria-expanded="true"] .included-trigger-icon {
  transform: rotate(45deg);
}
.included-trigger-icon {
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

/* ── Modal backdrop ── */
.included-modal-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(30,28,26,0.55);
  z-index: 900;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.included-modal-backdrop.active {
  display: block; opacity: 1;
}

/* ── Modal panel ── */
.included-modal {
  position: fixed;
  top: 0; right: 0;
  width: min(540px, 100vw);
  height: 100dvh;
  background: var(--cream);
  z-index: 910;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.included-modal.active { transform: translateX(0); }

.included-modal-inner {
  padding: 56px 48px 64px;
  flex: 1;
}

.included-modal-header {
  display: flex; flex-direction: column;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.included-modal-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 10px;
}
.included-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(26px,3vw,36px);
  color: var(--dark); margin: 0;
}
.included-modal-close {
  position: absolute; top: 0; right: 0;
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.included-modal-close:hover { color: var(--dark); }

/* ── Modal list ── */
.included-modal-list {
  list-style: none; padding: 0; margin: 0;
}
.included-modal-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.included-modal-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--amber); padding-top: 2px;
}
.included-modal-text {
  font-family: 'Barlow', sans-serif;
  font-size: 14px; line-height: 1.6; color: var(--muted);
}

/* Route photo grid */
.route-photos {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.photo-cell { overflow: hidden; border-radius: 2px; position: relative; }
.photo-cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.photo-cell:hover img { transform: scale(1.03); }
.photo-cell--hero      { grid-column: 1; grid-row: 1 / 3; min-height: 560px; }
.photo-cell--top-right { grid-column: 2; grid-row: 1; min-height: 270px; }
.photo-cell--top-far   { grid-column: 3; grid-row: 1; min-height: 270px; }
.photo-cell--bottom-right { grid-column: 2; grid-row: 2; min-height: 270px; }
.photo-cell--bottom-far   { grid-column: 3; grid-row: 2; min-height: 270px; }

.photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(to top, rgba(20,15,8,0.65) 0%, transparent 100%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(250,250,250,0.7);
}

/* Routes CTA */
.routes-cta {
  max-width: 1200px; margin: 0 auto; padding: 80px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.routes-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(28px,2.8vw,42px); line-height: 1.15; max-width: 560px;
}
.routes-cta-text em { font-style: italic; color: var(--amber); }


/* ════════════════════════════════
   FAQ PAGE
   ════════════════════════════════ */

/* Hero */
.faq-hero {
  position: relative;
  margin-top: 92px;
  padding: 80px 60px;
  overflow: hidden;
}
.faq-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.faq-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,12,8,0.78) 0%, rgba(15,12,8,0.45) 100%);
  z-index: 1;
}
.faq-hero-content {
  max-width: 1200px; margin: 0 auto; padding: 0;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.faq-hero-content .section-label { color: var(--amber); margin-bottom: 14px; }
.faq-hero-content .section-label::before { background: var(--amber); }
.faq-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(40px,5vw,68px); line-height: 1.0;
  color: #FAFAFA; letter-spacing: 0.01em;
}
.faq-hero-title em { font-style: italic; color: var(--amber); }
.faq-hero-body {
  font-size: 15px; line-height: 1.75;
  color: rgba(250,250,250,0.65); max-width: 520px; margin: 0;
}

/* Layout */
.faq-layout {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr; gap: 0;
  align-items: start; padding: 0 60px;
}

/* Sidebar */
.faq-sidebar {
  position: sticky; top: 92px;
  padding: 64px 40px 64px 0;
  border-right: 1px solid var(--rule);
}
.sidebar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px; display: block;
}
.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; padding: 8px 0;
  display: block; border-left: 2px solid transparent;
  padding-left: 14px; transition: color 0.2s, border-color 0.2s;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--amber); border-left-color: var(--amber);
}

/* FAQ main content */
.faq-main { padding: 64px 0 64px 64px; }
.faq-category { margin-bottom: 72px; scroll-margin-top: 120px; }
.faq-category-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px; padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.faq-category-icon {
  width: 40px; height: 40px; border-radius: 2px;
  background: var(--sand); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 26px; letter-spacing: 0.01em;
}
.faq-category-title em { font-style: italic; color: var(--amber); }

/* Accordion */
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 0; text-align: left;
}
.faq-question-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 18px; line-height: 1.3; color: var(--dark);
  transition: color 0.2s;
}
.faq-item.open .faq-question-text { color: var(--amber); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; color: var(--muted);
}
.faq-item.open .faq-icon { background: var(--amber); border-color: var(--amber); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 14px; line-height: 1.9; color: var(--muted);
}
.faq-answer-inner p + p { margin-top: 12px; }
.faq-answer-inner ul { margin: 12px 0; padding: 0; list-style: none; }
.faq-answer-inner ul li {
  display: flex; gap: 10px; align-items: flex-start; margin-bottom: 6px;
}
.faq-answer-inner ul li::before {
  content: ''; display: block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber); margin-top: 7px; flex-shrink: 0;
}
.faq-answer-inner strong { color: var(--dark); font-weight: 400; }

.faq-highlight {
  background: var(--sand); padding: 16px 20px; border-radius: 1px;
  margin-top: 12px; border-left: 2px solid var(--amber);
  font-size: 13px; line-height: 1.7;
}
.faq-tip {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--sand); padding: 16px 20px; border-radius: 1px; margin-top: 12px;
}
.faq-tip-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); white-space: nowrap; padding-top: 2px; flex-shrink: 0;
}
.faq-tip-text { font-size: 13px; line-height: 1.7; }
.tip-table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 13px; }
.tip-table td { padding: 9px 12px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.tip-table td:first-child { color: var(--dark); width: 55%; }
.tip-table td:last-child {
  color: var(--amber); font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 0.04em;
}

/* Photo break */
.faq-photo-break {
  width: 100%; margin: 60px 0; border-radius: 2px; overflow: hidden; position: relative;
}
.faq-photo-break img {
  width: 100%; height: 260px; object-fit: cover; display: block;
  filter: contrast(0.92) saturate(0.88) brightness(1.06) sepia(0.18);
}
.faq-photo-caption {
  position: absolute; bottom: 16px; right: 20px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(250,250,250,0.6);
}

/* FAQ CTA banner */
.faq-cta { position: relative; overflow: hidden; }
.faq-cta-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(0.92) saturate(0.88) brightness(1.06) sepia(0.18);
}
.faq-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,12,8,0.80) 0%, rgba(15,12,8,0.40) 60%, rgba(15,12,8,0.15) 100%);
}
.faq-cta-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 90px 60px;
}
.faq-cta-label { color: var(--amber); margin-bottom: 16px; }
.faq-cta-label::before { background: var(--amber); }
.faq-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(30px,3.2vw,46px); line-height: 1.1;
  color: #FAFAFA; max-width: 560px; margin-bottom: 18px;
}
.faq-cta-title em { font-style: italic; color: var(--amber); }
.faq-cta-sub {
  font-size: 15px; line-height: 1.8; color: rgba(250,250,250,0.6);
  max-width: 440px; margin-bottom: 36px;
}
.btn-white {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--dark);
  background: #FAFAFA; border: none; padding: 15px 36px; cursor: pointer; border-radius: 1px;
  transition: background 0.2s, color 0.2s; text-decoration: none; display: inline-block;
}
.btn-white:hover { background: var(--amber); color: #FAFAFA; }


/* ════════════════════════════════
   NEWSLETTER POPUP
   ════════════════════════════════ */

/* Overlay */
#mar-newsletter-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(30,28,26,0.65);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s ease;
}
#mar-newsletter-overlay.visible {
  opacity: 1; pointer-events: all;
}

/* Modal card */
.mar-newsletter-modal {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 880px; width: 100%;
  background: var(--cream);
  position: relative;
  transform: translateY(24px);
  transition: transform 0.45s ease;
  max-height: 90dvh;
  overflow: hidden;
}
#mar-newsletter-overlay.visible .mar-newsletter-modal {
  transform: translateY(0);
}

/* Close × */
.mar-newsletter-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); z-index: 2; padding: 4px 6px; line-height: 1;
  transition: color 0.2s;
}
.mar-newsletter-close:hover { color: var(--dark); }
.mar-newsletter-close svg { display: block; }

/* Image panel */
.mar-newsletter-img {
  overflow: hidden; position: relative;
  min-height: 340px;
}
.mar-newsletter-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}

/* Text panel */
.mar-newsletter-body {
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.mar-newsletter-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); display: block; margin-bottom: 14px;
}
.mar-newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2; margin: 0 0 14px; color: var(--dark);
}
.mar-newsletter-title em { font-style: italic; color: var(--amber); }
.mar-newsletter-text {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; line-height: 1.75; color: var(--muted);
  margin-bottom: 30px;
}
.mar-newsletter-form { display: flex; flex-direction: column; }
.mar-newsletter-input {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--dark);
  padding: 10px 0 12px;
  font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--dark);
  outline: none; margin-bottom: 20px;
}
.mar-newsletter-input::placeholder { color: rgba(30,28,26,0.35); }
.mar-newsletter-submit {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--dark); color: #FAFAFA; border: none; cursor: pointer;
  padding: 15px 28px; text-align: center;
  transition: background 0.2s;
}
.mar-newsletter-submit:hover { background: var(--amber); }
.mar-newsletter-skip {
  display: block; margin-top: 18px; text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  background: none; border: none; padding: 0;
  transition: color 0.2s;
}
.mar-newsletter-skip:hover { color: var(--dark); }
.mar-newsletter-thanks {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic; color: var(--dark);
  line-height: 1.4; margin-top: 8px;
}

/* Mobile */
@media (max-width: 640px) {
  .mar-newsletter-modal { grid-template-columns: 1fr; }
  .mar-newsletter-img { display: none; }
  .mar-newsletter-body { padding: 44px 28px 36px; }
}

/* ════════════════════════════════
   CONTACT INFO PAGE  (split layout)
   ════════════════════════════════ */

/* Hide the inner-page-header on the contact-info page — the split handles the title */
body.page-template-page-contact-info .inner-page-header { display: none; }

.csplit {
  display: flex;
  min-height: calc(100vh - 80px); /* full screen minus nav */
  margin-top: 80px; /* clear fixed nav */
}

/* Left: image */
.csplit-img {
  flex: 0 0 50%;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  overflow: hidden;
}
.csplit-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* Right: content */
.csplit-body {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  background: var(--cream);
}
.csplit-inner {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Heading */
.csplit-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--dark);
  margin: 0;
}
.csplit-title em {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(42px, 5.2vw, 68px);
  letter-spacing: 0;
  text-transform: none;
  color: var(--dark);
}

/* Email + Phone */
.csplit-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.csplit-detail-link {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.csplit-detail-link:hover { color: var(--amber); }

/* Social icons */
.csplit-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}
.csplit-social {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.csplit-social:hover { color: var(--amber); }

/* CTA → Planifions */
.csplit-cta { margin-top: 8px; }
.csplit-plan-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--dark);
  text-decoration: none;
  padding: 16px 32px;
  transition: background 0.25s, color 0.25s;
}
.csplit-plan-btn:hover { background: var(--amber); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .csplit { flex-direction: column; min-height: unset; }
  .csplit-img {
    position: relative; top: 0;
    flex: none; height: 55vw; min-height: 260px;
  }
  .csplit-body { flex: none; padding: 60px 28px 80px; }
  .csplit-inner { max-width: 100%; gap: 28px; }
}

/* ════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════ */

/* ── Planifions / Contact: intro split (text left, photo right) ── */
.contact-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  margin-top: 92px; /* clear fixed nav */
  background: var(--cream);
}
.contact-intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 80px 72px 80px 80px;
}
.contact-intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 68px);
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: 0.01em;
  margin: 0;
}
.contact-intro-title em {
  font-style: italic;
  color: var(--amber);
}
.contact-intro-body {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(28,22,14,0.70);
  max-width: 440px;
  margin: 0;
}
.contact-intro-photo {
  position: relative;
  overflow: hidden;
}
.contact-intro-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Reversed split: photo left, text right */
.contact-intro--reverse .contact-intro-text {
  order: 2;
  padding: 80px 80px 80px 72px;
}
.contact-intro--reverse .contact-intro-photo {
  order: 1;
}

.contact-section { max-width: 700px; margin: 0 auto; padding: 80px 60px; }

/* Contact-info split overrides */
.contact-csplit-body {
  align-items: flex-start;
  padding: 80px 60px;
  overflow-y: auto;
  background: #FAFAFA;
}
.contact-csplit-inner {
  max-width: 480px;
  gap: 28px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-notice {
  padding: 18px 24px;
  margin-bottom: 36px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px; line-height: 1.6;
  border-left: 3px solid;
}
.contact-notice a { color: inherit; }
.contact-notice--success {
  background: #f0f7f0; color: #2d6a2d;
  border-color: #2d6a2d;
}
.contact-notice--error {
  background: #fdf3f3; color: #8b2020;
  border-color: #8b2020;
}
.contact-form label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); display: block; margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0 12px;
  font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--dark);
  margin-bottom: 32px; outline: none; transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-bottom-color: var(--amber); }
.contact-form textarea { resize: vertical; min-height: 120px; }


/* ════════════════════════════════
   SINGLE ARTICLE
   ════════════════════════════════ */
.single-hero-meta {
  display: flex; flex-direction: column; gap: 8px;
  justify-content: flex-end; padding-bottom: 6px;
}
.single-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,250,250,0.75);
}
.single-date {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; color: rgba(250,250,250,0.50);
}
.single-back {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); text-decoration: none; margin-top: 8px;
}
.single-back:hover { color: #fff; }

.single-article { max-width: 780px; margin: 0 auto; padding: 72px 60px 100px; }
.single-article-inner { display: flex; flex-direction: column; gap: 48px; }

.single-feat-img img {
  width: 100%; height: auto; display: block;
  border-radius: 1px;
  filter: contrast(0.92) saturate(0.88) brightness(1.06) sepia(0.18);
}
.single-content {
  font-family: 'Barlow', sans-serif;
  font-size: 16px; line-height: 1.85; color: var(--dark);
}
.single-content h2, .single-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; color: var(--dark); margin: 40px 0 16px;
}
.single-content h2 { font-size: clamp(24px, 2.8vw, 36px); }
.single-content h3 { font-size: clamp(20px, 2.2vw, 28px); }
.single-content p { margin-bottom: 24px; }
.single-content img { max-width: 100%; height: auto; margin: 16px 0;
  filter: contrast(0.92) saturate(0.88) brightness(1.06) sepia(0.18); }
.single-content a { color: var(--amber); }
.single-content blockquote {
  border-left: 3px solid var(--amber); padding-left: 24px; margin: 32px 0;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px); line-height: 1.5; color: var(--dark);
}

.single-nav {
  display: flex; justify-content: space-between; gap: 24px;
  padding-top: 40px; border-top: 1px solid var(--rule);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.single-nav a { color: var(--dark); text-decoration: none; transition: color 0.2s; }
.single-nav a:hover { color: var(--amber); }

.single-back-row { text-align: center; }

/* ════════════════════════════════
   MAGAZINE PAGE
   ════════════════════════════════ */

/* ── Magazine intro section ── */
.mag-intro-section {
  background: var(--cream); border-bottom: 1px solid var(--rule);
  padding: 80px 60px; text-align: center;
}
.mag-intro-inner {
  max-width: 760px; margin: 0 auto;
}
.mag-intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(28px,3vw,44px); line-height: 1.1;
  margin: 14px 0 24px;
}
.mag-intro-title em { font-style: italic; color: var(--amber); }
.mag-intro-body {
  font-size: 16px; line-height: 1.9; color: var(--muted); max-width: 660px; margin: 0 auto;
}

/* ── Magazine article slider ── */
.mag-slider-section {
  background: var(--cream); padding: 80px 0 100px;
}
.mag-slider-header {
  padding: 0 60px; margin-bottom: 48px;
}
.mag-slider-header-inner {
  display: flex; align-items: flex-end; justify-content: space-between;
  max-width: calc(100vw - 120px);
}
.mag-slider-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(28px,2.8vw,40px); line-height: 1.1; margin-top: 14px;
}
.mag-slider-title em { font-style: italic; color: var(--amber); }
.mag-slider-nav {
  display: flex; gap: 10px; flex-shrink: 0;
}
.mag-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--rule); background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.mag-nav-btn:hover { background: var(--dark); border-color: var(--dark); color: var(--cream); }

.mag-slider-wrap {
  padding: 0 60px;
  /* no overflow:hidden — would block iOS scroll on the inner slider */
}
.mag-slider {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
}
.mag-slider::-webkit-scrollbar { display: none; }

.mag-slide-card {
  flex: 0 0 340px; scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--rule); border-radius: 2px; overflow: hidden;
  transition: box-shadow 0.3s;
}
.mag-slide-card:hover { box-shadow: 0 8px 32px rgba(20,15,10,0.10); }

.mag-slide-img-wrap {
  display: block; overflow: hidden; aspect-ratio: 3/2; flex-shrink: 0;
}
.mag-slide-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.55s ease;
  filter: contrast(0.92) saturate(0.88) brightness(1.06) sepia(0.18);
}
.mag-slide-img-wrap:hover .mag-slide-img { transform: scale(1.04); }
.mag-slide-placeholder { width: 100%; height: 100%; background: var(--sand); }

.mag-slide-body {
  padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1;
}
.mag-slide-cat { margin-bottom: 12px; display: block; }
.mag-slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 22px; line-height: 1.2; margin-bottom: 12px;
}
.mag-slide-title a { color: var(--dark); text-decoration: none; transition: color 0.2s; }
.mag-slide-title a:hover { color: var(--amber); }
.mag-slide-excerpt {
  font-size: 14px; line-height: 1.8; color: var(--muted); flex: 1; margin-bottom: 20px;
}
.mag-slide-meta {
  display: flex; align-items: center; gap: 10px;
  padding-top: 16px; border-top: 1px solid var(--rule); margin-bottom: 16px;
}
.mag-avatar-sm { width: 28px !important; height: 28px !important; border-radius: 50%; object-fit: cover; }
.mag-meta-text {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase;
}
.mag-meta-text strong { color: var(--dark); font-weight: 500; }
.mag-slide-link {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--dark);
  text-decoration: none; border-bottom: 1px solid var(--dark); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s; display: inline-block; align-self: flex-start;
}
.mag-slide-link:hover { color: var(--amber); border-color: var(--amber); }

/* Empty state */
.mag-empty-section { max-width: 1200px; margin: 0 auto; padding: 80px 60px; }
.mag-empty-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.mag-empty-img-wrap { border-radius: 2px; overflow: hidden; }
.mag-empty-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  filter: contrast(0.92) saturate(0.88) brightness(1.06) sepia(0.18);
}
.mag-empty-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(30px,3vw,46px); line-height: 1.1;
  margin: 16px 0 24px;
}
.mag-empty-title em { font-style: italic; color: var(--amber); }
.mag-empty-body { font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 36px; }

/* Newsletter */
.mag-newsletter { background: var(--sand); padding: 80px 60px; text-align: center; }
.mag-newsletter-inner { max-width: 600px; margin: 0 auto; }
.mag-newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(28px,2.8vw,40px); line-height: 1.15;
  margin-top: 14px; margin-bottom: 16px;
}
.mag-newsletter-title em { font-style: italic; color: var(--amber); }
.mag-newsletter-sub {
  font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 36px;
}
.mag-newsletter-form {
  display: flex; max-width: 480px; margin: 0 auto;
}
.mag-newsletter-input {
  flex: 1; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 300;
  padding: 14px 20px; border: 1px solid var(--rule); border-right: none;
  background: var(--cream); color: var(--dark); outline: none;
  border-radius: 1px 0 0 1px;
}
.mag-newsletter-input::placeholder { color: #B0A99F; }
.mag-newsletter-btn {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); background: var(--dark); border: none;
  padding: 14px 28px; cursor: pointer; border-radius: 0 1px 1px 0;
  transition: background 0.2s; white-space: nowrap;
}
.mag-newsletter-btn:hover { background: var(--amber); }
.mag-newsletter-notice {
  font-size: 14px;
  line-height: 1.6;
  padding: 14px 0;
  font-family: 'Barlow', sans-serif;
}
.mag-newsletter-notice--ok  { color: #7EC8A0; }
.mag-newsletter-notice--err { color: #E8957A; }


/* ════════════════════════════════
   LEGAL PAGES
   ════════════════════════════════ */

/* Compact solid-black header — no photo, no cinematic effects */
.legal-header {
  background: var(--dark);
  padding-top: 92px; /* clear fixed nav */
}
.legal-header-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 40px 44px;
}
.legal-header .section-label {
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.legal-header .section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
.legal-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: #FAFAFA;
  letter-spacing: 0.01em;
  margin: 0;
}
@media (max-width: 767px) {
  .legal-header-inner { padding: 36px 24px 32px; }
  .legal-header-title { font-size: clamp(28px, 8vw, 40px); }
}

.legal-page-section {
  background: var(--cream);
  padding: 72px 0 96px;
}
.legal-page-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
.legal-page-content {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--dark);
}
.legal-page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  color: var(--dark);
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.legal-page-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-page-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 32px 0 12px;
}
.legal-page-content p { margin: 0 0 16px; }
.legal-page-content ul,
.legal-page-content ol {
  margin: 0 0 20px 24px;
  padding: 0;
}
.legal-page-content li { margin-bottom: 8px; }
.legal-page-content a { color: var(--amber); text-decoration: underline; }
.legal-page-content a:hover { color: var(--amber-light); }
.legal-page-content strong { font-weight: 600; }
.legal-page-content em { font-style: italic; }
.legal-page-content code {
  font-family: monospace;
  font-size: 13px;
  background: rgba(0,0,0,0.06);
  padding: 2px 6px;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .legal-page-section { padding: 48px 0 72px; }
  .legal-page-inner { padding: 0 24px; }
  .legal-page-content { font-size: 14px; }
}

/* ════════════════════════════════
   RESPONSIVE — INNER PAGES
   ════════════════════════════════ */

@media (max-width: 767px) {

  /* Shared header */
  .iph-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px 72px;
    gap: 32px;
  }
  /* Photo header: stack columns vertically on mobile */
  .inner-page-header--photo .iph-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .inner-page-header--photo {
    min-height: max(480px, 65vh);
  }
  /* Cinematic header on mobile */
  .inner-page-header--cinematic {
    min-height: max(420px, 60vh);
  }
  .inner-page-header--cinematic .iph-inner {
    padding: 60px 24px;
  }
  .iph-title { font-size: clamp(38px,10vw,56px); }
  .iph-intro { font-size: 18px; }

  /* About */
  .person-layout, .person-layout--left, .person-layout--right {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }
  .person-layout--right .person-photos { order: -1; }
  .charte-inner { padding: 0 24px; }
  .charte-section { padding: 72px 0; }
  .charte-header { margin-bottom: 44px; }
  .charte-item { grid-template-columns: 36px 1fr; gap: 14px; padding: 22px 0; }
  .values-inner { padding: 0 24px; }
  .values-header { flex-direction: column; align-items: flex-start; }
  .values-grid { grid-template-columns: 1fr; }
  .about-cta { flex-direction: column; align-items: flex-start; padding: 60px 24px; }

  /* Routes */
  .routes-page-header { padding: 120px 24px 60px; }
  .routes-page-header-inner { grid-template-columns: 1fr; gap: 32px; }
  .route-section { padding: 60px 24px; }
  .route-header { grid-template-columns: 1fr; gap: 40px; }
  .included-modal-inner { padding: 48px 28px 56px; }
  .included-modal-item { grid-template-columns: 80px 1fr; }
  .route-photos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .photo-cell--hero { grid-column: 1 / -1; grid-row: 1; min-height: 240px; }
  .photo-cell--top-right  { grid-column: 1; grid-row: 2; min-height: 180px; }
  .photo-cell--top-far    { grid-column: 2; grid-row: 2; min-height: 180px; }
  .photo-cell--bottom-right { grid-column: 1; grid-row: 3; min-height: 180px; }
  .photo-cell--bottom-far   { grid-column: 2; grid-row: 3; min-height: 180px; }
  .routes-cta { flex-direction: column; align-items: flex-start; padding: 60px 24px; }

  /* FAQ */
  .faq-hero { height: 45vh; min-height: 280px; }
  .faq-hero-content { padding: 0 24px 40px; }
  .faq-layout { grid-template-columns: 1fr; padding: 0 24px; }
  .faq-sidebar { display: none; } /* hide on mobile, users scroll */
  .faq-main { padding: 40px 0; }
  .faq-cta-inner { padding: 60px 24px; }

  /* Magazine */
  .mag-intro-section { padding: 56px 24px; }
  .mag-slider-section { padding: 56px 0 72px; }
  .mag-slider-header { padding: 0 24px; }
  .mag-slider-header-inner { max-width: 100%; }
  .mag-slider-wrap { padding: 0 24px; }
  .mag-slide-card { flex: 0 0 280px; }
  .mag-empty-section { padding: 56px 24px; }
  .mag-empty-inner { grid-template-columns: 1fr; gap: 40px; }
  .mag-newsletter { padding: 56px 24px; }

  /* Contact */
  /* Contact intro: stack on mobile (photo top, text below) */
  .contact-intro {
    grid-template-columns: 1fr;
    margin-top: 72px;
    min-height: unset;
  }
  .contact-intro + .contact-intro {
    margin-top: 0;
  }
  .contact-intro-photo {
    order: -1;
    height: 80vw;
    min-height: 340px;
  }
  .contact-intro-text {
    padding: 48px 24px 56px;
    gap: 20px;
  }
  /* Reversed: photo still shows on top on mobile */
  .contact-intro--reverse .contact-intro-photo {
    order: -1;
  }
  .contact-intro--reverse .contact-intro-text {
    order: 1;
    padding: 48px 24px 56px;
  }
  .contact-section { padding: 60px 24px; }
  .contact-form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-intro-body { max-width: 100%; }
  .mag-newsletter-form { flex-direction: column; gap: 10px; }
  .mag-newsletter-input { border-right: 1px solid var(--rule); border-radius: 1px; }
  .mag-newsletter-btn { border-radius: 1px; width: 100%; }
  .route-section--alt { padding-left: 24px; padding-right: 24px; }
  .contact-info-strip { grid-template-columns: 1fr 1fr; }
  .contact-info-item { padding: 24px 20px; }
  .contact-info-item:nth-child(2) { border-right: none; }
  .contact-info-item:nth-child(3) { border-top: 1px solid var(--rule); border-right: none; }
  .contact-info-item:last-child { border-top: 1px solid var(--rule); }

  /* Footer */
  .site-footer-inner { padding: 48px 24px 32px; }
  .footer-cols { grid-template-columns: 1fr; gap: 36px; }
}

@media (min-width: 768px) and (max-width: 1024px) {

  /* Shared header */
  .iph-inner { padding: 70px 40px 80px; gap: 48px; }

  /* About */
  .person-layout, .person-layout--left, .person-layout--right {
    grid-template-columns: 1fr 1fr;
    padding: 72px 40px;
    gap: 48px;
  }
  .charte-inner { padding: 0 40px; }
  .charte-section { padding: 80px 0; }
  .values-inner { padding: 0 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-cta { padding: 60px 40px; }

  /* Routes */
  .routes-page-header { padding: 130px 40px 70px; }
  .routes-page-header-inner { gap: 48px; }
  .route-section { padding: 72px 40px; }
  .route-header { gap: 48px; }
  .included-modal-inner { padding: 48px 28px 56px; }
  .included-modal-item { grid-template-columns: 80px 1fr; }
  .routes-cta { padding: 72px 40px; }

  /* FAQ */
  .faq-layout { padding: 0 40px; grid-template-columns: 220px 1fr; }
  .faq-main { padding: 52px 0 52px 48px; }
  .faq-cta-inner { padding: 72px 40px; }

  /* Magazine */
  .mag-intro-section { padding: 68px 40px; }
  .mag-slider-section { padding: 68px 0 80px; }
  .mag-slider-header { padding: 0 40px; }
  .mag-slider-wrap { padding: 0 40px; }
  .mag-slide-card { flex: 0 0 300px; }
  .mag-empty-section { padding: 68px 40px; }
  .mag-empty-inner { gap: 48px; }
  .mag-newsletter { padding: 68px 40px; }

  /* Contact */
  /* Contact intro: tighten padding at tablet */
  .contact-intro-text { padding: 64px 48px 64px 40px; }
  .contact-section { padding: 72px 40px; }
  .contact-form-row { grid-template-columns: 1fr; gap: 0; }
  .route-section--alt { padding-left: 40px; padding-right: 40px; }
  .contact-info-strip { grid-template-columns: 1fr 1fr; }
  .contact-info-item:nth-child(2) { border-right: none; }
  .contact-info-item:nth-child(3) { border-top: 1px solid var(--rule); }
  .contact-info-item:last-child { border-top: 1px solid var(--rule); }

  /* Footer */
  .site-footer-inner { padding: 60px 40px 36px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 40px; }
}


/* ═══════════════════════════════════════════════════════════════
   MAGAZINE ARTICLE — single.php   (art-* namespace)
═══════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────── */
.art-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.art-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,28,28,0.18) 0%,
    rgba(28,28,28,0.55) 55%,
    rgba(28,28,28,0.82) 100%
  );
}
.art-back-top {
  position: absolute;
  top: 100px;
  left: 60px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.72);
  text-decoration: none;
  transition: color 0.2s;
  z-index: 2;
}
.art-back-top:hover { color: #fff; }

.art-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 60px 72px;
}
.art-cat-pill {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  border-radius: 2px;
  padding: 4px 10px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.art-cat-pill:hover {
  background: var(--amber);
  color: #fff;
}
.art-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.art-title em { font-style: italic; color: var(--amber-light); }

.art-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(250,250,250,0.70);
}
.art-meta svg { vertical-align: middle; margin-right: 4px; }
.art-sep { opacity: 0.45; }

/* ── Article layout grid ──────────────────────────────────────── */
.art-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 60px 80px;
  align-items: start;
}

/* ── Sidebar ──────────────────────────────────────────────────── */
.art-sidebar {
  position: sticky;
  top: 100px;
}
.art-sidebar-inner {
  padding-right: 48px;
  border-right: 1px solid var(--rule);
}
.art-sidebar-back {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.art-sidebar-back:hover { color: var(--dark); }
.art-sidebar-rule {
  height: 1px;
  background: var(--rule);
  margin: 16px 0;
}
.art-sidebar-read {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.art-sidebar-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.art-sidebar-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.art-sidebar-share {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.art-share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.art-share-link:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ── Main content ─────────────────────────────────────────────── */
.art-main {
  padding-left: 64px;
}

/* Featured image */
.art-feat-img {
  margin: 0 0 48px;
  border-radius: 3px;
  overflow: hidden;
}
.art-feat-img img {
  width: 100%;
  height: auto;
  display: block;
}
.art-feat-caption {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  padding: 8px 0 0;
  font-style: italic;
}

/* Article content typography */
.art-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark);
}
.art-content p { margin-bottom: 1.5em; }
.art-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  margin: 2em 0 0.7em;
  color: var(--dark);
}
.art-content h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  margin: 1.8em 0 0.6em;
}
.art-content h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 1.6em 0 0.5em;
}
.art-content ul,
.art-content ol {
  margin: 0 0 1.5em 1.4em;
  padding: 0;
}
.art-content li { margin-bottom: 0.5em; }
.art-content blockquote {
  border-left: 3px solid var(--amber);
  margin: 2em 0;
  padding: 12px 0 12px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--dark);
}
.art-content blockquote cite {
  display: block;
  font-style: normal;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.art-content a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.art-content a:hover { color: var(--amber-light); }
.art-content img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
  margin: 0.5em 0 1.5em;
}

/* Drop-cap first paragraph */
.art-drop-cap > p:first-of-type::first-letter {
  float: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.8em;
  line-height: 0.78;
  margin: 0.04em 0.1em 0 0;
  color: var(--amber);
}

/* Tags */
.art-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0 48px;
}
.art-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 5px 10px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.art-tag:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* Author bio box */
.art-author-bio {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--sand);
  border-left: 3px solid var(--amber);
  border-radius: 3px;
  padding: 28px 32px;
  margin-bottom: 56px;
}
.art-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.art-author-text { flex: 1; }
.art-author-name {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}
.art-author-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* Prev / Next navigation */
.art-prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.art-prevnext-prev,
.art-prevnext-next {
  background: var(--cream);
  padding: 28px 0;
}
.art-prevnext-next { text-align: right; padding-right: 0; }
.art-prevnext a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}
.art-prevnext-next a { align-items: flex-end; }
.art-pn-dir {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
.art-pn-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  transition: color 0.2s;
}
.art-prevnext a:hover .art-pn-title { color: var(--amber); }

/* ── Plan CTA banner ──────────────────────────────────────────── */
.art-plan-banner {
  background: var(--dark);
  padding: 100px 60px;
  text-align: center;
}
.art-plan-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.art-plan-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  color: #fff;
}
.art-plan-title em { font-style: italic; color: var(--amber-light); }
.art-plan-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250,250,250,0.70);
  max-width: 520px;
}
.art-plan-banner .btn-primary {
  margin-top: 8px;
}

/* ── Related articles ─────────────────────────────────────────── */
.art-related {
  background: var(--sand);
  padding: 88px 60px;
}
.art-related-inner { max-width: 1060px; margin: 0 auto; }
.art-related-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.art-related-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--dark);
}
.art-related-title em { font-style: italic; color: var(--amber); }
.art-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.art-rel-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 3px;
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.25s, box-shadow 0.25s;
}
.art-rel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28,28,28,0.10);
}
.art-rel-img {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.art-rel-cat {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--amber);
  padding: 3px 8px;
  border-radius: 2px;
}
.art-rel-text { padding: 20px 22px 24px; flex: 1; }
.art-rel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.art-rel-card:hover .art-rel-title { color: var(--amber); }
.art-rel-read {
  font-size: 12px;
  color: var(--muted);
}
.art-related-cta { text-align: center; }


/* ── Article — Tablet (768–1024px) ───────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {
  .art-hero { min-height: 60vh; }
  .art-back-top { left: 40px; top: 100px; }
  .art-hero-inner { padding: 0 40px 56px; }
  .art-layout {
    grid-template-columns: 180px 1fr;
    padding: 56px 40px 64px;
  }
  .art-main { padding-left: 40px; }
  .art-plan-banner { padding: 72px 40px; }
  .art-related { padding: 68px 40px; }
  .art-related-grid { grid-template-columns: repeat(2, 1fr); }
  .art-rel-img { height: 180px; }
}

/* ── Mobile back bar (above hero) ────────────────────────────── */
.art-mobile-back { display: none; } /* hidden on desktop — sidebar handles it */

/* ── Article — Mobile (≤767px) ───────────────────────────────── */
@media (max-width: 767px) {
  /* Dedicated back bar: sits below the fixed nav (92px), above the hero */
  .art-mobile-back {
    display: flex;
    align-items: center;
    padding-top: 92px; /* push below fixed nav */
    background: var(--cream);
  }
  .art-mobile-back-link {
    display: block;
    padding: 14px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
  }
  .art-mobile-back-link:hover { color: var(--amber); }

  /* Hero: taller; in-hero back link hidden (replaced by bar above) */
  .art-hero {
    min-height: 68vh;
    justify-content: flex-end;
  }
  .art-back-top { display: none; }
  .art-hero-inner { padding: 0 20px 44px; }
  .art-title { font-size: 28px; }
  .art-meta { flex-wrap: wrap; font-size: 12px; }

  /* Switch to single column — hide sidebar */
  .art-layout {
    display: block;
    padding: 40px 20px 56px;
  }
  .art-sidebar { display: none; }
  .art-main { padding-left: 0; }

  .art-content { font-size: 16px; }
  .art-content blockquote { font-size: 18px; padding-left: 18px; }

  .art-author-bio {
    flex-direction: column;
    gap: 16px;
    padding: 22px 20px;
  }
  .art-prevnext { grid-template-columns: 1fr; }
  .art-prevnext-next { border-top: 1px solid var(--rule); text-align: left; padding-right: 0; }
  .art-prevnext-next a { align-items: flex-start; }

  .art-plan-banner { padding: 64px 20px; }
  .art-plan-title { font-size: 30px; }
  .art-plan-body { font-size: 15px; }

  .art-related { padding: 56px 20px; }
  .art-related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .art-rel-img { height: 200px; }
}
