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

:root {
  --cream: #F4EFE8;
  --dark: #18160F;
  --warm: #B89A72;
  --warm-light: #D4B896;
  --muted: #7A7168;
  --stone: #C8BFB0;
  --light-warm: #EDE5D8;
  --white: #FDFAF6;
  --sand: #E8DDD0;
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 32px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav.scrolled {
  padding: 20px 56px;
  background: rgba(244, 239, 232, 0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* solid nav variant for interior pages */
nav.solid {
  background: rgba(244, 239, 232, 0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  transition: color 0.5s;
  text-decoration: none;
}

nav.scrolled .nav-logo,
nav.solid .nav-logo { color: var(--dark); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  transition: all 0.3s;
}

nav.scrolled .nav-links a,
nav.solid .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--white); opacity: 1; }
nav.scrolled .nav-links a:hover,
nav.solid .nav-links a:hover { color: var(--dark); }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.4s;
  cursor: pointer;
}

nav.scrolled .nav-cta,
nav.solid .nav-cta {
  color: var(--dark);
  border-color: var(--dark);
}

.nav-cta:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

nav.scrolled .nav-cta:hover,
nav.solid .nav-cta:hover {
  background: var(--dark);
  color: var(--white);
}

/* burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 300;
}
.nav-burger span {
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: all 0.4s;
}
nav.scrolled .nav-burger span,
nav.solid .nav-burger span { background: var(--dark); }
.nav-burger.active span { background: var(--white); }
.nav-burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { transform: translateY(-0px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.mobile-menu a:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--warm);
  padding: 14px 36px;
  color: var(--warm-light);
  margin-top: 16px;
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.12) 30%,
    rgba(0,0,0,0.62) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 72px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-light);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 13vw, 200px);
  font-weight: 400;
  color: var(--white);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-sub {
  font-size: 16px;
  font-weight: 350;
  line-height: 1.65;
  color: rgba(244, 233, 220, 0.92);
  max-width: 420px;
  letter-spacing: 0.01em;
}

.hero-slide-counter {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  font-style: italic;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-track {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-track::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.7);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ─── MANIFESTO BAND ─── */
.manifesto-band {
  background: var(--dark);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}

.band-track {
  display: flex;
  white-space: nowrap;
  animation: bandScroll 36s linear infinite;
  width: max-content;
}

.band-item {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

.band-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.band-dot {
  width: 4px;
  height: 4px;
  background: var(--warm);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes bandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION UTILITY ─── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--warm);
}

.section-label.light { color: var(--warm-light); }
.section-label.light::before { background: var(--warm-light); }
.section-label.center { justify-content: center; }

/* text link */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s, color 0.3s;
}
.text-link span { transition: transform 0.3s; }
.text-link:hover { gap: 16px; color: var(--dark); }
.text-link.dark { color: var(--dark); margin-top: 40px; }
.text-link.dark:hover { color: var(--warm); }
.text-link.onlight { color: var(--warm-light); }

/* ─── INTRO ─── */
.intro {
  padding: 140px 56px 100px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
}

.intro-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--dark);
}

.intro-heading em { font-style: italic; color: var(--warm); }
.intro-right { padding-top: 12px; }

.intro-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}

.intro-text p + p { margin-top: 22px; }

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 56px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.stat {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.stat:nth-child(odd) { padding-right: 32px; border-right: 1px solid rgba(0,0,0,0.08); }
.stat:nth-child(even) { padding-left: 32px; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── IMAGE STRIP ─── */
.image-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4px;
  height: 80vh;
  max-height: 700px;
}

.strip-img {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.8s ease;
}

.strip-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  z-index: 1;
}

.strip-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%);
}

/* ─── SHOWREEL ─── */
.showreel {
  background: var(--light-warm);
  padding: 130px 56px;
}
.showreel-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.showreel-head { padding-right: 20px; }
.showreel-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.showreel-heading em { font-style: italic; color: var(--warm); }
.showreel-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}
.showreel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reel-card {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--dark);
}
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-card figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 22px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 300;
}
.reel-card figcaption span {
  font-family: 'Playfair Display', serif;
  color: var(--warm-light);
  margin-right: 10px;
}

/* ─── EXPERIENCES ─── */
.experiences {
  background: var(--dark);
  padding: 140px 56px;
}
.experiences-inner { max-width: 1500px; margin: 0 auto; }

