/* ═══════════════════════════════════════
   KORU LUXE TOURS — Main Stylesheet
═══════════════════════════════════════ */

/* ── RESET & ROOT ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*- image ecnryption */ 
img {
  pointer-events: none;
  user-drag: none;
}

:root {
  --bg: #060606;
  --surface: #0e0e0e;
  --raised: #131313;
  --card: #181818;
  --border: rgba(255, 255, 255, 0.055);
  --text: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.65);
  --dim: rgba(255, 255, 255, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: none;
}

/* ── FILM GRAIN ── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0.028;
  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");
  background-size: 128px 128px;
  animation: grainAnim 0.12s steps(1) infinite;
}

@keyframes grainAnim {
  0% {
    background-position: 0 0;
  }

  20% {
    background-position: -15% 5%;
  }

  40% {
    background-position: -5% 25%;
  }

  60% {
    background-position: 15% 0;
  }

  80% {
    background-position: 3% 35%;
  }

  100% {
    background-position: 9% 18%;
  }
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  transition:
    background 0.4s,
    padding 0.4s;
}

nav.scrolled {
  background: rgba(6, 6, 6, 0.95);
  padding: 16px 60px;
  border-bottom: 1px solid var(--border);
}

nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    transparent 100%
  );
  pointer-events: none;
  transition: opacity 0.4s;
}

nav.scrolled::before {
  opacity: 0;
}

.nav-logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  opacity: 0;
  animation: navFade 0.8s 0.1s ease forwards;
}

.nav-logo img {
  width: 175px;
  height: 100px;
  object-fit: contain;
  opacity: 0.9;
}

.nav-logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.nav-sub {
  font-size: 8px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-links {
  position: relative;
  display: flex;
  gap: 36px;
  list-style: none;
  opacity: 0;
  animation: navFade 0.8s 0.25s ease forwards;
}

.nav-links a {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  padding-bottom: 3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-cta {
  opacity: 0;
  animation: navFade 0.8s 0.35s ease forwards;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 24px;
  transition:
    background 0.3s,
    color 0.3s;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

@keyframes navFade {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }

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

/* ═══════════════════════════════════════
   SHARED COMPONENTS
═══════════════════════════════════════ */
.section-eyebrow {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.section-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-heading em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.38);
}

.divider {
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 28px 0;
}

.body-text {
  font-size: 11px;
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: var(--muted);
  max-width: 520px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 13px 32px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-outline:hover::before {
  transform: translateX(0);
}

.btn-outline:hover {
  color: #fff;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 13px 32px;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}

.btn-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-dark:hover::before {
  transform: translateX(0);
}

.btn-dark:hover {
  color: var(--text);
}

/* ── SCROLL REVEAL ── */
.r-up {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.r-left {
  opacity: 0;
  transform: translateX(-52px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.r-right {
  opacity: 0;
  transform: translateX(52px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.r-fade {
  opacity: 0;
  transition: opacity 1s ease;
}

.r-up.vis,
.r-left.vis,
.r-right.vis,
.r-fade.vis {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.1s !important;
}

.d2 {
  transition-delay: 0.2s !important;
}

.d3 {
  transition-delay: 0.32s !important;
}

.d4 {
  transition-delay: 0.46s !important;
}

.d5 {
  transition-delay: 0.6s !important;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  position: relative;
  height: 55vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 72px;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: subtleZoom 18s ease-out forwards;
}

@keyframes subtleZoom {
  to {
    transform: scale(1);
  }
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header-content .section-eyebrow {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.page-header-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  line-height: 0.96;
}

.page-header-content h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════
   HOME — HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.1);
  animation: heroZoom 22s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 22s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-wipe {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #060606;
  transform-origin: left center;
  animation: wipeOpen 1.5s cubic-bezier(0.77, 0, 0.18, 1) 0.1s forwards;
}

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

  100% {
    transform: scaleX(0);
  }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    transparent 25%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    155deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0) 38%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.hero-shimmer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(0, 0, 0, 0.18) 45%,
    transparent 55%
  );
  background-size: 200% 100%;
  animation: shimmer 9s ease-in-out 2.5s infinite;
}
.hero-h1 .line:nth-child(4) .line-inner {
  animation: slideLeft 1.1s cubic-bezier(0.22, 1, 0.36, 1) 2.25s forwards;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 88px;
}

.hero-eyebrow {
  font-size: 9px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  opacity: 0;
  animation: slideLeft 1s cubic-bezier(0.22, 1, 0.36, 1) 1.65s forwards;
}

.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 7.5vw, 106px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.015em;
}

.hero-h1 .line {
  display: block;
  overflow: hidden;
}

.hero-h1 .line-inner {
  display: block;
  opacity: 0;
  transform: translateX(-90px);
}

.hero-h1 .line:nth-child(1) .line-inner {
  animation: slideLeft 1.1s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards;
}

.hero-h1 .line:nth-child(2) .line-inner {
  animation: slideLeft 1.1s cubic-bezier(0.22, 1, 0.36, 1) 1.95s forwards;
}

.hero-h1 .line:nth-child(3) .line-inner {
  animation: slideLeft 1.1s cubic-bezier(0.22, 1, 0.36, 1) 2.1s forwards;
}

.hero-h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.42);
}

.hero-sub {
  margin-top: 28px;
  font-size: 15px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  opacity: 0;
  animation: slideLeft 1s cubic-bezier(0.22, 1, 0.36, 1) 2.3s forwards;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: slideLeft 1s cubic-bezier(0.22, 1, 0.36, 1) 2.5s forwards;
}

.hero-tagline {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.65);
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  right: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 3.2s forwards;
}

