/* ============================================================
   Taste of México — Main Stylesheet
   Colors: cream #DDD4C5 | beige #C4AE96 | olive #6D694C | terracotta #AE6137
   Fonts: Playfair Display (headings) | Poppins (body)
============================================================ */

:root {
  --cream:       #DDD4C5;
  --beige:       #C4AE96;
  --olive:       #6D694C;
  --olive-dark:  #52503a;
  --terracotta:  #AE6137;
  --terra-dark:  #8f4e2c;
  --text:        #2c2b1f;
  --text-muted:  rgba(44,43,31,.75);
  --white:       #ffffff;
  --bg:          #faf8f5;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Lato', sans-serif;

  --nav-h:       80px;
  --max-w:       1200px;
  --max-text:    720px;

  --ease-out:    cubic-bezier(.22,1,.36,1);
  --ease-in-out: cubic-bezier(.45,0,.55,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--text); /* prevents white overscroll below footer on iOS */ }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; }
p { line-height: 1.75; }

/* ── Utilities ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 4px; border: none;
  padding: .85rem 2rem;
  transition: background .25s var(--ease-out), color .25s, transform .2s, opacity .2s;
  cursor: pointer; white-space: nowrap;
}
.btn--olive   { background: var(--olive); color: var(--white); }
.btn--olive:hover { background: var(--olive-dark); transform: translateY(-1px); }
.btn--terra   { background: var(--terracotta); color: var(--white); }
.btn--terra:hover { background: var(--terra-dark); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.5); }
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--olive); border: 1px solid rgba(109,105,76,.4); }
.btn--outline-dark:hover { background: var(--olive); color: var(--white); border-color: var(--olive); }
.btn--sm { padding: .6rem 1.4rem; font-size: .75rem; }
.btn--lg { padding: 1.05rem 2.5rem; font-size: .88rem; }

/* ── Section labels ── */
.section-label {
  display: inline-block;
  font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '—';
  margin-right: .5rem;
  opacity: .6;
}

/* ── Ornament line ── */
.ornament {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.5rem auto;
  width: 120px;
}
.ornament__line { flex: 1; height: 1px; background: var(--beige); }
.ornament__dot  { width: 5px; height: 5px; background: var(--terracotta); transform: rotate(45deg); flex-shrink: 0; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background .4s var(--ease-out), box-shadow .4s;
}
.nav.scrolled {
  background: rgba(250,248,245,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44,43,31,.08);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav__logo img {
  height: 68px; width: auto; max-width: 240px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .4s;
}
.nav.scrolled .nav__logo img { filter: none; }

.nav__links {
  display: flex; align-items: center; gap: 2.5rem;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav__link {
  font-size: .78rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .25s, opacity .25s;
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--terracotta);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav__link:hover { color: var(--white); opacity: 1; }
.nav.scrolled .nav__link { color: var(--text-muted); }
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active { color: var(--text); }
.nav__link.active { color: var(--white); }
.nav.scrolled .nav__link.active { color: var(--olive); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__lang {
  font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .25s;
  padding: .3rem .6rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 3px;
}
.nav__lang:hover { color: var(--white); border-color: rgba(255,255,255,.6); }
.nav.scrolled .nav__lang { color: var(--text-muted); border-color: rgba(44,43,31,.2); }
.nav.scrolled .nav__lang:hover { color: var(--text); border-color: var(--olive); }

/* Nav dropdown submenu */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__sub {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(250,248,245,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(44,43,31,.13);
  padding: .4rem 0;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 200;
}
.nav__sub::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top: none;
  border-bottom-color: rgba(250,248,245,.97);
  width: 0; height: 0;
}
.nav__item:hover .nav__sub,
.nav__item:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__sub-link {
  display: block;
  padding: .55rem 1.2rem;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s;
  white-space: nowrap;
}
.nav__sub-link:hover,
.nav__sub-link.active { color: var(--olive); }

/* Mobile sub-link */
.mobile-menu__sub {
  padding-left: 2.5rem;
  font-size: .8rem;
  opacity: .8;
}

/* Mobile burger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem;
  z-index: 10;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: background .4s, transform .3s, opacity .3s;
}
.nav.scrolled .nav__burger span,
.nav__burger.is-open span { background: var(--text); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero.loaded .hero__bg { transform: scale(1.02); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20,16,8,.4) 0%,
    rgba(20,16,8,.68) 60%,
    rgba(20,16,8,.82) 100%
  );
}
.hero__content {
  position: relative; z-index: 1;
  padding: 0 1.5rem;
  max-width: 900px;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.hero__label {
  font-size: .7rem; font-weight: 400; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  padding: .4rem 1.2rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 2px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 500; line-height: 1.08;
  color: var(--white);
  letter-spacing: -.01em;
}
.hero__sub {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  font-weight: 300; letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  max-width: 520px;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: .5rem; }

.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Inner page hero (shorter) */
.hero--inner { height: 55vh; min-height: 380px; }
.hero--inner .hero__title { font-size: clamp(2rem, 5vw, 3.8rem); }

/* ============================================================
   SECTIONS
============================================================ */
.section { padding: 7rem 0; }
.section--sm { padding: 4rem 0; }
.section--olive { background: var(--olive); color: var(--white); }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--olive-dark); color: var(--white); }

.section__header {
  text-align: center;
  max-width: var(--max-text);
  margin: 0 auto 4rem;
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--olive);
  margin-bottom: 1rem;
}
.section--olive .section__title,
.section--dark .section__title { color: var(--cream); }
.section__sub {
  font-size: 1rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.75;
}
.section--olive .section__sub,
.section--dark .section__sub { color: rgba(221,212,197,.7); }

