@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* Caribbean premium palette */
  --bg-sand: #f3e4d2;
  --bg-sand-light: #f8eddc;
  --bg-sand-white: #fff8ef;
  --charcoal: #062636;
  --charcoal-muted: #506a70;
  --accent-clay: #f06a3d;
  --ocean: #007c8f;
  --ocean-bright: #18c7bd;
  --sun: #f9b857;
  --palm: #10a978;
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Space Grotesk', sans-serif;
  
  /* Sharp Architectural Grid Details */
  --border-width: 1px;
  --border-color: #0d3340;
  --radius: 0px;
  --max-width: 1240px;
}

/* ==========================================
   RESET & GOXYVI CORE SYSTEM
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  background:
    linear-gradient(180deg, rgba(223, 249, 255, 0.34) 0%, rgba(243, 228, 210, 0) 520px),
    linear-gradient(115deg, rgba(24, 199, 189, 0.10) 0%, rgba(243, 228, 210, 0) 42%),
    var(--bg-sand);
  color: var(--charcoal);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.intro-active {
  overflow: hidden;
}

/* ==========================================
   CINEMATIC OPENING
   ========================================== */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #041d2a;
  color: var(--bg-sand);
  pointer-events: auto;
  animation: introAutoHide 3600ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.site-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 248, 239, 0.12) 1px, transparent 1px);
  background-size: 12.5vw 100%, 100% 18vh;
  opacity: 0;
  animation: introGrid 1800ms ease forwards 520ms;
}

.site-intro-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.24) brightness(0.88) contrast(1.08);
  transform: scale(1.14);
  animation: introVideo 3200ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.site-intro-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 29, 42, 0.84), rgba(0, 124, 143, 0.18), rgba(4, 29, 42, 0.78)),
    linear-gradient(180deg, rgba(4, 29, 42, 0.68), rgba(4, 29, 42, 0.12) 48%, rgba(4, 29, 42, 0.78));
}

.site-intro-panels {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
}

.site-intro-panels span {
  background: #041d2a;
  transform: scaleX(1);
  animation: introPanelOpen 1150ms cubic-bezier(0.8, 0, 0.16, 1) forwards 2300ms;
}

.site-intro-panels span:first-child {
  transform-origin: left center;
  border-right: var(--border-width) solid rgba(230, 216, 200, 0.26);
}

.site-intro-panels span:last-child {
  transform-origin: right center;
  border-left: var(--border-width) solid rgba(230, 216, 200, 0.26);
}

.site-intro-content {
  position: relative;
  z-index: 5;
  display: grid;
  justify-items: center;
  width: min(620px, calc(100% - 44px));
  text-align: center;
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  animation: introBrandIn 1000ms cubic-bezier(0.16, 1, 0.3, 1) forwards 220ms,
             introBrandOut 760ms cubic-bezier(0.8, 0, 0.16, 1) forwards 2150ms;
}

.site-intro-kicker {
  margin-bottom: 18px;
  border: var(--border-width) solid rgba(255, 248, 239, 0.52);
  color: var(--bg-sand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 16px;
}

.site-intro-content img {
  width: min(360px, 68vw);
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.site-intro-content strong {
  display: block;
  margin-top: 18px;
  color: var(--bg-sand);
  font-family: var(--font-serif);
  font-size: clamp(26px, 5vw, 54px);
  font-weight: 300;
  line-height: 1;
}

.site-intro-line {
  position: relative;
  width: min(360px, 58vw);
  height: 1px;
  margin-top: 32px;
  overflow: hidden;
  background: rgba(230, 216, 200, 0.22);
}

.site-intro-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--ocean-bright), var(--sun), var(--accent-clay));
  transform: translateX(-100%);
  animation: introLine 1800ms cubic-bezier(0.16, 1, 0.3, 1) forwards 520ms;
}

