/* ===================================================
   Island Wide Travel — High-End Editorial Redesign
   =================================================== */

:root {
  --gold: #B8962E;
  --gold-bright: #D4AF57;
  --gold-pale: #F5EDD6;
  --gold-glow: rgba(184, 150, 46, 0.35);
  --ink: #111111;
  --ink-soft: #2A2A2A;
  --cream: #F7F4EE;
  --cream-dark: #EDE8DC;
  --white: #FFFFFF;
  --muted: #7A7570;
  --line: rgba(17, 17, 17, 0.1);
  --dark: #0A0A0A;
  --radius: 4px;
  --radius-lg: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Outfit', system-ui, sans-serif;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  cursor: default;
}

body.loading { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner { text-align: center; }

.preloader__logo {
  height: 56px;
  width: auto;
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeIn 0.6s var(--ease) 0.2s forwards;
}

.preloader__bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  animation: loadBar 1.4s var(--ease) 0.4s forwards;
}

@keyframes loadBar { to { width: 100%; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ---- Scroll Progress ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ---- Cursor Glow ---- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: soft-light;
}

body.cursor-active .cursor-glow { opacity: 1; }

@media (hover: none) { .cursor-glow { display: none; } }

/* ---- Social Rail ---- */
.social-rail {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 12px;
  background: var(--ink);
  border-radius: 8px 0 0 8px;
}

.social-rail__text {
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.social-rail a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  transition: all 0.4s var(--ease);
}

.social-rail a:hover {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: scale(1.12);
  box-shadow: 0 0 24px var(--gold-glow);
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 16px clamp(20px, 4vw, 48px);
  transition: all 0.5s var(--ease);
}

.site-header.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header__shell {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  transition: all 0.5s var(--ease);
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.site-header.scrolled .site-header__shell {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.site-header__logo img { height: 42px; width: auto; }

.site-nav {
  display: flex;
  gap: 32px;
}

.site-nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  overflow: hidden;
  padding: 4px 0;
}

.site-nav__link::before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--gold);
  transition: transform 0.4s var(--ease);
}

.site-nav__link:hover { color: transparent; }
.site-nav__link:hover::before { transform: translateY(-100%); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__phone {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s;
}

.site-header__phone:hover { color: var(--gold); }

.menu-trigger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.menu-trigger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.4s var(--ease);
}

.menu-trigger.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.menu-trigger.active span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--ink);
  z-index: 850;
  padding: 100px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease);
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-drawer__nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-drawer__nav a:hover { color: var(--gold-bright); padding-left: 12px; }

.mobile-drawer__nav .btn { margin-top: 24px; border-radius: 100px; }

.mobile-drawer__contact {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.mobile-drawer__contact a { color: var(--gold-bright); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 840;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  backdrop-filter: blur(4px);
}

.drawer-backdrop.open { opacity: 1; visibility: visible; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}

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

.btn--primary:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.btn--sm { padding: 10px 22px; font-size: 0.75rem; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--line {
  background: transparent;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  padding: 8px 0;
  font-size: 0.78rem;
}

.btn--line:hover { color: var(--gold); letter-spacing: 0.1em; }

.btn--glass {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn--glass:hover {
  background: var(--white);
  color: var(--ink);
}

.btn__loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn.loading .btn__text { opacity: 0; }
.btn.loading .btn__loader { display: block; position: absolute; }

@keyframes spin { to { transform: rotate(360deg); } }

.text-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link--light { color: var(--gold-bright); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, transparent 30%),
    linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 40%),
    linear-gradient(to right, rgba(10,10,10,0.7) 0%, transparent 50%);
}

.hero__layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pill {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(212, 175, 87, 0.4);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.hero__location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__headline .line { display: block; overflow: hidden; }

.hero__headline .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: wordReveal 1s var(--ease-out) forwards;
}

.hero__headline .line:nth-child(1) .word:nth-child(1) { animation-delay: 0.5s; }
.hero__headline .line:nth-child(1) .word:nth-child(2) { animation-delay: 0.62s; }
.hero__headline .line--gold .word:nth-child(1) { animation-delay: 0.74s; color: var(--gold-bright); }
.hero__headline .line--gold .word:nth-child(2) { animation-delay: 0.86s; color: var(--gold-bright); }
.hero__headline .line--gold .word:nth-child(3) { animation-delay: 0.98s; color: var(--gold-bright); }

@keyframes wordReveal {
  to { transform: translateY(0); opacity: 1; }
}

.hero__lede {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero__stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat-chip {
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease);
}

.stat-chip:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.stat-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-chip span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  animation: scrollLine 2s var(--ease) infinite;
}

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