.hero-scroll span {
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.scroll-bar {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollPulse 2.4s 3.2s infinite;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-90px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.4;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .hero-content {
    padding: 0 24px 72px; /* was 60px — too wide for phones */
  }

  .hero-sub {
    font-size: 10px;        /* 15px is huge on mobile */
    letter-spacing: 0.22em;
  }

  .hero-actions {
    flex-direction: column; /* buttons stack vertically */
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
  }

  .hero-scroll {
    right: 24px; /* was 60px, clips off screen on phones */
  }
}

/* ── HOME INTRO ── */
.home-intro {
  background: var(--bg);
  padding: 110px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.koru-symbol {
  width: 64px;
  height: 64px;
  opacity: 0.12;
  margin-bottom: 32px;
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ── CINEMA (full-bleed image reveal) ── */
.cinema {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.cinema-curtain {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--bg);
  transform-origin: left center;
  transform: scaleX(1);
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.cinema.open .cinema-curtain {
  transform: scaleX(0);
}

.cinema img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transform: scale(1.1);
  filter: brightness(0.7);
  transition:
    transform 16s ease,
    filter 2s ease;
}

.cinema.open img {
  transform: scale(1);
  filter: brightness(1);
}

.cinema-shader {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    rgba(0, 0, 0, 0.28) 14%,
    rgba(0, 0, 0, 0.08) 50%,
    rgba(0, 0, 0, 0.28) 86%,
    var(--bg) 100%
  );
  pointer-events: none;
}

.cinema-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    ellipse at center,
    transparent 38%,
    rgba(0, 0, 0, 0.58) 100%
  );
  pointer-events: none;
}

.cinema-label-bl {
  position: absolute;
  bottom: 42px;
  left: 60px;
  z-index: 4;
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.33);
  opacity: 0;
  transition: opacity 0.8s 0.9s;
}

.cinema-label-br {
  position: absolute;
  bottom: 42px;
  right: 60px;
  z-index: 4;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
  opacity: 0;
  transition: opacity 0.8s 1.1s;
}

.cinema.open .cinema-label-bl,
.cinema.open .cinema-label-br {
  opacity: 1;
}

/* ── FEATURED TOUR CARDS ── */
.featured-tours {
  background: var(--bg);
  padding: 100px 60px;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

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

.tour-card {
  position: relative;
  overflow: hidden;
  height: 480px;
  cursor: none;
}

.tour-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
  filter: brightness(0.55);
}

.tour-card:hover .tour-card-img {
  transform: scale(1);
  filter: brightness(0.75);
}

.tour-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.12) 60%,
    transparent 100%
  );
  transition: background 0.5s;
}

.tour-card:hover .tour-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.25) 60%,
    transparent 100%
  );
}

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

.tour-card-tag {
  font-size: 8px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 10px;
}

.tour-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
}

.tour-card-desc {
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s,
    transform 0.4s;
}

.tour-card:hover .tour-card-desc {
  opacity: 1;
  transform: translateY(0);
}