.exp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.exp-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--white);
}

.exp-intro-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.exp-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: #1E1C14;
  text-decoration: none;
  display: block;
}

.exp-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.7);
}

.exp-card:hover .exp-card-img {
  transform: scale(1.07);
  filter: brightness(0.55);
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}

.exp-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  z-index: 2;
}

.exp-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: var(--warm-light);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.exp-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.exp-card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.exp-card:hover .exp-card-desc {
  max-height: 100px;
  opacity: 1;
}

.exp-cta { margin-top: 56px; text-align: center; }
.exp-cta .text-link { color: var(--warm-light); }
.exp-cta .text-link:hover { color: var(--white); }

/* ─── QUOTE BREAK ─── */
.quote-section {
  padding: 160px 56px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--stone);
  line-height: 0.5;
  margin-bottom: 40px;
  display: block;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.quote-attr {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── VILLA SECTION ─── */
.villa-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.villa-photo {
  background-size: cover;
  background-position: center;
  min-height: 600px;
}

.villa-content {
  background: var(--light-warm);
  padding: 100px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.villa-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.villa-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 56px;
}

.amenity-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.amenity-list li {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.amenity-list li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--warm);
  flex-shrink: 0;
}

/* ─── MOSAIC ─── */
.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 50vh 50vh;
  gap: 4px;
}

.mosaic-cell {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.mosaic-cell.span2-col { grid-column: span 2; }
.mosaic-cell.span2-row { grid-row: span 2; }

.mosaic-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.06);
  transition: background 0.4s;
}

.mosaic-cell:hover::after { background: rgba(0,0,0,0); }

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 160px 56px;
  background: var(--dark);
}

.testimonials-inner { max-width: 1500px; margin: 0 auto; }
.testimonials-header { margin-bottom: 80px; }

.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.t-card {
  background: rgba(255,255,255,0.03);
  padding: 52px 44px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s;
}

.t-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.t-stars {
  color: var(--warm);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 28px;
}

.t-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

.t-author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.t-author-role {
  font-size: 12px;
  color: var(--warm);
  letter-spacing: 0.06em;
  font-weight: 300;
}

/* ─── CTA ─── */
.cta-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.72));
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 48px;
  max-width: 780px;
}

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.cta-text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  margin-bottom: 52px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 18px 52px;
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s;
  cursor: pointer;
}

.btn-primary:hover { background: var(--warm); color: var(--white); }

.btn-ghost {
  display: inline-block;
  padding: 18px 52px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.4s;
}

.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.cta-details {
  margin-top: 48px;
  display: flex;
  gap: 48px;
  justify-content: center;
}

.cta-detail { text-align: center; }

.cta-detail-val {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}

.cta-detail-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── FOOTER ─── */
footer {
  background: #0F0E09;
  padding: 100px 56px 44px;
  color: var(--white);
}

.footer-inner { max-width: 1500px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 36px;
}

.footer-social { display: flex; gap: 20px; }

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social a:hover { border-color: var(--warm); color: var(--warm); }

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 28px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-bottom: 14px;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

.footer-bottom-links { display: flex; gap: 28px; }

.footer-bottom-links a {
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* ─── ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s cubic-bezier(0.25,0.46,0.45,0.94), transform 1s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 1s ease, transform 1s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 1s ease, transform 1s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.34s; }
.d4 { transition-delay: 0.46s; }
.d5 { transition-delay: 0.58s; }

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.page-hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.25), rgba(0,0,0,0.65));
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 56px 72px;
  max-width: 1500px; margin: 0 auto; width: 100%;
}
.page-hero-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--warm-light); margin-bottom: 20px;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 116px);
  font-weight: 400; color: var(--white);
  line-height: 0.92; letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.page-hero-sub {
  font-size: 16px; line-height: 1.65; font-weight: 300;
  color: rgba(244,233,220,0.9); max-width: 480px;
}

/* generic content section */
.content-section { padding: 130px 56px; max-width: 1500px; margin: 0 auto; }
.content-section.tight { max-width: 980px; }

.two-col {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; align-items: start;
}
.lead-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400; line-height: 1.12; letter-spacing: -0.025em;
}
.lead-heading em { font-style: italic; color: var(--warm); }
.body-text { font-size: 16px; line-height: 1.85; color: var(--muted); font-weight: 300; }
.body-text p + p { margin-top: 22px; }

