/* ═══════════════════════════════════════════════
   LEBLON MYKONOS — DESIGN SYSTEM
   Minimal luxury. Black & white with warm tones.
═══════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────── */
:root {
  /* Colors */
  --bg:          #F2EBE0;   /* warm cream */
  --bg-dark:     #111110;
  --bg-mid:      #1E1D1C;
  --ink:         #1A1918;
  --ink-muted:   #6B6866;
  --rule:        #D4C9BC;   /* warmed to match new bg */
  --rule-dark:   #2A2826;
  --white:       #FFFFFF;
  --off-white:   #EDE5D8;   /* slightly deeper cream for alternating sections */

  /* Typography */
  --font-heading: 'Alice', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    1.5rem;
  --space-lg:    2.5rem;
  --space-xl:    4rem;
  --space-2xl:   7rem;
  --space-3xl:   10rem;

  /* Layout */
  --container:   1280px;
  --container-sm: 860px;

  /* Motion */
  --t:           0.35s ease;
  --t-slow:      0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ─── UTILITY ────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-sm);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.55);
}

.section-header {
  max-width: 680px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.section-header h2,
.section-header p {
  margin-left: auto;
  margin-right: auto;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-top: var(--space-sm);
}

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }

p {
  font-size: 0.95rem;
  line-height: 1.85;
  text-wrap: pretty;
  max-width: 65ch;
}

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--bg-mid);
  border-color: var(--bg-mid);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--off-white);
  border-color: var(--off-white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Active press feedback */
.btn:active {
  transform: scale(0.98) translateY(1px);
}

/* Focus rings for accessibility */
.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-lg);
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: var(--space-sm);
}

/* ─── ANIMATIONS ─────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--t), padding var(--t);
}

#navbar.scrolled {
  background: var(--bg-dark);
  padding: 1rem 0;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  height: 52px;
  display: flex;
  align-items: center;
  margin-right: auto;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.5));
}

.logo-white { display: block; }
.logo-black { display: none; }

#navbar.scrolled .logo-white { display: none; }
#navbar.scrolled .logo-black { display: none; }
#navbar:not(.scrolled) .logo-white { display: block; }
#navbar.scrolled .logo-white-override { display: block; }

/* On light sections we show black logo when not scrolled */
/* JS will toggle .nav--light class */
#navbar.nav--light:not(.scrolled) .logo-white { display: none; }
#navbar.nav--light:not(.scrolled) .logo-black { display: block; }

/* Always show white logo when scrolled (dark bg) */
#navbar.scrolled .logo-white { display: block !important; }
#navbar.scrolled .logo-black { display: none !important; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-left: 0;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--t);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: currentColor;
  transition: right var(--t);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

#navbar.nav--light:not(.scrolled) .nav-links a {
  color: var(--ink);
}

#navbar.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

/* Dropdown */
.has-dropdown {
  position: relative;
  /* Extend hover area downward to bridge gap to dropdown */
  padding-bottom: 1rem;
  margin-bottom: -1rem;
}

.dropdown {
  position: absolute;
  top: calc(100% - 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-dark);
  min-width: 180px;
  padding: var(--space-sm) 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
}

/* Invisible bridge so mouse can travel from link to dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  height: 1rem;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.6rem 1.4rem;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
}

.dropdown a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.dropdown a::after { display: none; }

/* CTA button in nav */
.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  transition: background var(--t), border-color var(--t);
  margin-left: var(--space-sm);
  white-space: nowrap;
}

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

#navbar.nav--light:not(.scrolled) .nav-cta {
  border-color: rgba(0, 0, 0, 0.35);
  color: var(--ink);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform var(--t), opacity var(--t);
}

#navbar.nav--light:not(.scrolled) .hamburger span {
  background: var(--ink);
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--bg-dark);
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.mobile-menu a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--rule-dark);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: translateZ(0);
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Strong top band — keeps logo and nav legible */
    linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 22%),
    /* Strong bottom band — buries any remaining watermark edge */
    linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 18%),
    /* General darkening */
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-lg);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  color: var(--white);
}

/* Company name — prominent but not competing with tagline */
.hero-brand {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-lg);
  font-family: var(--font-body);
  font-weight: 400;
}

.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: var(--space-md);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-actions .fade-in { transition-delay: 0.2s; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 50px;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--white);
  animation: scrollDown 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.about-header {
  max-width: 720px;
  margin-bottom: var(--space-2xl);
}

.about-header h2 {
  margin-bottom: var(--space-md);
}

.about-lead {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

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

.value-card {
  background: var(--bg);
  padding: var(--space-xl) var(--space-lg);
  transition: background var(--t);
}

.value-card:hover {
  background: var(--white);
}

.value-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--rule);
  margin-bottom: var(--space-md);
  line-height: 1;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

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

/* ═══════════════════════════════════════════════
   PRIVATE TRANSFERS
═══════════════════════════════════════════════ */
.transfers {
  padding: var(--space-3xl) 0;
  background: var(--off-white);
}