.tour-card-cta {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.tour-card:hover .tour-card-cta {
  color: rgba(255, 255, 255, 0.85);
}

.tour-card-cta::after {
  content: "→";
  transition: transform 0.3s;
}

.tour-card:hover .tour-card-cta::after {
  transform: translateX(5px);
}

/* ── TESTIMONIAL CAROUSEL ── */
.testimonial-section {
  background: var(--surface);
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial-carousel-wrap {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 80px;
}

.testimonial-card {
  max-width: 800px;
  text-align: center;
  padding: 40px;
}

.testimonial-stars {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 32px;
}

.testimonial-author {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(6, 6, 6, 0.85);
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition:
    background 0.3s,
    color 0.3s;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.carousel-arrow.prev {
  left: 12px;
}

.carousel-arrow.next {
  right: 12px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.carousel-dot.active {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
}

/* ── PANORAMA ── */
.panorama {
  position: relative;
  height: 68vh;
  overflow: hidden;
}

.panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  transform: scale(1.16);
  filter: brightness(0.32);
  transition:
    transform 20s ease,
    filter 2.2s ease;
}

.panorama.active img {
  transform: scale(1);
  filter: brightness(0.72);
}

.panorama-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  z-index: 2;
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none;
}

.panorama-bot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  z-index: 2;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

.panorama-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panorama-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(26px) scale(0.97);
  transition:
    opacity 1.3s 0.5s ease,
    transform 1.3s 0.5s ease;
}

.panorama.active .panorama-text {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-story {
  background: var(--bg);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-img {
  position: relative;
  overflow: hidden;
  height: auto; /* Changed from 580px */
}

.about-story-img img {
  width: 100%;
  height: auto; /* Let the height adjust naturally to the width */
  display: block;
  transform: scale(1); /* Reset to 1 to prevent zoomed-in cuts */
  transition: transform 12s ease;
  filter: brightness(0.88);
}

.about-story-img:hover img {
  transform: scale(1);
}

.about-story-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(6, 6, 6, 0.5) 100%
  );
}

.about-values {
  background: var(--surface);
  padding: 100px 60px;
  border-top: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--border);
}

.value-item {
  background: var(--surface);
  padding: 52px 40px;
}

.value-icon {
  font-size: 28px;
  margin-bottom: 24px;
  opacity: 0.5;
}

.value-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
}

.value-desc {
  font-size: 10px;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.about-stats {
  background: var(--raised);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}

.a-stat {
  padding: 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.a-stat:last-child {
  border-right: none;
}

.a-stat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  margin-bottom: 10px;
}

.a-stat-l {
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
}

/* ═══════════════════════════════════════
   TOURS PAGE
═══════════════════════════════════════ */
.tours-intro {
  background: var(--bg);
  padding: 80px 60px 60px;
}

.tour-list {
  background: var(--bg);
  padding: 0 60px 100px;
}

/* ── TRAVEL STYLES (tours page) ── */
.travel-styles {
  background: var(--surface);
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.travel-styles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 56px;
}

.travel-style-card {
  background: var(--raised);
  padding: 52px 48px;
  border: 1px solid var(--border);
  transition:
    border-color 0.4s,
    background 0.4s;
}

.travel-style-card:hover {
  background: var(--card);
  border-color: rgba(255, 255, 255, 0.1);
}

.travel-style-icon {
  font-size: 28px;
  opacity: 0.45;
  margin-bottom: 24px;
}

.travel-style-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}

.travel-style-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
}

.travel-style-rule {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 20px;
}

.travel-style-desc {
  font-size: 11px;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.travel-style-footer {
  margin-top: 80px;
  text-align: center;
}

.travel-style-footer p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.42);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ── BESPOKE (tours page) ── */
.bespoke-section {
  background: var(--bg);
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bespoke-img {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.bespoke-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  filter: brightness(0.78);
  transition:
    transform 12s ease,
    filter 1.5s;
}

.bespoke-img:hover img {
  transform: scale(1);
  filter: brightness(0.88);
}

.bespoke-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(6, 6, 6, 0.55) 100%
  );
}

/* ── WINE HIGHLIGHTS (tours page) ── */
.wine-highlights {
  list-style: none;
  margin: 24px 0 36px;
}