.site-intro.is-finishing {
  pointer-events: none;
  animation: introAutoHide 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.site-intro.is-gone {
  display: none;
  pointer-events: none;
}

@keyframes introVideo {
  0% { opacity: 0; transform: scale(1.14); }
  22% { opacity: 0.58; }
  100% { opacity: 0.9; transform: scale(1.02); }
}

@keyframes introGrid {
  0% { opacity: 0; transform: scaleY(0.92); }
  100% { opacity: 1; transform: scaleY(1); }
}

@keyframes introBrandIn {
  0% { opacity: 0; transform: translateY(18px) scale(0.96); filter: blur(10px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

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

@keyframes introBrandOut {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-26px) scale(1.04); filter: blur(8px); }
}

@keyframes introPanelOpen {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

@keyframes introAutoHide {
  0%, 74% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

@media (max-width: 580px) {
  .site-intro::before {
    background-size: 25vw 100%, 100% 16vh;
  }

  .site-intro-kicker {
    font-size: 10px;
    padding: 8px 12px;
  }

  .site-intro-content img {
    width: min(280px, 72vw);
  }

  .site-intro-content strong {
    max-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro {
    display: none;
    animation: none;
  }

  body.intro-active {
    overflow: auto;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  filter: saturate(1.08) contrast(1.02);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Custom Minimalist Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-sand);
  border-left: 1px solid var(--border-color);
}
::-webkit-scrollbar-thumb {
  background: var(--charcoal);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-clay);
}

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

/* ==========================================
   ARCHITECTURAL NAV (GRID HEADER)
   ========================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: var(--bg-sand);
  border-bottom: var(--border-width) solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  background: var(--bg-sand-light);
  box-shadow: 0 10px 30px rgba(30, 26, 21, 0.05);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  transition: min-height 0.3s ease;
}
.site-header.scrolled .nav {
  min-height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-right: var(--border-width) solid var(--border-color);
  height: 80px;
  transition: height 0.3s ease;
}
.site-header.scrolled .brand {
  height: 70px;
}
.brand img {
  width: 148px;
  height: auto;
  filter: contrast(1.1) brightness(0.9);
}

.desktop-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.desktop-nav a {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  padding: 0 28px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  border-right: var(--border-width) solid var(--border-color);
}
.site-header.scrolled .desktop-nav a {
  height: 70px;
}

.desktop-nav a:hover {
  background: var(--bg-sand-light);
  color: var(--accent-clay);
}

.desktop-nav a.active {
  color: var(--accent-clay);
  background: var(--bg-sand-white);
}

/* Dynamic active nav dot indicator */
.desktop-nav a.active::before {
  content: "●";
  color: var(--accent-clay);
  font-size: 8px;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  margin: 0 18px;
  border: var(--border-width) solid var(--border-color);
  background: var(--bg-sand-white);
}

.language-switch button {
  min-width: 42px;
  min-height: 38px;
  border: 0;
  border-right: var(--border-width) solid var(--border-color);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switch button:last-child {
  border-right: 0;
}

.language-switch button.active {
  background: var(--charcoal);
  color: var(--bg-sand);
}

.mobile-language-switch {
  width: max-content;
  margin: 14px 0 8px;
}

.site-header .btn {
  margin-right: 24px;
  border-radius: var(--radius);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  width: 60px;
  height: 80px;
  border: 0;
  border-left: var(--border-width) solid var(--border-color);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.site-header.scrolled .menu-toggle {
  height: 70px;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  content: "";
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
  left: 0;
}
.menu-toggle span::after {
  position: absolute;
  bottom: -6px;
  left: 0;
}

.menu-open .menu-toggle span {
  background: transparent;
}
.menu-open .menu-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}
.menu-open .menu-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile panel */
.mobile-panel {
  display: none;
  position: fixed;
  inset: 81px 0 auto 0;
  z-index: 999;
  border-bottom: var(--border-width) solid var(--border-color);
  background: var(--bg-sand-light);
  padding: 24px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.site-header.scrolled + .mobile-panel {
  inset: 71px 0 auto 0;
}

.mobile-panel.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel a {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  padding: 14px 16px;
  border-bottom: var(--border-width) solid var(--border-color);
}
.mobile-panel a:last-of-type {
  border-bottom: 0;
}
.mobile-panel a:hover {
  color: var(--accent-clay);
  background: var(--bg-sand-white);
}

.mobile-panel .btn {
  width: 100%;
  margin-top: 20px;
}

/* ==========================================
   BUTTONS (FLAT HIGH-CONTRAST BOLD)
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: var(--border-width) solid var(--border-color);
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ocean), var(--ocean-bright));
  color: white;
  border-color: var(--ocean);
  box-shadow: 0 14px 28px rgba(0, 124, 143, 0.22);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-clay), var(--sun));
  border-color: var(--accent-clay);
  color: var(--charcoal);
}

.btn-dark {
  background: var(--charcoal);
  color: white;
}
.btn-dark:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  color: white;
}

.btn-ghost {
  border-color: var(--border-color);
  color: var(--charcoal);
}
.btn-ghost:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  color: white;
}

.btn-outline {
  border: var(--border-width) solid var(--border-color);
  background: var(--bg-sand-white);
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--accent-clay);
  border-color: var(--accent-clay);
  color: white;
}

/* ==========================================
   CARIBBEAN HERO (WOW-HERO)
   ========================================== */
.wow-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--bg-sand);
  color: var(--charcoal);
  padding: 140px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: var(--border-width) solid var(--border-color);
}

/* Full-color beach video with a clean premium wash */
.wow-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.34) brightness(0.98) contrast(1.1);
  opacity: 0.94;
}

.wow-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(255, 248, 239, 0.88) 0%, rgba(255, 248, 239, 0.68) 38%, rgba(255, 248, 239, 0.15) 66%, rgba(6, 38, 54, 0.04) 100%),
    linear-gradient(180deg, rgba(223, 249, 255, 0.04) 0%, rgba(243, 228, 210, 0.22) 72%, rgba(243, 228, 210, 0.86) 100%),
    linear-gradient(135deg, rgba(24, 199, 189, 0.12) 0%, transparent 46%),
    linear-gradient(315deg, rgba(249, 184, 87, 0.14) 0%, transparent 48%);
  z-index: 1;
}