.cars-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.car-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.car-card--reverse {
  direction: rtl;
}

.car-card--reverse > * {
  direction: ltr;
}

.car-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.car-gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center center;
  transition: opacity var(--t);
}

.car-gallery img:hover {
  opacity: 0.88;
}

.car-info {
  padding-top: var(--space-md);
}

.car-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-sm);
}

.car-info h3 {
  margin-bottom: var(--space-sm);
}

.car-info p {
  color: var(--ink-muted);
  margin-bottom: var(--space-md);
}

.car-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--rule);
}

.car-specs li {
  font-size: 0.85rem;
  color: var(--ink);
  padding-left: 1.2rem;
  position: relative;
}

.car-specs li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ink-muted);
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════
   CONCIERGE INTRO
═══════════════════════════════════════════════ */
.concierge-intro {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.concierge-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.concierge-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background var(--t);
  overflow: hidden;
}

.concierge-card:hover {
  background: var(--white);
}

.concierge-card-img {
  overflow: hidden;
  aspect-ratio: 3/2;
}

.concierge-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.concierge-card:hover .concierge-card-img img {
  transform: scale(1.04);
}

.concierge-card-body {
  padding: var(--space-lg);
  flex: 1;
}

.concierge-card-body h3 {
  margin-bottom: var(--space-sm);
}

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

/* ═══════════════════════════════════════════════
   FULL-BLEED SECTIONS (BOAT)
═══════════════════════════════════════════════ */
.fullbleed-section {
  position: relative;
  background: var(--bg-dark);
  color: var(--white);
  overflow: hidden;
}

.fullbleed-media {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}

.fullbleed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 55%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.fullbleed-content {
  position: absolute;
  top: var(--space-2xl);
  left: 0;
  padding: 0 var(--space-2xl);
  max-width: 640px;
  z-index: 2;
}

.fullbleed-content h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.fullbleed-content p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: var(--space-lg);
}

.feature-list {
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 1.2rem;
  position: relative;
}

.feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.35);
}

/* Photo strip below fullbleed */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--bg-dark);
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity var(--t);
}

.photo-strip img:hover {
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   VILLA AORA
═══════════════════════════════════════════════ */
.villa-section {
  padding: var(--space-3xl) 0;
  background: var(--off-white);
}

.villa-header {
  max-width: 680px;
  margin-bottom: var(--space-xl);
}

.villa-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1px;
  background: var(--rule);
  margin-bottom: var(--space-xl);
}

.villa-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.villa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
}

.villa-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 248px;
}

.villa-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--rule);
}

.villa-specs {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.spec-value {
  font-size: 0.9rem;
  color: var(--ink);
}

/* ═══════════════════════════════════════════════
   RESTAURANTS & CLUBS
═══════════════════════════════════════════════ */
.dining-section {
  background: var(--bg);
  padding: var(--space-3xl) 0;
}

.dining-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.dining-text h2 {
  margin-bottom: var(--space-md);
}

.dining-text p {
  color: var(--ink-muted);
  margin-bottom: var(--space-md);
}

.dining-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: var(--space-lg) 0 var(--space-xl);
  padding-left: 0;
}

.dining-list li {
  font-size: 0.88rem;
  color: var(--ink);
  padding-left: 1.4rem;
  position: relative;
}

.dining-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ink-muted);
  font-size: 0.75rem;
}

.dining-image {
  overflow: hidden;
}

.dining-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.dining-image:hover img {
  transform: scale(1.03);
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-mid);
  color: var(--white);
  border-top: 1px solid var(--rule-dark);
}

.contact-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--space-xl);
}

.contact-header h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.contact-header .section-lead {
  color: rgba(255, 255, 255, 0.5);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-dark);
  border: 1px solid var(--rule-dark);
  margin-bottom: var(--space-xl);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-dark);
  transition: background var(--t);
  cursor: pointer;
}

