/* ========================================================================
   ELLEFFEVENTS — Design system
   Replicates the original elleffevents.com visual language in clean code.
   ======================================================================== */

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

:root {
  --bg-white: #FFFFFF;
  --bg-cream: #F8F6F3;
  --bg-soft: #EFEAE5;
  --text-dark: #1A1A1A;
  --text-body: #333333;
  --text-muted: #6B6B6B;
  --taupe: #98908A;
  --taupe-hover: #7d756f;
  --taupe-light: #C8BFB7;
  --line: rgba(26, 26, 26, 0.10);
  --font-heading: 'Cormorant Garamond', 'Big Caslon', Georgia, serif;
  --font-body: 'Avenir Next', 'Avenir', 'Nunito Sans', -apple-system, system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max: 1320px;
  --section: clamp(70px, 9vw, 130px);
  --tx: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 600; }
h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 500; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; }
h4 { font-size: 16px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

p { margin: 0 0 1em; }
p:last-child { margin: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taupe);
  display: inline-block;
  margin-bottom: 14px;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 720px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 18px 38px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all var(--tx);
  text-transform: uppercase;
}
.btn-primary { background: var(--taupe); color: #fff; }
.btn-primary:hover { background: var(--taupe-hover); }
.btn-outline { background: transparent; color: var(--text-dark); border: 1px solid var(--text-dark); }
.btn-outline:hover { background: var(--text-dark); color: #fff; }

/* ============================
   HEADER — logo center, menu inline
   ============================ */
/* HEADER — fixed at top, transparent over hero, white solid on scroll */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease;
}
.site-header.scrolled,
body:not(.has-hero) .site-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
/* Push body content down on inner pages so it doesn't go under fixed header */
body:not(.has-hero) main { padding-top: 96px; }

/* When scrolled, logo + menu items become dark */
.site-header.scrolled .site-logo__main,
.site-header.scrolled .site-logo__sub,
.site-header.scrolled .main-nav__list > li > a {
  color: var(--text-dark);
}
.site-header.scrolled .main-nav__list > li.current > a {
  border-color: var(--text-dark);
}
.site-header.scrolled .hamburger span {
  background: var(--text-dark);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

/* SPLIT LOGO centered, white text over hero video */
.site-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  justify-self: center;
}
.site-logo__main {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 6px;
  color: #FFFFFF;
}
.site-logo__sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 8px;
  color: #FFFFFF;
  margin-top: 4px;
}
/* Logo images — swap white/dark based on header state */
.site-logo__img { height: 70px; width: auto; display: block; }
.site-header .site-logo__img--dark { display: none; }
.site-header.scrolled .site-logo__img--white,
body:not(.has-hero) .site-header .site-logo__img--white { display: none; }
.site-header.scrolled .site-logo__img--dark,
body:not(.has-hero) .site-header .site-logo__img--dark { display: block; }
.site-header.scrolled .site-logo__img { height: 56px; }

/* On inner pages (no hero), logo is dark */
body:not(.has-hero) .site-logo__main,
body:not(.has-hero) .site-logo__sub { color: var(--text-dark); }

/* Footer logo always white text */
.site-footer .site-logo__main,
.site-footer .site-logo__sub { color: var(--text-dark); }

/* NAV MENU — split around centered logo (3 left + 4 right) */
.main-nav__list {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-left { justify-self: end; }
.nav-right { justify-self: start; }

.main-nav__list > li > a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  color: #FFFFFF;
  white-space: nowrap;
  transition: color var(--tx), border-color var(--tx);
  padding: 10px 4px;
  display: inline-block;
  text-transform: uppercase;
}
body:not(.has-hero) .main-nav__list > li > a { color: var(--text-dark); }

.main-nav__list > li > a:hover { color: var(--taupe-light); }
body:not(.has-hero) .main-nav__list > li > a:hover { color: var(--taupe); }

.main-nav__list > li.current > a {
  font-weight: 600;
}

/* Sub-menu always white background (it's a popover) */
.sub-menu a { color: var(--text-dark) !important; }

/* Dropdown */
.has-children { position: relative; }
.has-children > a::after {
  content: " ⌄";
  display: inline-block;
  margin-left: 4px;
  font-size: 12px;
  vertical-align: middle;
}
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
  padding: 14px 0;
  min-width: 230px;
  list-style: none;
  z-index: 200;
  margin-top: 12px;
}
.has-children:hover .sub-menu { display: block; }
.sub-menu a {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-dark);
}
.sub-menu a:hover { color: var(--taupe); background: var(--bg-cream); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text-dark);
  margin: 6px 0;
  transition: var(--tx);
}