.wow-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
  background-image: linear-gradient(90deg, rgba(6, 38, 54, 0.24) 1px, transparent 1px),
                    linear-gradient(180deg, rgba(6, 38, 54, 0.18) 1px, transparent 1px);
  background-size: 36px 36px;
}

.wow-stage {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.25fr 410px;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.wow-copy {
  max-width: 780px;
}

.wow-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--ocean);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  border-bottom: var(--border-width) solid var(--ocean);
  padding-bottom: 4px;
}

.wow-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0;
}

.wow-copy h1 span {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--accent-clay);
  text-shadow: 0 14px 38px rgba(240, 106, 61, 0.18);
  text-transform: none;
}

.wow-copy h1 strong {
  display: block;
  font-weight: 400;
  color: var(--charcoal);
}

.wow-copy p {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--charcoal-muted);
  margin-top: 30px;
  max-width: 580px;
  font-weight: 400;
}

.wow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

/* ==========================================
   RESERVATION CARD (GOXYVI ARCHITECTURE BOARD)
   ========================================== */
.wow-reservation {
  position: relative;
  background: rgba(255, 248, 239, 0.9);
  border: var(--border-width) solid rgba(13, 51, 64, 0.72);
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(6, 38, 54, 0.16);
  backdrop-filter: blur(16px);
}

.wow-reservation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean-bright), var(--sun), var(--accent-clay));
}

.wow-reservation-head span {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  letter-spacing: 0.1em;
  display: block;
}

.wow-reservation-head strong {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  display: block;
  margin-top: 4px;
}

.wow-route-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: var(--border-width) solid var(--border-color);
  padding: 20px;
  margin-top: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wow-route-card:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 124, 143, 0.18);
}

.wow-route-card > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-bright));
  color: white;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.wow-route-card div {
  flex-grow: 1;
}

.wow-route-card strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

.wow-route-card small {
  display: block;
  font-size: 12px;
  color: var(--charcoal-muted);
  margin-top: 4px;
}

.wow-reservation-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.wow-reservation-foot span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: var(--border-width) solid var(--border-color);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  padding: 10px;
  letter-spacing: 0.05em;
}

.wow-reservation-foot span:hover {
  background: var(--charcoal);
  color: var(--bg-sand);
}

/* ==========================================
   HERO POSTCARD GALLERY
   ========================================== */
.wow-gallery {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  align-items: end;
  margin-top: 40px;
}

.wow-gallery-card {
  position: relative;
  overflow: hidden;
  border: var(--border-width) solid rgba(13, 51, 64, 0.74);
  aspect-ratio: 16/11;
  background: var(--bg-sand-light);
  box-shadow: 0 18px 42px rgba(6, 38, 54, 0.12);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wow-gallery-card.is-tall {
  aspect-ratio: 16/13;
}

.wow-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.04);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.wow-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(4, 29, 42, 0.82) 94%),
    linear-gradient(120deg, rgba(24, 199, 189, 0.16), transparent 42%);
  z-index: 1;
}

.wow-gallery-card span {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  color: white;
}

.wow-gallery-card:hover {
  border-color: var(--ocean-bright);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 124, 143, 0.18);
}
.wow-gallery-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.24) contrast(1.08);
}
.wow-gallery-card:hover span {
  color: white;
}

/* ==========================================
   SOCIAL PROOF (BLUEPRINT BLOCKS)
   ========================================== */
