/* CDK Travels — Global Styles */
:root {
  --bg-primary: #FDFBF7;
  --bg-secondary: #F0EBE1;
  --bg-tertiary: #EFE7D6;
  --bg-dark: #0B2545;
  --bg-dark-2: #0F2E56;
  --text-primary: #1C1C14;
  --text-secondary: #5C5C54;
  --text-light: #FFFFFF;
  --accent: #C69B5B;
  --accent-hover: #A67C42;
  --accent-warm: #E76F51;
  --accent-deep: #8B4513;
  --border: #E5E1D8;
  --border-dark: rgba(255,255,255,0.12);
  --grad-sunset: linear-gradient(135deg, #F4A261 0%, #E76F51 50%, #C1272D 100%);
  --grad-sky: linear-gradient(135deg, #0B2545 0%, #13315C 60%, #C69B5B 130%);
  --grad-ocean: linear-gradient(180deg, rgba(11,37,69,0) 0%, rgba(11,37,69,0.85) 100%);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  margin: 0;
  line-height: 1.6;
}

.font-serif { font-family: 'Playfair Display', Georgia, serif; }
.font-sans  { font-family: 'Manrope', system-ui, sans-serif; }

/* Selection */
::selection { background: var(--accent); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* Overline label */
.overline {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}

/* Button — squared editorial */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--text-primary);
  border: none;
  cursor: pointer;
  transition: background 260ms ease, transform 260ms ease, box-shadow 260ms ease, color 260ms ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(198,155,91,0.6); }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}
.btn-outline:hover { background: var(--text-primary); color: #fff; }
.btn-light {
  background: #fff;
  color: var(--text-primary);
}
.btn-light:hover { background: var(--accent); color: #fff; }
.btn-accent {
  background: var(--grad-sunset);
  color: #fff;
  border: none;
  box-shadow: 0 12px 32px -12px rgba(231,111,81,0.6);
}
.btn-accent:hover {
  background: var(--grad-sunset);
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(231,111,81,0.75);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem 1.5rem;
  transition: background 300ms ease, backdrop-filter 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.scrolled {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav.scrolled .nav-link,
.nav.scrolled .nav-brand { color: var(--text-primary); }
.nav-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.nav-logo {
  height: 44px;
  width: auto;
  display: block;
  transition: filter 300ms ease, transform 300ms ease;
}
.nav.over-hero:not(.scrolled) .nav-logo {
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.45));
}
.nav.solid .nav-logo,
.nav.scrolled .nav-logo {
  filter: none;
}
.nav-logo:hover { transform: scale(1.03); }
.nav-links {
  display: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-link {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  transition: color 240ms ease;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -0.55rem;
  height: 1px;
  background: var(--accent);
}
.nav.solid { background: rgba(253, 251, 247, 0.96); backdrop-filter: blur(16px); border-bottom-color: var(--border); }
.nav.solid .nav-brand, .nav.solid .nav-link { color: var(--text-primary); }
.nav.solid .nav-link:hover, .nav.solid .nav-link.active { color: var(--accent); }
.mobile-toggle {
  display: block;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0.25rem;
}
.mobile-panel {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--bg-primary);
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  z-index: 49;
}
.mobile-panel.open { display: block; }
.mobile-panel a {
  display: block;
  padding: 0.9rem 0;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .mobile-toggle { display: none; }
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1600ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8000ms linear;
}
.hero-slide.active img {
  transform: scale(1.18);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(11,37,69,0.15) 0%, rgba(0,0,0,0.55) 70%),
    linear-gradient(180deg, rgba(11,37,69,0.35) 0%, rgba(0,0,0,0.20) 40%, rgba(11,37,69,0.75) 100%);
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 6.75rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 18ch;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #F4A261 0%, #E9C46A 50%, #C69B5B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 2.5rem;
  max-width: 42ch;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.45;
  letter-spacing: 0.005em;
  color: #FFF7EA;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.hero-sub strong {
  font-weight: 500;
  color: #F4C87A;
  font-style: normal;
  font-family: 'Playfair Display', serif;
}

/* Slide indicator dots */
.hero-dots {
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 400ms ease, width 400ms ease;
}
.hero-dot.active {
  background: var(--accent);
  width: 56px;
}
@media (max-width: 700px) {
  .hero-dots { right: 50%; transform: translateX(50%); }
}

/* Service pills over hero */
.service-pills {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.5rem;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 1rem;
  width: 100%;
  max-width: 1100px;
}
.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease, color 300ms ease;
}
.service-pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(198,155,91,0.5);
}
.service-pill i[data-lucide] { width: 16px; height: 16px; }