/* ============================================================
   INTRO (Home)
============================================================ */
.intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.intro__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--olive);
  margin-bottom: 1.5rem;
}
.intro__body {
  font-size: 1.05rem; font-weight: 400; line-height: 1.85;
  color: var(--text-muted);
}

/* ============================================================
   EXPERIENCE CARDS
============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; }
.card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.card__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  /* Ken Burns: GSAP animates these, transition handles hover snap */
  transition: transform .9s var(--ease-out);
  transform-origin: center center;
  will-change: transform;
}
/* Ken Burns keyframes — 3 directions for visual variety */
@keyframes kb-zoom-tl {
  0%   { transform: scale(1.0)  translate(0%,    0%); }
  100% { transform: scale(1.1)  translate(-2%,  -2%); }
}
@keyframes kb-zoom-br {
  0%   { transform: scale(1.08) translate(1.5%,  1.5%); }
  100% { transform: scale(1.0)  translate(-0.5%, -0.5%); }
}
@keyframes kb-zoom-lr {
  0%   { transform: scale(1.04) translate(-1.5%, 0.5%); }
  100% { transform: scale(1.1)  translate(1.5%, -0.5%); }
}
/* Assign a different animation to each card */
.cards .card:nth-child(1) .card__img { animation: kb-zoom-tl 18s ease-in-out infinite alternate; }
.cards .card:nth-child(2) .card__img { animation: kb-zoom-br 22s ease-in-out infinite alternate; animation-delay: -7s; }
.cards .card:nth-child(3) .card__img { animation: kb-zoom-lr 19s ease-in-out infinite alternate; animation-delay: -3s; }
/* On hover: pause animation, CSS transition takes over smoothly */
.card:hover .card__img { transform: scale(1.08); animation-play-state: paused; }
.card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,18,10,.85) 100%);
}
.card__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  transform: translateY(8px);
  transition: transform .4s var(--ease-out);
}
.card:hover .card__content { transform: translateY(0); }
.card__tag {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--beige); font-weight: 400;
  margin-bottom: .6rem;
  display: block;
}
.card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 500;
  color: var(--white);
  margin-bottom: .75rem;
}
.card__desc {
  font-size: .82rem; font-weight: 300; line-height: 1.6;
  color: rgba(255,255,255,.95);
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out), opacity .4s;
  opacity: 0;
}
.card:hover .card__desc { max-height: 100px; opacity: 1; }
.card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--beige); font-weight: 500;
  margin-top: .75rem;
  opacity: 0; transform: translateY(4px);
  transition: opacity .3s .1s, transform .3s .1s var(--ease-out);
}
.card:hover .card__link { opacity: 1; transform: translateY(0); }
.card__link::after { content: '→'; }

/* 2-col variant */
.cards--2 { grid-template-columns: repeat(2, 1fr); }

/* ============================================================
   STORY / SPLIT SECTION
============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split--reversed .split__img { order: 2; }
.split--reversed .split__text { order: 1; }

.split__img {
  background-size: cover; background-position: center;
  min-height: 400px;
}
.split__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4.5rem;
}
.split__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--olive);
  margin-bottom: 1.25rem;
}
.split__body {
  font-size: .95rem; font-weight: 400; line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ============================================================
   QUOTE SECTION
============================================================ */
.quote-section {
  text-align: center;
  padding: 7rem 2rem;
}
.quote-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400; font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  max-width: 820px;
  margin: 0 auto 1.5rem;
}
.quote-section cite {
  font-family: var(--font-sans);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--beige); font-style: normal;
}

/* ============================================================
   FINAL CTA SECTION
============================================================ */