/* ---- Booking Panel ---- */
.booking-panel {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

.booking-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}

.booking-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.booking-panel__head h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 4px;
}

.booking-panel__steps {
  display: flex;
  gap: 8px;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: all 0.4s var(--ease);
}

.step-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 12px var(--gold-glow);
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow--gold { color: var(--gold-bright); }

.form-stage {
  display: none;
  animation: stageIn 0.5s var(--ease) forwards;
}

.form-stage.active { display: block; }

@keyframes stageIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.stage-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 20px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field { margin-bottom: 4px; }
.field--full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.field label em { color: #c0392b; font-style: normal; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--ink);
  transition: all 0.35s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.field input.error,
.field select.error { border-color: #c0392b; }

.form-error {
  display: block;
  font-size: 0.72rem;
  color: #c0392b;
  min-height: 16px;
  margin-top: 4px;
}

.field--check { margin-top: 8px; }

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  cursor: pointer;
}

.check-row input { position: absolute; opacity: 0; }

.check-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 3px;
  margin-top: 2px;
  transition: all 0.3s;
  position: relative;
}

.check-row input:checked + .check-box {
  background: var(--gold);
  border-color: var(--gold);
}

.check-row input:checked + .check-box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.stage-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.stage-nav .btn--primary { flex: 1; }

.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ---- Marquee ---- */
.marquee-band {
  background: var(--ink);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-band__track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-band__track span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}

.marquee-band__track .dot {
  color: var(--gold);
  font-size: 0.6rem;
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Panels ---- */
.panel {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}

.panel--cream { background: var(--cream); }
.panel--dark { background: var(--dark); padding-bottom: 0; }

.panel__number {
  position: absolute;
  top: clamp(40px, 8vw, 80px);
  right: clamp(20px, 4vw, 48px);
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: rgba(17,17,17,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.panel__number--light { color: rgba(255,255,255,0.04); }

.panel-head { margin-bottom: clamp(48px, 8vw, 72px); }
.panel-head--light .display-title { color: var(--white); }
.panel-head__sub { color: var(--muted); margin-top: 12px; max-width: 480px; }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
}

.display-title i { font-style: italic; color: var(--gold); }
.display-title--light { color: var(--white); }
.display-title--light i { color: var(--gold-bright); }

.lead { font-size: 1.05rem; color: var(--muted); margin-bottom: 16px; }

/* ---- About Bento ---- */
.bento-about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.frame-stack {
  position: relative;
}

.frame-stack__back {
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.4;
}

.frame-stack__main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.frame-stack__main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.frame-stack:hover .frame-stack__main img { transform: scale(1.06); }

.frame-stack__accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--ink);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.frame-stack__num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}

.frame-stack__accent span:last-child {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.perk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
}

.perk:hover {
  border-color: var(--gold);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.perk span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.founder-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  margin-top: 8px;
}

.founder-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.founder-card strong { display: block; font-size: 1rem; }
.founder-card > div > span { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.05em; text-transform: uppercase; }
.founder-card p { font-size: 0.88rem; color: var(--muted); margin-top: 8px; }

/* ---- Services Stack ---- */
.service-stack { border-top: 1px solid var(--line); }

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: all 0.5s var(--ease);
  transform-style: preserve-3d;
}

.service-row:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, var(--gold-pale), transparent);
}

.service-row__index {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  transition: color 0.4s;
}

.service-row:hover .service-row__index { color: var(--gold); }

.service-row__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
  transition: transform 0.4s var(--ease);
}

.service-row:hover .service-row__body h3 { transform: translateX(8px); }

.service-row__body p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 640px;
}

.service-row__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.6s var(--ease);
}

.service-row:hover .service-row__line { width: 100%; }

/* ---- Destinations Scroll ---- */
.dest-scroll {
  display: flex;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 48px) clamp(80px, 12vw, 140px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.dest-scroll::-webkit-scrollbar { display: none; }

.dest-slide {
  flex: 0 0 min(420px, 85vw);
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform 0.5s var(--ease);
}

.dest-slide--wide {
  flex: 0 0 min(560px, 90vw);
  aspect-ratio: 16/10;
}

.dest-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.dest-slide:hover img { transform: scale(1.08); }

.dest-slide__info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  transform: translateY(20px);
  opacity: 0.9;
  transition: all 0.5s var(--ease);
}

.dest-slide:hover .dest-slide__info {
  transform: translateY(0);
  background: linear-gradient(to top, rgba(184,150,46,0.9) 0%, transparent 60%);
}

.dest-slide__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
}

.dest-slide__info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.dest-slide__info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* ---- Fleet Grid (3 × 2) ---- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-pale);
}