.service-caption {
  position: absolute;
  z-index: 5;
  left: 0; right: 0;
  bottom: 4.5rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.service-caption::before,
.service-caption::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin: 0 1.25rem;
}

/* Sections */
.section {
  padding: 6rem 1.5rem;
}
@media (min-width: 900px) { .section { padding: 8rem 3rem; } }
.container { max-width: 1300px; margin: 0 auto; }

.section-eyebrow { display: block; margin-bottom: 1rem; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  max-width: 20ch;
}
.section-title em { font-style: italic; background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-lede {
  margin-top: 1.5rem;
  max-width: 60ch;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Accreditation band */
.accred {
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
}
.accred::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-sunset);
}
.accred-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-around;
}
.accred-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 600;
}
.accred-badge {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.25rem;
  color: var(--bg-dark);
  letter-spacing: 0.05em;
  opacity: 0.75;
  transition: opacity 240ms ease, color 240ms ease, transform 300ms ease;
}
.accred-badge:hover { opacity: 1; color: var(--accent); transform: translateY(-2px); }
.accred-badge small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.28em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 0.2rem;
  opacity: 0.75;
  font-weight: 500;
}

/* Two-column story */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1.1fr; gap: 5rem; }
  .two-col.reverse { direction: rtl; }
  .two-col.reverse > * { direction: ltr; }
}
.story-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  filter: saturate(0.95);
}

/* Services bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 240px;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
@media (min-width: 900px) {
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 280px; }
}
.bento-cell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  display: block;
  color: #fff;
  text-decoration: none;
}
.bento-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.bento-cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
  transition: background 400ms ease;
}
.bento-cell:hover img { transform: scale(1.08); }
.bento-cell:hover::after { background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(28,28,20,0.85) 100%); }
.bento-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.bento-label h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0;
}
.bento-label small {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 0.35rem;
}
.bento-arrow {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 300ms ease, transform 300ms ease;
  flex-shrink: 0;
}
.bento-cell:hover .bento-arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(-45deg);
}
/* Bento cell layout — hero cells span more */
.bento-cell.span-3 { grid-column: span 2; }
.bento-cell.span-2 { grid-column: span 2; }
@media (min-width: 900px) {
  .bento-cell.span-3 { grid-column: span 3; grid-row: span 2; }
  .bento-cell.span-2 { grid-column: span 2; grid-row: span 1; }
  .bento-cell.tall { grid-row: span 2; }
}

/* Founder quote */
.quote-section {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(198,155,91,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(231,111,81,0.06) 0%, transparent 50%),
    var(--bg-tertiary);
  padding: 8rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.quote-section::before,
.quote-section::after {
  content: "";
  position: absolute;
  width: 1px;
  background: var(--accent);
  opacity: 0.4;
}
.quote-section::before {
  top: 3rem;
  left: 3rem;
  height: 60px;
}
.quote-section::after {
  bottom: 3rem;
  right: 3rem;
  height: 60px;
}
.quote-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
@media (min-width: 900px) {
  .quote-inner { grid-template-columns: 1fr 1.4fr; gap: 5rem; }
}
.quote-mark {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(14rem, 24vw, 26rem);
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.15;
  top: -1rem;
  left: -1rem;
  pointer-events: none;
  font-style: italic;
}
.quote-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.03) saturate(1.05);
  box-shadow: 0 30px 60px -20px rgba(11,37,69,0.35);
}
.quote-text {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.35;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}
.quote-author {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(28,28,20,0.15);
}
.quote-author strong {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  display: block;
}
.quote-author span {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.25rem;
  display: block;
}

/* Why CDK — 4 pillars */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
@media (min-width: 700px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  padding: 3rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-primary);
  transition: background 320ms ease;
}
.pillar:hover { background: var(--bg-secondary); }
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}
.pillar-icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
.pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.pillar p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Booking widget preview */
.booking-widget {
  margin: 3.5rem auto 0;
  position: relative;
  z-index: 5;
  max-width: 1100px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 30px 80px -30px rgba(28,28,20,0.25);
}
.booking-tabs { display: flex; flex-wrap: wrap; gap: 0.25rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.booking-tab {
  padding: 0.85rem 1.5rem;
  background: transparent;
  border: none;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 220ms ease, border-color 220ms ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.booking-tab i[data-lucide] { width: 15px; height: 15px; }
.booking-tab.active { color: var(--text-primary); border-bottom-color: var(--accent); }
.booking-tab:hover { color: var(--text-primary); }
.booking-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: end;
}
@media (min-width: 700px) { .booking-fields { grid-template-columns: repeat(2, 1fr) auto; } }
@media (min-width: 1000px) { .booking-fields { grid-template-columns: repeat(4, 1fr) auto; } }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
}
.field input, .field select {
  width: 100%;
  padding: 0.9rem 0;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  outline: none;
  transition: border-color 240ms ease;
}
.field input:focus, .field select:focus { border-bottom-color: var(--accent); }