/* ── Testimonials ── */
.testimonials__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  margin: 0.6rem 0 1.5rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial {
  padding: 2.2rem 2rem;
  border: 1px solid var(--cream);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.testimonial__stars {
  color: var(--terracotta);
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}
.testimonial__text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
  margin: 0 0 1.5rem;
}
.testimonial__author {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.cta-section {
  text-align: center;
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--terracotta) 0%, #8f4e2c 100%);
  color: var(--white);
}
.cta-section__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-serif);
  font-weight: 500; line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
}
.cta-section__sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.75);
  max-width: 480px; margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--text);
  color: rgba(221,212,197,.6);
  padding: 5rem 0 2.5rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__brand img { height: 44px; width: auto; max-width: 200px; margin-bottom: 1.25rem; filter: brightness(0) invert(1) opacity(.6); }
.footer__brand p {
  font-size: .82rem; font-weight: 300; line-height: 1.75;
  color: rgba(221,212,197,.82);
  max-width: 260px;
}
.footer__col-title {
  font-family: var(--font-sans);
  font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(221,212,197,.65);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a {
  font-size: .82rem; font-weight: 300;
  color: rgba(221,212,197,.85);
  transition: color .2s;
}
.footer__links a:hover { color: var(--cream); }
.footer__social {
  display: flex; flex-direction: column; gap: .6rem;
}
.footer__social a {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 300;
  color: rgba(221,212,197,.85);
  transition: color .2s;
}
.footer__social a:hover { color: var(--cream); }
.footer__social svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
.footer__location {
  font-size: .72rem; font-weight: 300; letter-spacing: .06em;
  color: rgba(221,212,197,.65); margin-top: .75rem;
}

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(221,212,197,.08);
  font-size: .72rem; font-weight: 300;
  color: rgba(221,212,197,.65);
  gap: 1rem; flex-wrap: wrap;
}
.footer__developed {
  display: flex; align-items: center; gap: .6rem;
  font-size: .68rem; letter-spacing: .06em;
  color: rgba(221,212,197,.55);
}
.footer__nura-link {
  display: inline-flex; align-items: center; gap: .45rem;
  color: rgba(221,212,197,.65);
  transition: color .25s;
  font-weight: 500; letter-spacing: .06em;
}
.footer__nura-link:hover { color: rgba(221,212,197,.65); }
.footer__nura-logo {
  height: 22px; width: auto; max-width: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(.3);
  transition: opacity .25s;
}
/* ============================================================
   EXPERIENCES PAGE — Editorial Layout
============================================================ */

.exp-intro {
  display: flex; align-items: center; gap: 2rem;
  max-width: 680px; margin: 4rem auto 0;
  padding: 0 2rem;
}
.exp-intro__line { flex: 1; height: 1px; background: var(--beige); }
.exp-intro__text {
  font-family: var(--font-serif); font-style: italic; font-size: 1rem;
  color: var(--text-muted); white-space: nowrap; flex-shrink: 0;
}

.exp-list { max-width: 1320px; margin: 0 auto; padding: 4rem 2rem 0; }

.exp-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--beige), transparent);
  margin: 3rem 4rem;
}

.exp-item {
  display: grid; grid-template-columns: 58fr 42fr;
  min-height: 640px; align-items: stretch;
}
.exp-item--reverse { grid-template-columns: 42fr 58fr; }
.exp-item--reverse .exp-item__visual { order: 2; }
.exp-item--reverse .exp-item__content { order: 1; }

.exp-item__visual { overflow: hidden; position: relative; }
.exp-item__photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.1s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.exp-item:hover .exp-item__photo { transform: scale(1.06); }

.exp-item__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 4rem 4rem 5rem; background: var(--bg);
  position: relative; overflow: hidden;
}
.exp-item__content::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(650px circle at var(--mx,50%) var(--my,50%), rgba(196,174,150,.35), transparent 65%);
  opacity: 0;
  transition: opacity .5s ease;
}
.exp-item__content:hover::before { opacity: 1; }
.exp-item__content > * { position: relative; z-index: 1; }
.exp-item--reverse .exp-item__content { padding: 4rem 5rem 4rem 4rem; position: relative; overflow: hidden; }