/* ============================
   HERO — full-bleed video
   ============================ */
.hero-fullbleed {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-fullbleed__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-fullbleed__bg video,
.hero-fullbleed__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-fullbleed__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.45));
}
.hero-fullbleed__content {
  position: relative;
  z-index: 2;
  padding: 80px 32px;
  max-width: 880px;
}
.hero-fullbleed__content .eyebrow { color: rgba(255, 255, 255, 0.85); }
.hero-fullbleed h1 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-fullbleed__sub {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  font-weight: 300;
}

/* ============================
   SECTIONS
   ============================ */
.section { padding: var(--section) 0; }
.section--cream { background: var(--bg-cream); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--text-dark); color: rgba(255, 255, 255, 0.88); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: var(--taupe-light); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head h2 { margin-bottom: 18px; }

/* Logo divider (centered "ELLEFFE EVENTS" between sections) */
.logo-divider {
  text-align: center;
  padding: 60px 0;
}
.logo-divider .site-logo__main { font-size: 38px; letter-spacing: 7px; }
.logo-divider .site-logo__sub { font-size: 12px; letter-spacing: 9px; margin-top: 6px; }

/* ============================
   EDITORIAL — text + image alternating
   ============================ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.editorial--reverse { direction: rtl; }
.editorial--reverse > * { direction: ltr; }
.editorial__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.editorial__text h2 { margin-bottom: 24px; }
.editorial__text p { margin-bottom: 16px; font-size: 17px; line-height: 1.75; }
.editorial__text .btn { margin-top: 24px; }
.editorial__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 8px;
}
.editorial__list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
}
.editorial__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--taupe);
  border-radius: 50%;
}

/* ============================
   PARALLAX STRIP IMAGES
   ============================ */
.strip-parallax {
  width: 100%;
  height: 80vh;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 1024px), (hover: none) {
  .strip-parallax { background-attachment: scroll; height: 60vh; min-height: 420px; }
}

/* ============================
   REVIEWS CAROUSEL — auto-rotating single quote (mirror originale)
   ============================ */
.reviews-carousel {
  position: relative;
  max-width: 1100px;
  margin: 48px auto 0;
}
.reviews-carousel__viewport { overflow: hidden; }
.reviews-carousel__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.7,0,.3,1);
}
.review-slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  padding: 36px 56px 40px;
  border: 1px solid var(--line);
  background: #fff;
}
.review-slide__ig {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--text-dark);
  opacity: 0.55;
  transition: opacity var(--tx);
}
.review-slide__ig:hover { opacity: 1; }
.review-slide__head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.review-slide__avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-slide__meta p { margin: 0; line-height: 1.3; }
.review-slide__name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
}
.review-slide__stars {
  color: #d4a85a;
  letter-spacing: 2px;
  font-size: 14px;
  margin-left: 4px;
}
.review-slide__handle {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--taupe);
  margin-top: 2px !important;
}
.review-slide__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}
.reviews-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  font-size: 22px;
  line-height: 1;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tx), transform var(--tx);
}
.reviews-carousel__nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.reviews-carousel__nav--prev { left: -20px; }
.reviews-carousel__nav--next { right: -20px; }
.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.reviews-carousel__dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--taupe-light); border: none; padding: 0; cursor: pointer;
  transition: background var(--tx), transform var(--tx);
}
.reviews-carousel__dots button.is-active { background: var(--taupe); transform: scale(1.4); }

@media (max-width: 720px) {
  .review-slide { padding: 28px 24px 32px; }
  .review-slide__ig { top: 20px; right: 20px; }
  .reviews-carousel__nav { display: none; }
}

/* ============================
   NATALIE FOUNDER SECTION
   ============================ */
.natalie-section .editorial { align-items: center; }
.natalie-section .editorial__image img {
  aspect-ratio: 1/1.05;
  object-fit: cover;
  border-radius: 0;
}
.natalie-headline {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--taupe);
  margin-bottom: 28px;
}
.natalie-section .editorial__text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 28px;
}