/* schedule / timeline */
.schedule { background: var(--light-warm); padding: 130px 56px; }
.schedule-inner { max-width: 1100px; margin: 0 auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: baseline;
}
.timeline-time {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--warm); letter-spacing: -0.01em;
}
.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 400; color: var(--dark); margin-bottom: 8px;
}
.timeline-desc { font-size: 14px; line-height: 1.7; color: var(--muted); font-weight: 300; }

/* detailed experience rows */
.exp-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.exp-detail:nth-child(even) .exp-detail-media { order: 2; }
.exp-detail-media { background-size: cover; background-position: center; min-height: 400px; position: relative; overflow: hidden; }
.exp-detail-media video { width: 100%; height: 100%; object-fit: cover; }
.exp-detail-body {
  padding: 100px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream);
}
.exp-detail:nth-child(even) .exp-detail-body { background: var(--light-warm); }
.exp-detail-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px; color: var(--warm); letter-spacing: 0.1em; margin-bottom: 18px;
}
.exp-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 400; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 24px;
}
.exp-detail-text { font-size: 15px; line-height: 1.85; color: var(--muted); font-weight: 300; margin-bottom: 32px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--stone);
  padding: 8px 16px;
}

/* values grid (about) */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 80px;
}
.value-card {
  background: var(--light-warm); padding: 52px 44px; min-height: 280px;
  display: flex; flex-direction: column;
}
.value-num {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 28px; color: var(--warm); margin-bottom: 28px;
}
.value-title {
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 400;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.value-text { font-size: 14px; line-height: 1.75; color: var(--muted); font-weight: 300; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 24px; }
.team-card { }
.team-photo {
  aspect-ratio: 4/5; background-size: cover; background-position: center;
  margin-bottom: 24px; filter: grayscale(0.15);
}
.team-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; margin-bottom: 6px; }
.team-role { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm); margin-bottom: 16px; }
.team-bio { font-size: 14px; line-height: 1.7; color: var(--muted); font-weight: 300; }

/* big stat band */
.stat-band { background: var(--dark); padding: 110px 56px; }
.stat-band-inner {
  max-width: 1500px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.bigstat { text-align: center; }
.bigstat-num {
  font-family: 'Playfair Display', serif; font-size: clamp(44px, 5vw, 72px);
  color: var(--white); line-height: 1; letter-spacing: -0.03em; margin-bottom: 14px;
}
.bigstat-num em { font-style: italic; color: var(--warm); }
.bigstat-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─── APPLICATION MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 13, 9, 0.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.modal-panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 860px; max-height: 94vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1.35fr;
  background: var(--cream);
  transform: translateY(40px) scale(0.98);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  scrollbar-width: none;
}
.modal-panel::-webkit-scrollbar { display: none; }
.modal-overlay.open .modal-panel { transform: translateY(0) scale(1); }
.modal-left {
  background: var(--dark);
  padding: 64px 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.modal-left-bg {
  position: absolute; inset: 0;
  background-image: url('assets/aerial-villa.jpg');
  background-size: cover; background-position: center; opacity: 0.18;
}
.modal-left-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.modal-brand { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; color: var(--white); letter-spacing: 0.05em; }
.modal-left-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 48px 0; }
.modal-eyebrow { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--warm); margin-bottom: 20px; }
.modal-left-heading { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 400; line-height: 1.15; color: var(--white); letter-spacing: -0.02em; margin-bottom: 24px; }
.modal-left-text { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.45); font-weight: 300; margin-bottom: 40px; }
.modal-details { display: flex; flex-direction: column; gap: 14px; }
.modal-detail-row { display: flex; align-items: center; gap: 12px; }
.modal-detail-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--warm); flex-shrink: 0; }
.modal-detail-text { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }
.modal-left-footer { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.08em; line-height: 1.6; }
.modal-right { padding: 56px 52px; background: var(--cream); display: flex; flex-direction: column; }
.modal-close {
  position: absolute; top: 28px; right: 32px;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: none; border: 1px solid rgba(0,0,0,0.1);
  color: var(--muted); font-size: 18px; transition: all 0.3s; z-index: 2; line-height: 1;
}
.modal-close:hover { border-color: var(--dark); color: var(--dark); background: rgba(0,0,0,0.04); }
.modal-form-heading { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; color: var(--dark); letter-spacing: -0.02em; margin-bottom: 8px; }
.modal-form-sub { font-size: 13px; color: var(--muted); font-weight: 300; margin-bottom: 40px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 400; }
.form-input, .form-select, .form-textarea {
  background: var(--white); border: 1px solid var(--stone);
  padding: 14px 18px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--dark); outline: none; transition: border-color 0.3s, box-shadow 0.3s;
  border-radius: 0; -webkit-appearance: none; appearance: none; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--stone); font-weight: 300; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--warm); box-shadow: 0 0 0 3px rgba(184, 154, 114, 0.12); }