.wow-proof {
  background:
    linear-gradient(120deg, #041d2a 0%, var(--charcoal) 42%, var(--ocean) 100%);
  position: relative;
  z-index: 4;
  border-top: var(--border-width) solid rgba(255, 255, 255, 0.16);
  border-bottom: var(--border-width) solid rgba(255, 255, 255, 0.16);
}

.wow-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.wow-proof-grid div {
  padding: 44px 30px;
  text-align: center;
  border-right: var(--border-width) solid rgba(255, 248, 239, 0.18);
}

.wow-proof-grid div:last-child {
  border-right: 0;
}

.wow-proof-grid strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 300;
  line-height: 1;
  color: var(--sun);
  margin-bottom: 8px;
}

.wow-proof-grid span {
  display: block;
  font-size: 11px;
  color: rgba(255, 248, 239, 0.78);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ==========================================
   TRUST, DESTINATIONS & REVIEW BLOCKS
   ========================================== */
.trust-section,
.destination-section,
.review-section {
  background: var(--bg-sand);
  border-bottom: var(--border-width) solid var(--border-color);
}

.trust-section {
  padding: 96px 0;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: center;
}

.trust-copy h2 {
  max-width: 680px;
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  line-height: 0.96;
  color: var(--charcoal);
}

.trust-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--charcoal-muted);
  font-size: 18px;
}

.trust-list {
  display: grid;
  gap: 0;
  list-style: none;
  border: var(--border-width) solid var(--border-color);
  background: rgba(255, 248, 239, 0.82);
  box-shadow: 0 18px 48px rgba(6, 38, 54, 0.08);
}

.trust-list li {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  min-height: 82px;
  border-bottom: var(--border-width) solid var(--border-color);
}

.trust-list li:last-child {
  border-bottom: 0;
}

.trust-list span {
  display: grid;
  height: 100%;
  place-items: center;
  border-right: var(--border-width) solid var(--border-color);
  color: var(--ocean);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
}

.trust-list strong {
  color: var(--charcoal);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  padding: 18px 24px;
}

.destination-section {
  background:
    linear-gradient(180deg, rgba(223, 249, 255, 0.62), rgba(243, 228, 210, 0.94)),
    linear-gradient(120deg, rgba(24, 199, 189, 0.14) 0%, transparent 40%),
    var(--bg-sand);
}

.destination-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.destination-card,
.review-card {
  border: var(--border-width) solid var(--border-color);
  background: var(--bg-sand-white);
  padding: 28px;
  box-shadow: 0 12px 28px rgba(6, 38, 54, 0.06);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.destination-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.destination-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  background: white;
  border-color: var(--ocean);
  box-shadow: 0 18px 42px rgba(0, 124, 143, 0.16);
}