/* ============================
   STATS — elegant numbers
   ============================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats > div { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.stat__num {
  font-family: var(--font-heading);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  font-style: italic;
  color: var(--taupe);
  line-height: 1;
  letter-spacing: -1px;
}
.stat__label {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  color: var(--text-dark);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
}

/* ============================
   PHOTO STRIP — 4 cols full-bleed clickable
   ============================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}
.photo-strip__item { display: block; overflow: hidden; aspect-ratio: 2/3; }
.photo-strip__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.photo-strip__item:hover img { transform: scale(1.05); }
@media (max-width: 720px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================
   HOW WE PLAN — accordion + video
   ============================ */
.plan-section .lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
.plan-step {
  border: 1px solid var(--line);
  margin-bottom: 12px;
  background: #fff;
}
.plan-step summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background var(--tx);
}
.plan-step summary::-webkit-details-marker { display: none; }
.plan-step summary::before {
  content: "+";
  display: inline-block;
  width: 20px;
  font-size: 22px;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--tx);
}
.plan-step[open] summary::before { content: "−"; }
.plan-step:hover { background: var(--bg-cream); }
.plan-step p {
  padding: 0 22px 22px 56px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
}
.plan-video__wrap {
  position: sticky;
  top: 100px;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.plan-video__wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 900px) {
  .plan-grid { grid-template-columns: 1fr; gap: 32px; }
  .plan-video__wrap { position: static; }
}

/* ============================
   FEATURED IN — magazine cards with lightbox thumbnails
   ============================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.featured-col { display: flex; flex-direction: column; }
.featured-col__hero {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 16px;
}
.featured-col__hero img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.featured-col__hero:hover img { transform: scale(1.04); }
.featured-col__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255,255,255,0.92);
  padding: 8px 14px;
  border-radius: 2px;
}
.featured-col__badge img { height: 28px; width: auto; display: block; }
.featured-col__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}
.featured-col__thumbs a { display: block; aspect-ratio: 1; overflow: hidden; }
.featured-col__thumbs img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity var(--tx);
}
.featured-col__thumbs a:hover img { opacity: 0.7; }
.featured-col__caption {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ============================
   LIGHTBOX
   ============================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: serif;
  line-height: 1;
  transition: background var(--tx);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__close {
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  font-size: 26px;
}
.lightbox__nav {
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  font-size: 36px;
  font-weight: 300;
}
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
@media (max-width: 720px) {
  .lightbox__nav { width: 40px; height: 40px; font-size: 26px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* ============================
   INQUIRY FORM
   ============================ */
.inquiry-form {
  margin-top: 40px;
  display: grid;
  gap: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field > span,
.form-field > legend {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--text-dark);
}
.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form input[type="number"],
.inquiry-form select,
.inquiry-form textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  border-radius: 0;
  width: 100%;
  transition: border-color var(--tx);
}
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--taupe);
}
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}
.inquiry-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231A1A1A' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-radio-group {
  border: none;
  padding: 0;
  margin: 0;
}
.form-radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 8px;
  cursor: pointer;
}
.form-radio-group input[type="radio"] { accent-color: var(--taupe); width: 16px; height: 16px; }
.form-submit {
  width: 100%;
  padding: 18px 24px;
  font-size: 13px;
  margin-top: 8px;
}
@media (max-width: 720px) {
  .form-row, .form-row--3 { grid-template-columns: 1fr; gap: 22px; }
}

/* ============================
   BLOG TEASERS
   ============================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--tx), box-shadow var(--tx);
  color: var(--text-dark);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.blog-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.blog-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card__media img { transform: scale(1.04); }
.blog-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__cat {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 14px;
}
.blog-card__body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-dark);
  margin: 0 0 18px;
  flex: 1;
}
.blog-card__link {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color var(--tx), border-color var(--tx);
}
.blog-card:hover .blog-card__link { color: var(--taupe); border-color: var(--taupe); }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================
   PRESS LOGOS BAND
   ============================ */
.section--press { padding-top: 32px; padding-bottom: 32px; }
.press-eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 32px;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
}
.press-logos img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: opacity var(--tx), filter var(--tx);
}
.press-logos img:hover { opacity: 1; filter: grayscale(0%); }
@media (max-width: 720px) {
  .press-logos { gap: 28px; }
  .press-logos img { height: 44px; max-width: 160px; }
}

/* ============================
   STORY RAIL — compact cards, native scroll-snap
   ============================ */