.exp-item__num {
  font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700;
  line-height: 1; color: var(--cream); display: block;
  margin-bottom: 1.25rem; letter-spacing: -.02em;
}
.exp-item__cat {
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500; display: block; margin-bottom: .9rem;
}
.exp-item__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem); line-height: 1.2;
  color: var(--olive); margin-bottom: 1.5rem; font-weight: 400;
}
.exp-item__desc {
  font-size: .9rem; font-weight: 400; line-height: 1.85;
  color: var(--text-muted); max-width: 420px; margin-bottom: 2.25rem;
}
.exp-item__exclusive {
  font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1.5rem; opacity: .8;
}
.exp-item__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.exp-item__btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; transition: all .25s var(--ease-out);
}
.exp-item__btn--primary {
  color: var(--olive); border-bottom: 1.5px solid var(--olive); padding-bottom: 2px;
}
.exp-item__btn--primary:hover { color: var(--terracotta); border-color: var(--terracotta); gap: .75rem; }
.exp-item__btn--ghost {
  color: var(--text-muted); border-bottom: 1px solid rgba(196,174,150,.5); padding-bottom: 2px;
}
.exp-item__btn--ghost:hover { color: var(--olive); border-color: var(--olive); }

.exp-more {
  text-align: center; padding: 5rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.exp-more__icon {
  font-size: 1.2rem; color: var(--beige); display: block;
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.exp-more__text {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.1rem; color: var(--text-muted);
}


/* ============================================================
   FULL-WEEK ITINERARY PAGE
============================================================ */
.itin-intro__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-style: italic; font-weight: 400;
  color: var(--olive); margin: 1rem 0 1.75rem; line-height: 1.25;
}
.itin-intro__body {
  font-size: .97rem; font-weight: 400; line-height: 2;
  color: var(--text-muted); max-width: 580px; margin: 0 auto 1.5rem;
}

/* Days */
.itin-days { }
.itin-day {
  display: grid; grid-template-columns: 280px 1fr;
  min-height: 220px;
  border-top: 1px solid rgba(109,105,76,.12);
}
.itin-day--dark { background: #f7f4ef; }
.itin-day__header {
  padding: 3.5rem 3rem;
  display: flex; flex-direction: column; justify-content: flex-start;
  gap: .6rem;
  border-right: 1px solid rgba(109,105,76,.1);
}
.itin-day__num {
  font-size: .62rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--terracotta); opacity: .8;
}
.itin-day__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400; font-style: italic; color: var(--olive);
  line-height: 1.2;
}
.itin-day__theme {
  font-size: .75rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(109,105,76,.5);
  margin-top: .25rem;
}
.itin-schedule {
  padding: 3rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center; gap: 0;
}
.itin-row {
  display: grid; grid-template-columns: 170px 1fr;
  gap: .5rem 1.5rem; align-items: baseline;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(196,174,150,.1);
}
.itin-row:last-child { border-bottom: none; }
.itin-row__time {
  font-size: .72rem; font-weight: 500; letter-spacing: .04em;
  color: var(--terracotta); white-space: nowrap; opacity: .85;
}
.itin-row__act {
  font-size: .9rem; font-weight: 300; line-height: 1.6;
  color: var(--text-dark);
}

/* Gifts */
.itin-gifts {
  background: #1a1910; padding: 7rem 2rem;
}
.itin-gifts__inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.itin-gifts__inner .section-label { color: rgba(196,174,150,.45); }
.itin-gifts__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic; font-weight: 400;
  color: var(--cream); margin: 1rem 0 2.5rem;
}
.itin-gifts__list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.itin-gifts__list li {
  font-size: .92rem; font-weight: 300; line-height: 1.7;
  color: rgba(221,212,197,.65);
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(196,174,150,.08);
}
.itin-gifts__list li:last-child { border-bottom: none; }
.itin-gifts__list li::before {
  content: '\2713\00a0';
  color: var(--terracotta); opacity: .7; font-size: .8rem;
}

@media (max-width: 860px) {
  .itin-day { grid-template-columns: 1fr; }
  .itin-day__header { border-right: none; border-bottom: 1px solid rgba(109,105,76,.1); padding: 2.5rem 1.5rem 1.5rem; }
  .itin-schedule { padding: 1.5rem; }
  .itin-row { grid-template-columns: 1fr; gap: .15rem; }
  .itin-row__time { font-size: .68rem; }
}

@media (max-width: 860px) {
  .exp-item, .exp-item--reverse { grid-template-columns: 1fr; min-height: auto; }
  .exp-item__visual { min-height: 320px; position: relative; }
  .exp-item__photo { position: absolute; inset: 0; }
  .exp-item--reverse .exp-item__visual { order: 1; }
  .exp-item--reverse .exp-item__content { order: 2; }
  .exp-item__content, .exp-item--reverse .exp-item__content { padding: 2.5rem 1.5rem; }
  .exp-item__num { font-size: 2.5rem; }
  .exp-divider { margin: 0; }
  .exp-intro { flex-direction: column; gap: .75rem; }
  .exp-intro__line { width: 60px; height: 1px; flex: none; }
  .exp-intro__text { white-space: normal; text-align: center; }
}