.destination-card span {
  display: inline-flex;
  min-width: 52px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid var(--border-color);
  background: rgba(24, 199, 189, 0.10);
  color: var(--ocean);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.destination-card h3 {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1;
}

.destination-card p,
.review-card span {
  margin-top: 14px;
  color: var(--charcoal-muted);
  font-size: 14px;
}

.review-section {
  padding: 96px 0;
  background:
    linear-gradient(130deg, #041d2a 0%, var(--charcoal) 48%, var(--ocean) 100%);
  color: white;
}

.review-section .section-head {
  border-bottom-color: rgba(255, 248, 239, 0.22);
}

.review-section .section-kicker {
  color: var(--sun);
}

.review-section .section-head h2 {
  color: white;
}

.review-section .section-head p {
  color: rgba(255, 248, 239, 0.72);
}

.review-section .review-card {
  background: rgba(255, 248, 239, 0.10);
  border-color: rgba(255, 248, 239, 0.24);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.review-card p {
  color: white;
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.review-card span {
  display: block;
  border-top: var(--border-width) solid rgba(255, 248, 239, 0.22);
  padding-top: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 248, 239, 0.76);
}

.review-form {
  margin-top: 28px;
  padding: 30px;
  border: var(--border-width) solid rgba(255, 248, 239, 0.24);
  background: rgba(255, 248, 239, 0.09);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.review-form h3 {
  margin-top: 6px;
  color: white;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1;
}

.review-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: 14px;
  margin-top: 22px;
}

.review-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 248, 239, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-form-grid .full {
  grid-column: span 1;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  min-height: 50px;
  border: var(--border-width) solid rgba(255, 248, 239, 0.28);
  background: rgba(255, 255, 255, 0.10);
  color: white;
  padding: 12px 14px;
  font: inherit;
  outline: none;
}

.review-form select option {
  color: var(--charcoal);
}

.review-form textarea {
  min-height: 92px;
  resize: vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(251, 176, 64, 0.18);
}

.review-form .btn {
  margin-top: 18px;
}

.review-form-status {
  margin-top: 12px;
  min-height: 20px;
  color: rgba(255, 248, 239, 0.82);
}

.review-card.is-customer-review {
  border-color: rgba(251, 176, 64, 0.52);
  background: rgba(251, 176, 64, 0.14);
}

/* ==========================================
   SEO LANDING PAGES
   ========================================== */
.seo-routes {
  background: var(--bg-sand);
  border-bottom: var(--border-width) solid var(--border-color);
}

.seo-copy {
  max-width: 760px;
  color: var(--charcoal-muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.8;
}

.seo-copy strong {
  color: var(--charcoal);
}

.route-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.route-panel {
  border: var(--border-width) solid var(--border-color);
  background: var(--bg-sand-white);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(6, 38, 54, 0.08);
}

.route-panel h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
  color: var(--charcoal);
}

.route-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0 18px;
  color: var(--ocean);
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.9;
}

.route-price small {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
}

.route-list,
.faq-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.route-list li,
.faq-item {
  border: var(--border-width) solid var(--border-color);
  background: rgba(255, 255, 255, 0.52);
  padding: 18px;
}

.route-list strong,
.faq-item strong {
  display: block;
  color: var(--charcoal);
  font-size: 17px;
  margin-bottom: 6px;
}

.route-list span,
.faq-item p {
  color: var(--charcoal-muted);
  font-size: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.route-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.route-note {
  margin-top: 18px;
  color: var(--charcoal-muted);
  font-size: 13px;
}

/* ==========================================
   EDITORIAL & PORTFOLIO BENTO (UNIFIED SAND)
   ========================================== */
.wow-editorial {
  padding: 120px 0;
  background-color: var(--bg-sand);
  border-bottom: var(--border-width) solid var(--border-color);
}

.wow-editorial-head {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 60px;
  border-bottom: var(--border-width) solid var(--border-color);
  padding-bottom: 40px;
}

.section-kicker {
  display: inline-flex;
  color: var(--ocean);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.wow-editorial-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.0;
}

.wow-editorial-head p {
  color: var(--charcoal-muted);
  font-size: 16px;
}

/* Bento Grid */
.wow-bento {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 24px;
}

.wow-bento-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border: var(--border-width) solid rgba(13, 51, 64, 0.76);
  background: var(--bg-sand-light);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wow-bento-card.wide {
  min-height: 500px;
}

.wow-bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.wow-bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(4, 29, 42, 0.9) 95%),
    linear-gradient(120deg, rgba(0, 124, 143, 0.20), transparent 46%);
  z-index: 1;
}

.wow-bento-card div {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 2;
  color: white;
}

.wow-bento-card span {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--sun);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}

.wow-bento-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
}

.wow-bento-card p {
  font-size: 14px;
  color: var(--bg-sand);
  margin-top: 12px;
  max-width: 480px;
  opacity: 0.8;
}

.wow-bento-card:hover {
  border-color: var(--ocean-bright);
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 124, 143, 0.16);
}
.wow-bento-card:hover img {
  transform: scale(1.02);
  filter: saturate(1.24) contrast(1.08);
}

/* ==========================================
   PROCESS SECTION (BOARDING STEPS)
   ========================================== */
.wow-process {
  position: relative;
  background:
    linear-gradient(180deg, var(--bg-sand-light), rgba(223, 249, 255, 0.56)),
    var(--bg-sand-light);
  color: var(--charcoal);
  padding: 120px 0;
  border-bottom: var(--border-width) solid var(--border-color);
}

.wow-process-shell {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: center;
}

.wow-process-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.0;
}

.wow-process-copy p {
  color: var(--charcoal-muted);
  font-size: 17px;
  margin-top: 24px;
  line-height: 1.6;
}

.wow-process-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.wow-process-links a {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 12px 24px;
  border: var(--border-width) solid var(--border-color);
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.wow-process-links a:first-child {
  border-color: var(--ocean);
  background: linear-gradient(135deg, var(--ocean), var(--ocean-bright));
  color: white;
}
.wow-process-links a:first-child:hover {
  background: transparent;
  color: var(--ocean);
}
.wow-process-links a:last-child:hover {
  background: var(--accent-clay);
  border-color: var(--accent-clay);
  color: white;
}

.wow-process-steps {
  display: grid;
  gap: 20px;
  list-style: none;
}

.wow-process-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  background: rgba(255, 248, 239, 0.78);
  border: var(--border-width) solid var(--border-color);
  padding: 30px;
}

.wow-process-steps li:hover {
  border-color: var(--ocean);
  box-shadow: 0 16px 36px rgba(0, 124, 143, 0.12);
}