.wine-highlights li {
  font-size: 10px; /* Bumped up slightly for better readability */
  font-weight: 500; /* Makes the font thicker (use 600 for even thicker) */
  letter-spacing: 0.15em; /* Toned down slightly so the thicker text isn't too spaced out */
  color: rgba(255, 255, 255, 0.85); /* Increased opacity from 35% to 85% for high visibility */
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.wine-highlights li::before {
  content: "✦";
  font-size: 8px;
  color: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.tour-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  margin-bottom: 3px;
  overflow: hidden;
}

.tour-item:nth-child(even) {
  direction: rtl;
}

.tour-item:nth-child(even) > * {
  direction: ltr;
}

.tour-item-img {
  position: relative;
  overflow: hidden;
}

.tour-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  filter: brightness(0.75);
  transition:
    transform 12s ease,
    filter 1.5s ease;
}

.tour-item:hover .tour-item-img img {
  transform: scale(1);
  filter: brightness(0.9);
}

.tour-item-curtain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--bg);
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 1.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.tour-item.open .tour-item-curtain {
  transform: scaleX(0);
}

.tour-item-content {
  background: var(--raised);
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
}

.tour-item-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--dim);
  margin-bottom: 24px;
}

.tour-item-tag {
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 16px;
}

.tour-item-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.tour-item-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.38);
}

.tour-item-rule {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 22px;
}

.tour-item-desc {
  font-size: 11px;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 400px;
}

.tour-highlights {
  list-style: none;
  margin-bottom: 36px;
}

.tour-highlights li {
  font-size: 10px; /* Bumped up slightly for better readability */
  font-weight: 500; /* Makes the font thicker (use 600 for even thicker) */
  letter-spacing: 0.15em; /* Toned down slightly so the thicker text isn't too spaced out */
  color: rgba(255, 255, 255, 0.85); /* Increased opacity from 35% to 85% for high visibility */
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}


.tour-highlights li::before {
  content: "—";
  color: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════
   FLEET PAGE  ←  FIXED SECTION
═══════════════════════════════════════ */
.fleet-intro {
  background: var(--bg);
  padding: 80px 60px 60px;
}

.fleet-wrapper {
  padding: 0 60px 100px;
  background: var(--bg);
}

/* ── Hero card ── */
.fleet-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.fleet-hero-img {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}

.fleet-hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.85);
  transition:
    transform 9s ease,
    filter 0.6s;
}

.fleet-hero-img:hover img {
  transform: scale(1.04);
  filter: brightness(0.95);
}

.fleet-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--surface) 100%);
  pointer-events: none;
}

.fleet-hero-content {
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 56px;
}

.fleet-hero-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.1;
}

.fleet-hero-name em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.42);
}

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

.fleet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* image stacks strictly above body — never overlaps */
}

/* padding-bottom intrinsic ratio trick:
   keeps a true fixed-ratio image box so the full car is
   always visible and content is never pushed behind the image */
.fleet-card-img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 58%;
  /* ~16:9 — tweak this % to taste */
  overflow: hidden;
  background: #0a0a0a;
  flex-shrink: 0;
  /* prevents body squeezing the image */
}

.fleet-card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.82);
  transition:
    transform 0.8s ease,
    filter 0.5s ease;
}

.fleet-card:hover .fleet-card-img-wrap img {
  transform: scale(1.04);
  filter: brightness(0.92);
}

.fleet-card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(6, 6, 6, 0.45) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* card body always sits below the image, never overlaps */
.fleet-card-body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--surface);
}

.fleet-card-tag {
  font-size: 8px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 8px;
}

.fleet-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 10px;
  margin-top: 4px;
}

.fleet-card-desc {
  font-size: 10px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 16px;
}

.fleet-card-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fleet-spec {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 5px 10px;
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-grid {
  background: var(--bg);
  padding: 80px 60px 100px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  margin-bottom: 44px;
}

.contact-info-label {
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 12px;
}

.contact-info-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.contact-info-sub {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 4px;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.contact-tag {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 10px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 28px;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}

.whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.whatsapp-btn:hover::before {
  transform: translateX(0);
}

.whatsapp-btn:hover {
  color: #fff;
}

.whatsapp-icon {
  font-size: 16px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 52px 48px;
}

.form-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 36px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-label {
  font-size: 8px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--raised);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(255, 255, 255, 0.28);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-textarea {
  resize: none;
  height: 110px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.25)' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--raised);
}

.form-submit {
  width: 100%;
  padding: 15px;
  margin-top: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bg);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: none;
  transition: background 0.3s;
}

.form-submit:hover {
  background: #fff;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--surface);
  padding: 70px 60px 40px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  opacity: 0.78;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 3px;
}

.footer-desc {
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.22);
  max-width: 260px;
  margin-top: 16px;
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  font-size: 8px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 11px;
}