.story-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.story-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: transform var(--tx);
}
.story-card:hover { transform: translateY(-4px); }
.story-card__media {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 20px;
}
.story-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.story-card:hover .story-card__media img { transform: scale(1.04); }
.story-card__body { padding: 0 4px; }
.story-card__loc {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 12px;
}
.story-card__body h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text-dark);
  line-height: 1.2;
}
.story-card__body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 16px;
}
.story-card__link {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 2px;
  display: inline-block;
}
.story-card__link:hover { color: var(--taupe); border-color: var(--taupe); }

/* Mobile: horizontal scroll-snap rail */
@media (max-width: 900px) {
  .story-rail {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 24px;
    padding: 0 24px 16px;
    margin-left: -24px;
    margin-right: -24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .story-rail::-webkit-scrollbar { display: none; }
  .story-card { scroll-snap-align: start; }
}

/* ============================
   FEATURE LIST (○ bullets, original look)
   ============================ */
.feature-list { list-style: none; }
.feature-list li {
  position: relative;
  padding: 14px 0 14px 36px;
  font-size: 16px;
  line-height: 1.55;
  border-bottom: 1px dotted var(--line);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--taupe);
  border-radius: 50%;
}

/* "Why us" 4-row design — title with dotted underline + paragraph */
.why-grid {
  max-width: 1100px;
  margin: 0 auto;
}
.why-row {
  padding: 32px 0 28px;
}
.why-row h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 14px;
}
.why-row h3::after {
  content: "";
  flex: 1;
  height: 1px;
  border-top: 1px dotted var(--taupe-light);
}
.why-row p { font-size: 16px; color: var(--text-body); margin: 0; line-height: 1.6; }

/* ============================
   CARD GRIDS
   ============================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* Destination card with image overlay */
.dest-card {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  color: #fff;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.dest-card:hover img { transform: scale(1.05); }
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
}
.dest-card__label {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 32px;
}
.dest-card__label h3 {
  color: #fff;
  font-size: 28px;
  margin: 0;
  font-weight: 500;
}
.dest-card__label span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ============================
   STATS BAR
   ============================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat__num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 500;
  color: var(--taupe);
  line-height: 1;
  display: block;
}
.stat__label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 14px;
  display: block;
}

/* ============================
   PRESS LOGOS
   ============================ */
.press {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 56px;
  padding: 32px 0;
  list-style: none;
}
.press li {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================
   TESTIMONIAL
   ============================ */
.testimonial { text-align: center; max-width: 800px; margin: 0 auto; }
.testimonial__quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.testimonial__author {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--bg-soft);
  color: var(--text-body);
  padding: 80px 0 32px;
}
.footer-top { text-align: center; margin-bottom: 48px; }
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  padding: 48px 0;
  border-top: 1px dotted var(--line);
  border-bottom: 1px dotted var(--line);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 1px;
  border-bottom: 1px dotted var(--taupe);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a { color: var(--text-body); transition: color var(--tx); }
.footer-col a:hover { color: var(--taupe); }
.footer-col__social { display: flex; gap: 12px; margin-top: 16px; }
.footer-col__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.footer-col__social a:hover { background: var(--taupe); color: #fff; }

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px dotted var(--line);
  margin-top: 24px;
}

/* ============================
   COOKIE BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 18px 32px;
  z-index: 1000;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
  display: none;
}
.cookie-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner p {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
  min-width: 280px;
  margin: 0;
}
.cookie-banner__actions { display: flex; gap: 8px; }
.cookie-banner button {
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}
.cookie-banner__decline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark) !important;
}
.cookie-banner__accept { background: var(--taupe); color: #fff; }

/* ============================
   ANIMATIONS
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .site-header__inner { grid-template-columns: auto 1fr auto; padding: 0 24px; }
  .nav-left { display: none; }
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #fff;
    height: 100vh;
    padding: 96px 32px 32px;
    overflow-y: auto;
    z-index: 99;
    justify-self: end;
  }
  .main-nav.is-open { display: flex; }
  .main-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .main-nav__list > li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .main-nav__list > li > a {
    display: block;
    padding: 18px 0;
    font-size: 15px;
  }
  .sub-menu {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0 0 16px 16px;
    min-width: 0;
    margin: 0;
  }
  .has-children .sub-menu a { font-size: 13px; padding: 8px 0; }
  .hamburger { display: block; }
  body.menu-open { overflow: hidden; }

  .editorial { grid-template-columns: 1fr; }
  .editorial--reverse { direction: ltr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 48px; }
  .why-row h3 { font-size: 20px; }
  .why-row h3::after { display: none; }
  .hero-fullbleed { min-height: 600px; height: 90vh; }
}