.wow-process-steps span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: var(--border-width) solid var(--border-color);
  background: transparent;
  background: linear-gradient(135deg, rgba(24, 199, 189, 0.18), rgba(249, 184, 87, 0.22));
  color: var(--ocean);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
}

.wow-process-steps strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

.wow-process-steps small {
  display: block;
  color: var(--charcoal-muted);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5;
}

/* ==========================================
   SUBPAGES: EDITORIAL PAGE HERO
   ========================================== */
.page-hero {
  min-height: 80vh;
  position: relative;
  background: var(--bg-sand-light);
  color: var(--charcoal);
  padding-top: 140px;
  display: flex;
  align-items: center;
  border-bottom: var(--border-width) solid var(--border-color);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(255, 248, 239, 0.86) 0%, rgba(255, 248, 239, 0.64) 44%, rgba(255, 248, 239, 0.14) 74%, transparent 100%),
    linear-gradient(0deg, rgba(243, 228, 210, 0.76) 0%, rgba(243, 228, 210, 0.12) 54%),
    linear-gradient(120deg, rgba(24, 199, 189, 0.15), transparent 42%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.26) brightness(1) contrast(1.08);
}

.page-hero .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 380px;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  color: var(--ocean);
  border-bottom: var(--border-width) solid var(--ocean);
  padding-bottom: 4px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  font-size: 17px;
  color: var(--charcoal-muted);
  margin-top: 24px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.hero-badges span {
  background: rgba(255, 248, 239, 0.68);
  border: var(--border-width) solid var(--border-color);
  padding: 6px 14px;
  font-size: 11px;
  color: var(--charcoal-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.glass-card {
  background: rgba(255, 248, 239, 0.86);
  border: var(--border-width) solid rgba(13, 51, 64, 0.72);
  padding: 30px;
  box-shadow: 0 24px 56px rgba(6, 38, 54, 0.16);
  backdrop-filter: blur(14px);
}

.metric-list {
  display: grid;
  gap: 20px;
}

.metric {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
}

.metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: var(--border-width) solid var(--border-color);
  background: rgba(24, 199, 189, 0.12);
  color: var(--ocean);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

.metric span {
  display: block;
  font-size: 12px;
  color: var(--charcoal-muted);
  margin-top: 2px;
}

/* ==========================================
   SUBPAGES: VEHICLE GRID
   ========================================== */
.section {
  padding: 120px 0;
  border-bottom: var(--border-width) solid var(--border-color);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 60px;
  border-bottom: var(--border-width) solid var(--border-color);
  padding-bottom: 30px;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.0;
}

.section-head p {
  font-size: 16px;
  color: var(--charcoal-muted);
  margin-top: 12px;
  max-width: 600px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vehicle-card {
  background: var(--bg-sand-light);
  border: var(--border-width) solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vehicle-card.featured {
  border: var(--border-width) solid var(--ocean);
  position: relative;
}

.vehicle-card.featured::before {
  content: "RECOMENDADO";
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-bright));
  color: white;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  padding: 4px 12px;
  letter-spacing: 0.1em;
  z-index: 2;
}

.vehicle-photo {
  height: 290px;
  overflow: hidden;
  border-bottom: var(--border-width) solid var(--border-color);
}
.vehicle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.04);
  transition: transform 0.8s ease;
}

.vehicle-body {
  padding: 32px;
}

.vehicle-kicker {
  display: inline-flex;
  color: var(--ocean);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.vehicle-body h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--charcoal);
}

.vehicle-body p {
  color: var(--charcoal-muted);
  margin-top: 10px;
  font-size: 15px;
}

.vehicle-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  list-style: none;
}

.vehicle-body li {
  border: var(--border-width) solid var(--border-color);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  background: var(--bg-sand-white);
}

.vehicle-card:hover {
  transform: translateY(-4px);
  border-color: var(--ocean);
  box-shadow: 0 18px 42px rgba(0, 124, 143, 0.14);
}
.vehicle-card:hover .vehicle-photo img {
  transform: scale(1.02);
}

/* ==========================================
   SUBPAGES: TOUR GRID
   ========================================== */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tour-card {
  background: var(--bg-sand-light);
  border: var(--border-width) solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-photo {
  height: 230px;
  overflow: hidden;
  border-bottom: var(--border-width) solid var(--border-color);
}
.tour-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.04);
  transition: transform 0.8s ease;
}

.tour-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-body h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
}

.tour-body p {
  color: var(--charcoal-muted);
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.5;
}

.tour-body .btn {
  width: 100%;
  margin-top: 24px;
  min-height: 42px;
  padding: 10px;
}

.tour-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.tour-actions .btn {
  margin-top: 0;
  min-width: 0;
}