/* ============================================================
   DOMÍNGUEZ BROTHERS — 3 COLUMN LAYOUT
============================================================ */
.dom-section { padding: 0; }
.dom-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 640px;
}
.dom-text {
  background: var(--olive-dark);
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.dom-label { color: rgba(196,174,150,.55); letter-spacing: .14em; margin-bottom: 1.5rem; }
.dom-kicker {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; font-style: italic;
  color: var(--cream); margin-bottom: 2rem; line-height: 1.2;
}
.dom-body {
  font-size: .92rem; font-weight: 400; line-height: 1.9;
  color: rgba(221,212,197,.92); margin-bottom: 1.25rem;
}
.dom-body--italic { font-style: italic; color: rgba(221,212,197,.78); margin-bottom: 0; }
.dom-photo { background-size: cover; background-position: center; }
.dom-photo--portrait { background-position: center top; }
.dom-photo--food     { background-position: center 60%; }
@media (max-width: 860px) {
  .dom-grid { grid-template-columns: 1fr; min-height: auto; }
  .dom-text  { padding: 3.5rem 2rem; }
  .dom-photo { min-height: 340px; }
}

/* ============================================================
   OUR STORY — editorial text only (no image, clear break after dom)
============================================================ */
.story-section {
  background: var(--white);
  padding: 8rem 0 9rem;
}
.story__image { display: none; }   /* eliminada para no apilar imágenes */
.story__text {
  max-width: 700px; margin: 0 auto; padding: 0 2rem;
  text-align: center;
}
.story__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-style: italic; font-weight: 400;
  color: var(--olive); margin-bottom: 2.5rem; line-height: 1.2;
}
.story__title .section-label { display: block; margin-bottom: 1.5rem; }
.story__body p {
  font-size: .97rem; font-weight: 400; line-height: 2.1;
  color: var(--text-muted); margin-bottom: 1.5rem; text-align: left;
}

/* ============================================================
   VALUES — 3 columnas editorial sobre fondo oscuro
============================================================ */
.values-section { background: #1a1910; padding: 8rem 0 9rem; }
.values__inner  { max-width: 1100px; margin: 0 auto; padding: 0 3rem; }
.values__header { margin-bottom: 5rem; }
.values__label  { color: rgba(196,174,150,.70) !important; }
.values__lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic; font-weight: 400;
  color: var(--cream); margin-top: 1rem;
  line-height: 1.15; max-width: 560px;
}
.values__cols {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 4rem;
}
.value-col { display: flex; flex-direction: column; }
.value-col__num {
  font-size: .65rem; font-weight: 500; letter-spacing: .22em;
  color: rgba(196,174,150,.65); margin-bottom: 1.75rem;
}
.value-col__line {
  width: 36px; height: 1px; background: rgba(196,174,150,.2);
  margin-bottom: 2rem;
}
.value-col__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-style: italic; font-weight: 400;
  color: var(--cream); margin-bottom: 1.25rem; line-height: 1.25;
}
.value-col__text {
  font-size: .88rem; font-weight: 400; line-height: 1.95;
  color: rgba(221,212,197,.82);
}
@media (max-width: 768px) {
  .values__cols { grid-template-columns: 1fr; gap: 3rem; }
  .values-section { padding: 5rem 0 6rem; }
  .values__inner  { padding: 0 2rem; }
}

/* ============================================================
   QUESTIONS WORTH ASKING PAGE
============================================================ */
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }

/* Hero */
.qwa-hero {
  position: relative; min-height: 75vh;
  display: flex; align-items: flex-end;
  padding-bottom: 7rem; overflow: hidden;
}
.qwa-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
}
.qwa-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,28,20,.93) 25%, rgba(30,28,20,.4) 100%);
}
.qwa-hero__content {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; padding: 0 3rem; width: 100%;
}
.qwa-hero__label {
  display: block;
  font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--beige); margin-bottom: 1.75rem; opacity: .6;
}
.qwa-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400; line-height: 1;
  color: var(--cream); margin-bottom: 2rem;
}
.qwa-hero__title em { font-style: italic; display: block; color: rgba(196,174,150,.85); }
.qwa-hero__sub {
  font-size: clamp(.88rem, 1.4vw, 1rem); font-weight: 300;
  color: rgba(221,212,197,.55); max-width: 400px; line-height: 1.7;
}