/* Footer */
footer.site-footer {
  background:
    radial-gradient(ellipse at top left, rgba(198,155,91,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(231,111,81,0.06) 0%, transparent 50%),
    var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 6rem 1.5rem 2rem;
  position: relative;
}
footer.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-sunset);
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-logo {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 0.25rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.footer-brand em { color: var(--accent); font-style: italic; font-weight: 400; }
.footer-tag {
  margin-top: 1rem;
  max-width: 34ch;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}
.footer h4 {
  font-family: 'Manrope', sans-serif;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.85rem; }
.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 220ms ease;
}
.footer a:hover { color: var(--accent); }
.footer .contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.footer .contact-item i[data-lucide] { width: 16px; height: 16px; color: var(--accent); }
.footer-bottom {
  max-width: 1400px;
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* Page hero (non-video) */
.page-hero {
  position: relative;
  padding: 12rem 1.5rem 6rem;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(198,155,91,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(231,111,81,0.10) 0%, transparent 50%),
    var(--bg-secondary);
  overflow: hidden;
}
.page-hero.dark {
  background: var(--bg-dark);
  color: #fff;
}
.page-hero.dark .section-title { color: #fff; }
.page-hero.dark .section-lede { color: rgba(255,255,255,0.7); }
.page-hero.image {
  min-height: 480px;
  color: #fff;
  display: flex;
  align-items: end;
}
.page-hero .bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero.image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.7));
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.team-card { }
.team-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.team-card:hover .team-photo { transform: scale(1.02); }
.team-info { padding: 1.25rem 0; }
.team-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.team-info span {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-top: 0.35rem;
}
.team-info p {
  margin: 0.75rem 0 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* Fun gallery */
.fun-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 3rem;
}
@media (min-width: 700px) {
  .fun-gallery { grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 260px; }
  .fun-gallery > *:nth-child(1) { grid-row: span 2; }
  .fun-gallery > *:nth-child(4) { grid-column: span 2; }
}
.fun-gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); transition: filter 400ms ease; }
.fun-gallery img:hover { filter: saturate(1.1); }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 5rem; } }
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item i[data-lucide] { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.contact-info-item h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}
.contact-info-item p { margin: 0; color: var(--text-secondary); font-size: 0.95rem; }
.contact-form { display: grid; gap: 1.5rem; }
.contact-form .field label { color: var(--text-secondary); }
.contact-form textarea {
  min-height: 160px;
  padding: 0.9rem 0;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  outline: none;
  resize: vertical;
  transition: border-color 240ms ease;
}
.contact-form textarea:focus { border-bottom-color: var(--accent); }

/* Service page features list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
.feature-list li {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: start;
  gap: 1rem;
}
.feature-list li i[data-lucide] { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.feature-list strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.feature-list p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }

/* Destination cards */
.dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 700px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .dest-grid { grid-template-columns: repeat(3, 1fr); } }
.dest-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
  text-decoration: none;
  color: #fff;
}
.dest-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.dest-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.75));
}
.dest-card:hover img { transform: scale(1.08); }
.dest-body {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 2;
}
.dest-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
}
.dest-body small {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* CTA banner */
.cta-banner {
  background:
    radial-gradient(circle at 15% 30%, rgba(198,155,91,0.20) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(231,111,81,0.18) 0%, transparent 50%),
    var(--bg-dark);
  color: #fff;
  padding: 7rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400;
  max-width: 24ch;
  margin: 0 auto 1.5rem;
  line-height: 1.1;
}
.cta-banner h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #F4A261 0%, #E9C46A 50%, #C69B5B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-banner p { color: rgba(255,255,255,0.70); max-width: 55ch; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* Utility */
.divider {
  height: 1px;
  width: 60px;
  background: var(--accent);
  margin: 1.5rem 0;
}