.fleet-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.fleet-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.fleet-card:hover .fleet-card__image img {
  transform: scale(1.06);
}

.fleet-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--ink);
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 100px;
}

.fleet-card__body {
  padding: 24px;
}

.fleet-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.fleet-card__body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ---- Process ---- */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 8vw, 80px);
}

.process-layout__sticky {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  align-self: start;
}

.process-progress {
  width: 2px;
  height: 200px;
  background: var(--cream-dark);
  margin-top: 40px;
  position: relative;
  border-radius: 2px;
}

.process-progress__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--gold-bright));
  border-radius: 2px;
  transition: height 0.6s var(--ease);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-card {
  padding: 40px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height 0.5s var(--ease);
}

.process-card.active {
  background: var(--white);
  border-color: var(--gold-pale);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.process-card.active::before { height: 100%; }

.process-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.4s;
}

.process-card.active .process-card__num { color: var(--gold); }

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.process-card p { font-size: 0.9rem; color: var(--muted); }

/* ---- Reviews ---- */
.review-stage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.review-stage__mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--gold-pale);
  margin-bottom: -20px;
}

#testimonialTrack { position: relative; min-height: 200px; }

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s var(--ease);
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
}

.testimonial-slide cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-slide cite span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

.avatar-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.avatar-stack__img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  opacity: 0.4;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.avatar-stack__img.active {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.15);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.review-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-controls__btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all 0.35s var(--ease);
}

.review-controls__btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.review-controls__dots {
  display: flex;
  gap: 8px;
}

.review-controls__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  padding: 0;
  transition: all 0.35s;
}

.review-controls__dots button.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ---- Contact Panel ---- */
.panel--contact {
  position: relative;
  padding: clamp(100px, 15vw, 160px) 0;
  overflow: hidden;
}

.contact-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s linear;
}

.panel--contact:hover .contact-panel__bg { transform: scale(1); }

.contact-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88), rgba(184,150,46,0.25));
}

.contact-panel__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.contact-panel__inner p {
  max-width: 560px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}

.contact-panel__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 0;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer__brand img { height: 48px; margin-bottom: 16px; }
.site-footer__brand p { font-size: 0.85rem; line-height: 1.7; }

.site-footer__col h4,
.site-footer__gallery h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.site-footer__col a,
.site-footer__col p {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.site-footer__col a:hover { color: var(--gold-bright); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.site-footer__grid img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0.7;
  transition: all 0.4s;
}

.site-footer__grid img:hover { opacity: 1; transform: scale(1.05); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.78rem;
}

.site-footer__bottom a { color: var(--gold-bright); }

/* ---- Back Top ---- */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--gold-bright);
  border-radius: 50%;
  font-size: 1.2rem;
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.45s var(--ease);
  border: 1px solid rgba(255,255,255,0.1);
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-4px);
}

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease);
}

.modal.open { opacity: 1; visibility: visible; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}

.modal__sheet {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 540px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.5s var(--ease);
}

.modal.open .modal__sheet { transform: translateY(0) scale(1); }

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.75rem;
  color: var(--muted);
}

.modal__sheet h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 24px;
}

.modal__body h3 {
  font-size: 0.95rem;
  color: var(--gold);
  margin: 20px 0 8px;
}

.modal__body p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  padding: 16px 32px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.88rem;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease);
  max-width: 90%;
  text-align: center;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast.error {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

/* ---- Animations ---- */
.anim-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.anim-up.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-left { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-up { transform: translateY(48px); }

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  opacity: 1;
  transform: translate(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .site-nav, .site-header__phone { display: none; }
  .menu-trigger { display: flex; }

  .hero__layout { grid-template-columns: 1fr; }
  .hero__copy { text-align: center; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__stats { justify-content: center; }

  .bento-about { grid-template-columns: 1fr; }
  .frame-stack__main img { height: 400px; }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-layout { grid-template-columns: 1fr; }
  .process-layout__sticky { position: static; }
  .process-progress { display: none; }

  .review-stage { grid-template-columns: 1fr; }
  .avatar-stack { flex-direction: row; }

  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .field-grid { grid-template-columns: 1fr; }
  .perk-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 56px 1fr; gap: 16px; padding: 28px 0; }
  .fleet-grid { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; }

  .social-rail {
    top: auto;
    bottom: 100px;
    transform: none;
    flex-direction: row;
    border-radius: 100px 0 0 100px;
    padding: 10px 14px;
  }

  .social-rail__text { writing-mode: horizontal-tb; }

  .back-top { bottom: 100px; right: 16px; }

  .hero__scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-left, .reveal-right, .reveal-up, .anim-up {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}