/* Opening statement */
.qwa-opening {
  background: var(--white);
  padding: 6rem 2rem;
  border-bottom: 1px solid rgba(196,174,150,.15);
}
.qwa-opening__inner {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.qwa-opening__inner p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  font-style: italic; font-weight: 400;
  line-height: 1.9; color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.qwa-opening__inner p:last-child { font-style: normal; font-weight: 300; color: var(--text-muted); margin-bottom: 0; }

/* Q&A layout */
.qwa-body {
  background: var(--white);
  max-width: 1000px; margin: 0 auto; padding: 2rem 3rem 8rem;
}
.qwa-item {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 0 4rem; align-items: start;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(196,174,150,.15);
}
.qwa-item:last-child { border-bottom: none; }
.qwa-item__left { padding-top: .4rem; }
.qwa-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem; font-weight: 400; line-height: 1;
  color: rgba(174,97,55,.18);
  letter-spacing: -.03em;
}
.qwa-question {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400; font-style: italic;
  color: var(--olive); margin-bottom: 1.75rem; line-height: 1.25;
}
.qwa-answer {
  font-size: 1rem; font-weight: 300; line-height: 2.1;
  color: var(--text-muted);
}

/* CTA final */
.qwa-cta {
  background: var(--olive-dark);
  padding: 8rem 2rem;
  text-align: center;
}
.qwa-cta__pre {
  font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(196,174,150,.45); margin-bottom: 1.5rem;
}
.qwa-cta__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400; color: var(--cream);
  margin-bottom: 3rem; line-height: 1.1;
}
.qwa-cta__title em { font-style: italic; display: block; }
.qwa-cta .btn--outline { border-color: rgba(196,174,150,.65); color: var(--cream); }
.qwa-cta .btn--outline:hover { border-color: var(--beige); color: var(--beige); }

@media (max-width: 768px) {
  .qwa-hero { min-height: 90vw; padding-bottom: 4rem; }
  .qwa-hero__content { padding: 0 1.5rem; }
  .qwa-body { padding: 1rem 1.5rem 5rem; }
  .qwa-item { grid-template-columns: 60px 1fr; gap: 0 1.5rem; padding: 3.5rem 0; }
  .qwa-num { font-size: 3rem; }
  .values-section { padding: 5rem 0 6rem; }
}

@media (max-width: 640px) {
  .qwa-hero { min-height: 85vw; padding-bottom: 3.5rem; }
  .qwa-item { padding: 3rem 0; }
  .qwa-num  { font-size: 3rem; }
}

/* ============================================================
   BLOG
============================================================ */
============================================================ */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.post-card {
  background: var(--white);
  border: 1px solid rgba(196,174,150,.2);
  border-radius: 4px; overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.post-card:hover { box-shadow: 0 8px 30px rgba(44,43,31,.1); transform: translateY(-3px); }
.post-card__img {
  height: 220px;
  background-size: cover; background-position: center;
  background-color: var(--cream);
}
.post-card__body { padding: 1.75rem; }
.post-card__cat {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500;
  margin-bottom: .6rem; display: block;
}
.post-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem; color: var(--olive);
  margin-bottom: .6rem; line-height: 1.3;
}
.post-card__excerpt {
  font-size: .82rem; font-weight: 300; line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card__link {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--olive); font-weight: 500;
  transition: color .2s;
}
.post-card__link:hover { color: var(--terracotta); }
.blog-empty {
  text-align: center; padding: 5rem 2rem;
  color: var(--text-muted);
  font-family: var(--font-serif); font-size: 1.4rem;
  font-style: italic;
}

/* Single article */
.article { max-width: 780px; margin: 0 auto; padding: 5rem 2rem; }
.article__cover {
  width: 100%; height: 480px;
  background-size: cover; background-position: center;
  margin-bottom: 3rem;
  border-radius: 4px;
  background-color: var(--cream);
}
.article__meta { display: flex; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.article__cat { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; }
.article__date { font-size: .72rem; color: var(--text-muted); font-weight: 300; }
.article__title { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--olive); margin-bottom: 1.5rem; }
.article__content { font-size: 1rem; font-weight: 300; line-height: 1.9; color: var(--text); }
.article__content p { margin-bottom: 1.5rem; }
.article__content h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--olive); margin: 2.5rem 0 1rem; }
.article__content h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--olive); margin: 2rem 0 .75rem; }
.article__content img { width: 100%; border-radius: 4px; margin: 2rem 0; }
.article__content a { color: var(--terracotta); text-decoration: underline; }
.article__back { display: inline-flex; align-items: center; gap: .4rem; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--olive); font-weight: 500; margin-bottom: 2rem; transition: gap .2s; }
.article__back:hover { gap: .6rem; }