.form-select {
  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='%237A7168' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; cursor: pointer;
}
.form-select option { color: var(--dark); background: var(--cream); }
.form-textarea { resize: none; min-height: 110px; line-height: 1.65; }
.form-submit {
  width: 100%; padding: 17px 24px; background: var(--dark); color: var(--white); border: none;
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; transition: all 0.4s; margin-top: 8px;
}
.form-submit:hover { background: var(--warm); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-disclaimer { font-size: 11px; color: var(--stone); text-align: center; margin-top: 16px; line-height: 1.5; }
.modal-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 56px 40px; flex: 1; }
.modal-success.active { display: flex; }
.modal-form-body.hidden { display: none; }
.success-mark { width: 56px; height: 56px; border: 1px solid var(--warm); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; color: var(--warm); font-size: 20px; }
.success-heading { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; color: var(--dark); margin-bottom: 14px; letter-spacing: -0.02em; }
.success-text { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; max-width: 300px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-carousel { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
  .showreel-inner { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stat-band-inner { grid-template-columns: 1fr 1fr; gap: 56px 24px; }
}

@media (max-width: 900px) {
  .modal-panel { grid-template-columns: 1fr; max-width: 540px; }
  .modal-left { display: none; }
  .modal-right { padding: 56px 36px 40px; }
  .modal-close { top: 20px; right: 20px; }
  .form-row { grid-template-columns: 1fr; }
  nav { padding: 22px 28px; }
  nav.scrolled, nav.solid { padding: 16px 28px; }
  .nav-links, .nav-right .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding: 0 28px 56px; }
  .intro { padding: 80px 28px 60px; grid-template-columns: 1fr; gap: 40px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .image-strip { grid-template-columns: 1fr 1fr; height: auto; max-height: none; }
  .image-strip .strip-img { min-height: 260px; }
  .image-strip .strip-img:first-child { grid-column: span 2; min-height: 55vw; }
  .villa-section { grid-template-columns: 1fr; }
  .villa-photo { min-height: 55vw; }
  .villa-content { padding: 60px 28px; }
  .experiences { padding: 80px 28px; }
  .showreel { padding: 80px 28px; }
  .exp-header { grid-template-columns: 1fr; gap: 24px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { aspect-ratio: 16/9; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-cell { min-height: 240px; }
  .mosaic-cell.span2-col { grid-column: span 2; }
  .mosaic-cell.span2-row { grid-row: span 1; }
  .testimonials { padding: 80px 28px; }
  .cta-content { padding: 60px 24px; }
  .cta-details { gap: 28px; flex-wrap: wrap; }
  footer { padding: 72px 28px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .content-section { padding: 80px 28px; }
  .schedule { padding: 80px 28px; }
  .exp-detail { grid-template-columns: 1fr; }
  .exp-detail:nth-child(even) .exp-detail-media { order: 0; }
  .exp-detail-media { min-height: 56vw; }
  .exp-detail-body { padding: 56px 28px; }
  .page-hero-content { padding: 0 28px 56px; }
  .timeline-item { grid-template-columns: 90px 1fr; gap: 20px; }
  .stat-band { padding: 72px 28px; }
}

@media (max-width: 600px) {
  .modal-right { padding: 48px 24px 36px; }
  .hero-title { font-size: 64px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .showreel-grid { grid-template-columns: 1fr; }
  .reel-card { aspect-ratio: 4/5; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic-cell.span2-col { grid-column: span 1; }
  .image-strip { grid-template-columns: 1fr; }
  .image-strip .strip-img:first-child { grid-column: span 1; }
  .amenity-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stat-band-inner { grid-template-columns: 1fr; }
  footer { padding: 56px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