.tour-card:hover {
  transform: translateY(-4px);
  border-color: var(--ocean);
  box-shadow: 0 18px 42px rgba(0, 124, 143, 0.14);
}
.tour-card:hover .tour-photo img {
  transform: scale(1.02);
}

/* ==========================================
   REGISTRATION LEDGER (FORM & RESERVATIONS)
   ========================================== */
.section.alt {
  background-color: var(--bg-sand-light);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: start;
}

.side-list {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.side-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.side-item .metric-icon {
  width: 40px;
  height: 40px;
  font-size: 14px;
  background: var(--bg-sand-white);
  border: var(--border-width) solid var(--border-color);
  color: var(--accent-clay);
}

.side-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.side-item span {
  display: block;
  font-size: 13px;
  color: var(--charcoal-muted);
  margin-top: 4px;
}

.form-panel {
  background: var(--bg-sand-white);
  border: var(--border-width) solid var(--border-color);
  padding: 48px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field.full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
}

label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

input, select, textarea {
  background: var(--bg-sand-light);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: all 0.25s ease;
}

input::placeholder, textarea::placeholder {
  color: #a09586;
}

input:focus, select:focus, textarea:focus {
  background: white;
  border-color: var(--accent-clay);
}

textarea {
  min-height: 120px;
}

/* Validation System */
.field-error {
  display: none;
  font-size: 11px;
  color: var(--danger);
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: var(--danger);
  background-color: #fffbfa;
}

.has-error .field-error {
  display: block;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.form-status {
  display: none;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 24px;
}
.form-status.show {
  display: block;
  background: rgba(32, 135, 94, 0.08);
  color: var(--ok);
  border: var(--border-width) solid var(--ok);
}
.form-status.error {
  display: block;
  background: rgba(207, 58, 36, 0.08);
  color: var(--danger);
  border: var(--border-width) solid var(--danger);
}

.status-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  color: var(--bg-sand);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  padding: 10px 20px;
  margin-top: 12px;
}

/* ==========================================
   QUOTE BOX (LUXURY INVOICE LEDGER)
   ========================================== */
.quote-box {
  background: var(--bg-sand-light);
  border: var(--border-width) solid var(--border-color);
  padding: 30px;
  position: relative;
  color: var(--charcoal);
  margin-top: 10px;
}

.quote-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  color: var(--accent-clay);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

.quote-box strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 50px);
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
  margin-top: 6px;
}

/* Ticket dashed line */
.quote-box span[data-quote-detail] {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--charcoal-muted);
  border-top: var(--border-width) dashed var(--border-color);
  margin-top: 18px;
  padding-top: 18px;
}

.quote-box small {
  display: block;
  font-size: 12px;
  color: var(--charcoal-muted);
  margin-top: 10px;
  line-height: 1.4;
}

/* ==========================================
   DELIVERY MODAL (FLAT LUXURY BOARD)
   ========================================== */
.delivery-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(30, 26, 21, 0.8);
  backdrop-filter: blur(6px);
}
.delivery-modal.open {
  display: flex;
}

.delivery-card {
  width: min(500px, 100%);
  background: var(--bg-sand-light);
  border: var(--border-width) solid var(--border-color);
  overflow: hidden;
  transform: translateY(15px);
  animation: modalIn 350ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delivery-head {
  position: relative;
  background: var(--charcoal);
  color: var(--bg-sand);
  padding: 32px;
  border-bottom: var(--border-width) solid var(--border-color);
}

.delivery-head h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: white;
  line-height: 1.1;
}

.delivery-head p {
  font-size: 13px;
  color: var(--bg-sand);
  opacity: 0.8;
  margin-top: 8px;
}

.delivery-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 30px;
  border: var(--border-width) solid var(--border-color);
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.delivery-close:hover {
  background: rgba(255,255,255,0.1);
}

.delivery-options {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.delivery-option {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
  border: var(--border-width) solid var(--border-color);
  background: var(--bg-sand-white);
  padding: 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.delivery-option:hover {
  border-color: var(--accent-clay);
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 26, 21, 0.05);
}

.delivery-icon {
  width: 40px;
  height: 40px;
  border: var(--border-width) solid var(--border-color);
  background: var(--bg-sand-light);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 750;
  font-size: 13px;
}

.delivery-option strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.delivery-option span {
  display: block;
  font-size: 13px;
  color: var(--charcoal-muted);
  margin-top: 2px;
}

.delivery-foot {
  padding: 0 24px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--charcoal-muted);
}

.sms-ready-button {
  margin-bottom: 8px;
}