/* ============================================================
   CONTACT
============================================================ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start;
}
.contact-info__title { font-family: var(--font-serif); font-size: 1.8rem; color: var(--olive); margin-bottom: 1.25rem; }
.contact-info__body { font-size: .9rem; font-weight: 300; line-height: 1.8; color: var(--text-muted); margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: 1rem;
}
.contact-detail__icon { font-size: 1rem; margin-top: 2px; }
.contact-detail__label { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--beige); font-weight: 500; margin-bottom: .2rem; display: block; }
.contact-detail__val { font-size: .88rem; font-weight: 300; color: var(--text-muted); }

.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { display: flex; flex-direction: column; gap: .4rem; }
.form__label { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; color: var(--text-muted); }
.form__input,
.form__select,
.form__textarea {
  font-family: var(--font-sans);
  font-size: .88rem; font-weight: 300; color: var(--text);
  background: var(--white);
  border: 1px solid rgba(196,174,150,.4);
  border-radius: 4px;
  padding: .85rem 1rem;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus { border-color: var(--olive); }
.form__textarea { resize: vertical; min-height: 130px; }
.form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236D694C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form__success { display: none; text-align: center; padding: 2rem; color: var(--olive); font-family: var(--font-serif); font-size: 1.1rem; }

/* ============================================================
   ABOUT
============================================================ */
.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem; margin-top: 4rem;
}
.value__icon { font-size: 1.8rem; margin-bottom: 1rem; }
.value__title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--olive); margin-bottom: .6rem; }
.value__text { font-size: .85rem; font-weight: 300; color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   FORM LOCKED (Stage 3 placeholder)
============================================================ */
.form-locked-wrap {
  position: relative;
}
.form-locked-wrap .form {
  filter: blur(3px);
  opacity: .35;
  pointer-events: none;
  user-select: none;
}
.form-locked {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  padding: 1.5rem;
}
.form-locked__inner {
  background: var(--white);
  border: 1px solid rgba(109,105,76,.15);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(44,43,31,.1);
}
.form-locked__icon {
  width: 48px; height: 48px;
  background: rgba(109,105,76,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.form-locked__icon svg { width: 22px; height: 22px; stroke: var(--olive); }
.form-locked__stage {
  font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: .6rem;
  display: block;
}
.form-locked__title {
  font-family: var(--font-serif);
  font-size: 1.2rem; color: var(--olive);
  margin-bottom: .75rem;
}
.form-locked__desc {
  font-size: .82rem; font-weight: 300; line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.form-locked__actions {
  display: flex; gap: .65rem; justify-content: center; flex-wrap: wrap;
}

/* Brand booking buttons in locked overlay */
.form-locked__brand-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .7rem 1.3rem;
  border-radius: 6px; font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.form-locked__brand-btn:hover { opacity: .88; transform: translateY(-1px); }
.form-locked__links { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* Contact detail icons */
.contact-detail__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(109,105,76,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail__icon svg {
  width: 16px; height: 16px;
  stroke: var(--olive); fill: none;
  stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

/* About value icons */
.value__icon {
  width: 44px; height: 44px;
  background: rgba(109,105,76,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.value__icon svg {
  width: 20px; height: 20px;
  stroke: var(--olive); fill: none;
  stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .split { grid-template-columns: 1fr; }
  .split__img { min-height: 320px; order: 0 !important; }
  .split__text { padding: 3.5rem 2.5rem; order: 1 !important; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-values { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 66px; }

  /* Nav */
  .nav { background: #faf8f5; } /* No backdrop-filter on mobile — avoids fixed stacking context bug */
  .nav.scrolled { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: #faf8f5 !important; }
  .nav__logo img { filter: none !important; height: 58px; max-width: 190px; }
  .nav__burger span { background: var(--text) !important; }
  .nav__links { display: none; } /* hidden on mobile — mobileMenu handles it */
  .nav__burger { display: flex; }
  .nav .btn--sm { display: none; }
  .nav__lang { color: var(--text-muted) !important; border-color: rgba(44,43,31,.2) !important; }
  .nav__actions { gap: .5rem; }

  /* Content */
  .cards { grid-template-columns: 1fr; }
  .card { aspect-ratio: 4/3; }
  .card__desc { max-height: 100px; opacity: 1; }
  .card__link { opacity: 1; transform: translateY(0); }

  /* Footer — simplified on mobile */
  .footer { padding: 3rem 0 1.5rem; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand img { height: 38px; }
  .footer__brand p { max-width: 100%; font-size: .78rem; }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: .75rem;
  }

  .exp-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }

  .section { padding: 4rem 0; }
  .split__text { padding: 2.5rem 1.5rem; }
  .hero__scroll { display: none; }

  /* Contact locked on mobile */
  .form-locked__inner { padding: 2rem 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__title { font-size: 2.4rem; }
  .hero__cta { flex-direction: column; align-items: center; }
  .cards--2 { grid-template-columns: 1fr; }
}

/* ── Mobile menu (outside nav — no stacking context issues) ── */
.mobile-menu { display: none; }

@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    z-index: 2000;
    background: #faf8f5;
    padding: .5rem 0 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s;
    border-bottom: 1px solid rgba(196,174,150,.25);
    box-shadow: 0 8px 24px rgba(44,43,31,.1);
  }
  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu__link {
    display: block;
    padding: .9rem 1.5rem;
    font-size: .82rem; font-weight: 400;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(196,174,150,.12);
    transition: color .2s;
  }
  .mobile-menu__link.active { color: var(--olive); font-weight: 500; }
  .mobile-menu__link:hover { color: var(--text); }
  .mobile-menu__lang {
    font-size: .72rem; letter-spacing: .12em;
    color: #aaa; border-bottom: none; margin-top: .25rem;
  }
}

@media (max-width: 767px) {
  .card__img--fine-dining { background-position: center 80% !important; }
}

/* ============================================================
   18 MOMENTS — full-week page
============================================================ */
.moments-list { max-width: var(--max-w); margin: 0 auto; padding: 0 0 6rem; }

.moment-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.moment-item--alt { direction: rtl; }
.moment-item--alt > * { direction: ltr; }

.moment-item__visual {
  position: relative;
  overflow: hidden;
}
.moment-item__photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease-out);
}
.moment-item:hover .moment-item__photo { transform: scale(1.04); }

.moment-item__num {
  position: absolute;
  top: 2rem; left: 2rem;
  font-family: var(--font-serif);
  font-size: 3rem; font-weight: 300;
  color: rgba(255,255,255,.35);
  line-height: 1;
  letter-spacing: -.02em;
}

.moment-item__content {
  background: var(--bg);
  padding: 4rem;
  display: flex; flex-direction: column; justify-content: center;
  border-bottom: 1px solid rgba(109,105,76,.1);
}
.moment-item--alt .moment-item__content {
  background: var(--cream);
}

.moment-item__title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: var(--olive);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.moment-item__body {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 480px;
}

@media (max-width: 768px) {
  .moment-item { grid-template-columns: 1fr; direction: ltr; }
  .moment-item__visual { min-height: 260px; }
  .moment-item__content { padding: 2.5rem 1.5rem; }
  .moment-item__body { max-width: 100%; }
}

/* ── The Shape of the Experience (home section) ── */
.shape {
  padding: 5rem 0 6rem;
  background: var(--bg);
  overflow: hidden;
}
.shape__layout {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: stretch;
}
.shape__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.shape__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  margin: .75rem 0 1.5rem;
  line-height: 1.2;
}
.shape__body {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 1rem;
}
.shape__tag {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: .75rem 0 2rem;
}
.shape__cta { display: inline-block; }
.shape__images {
  position: relative;
  margin-right: -3rem;
  padding-top: 2.8rem;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  overscroll-behavior-x: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.shape__images::-webkit-scrollbar { display: none; }
.shape__images:active { cursor: grabbing; }
.shape__images::after { display: none; }
.shape__track {
  display: flex;
  gap: 12px;
  padding-right: 3rem;
  height: 100%;
}
.shape__img {
  flex: 0 0 260px;
  height: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transition: opacity .4s;
}
@media (max-width: 1024px) {
  .shape__layout { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 2rem; }
  .shape__images { margin-right: -2rem; }
  .shape__img { flex: 0 0 220px; height: 280px; }
}
@media (max-width: 600px) {
  .shape__img { flex: 0 0 72vw; height: 360px; }

}

/* ── Hero video responsive ── */
.hero__video--mobile  { display: none; }
.hero__video--desktop { display: block; }
@media (max-width: 768px) {
  .hero__video--desktop { display: none; }
  .hero__video--mobile  { display: block; }
}

/* ── About section (home) — AMAN two-column ── */
.home-about { padding: 0; overflow: hidden; }
.home-about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.home-about__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 6rem;
  background: var(--bg);
}
.home-about__body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  font-weight: 400;
  max-width: 500px;
  margin: 1.25rem 0 0;
}
.home-about__cta { margin-top: 2.5rem; display: inline-block; }
.home-about__right {
  position: relative;
  overflow: hidden;
}
.home-about__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 900px) {
  .home-about__layout {
    grid-template-columns: 1fr;
  }
  .home-about__left {
    padding: 4rem 2rem;
  }
  .home-about__right {
    min-height: 400px;
  }
}