.footer-col a {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

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

.footer-social a {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.828); /* slightly darker */
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ═══════════════════════════════════════
   HAMBURGER MENU (hidden on desktop)
═══════════════════════════════════════ */
.nav-hamburger {
  display: none;
  position: relative;
  z-index: 10;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1px;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease;
  position: absolute;
  left: 0;
}

.nav-hamburger span:nth-child(1) {
  top: 0;
}
.nav-hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.nav-hamburger span:nth-child(3) {
  bottom: 0;
}

.nav-hamburger.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* ═══════════════════════════════════════
   HIDE CUSTOM CURSOR ON TOUCH DEVICES
═══════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  .cursor,
  .cursor-ring {
    display: none !important;
  }

  body,
  button,
  a,
  .tour-card,
  .form-submit {
    cursor: auto !important;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 900px)
═══════════════════════════════════════ */
@media (max-width: 900px) {
  /* ── NAV: hamburger + slide-down menu ── */
  .nav-hamburger {
    display: block;
  }

  nav {
    padding: 14px 24px;
    flex-wrap: wrap;
  }

  nav.scrolled {
    padding: 12px 24px;
  }

  .nav-logo img {
    width: 120px;
    height: 68px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 24px 0 12px;
    order: 10;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 11px;
    letter-spacing: 0.24em;
  }

  .nav-cta {
    display: none;
  }

  /* ── HERO ── */
  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 0 24px 64px;
  }

  .hero-h1 {
    font-size: clamp(42px, 10vw, 72px);
  }

  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 0.36em;
  }

  .hero-sub {
    font-size: 8px;
    letter-spacing: 0.28em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 32px;
  }

  .hero-scroll {
    display: none;
  }

  /* ── SECTIONS PADDING ── */
  .home-intro,
  .about-story,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px;
  }

  .tour-list,
  .tours-intro,
  .fleet-intro,
  .fleet-wrapper,
  .about-values,
  .testimonial-section,
  .featured-tours {
    padding-left: 24px;
    padding-right: 24px;
  }

  .travel-styles {
    padding: 60px 24px;
  }

  /* ── TOUR CARDS ── */
  .tour-cards {
    grid-template-columns: 1fr;
  }

  .tour-card {
    height: 400px;
  }

  .tour-card-desc {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── TOUR ITEMS ── */
  .tour-item {
    grid-template-columns: 1fr;
  }

  .tour-item:nth-child(even) {
    direction: ltr;
  }

  .tour-item-content {
    padding: 48px 28px;
  }

  /* ── VALUES & STATS ── */
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 48px 24px;
  }

  /* ── FLEET ── */
  .fleet-hero {
    grid-template-columns: 1fr;
  }

  .fleet-hero-img {
    min-height: 280px;
  }

  .fleet-hero-img::after {
    background: linear-gradient(
      to bottom,
      transparent 60%,
      var(--surface) 100%
    );
  }

  .fleet-hero-content {
    padding: 36px 28px;
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  /* ── PAGE HEADERS ── */
  .page-header {
    padding: 0 24px 52px;
    min-height: 320px;
    height: 45vh;
  }

  /* ── CINEMA ── */
  .cinema {
    height: 50vh;
  }

  .cinema-label-bl,
  .cinema-label-br {
    left: 24px;
    right: 24px;
    font-size: 8px;
  }

  .cinema-label-br {
    left: auto;
  }

  /* ── PANORAMA ── */
  .panorama {
    height: 45vh;
  }

  .panorama-text {
    padding: 0 24px;
  }

  /* ── FEATURED HEADER ── */
  .featured-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* ── TESTIMONIAL CAROUSEL ── */
  .testimonial-slide {
    padding: 0 16px;
  }

  .testimonial-card {
    padding: 24px 8px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* ── TRAVEL STYLES ── */
  .travel-styles-grid {
    grid-template-columns: 1fr;
  }

  .travel-style-card {
    padding: 40px 28px;
  }

  .travel-style-footer {
    margin-top: 52px;
  }

  /* ── BESPOKE ── */
  .bespoke-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px;
  }

  .bespoke-img {
    height: 320px;
  }

  /* ── CONTACT FORM ── */
  .contact-form {
    padding: 36px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* ── FOOTER ── */
  footer {
    padding: 52px 24px 32px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav {
    gap: 36px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    text-align: center;
    text-decoration: none;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL PHONES (max-width: 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
  nav {
    padding: 10px 16px;
  }

  nav.scrolled {
    padding: 8px 16px;
  }

  .nav-logo img {
    width: 100px;
    height: 56px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 12px 0;
  }

  /* ── HERO ── */
  .hero {
    min-height: 480px;
  }

  .hero-content {
    padding: 0 16px 48px;
  }

  .hero-h1 {
    font-size: clamp(34px, 9vw, 52px);
  }

  .hero-eyebrow,
  .hero-sub {
    font-size: 7px;
    letter-spacing: 0.22em;
  }

  .btn-outline,
  .btn-dark {
    font-size: 8px;
    padding: 11px 22px;
    letter-spacing: 0.22em;
  }

  /* ── SECTIONS ── */
  .home-intro,
  .about-story,
  .contact-grid {
    padding: 48px 16px;
    gap: 36px;
  }

  .section-heading {
    font-size: clamp(28px, 7vw, 42px);
  }

  .body-text {
    font-size: 10px;
    line-height: 2;
  }

  /* ── TOUR CARDS ── */
  .featured-tours {
    padding: 60px 16px;
  }

  .tour-card {
    height: 340px;
  }

  .tour-card-title {
    font-size: 20px;
  }

  .tour-card-content {
    padding: 24px 20px;
  }

  /* ── TOUR ITEMS ── */
  .tour-list {
    padding: 0 16px 60px;
  }

  .tour-item-content {
    padding: 36px 20px;
  }

  .tour-item-num {
    font-size: 44px;
  }

  .tour-item-desc {
    font-size: 10px;
  }

  /* ── TESTIMONIALS ── */
  .testimonial-section {
    padding: 60px 16px;
  }

  .testimonial-slide {
    padding: 0 8px;
  }

  .testimonial-card {
    padding: 16px 4px;
  }

  .testimonial-text {
    font-size: clamp(18px, 5vw, 26px);
  }

  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .carousel-arrow.prev {
    left: 4px;
  }

  .carousel-arrow.next {
    right: 4px;
  }

  /* ── CINEMA & PANORAMA ── */
  .cinema {
    height: 40vh;
  }

  .cinema-label-bl,
  .cinema-label-br {
    bottom: 20px;
    left: 16px;
    right: 16px;
  }

  .cinema-label-br {
    left: auto;
  }

  .panorama {
    height: 36vh;
  }

  .panorama-text {
    padding: 0 16px;
    font-size: clamp(24px, 6vw, 42px);
  }

  /* ── ABOUT ── */
  .about-story-img {
    height: auto;
  }

  .about-values {
    padding: 60px 16px;
  }

  .value-item {
    padding: 36px 24px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    padding: 36px 16px;
  }

  .a-stat {
    padding: 24px 12px;
  }

  .a-stat-n {
    font-size: 36px;
  }

  /* ── FLEET ── */
  .fleet-intro {
    padding: 60px 16px 40px;
  }

  .fleet-wrapper {
    padding: 0 16px 60px;
  }

  .fleet-hero-img {
    min-height: 220px;
  }

  .fleet-hero-content {
    padding: 28px 20px;
  }

  .fleet-hero-name {
    font-size: 26px;
  }

  .fleet-card-body {
    padding: 20px 20px 28px;
  }

  /* ── TRAVEL STYLES ── */
  .travel-styles {
    padding: 48px 16px;
  }

  .travel-style-card {
    padding: 32px 20px;
  }

  .travel-style-title {
    font-size: 22px;
  }

  /* ── BESPOKE ── */
  .bespoke-section {
    padding: 48px 16px;
    gap: 36px;
  }

  .bespoke-img {
    height: 240px;
  }

  /* ── CONTACT ── */
  .contact-grid {
    padding: 48px 16px;
  }

  .contact-form {
    padding: 28px 16px;
  }

  .form-heading {
    font-size: 22px;
  }

  .whatsapp-btn {
    font-size: 8px;
    padding: 12px 18px;
  }

  /* ── PAGE HEADERS ── */
  .page-header {
    padding: 0 16px 40px;
    min-height: 260px;
    height: 38vh;
  }

  .page-header-content h1 {
    font-size: clamp(36px, 9vw, 56px);
  }

  /* ── FOOTER ── */
  footer {
    padding: 40px 16px 28px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  /* ── PAGE HEADER TEXT WRAP FIX ── */
  .page-header-content h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}