/* ==========================================
   STICKY WHATSAPP & FOOTER
   ========================================== */
.sticky-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  background: var(--charcoal);
  color: var(--bg-sand);
  border: var(--border-width) solid var(--border-color);
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-whatsapp:hover {
  background: var(--accent-clay);
  border-color: var(--accent-clay);
  color: white;
  transform: translateY(-4px);
}
.sticky-whatsapp::before {
  content: "●";
  color: #20875e;
  margin-right: 10px;
  font-size: 12px;
}

footer {
  background: var(--charcoal);
  color: var(--bg-sand);
  opacity: 0.95;
  padding: 80px 0 40px;
  border-top: var(--border-width) solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.75fr 0.75fr 1fr;
  gap: 28px;
  margin-bottom: 60px;
}

footer h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: white;
  margin-bottom: 12px;
}

footer h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-clay);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

footer p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

footer ul {
  list-style: none;
}
footer li {
  margin-bottom: 10px;
}
footer a {
  font-size: 13px;
  opacity: 0.85;
}
footer a:hover {
  color: var(--accent-clay);
  opacity: 1;
  text-decoration: underline;
}

.legal-section {
  padding-top: 140px;
  background: var(--bg-sand);
}

.legal-layout {
  max-width: 860px;
}

.legal-layout h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.legal-layout h2 {
  margin-top: 34px;
  color: var(--charcoal);
  font-size: clamp(22px, 2.5vw, 32px);
}

.legal-layout p {
  margin-top: 12px;
  color: var(--charcoal-muted);
  font-size: 17px;
  line-height: 1.8;
}

.legal-layout a {
  color: var(--ocean);
  font-weight: 700;
}

.copyright {
  border-top: var(--border-width) solid rgba(230, 216, 200, 0.15);
  padding-top: 40px;
  text-align: center;
  font-size: 12px;
  color: var(--bg-sand);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes modalIn {
  0% { transform: translateY(15px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ==========================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================== */
@media (max-width: 1024px) {
  .site-header {
    position: fixed;
  }
  .nav {
    padding: 0 16px;
  }
  .wow-stage {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .wow-copy {
    margin: 0 auto;
  }
  .wow-actions {
    justify-content: center;
  }
  .wow-reservation {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .wow-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .wow-gallery-card.is-tall {
    grid-column: span 2;
    aspect-ratio: 16/10;
  }
  .wow-proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wow-proof-grid div {
    border-bottom: var(--border-width) solid rgba(255, 248, 239, 0.18);
  }
  .wow-proof-grid div:nth-child(3n),
  .wow-proof-grid div:last-child {
    border-right: 0;
  }
  .wow-proof-grid div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .wow-bento {
    grid-template-columns: 1fr 1fr;
  }
  .wow-bento-card.wide {
    grid-column: span 2;
    min-height: 400px;
  }
  .wow-process-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trust-layout {
    grid-template-columns: 1fr;
  }
  .destination-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
  .review-form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .route-summary {
    grid-template-columns: 1fr;
  }
  .vehicle-grid,
  .tour-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-hero .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .page-hero .hero-actions {
    justify-content: center;
  }
  .page-hero .glass-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .desktop-nav,
  .site-header .nav > .btn,
  .site-header .nav > .language-switch {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .nav {
    min-height: 70px;
  }
  .site-header.scrolled .nav {
    min-height: 70px;
  }
  .brand {
    height: 70px;
    padding: 0 16px;
  }
  .brand img {
    width: 130px;
  }
  .wow-editorial-head {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 30px;
  }
  .wow-bento {
    grid-template-columns: 1fr;
  }
  .wow-bento-card.wide {
    grid-column: span 1;
  }
  .wow-gallery {
    grid-template-columns: 1fr;
  }
  .wow-gallery-card.is-tall {
    grid-column: span 1;
  }
  .destination-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review-form-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .wow-proof-grid {
    grid-template-columns: 1fr;
  }
  .wow-proof-grid div {
    border-right: 0;
    border-bottom: var(--border-width) solid rgba(255, 248, 239, 0.18);
  }
  .wow-proof-grid div:last-child {
    border-bottom: 0;
  }
  .wow-process-steps li {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .trust-list li {
    grid-template-columns: 1fr;
  }
  .trust-list span {
    min-height: 58px;
    border-right: 0;
    border-bottom: var(--border-width) solid var(--border-color);
  }
  .form-panel {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .tour-actions {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sticky-whatsapp {
    left: 20px;
    right: 20px;
    bottom: 20px;
    justify-content: center;
  }
  .wow-process-links a {
    width: 100%;
    justify-content: center;
  }
}