.contact-card:hover {
  background: var(--bg-mid);
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.contact-value {
  font-size: 0.95rem;
  color: var(--white);
}

.contact-arrow {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.1rem;
  transition: color var(--t), transform var(--t);
}

.contact-card:hover .contact-arrow {
  color: var(--white);
  transform: translateX(4px);
}

.contact-footer {
  text-align: center;
}

.contact-location {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: var(--space-xl) 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  gap: var(--space-lg);
  margin-left: auto;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color var(--t);
}

.footer-nav a:hover {
  color: var(--ink);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--rule);
  margin-left: var(--space-xl);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --space-2xl: 5rem;
    --space-3xl: 7rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .car-card,
  .car-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  /* Info above gallery when stacked */
  .car-info { order: -1; }

  .concierge-cards {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .villa-gallery {
    grid-template-columns: 1fr;
  }

  .villa-main img {
    min-height: 400px;
  }

  .villa-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }

  .villa-grid img {
    min-height: 200px;
  }

  .villa-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .dining-inner {
    grid-template-columns: 1fr;
  }

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

  .fullbleed-content {
    padding: 0 var(--space-lg);
    max-width: 100%;
    position: relative;
    top: auto;
    transform: none;
    padding: var(--space-xl) var(--space-lg);
  }

  .fullbleed-overlay {
    background: rgba(0, 0, 0, 0.6);
  }

  .fullbleed-section {
    display: flex;
    flex-direction: column;
  }

  .fullbleed-media {
    height: 55vh;
    overflow: visible;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .footer-nav {
    margin-left: 0;
    justify-content: center;
  }

  .footer-copy {
    margin-left: 0;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
═══════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --space-lg:   1.25rem;
    --space-xl:   2rem;
    --space-2xl:  3rem;
    --space-3xl:  3.5rem; /* reduced from 4.5rem — sections breathe without wasting screen */
  }

  /* Hero */
  .hero-brand { font-size: 1.5rem; }
  .hero h1    { font-size: 1.9rem; line-height: 1.2; }
  .hero-sub   { font-size: 0.92rem; } /* bumped up — 0.85rem was below comfortable reading */
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .btn        { width: 100%; text-align: center; }

  /* Eyebrow labels — bumped from 0.7rem, easier to read at arm's length */
  .eyebrow { font-size: 0.76rem; }

  /* Nav */
  .nav-logo { height: 38px; }
  .nav-logo img { height: 38px; }
  .nav-inner { padding: 0 1rem; }

  /* About */
  .about-lead { font-size: 0.92rem; }
  .value-card { padding: var(--space-lg) var(--space-md); }

  /* Transfers */
  .car-thumbs { grid-template-columns: repeat(3, 1fr); }
  .car-info   { padding-top: var(--space-sm); }

  /* Boat */
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .fullbleed-content { padding: var(--space-lg) var(--space-md); }
  .feature-list { margin-bottom: var(--space-lg); }
  .fullbleed-media { height: 45vh; min-height: unset; }

  /* Car gallery — landscape aspect + anchor to bottom so car isn't cropped */
  .car-gallery img { aspect-ratio: 4/3; object-position: center bottom; }
  /* This specific photo has the car centred vertically — keep default position */
  .car-gallery img.img-pos-center { object-position: center center; }

  /* Villa */
  .villa-main img {
    height: 240px;
    min-height: unset;
    width: 100%;
    object-fit: cover;
  }
  .villa-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .villa-grid img {
    height: 150px;
    min-height: unset;
    width: 100%;
    object-fit: cover;
  }
  .villa-specs {
    flex-direction: column;
    gap: var(--space-sm);
  }

  /* Dining */
  .dining-image img { aspect-ratio: 4/3; }

  /* Contact */
  .contact-card   { padding: 1.25rem var(--space-md); }
  .contact-value  { font-size: 0.85rem; }
  .contact-header h2 { font-size: 1.8rem; }

  /* Minimum touch target size — 44px */
  .btn, .nav-cta, .contact-card, .hamburger {
    min-height: 44px;
  }
  .hamburger { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }

  /* Footer — links legible, copyright wraps if needed */
  .footer-nav { gap: var(--space-sm); font-size: 0.76rem; }
  .footer-copy { white-space: normal; font-size: 0.76rem; }
  .footer-logo img { height: 32px; }
}

/* Grain removed — used SVG filter which caused scroll jank */

/* ═══════════════════════════════════════════════
   IMAGE REVEAL — hover depth on key images
═══════════════════════════════════════════════ */
.villa-main img,
.dining-image img {
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════════════════════════════════════════
   SECTION TRANSITIONS — smooth palette flow
═══════════════════════════════════════════════ */
.transfers {
  position: relative;
}
.transfers::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--rule);
}

/* ═══════════════════════════════════════════════
   CONTACT CARD IMPROVEMENTS
═══════════════════════════════════════════════ */
.contact-card {
  position: relative;
  overflow: hidden;
}
.contact-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-lg);
  right: var(--space-lg);
  height: 1px;
  background: var(--rule-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-card:hover::after {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════════
   HERO COPY STAGGER DELAYS
═══════════════════════════════════════════════ */
.hero-eyebrow.fade-in  { transition-delay: 0s; }
.hero h1 .fade-in,
.hero h1.fade-in        { transition-delay: 0.1s; }
.hero-sub.fade-in       { transition-delay: 0.2s; }
.hero-actions.fade-in   { transition-delay: 0.32s; }


/* ═══════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════ */
.car-gallery img { cursor: zoom-in; }

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#lightbox.open {
  opacity: 1;
  pointer-events: all;
}
#lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(0.96);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
#lightbox.open img {
  transform: scale(1);
}
#lightbox-close,
#lightbox-prev,
#lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  padding: 0.75rem;
  transition: color 0.2s ease;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
#lightbox-close:hover,
#lightbox-prev:hover,
#lightbox-next:hover { color: #fff; }
#lightbox-close {
  top: 1.25rem;
  right: 1.5rem;
  font-size: 1.75rem;
}
#lightbox-prev {
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}
#lightbox-next {
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}
