/* ═══════════════════════════════════════════════════════════════════════════
   EMMA SINCLAIR — Luxury European Redesign
   Romantic · Minimalist · Editorial · Timeless
   ═══════════════════════════════════════════════════════════════════════════

   TABLE OF CONTENTS
   1.  Design Tokens & CSS Custom Properties
   2.  CSS Reset & Base Styles
   3.  Typography Scale
   4.  Layout Utilities
   5.  Navigation
   6.  Hero / Splash Section
   7.  Page Hero (inner pages)
   8.  Buttons
   9.  About Me Page
   10. Stats & Favorites Sections
   11. Date Ideas Page
   12. Rates Page
   13. Contact Page & Form
   14. Footer & Newsletter
   15. Animations & Micro-interactions
   16. Responsive Breakpoints

═══════════════════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────────────────
   1. DESIGN TOKENS & CSS CUSTOM PROPERTIES
───────────────────────────────────────────────────────────────────────── */
:root {
  /* ── Color Palette — Lux Navia ──
     Pearl White #FBFAF8 · Tide #EDF4FF · Sand #E7E0D8 · Waves #E0F2F6 · Ocean #173260
  ── */
  --color-ivory:        #FBFAF8;   /* pearl white — pure base */
  --color-cream:        #F5F3EF;   /* tide — light blue-white section backgrounds */
  --color-parchment:    #E0F2F6;   /* waves — very light aqua tint */
  --color-blush:        #D8EDF8;   /* soft tide variant */
  --color-blush-deep:   #C4D8EA;   /* medium blue-grey hover */
  --color-warm-gray:    #A0AEBF;   /* blue-grey mid-tone */
  --color-stone:        #6B7A8F;   /* steel blue secondary text */
  --color-charcoal:     #2C3A50;   /* dark ocean text — headings & body */
  --color-ink:          #173260;   /* deep ocean near-black — nav, headings */
  --color-accent:         #173260;   /* ocean — primary accent */
  --color-accent-hover:   #2C4A80;   /* lighter ocean for hover states */
  --color-border:       #D4DDE8;   /* soft blue-grey border */
  --color-border-dark:  #B8C8D8;   /* deeper blue border */

  /* Legacy aliases — keeps all existing HTML working */
  --color-navy:         var(--color-ink);
  --color-navy-mid:     var(--color-charcoal);
  --color-muted:        var(--color-stone);
  --color-warm-white:   var(--color-ivory);
  --color-off-black:    var(--color-ink);

  /* Typography */
  --font-script:    'Playfair Display', Georgia, serif;
  --font-serif:     'Cormorant', Georgia, serif;
  --font-sans:      'Jost', system-ui, sans-serif;

  /* Type Scale */
  --text-caption: 0.825rem;
  --text-xs:    0.9375rem;
  --text-sm:    1.0625rem;
  --text-base:  1.1875rem;
  --text-md:    1.3125rem;
  --text-lg:    1.5rem;
  --text-xl:    1.75rem;
  --text-2xl:   2rem;
  --text-3xl:   2.5rem;
  --text-4xl:   3.25rem;
  --text-5xl:   4.25rem;

  /* Spacing — 8-point grid */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-7:  1.75rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    12px;
  --radius-xl:    20px;
  --radius-2xl:   32px;
  --radius-full:  9999px;
  --radius-photo: 8px;   /* matches gallery photo shape */

  /* Navigation */
  --nav-height: 80px;

  /* Transitions */
  --transition:       all 0.4s cubic-bezier(0.25, 0, 0, 1);
  --transition-fast:  all 0.22s cubic-bezier(0.25, 0, 0, 1);
  --transition-slow:  all 0.8s cubic-bezier(0.25, 0, 0, 1);

  /* Max width */
  --max-width:        1200px;
  --max-width-narrow: 760px;
  --max-width-wide:   1400px;

  /* Section rhythm — used everywhere for consistent vertical breathing room */
  --section-v:   var(--space-24);  /* 96px — desktop default */
  --section-h:   var(--space-8);   /* 32px — outer horizontal gutter */

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(23,50,96,0.06), 0 2px 8px rgba(23,50,96,0.04);
  --shadow-md: 0 4px 16px rgba(23,50,96,0.10), 0 1px 4px rgba(23,50,96,0.06);
  --shadow-lg: 0 8px 40px rgba(23,50,96,0.14), 0 2px 8px rgba(23,50,96,0.06);

  /* Semantic */
  --space-9:     2.25rem;
  --color-error:      #b94040;
  --color-gold:       #9A7B4F;
  --color-gold-light: #B8944A;
  --color-sand-warm:  #E7DDD0;
}


/* ─────────────────────────────────────────────────────────────────────────
   2. CSS RESET & BASE STYLES
───────────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;
  /* scroll-behavior handled by Lenis — native smooth-scroll removed to avoid conflict */
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--text-base);
  line-height: 1.85;
  letter-spacing: 0.01em;
  color: var(--color-charcoal);
  background-color: var(--color-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* Prevent any element from causing horizontal overflow */
* {
  min-width: 0;
}

/* Global paragraph rhythm */
p {
  line-height: inherit;
}
p + p {
  margin-top: var(--space-5);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-ink);
  color: var(--color-ivory);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus { top: 0; }


/* ─────────────────────────────────────────────────────────────────────────
   3. TYPOGRAPHY SCALE
───────────────────────────────────────────────────────────────────────── */
.heading-script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-charcoal);
}

.heading-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-stone);
}

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-4);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-header--left {
  text-align: left;
}
.section-header__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1.1;
}
.section-header__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: var(--text-md);
  color: var(--color-stone);
  margin-top: var(--space-4);
  line-height: 1.85;
}

/* Thin hairline ornament */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin: var(--space-10) auto;
  color: var(--color-accent-hover);
  font-family: var(--font-serif);
  font-size: var(--text-sm);
}
.ornament::before,
.ornament::after {
  content: '';
  display: block;
  height: 1px;
  width: clamp(40px, 12vw, 100px);
  background: var(--color-accent-hover);
}

/* ── Smooth image rendering ── */
img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
}

/* ── Focus styles — visible for keyboard nav, hidden for mouse ── */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* ── Selection color ── */
::selection {
  background: rgba(23, 50, 96, 0.15);
  color: var(--color-ink);
}


/* ─────────────────────────────────────────────────────────────────────────
   4. LAYOUT UTILITIES
───────────────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-8);
}
.container--narrow {
  max-width: var(--max-width-narrow);
  margin-inline: auto;
  padding-inline: var(--space-8);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.section {
  padding-block: var(--section-v);
}

/* ── Section spacing variants ── */
.section--sm   { padding-block: var(--space-16); }
.section--lg   { padding-block: var(--space-32); }

.bg-ivory       { background-color: var(--color-ivory); }
.bg-cream       { background-color: var(--color-cream); }
.bg-parchment   { background-color: var(--color-sand-warm); }
.bg-blush       { background-color: var(--color-blush); }
.bg-warm-white  { background-color: var(--color-ivory); }


/* ─────────────────────────────────────────────────────────────────────────
   5. NAVIGATION
───────────────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.4s cubic-bezier(0.25, 0, 0, 1), box-shadow 0.4s cubic-bezier(0.25, 0, 0, 1);
}

.site-nav--solid,
.site-nav.is-scrolled {
  background: rgba(251, 250, 248, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--color-border);
}
.site-nav:has(+ .nav-drawer.is-open),
.site-nav.drawer-open {
  background: #ffffff !important;
  box-shadow: 0 1px 0 var(--color-border);
}

.nav-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-8);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav-logo {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--color-ivory);
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.45em;
}

/* ── Logo icon — nav, footer, hero ── */
.site-logo-icon {
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
  flex-shrink: 0;
  vertical-align: middle;
}
.site-logo-icon--footer {
  width: 2.4rem;
  height: 2.4rem;
}
.hero__logo-icon {
  display: block;
  width: clamp(6rem, 15vw, 11rem);
  height: auto;
  margin: 0 auto var(--space-5);
  opacity: 0.92;
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0, 0, 1) 0.1s both;
}

/* ── Dual logo crossfade: ivory on transparent nav → navy on scroll ── */
.nav-logo-wrap {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  display: inline-flex;
}
.nav-logo__ivory {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.nav-logo__navy {
  position: absolute;
  inset: 0;
  width: 2.2rem;
  height: 2.2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.site-nav.is-scrolled .nav-logo__ivory,
.site-nav--solid .nav-logo__ivory,
.site-nav:has(+ .nav-drawer.is-open) .nav-logo__ivory,
.site-nav.drawer-open .nav-logo__ivory { opacity: 0; }
.site-nav.is-scrolled .nav-logo__navy,
.site-nav--solid .nav-logo__navy,
.site-nav:has(+ .nav-drawer.is-open) .nav-logo__navy,
.site-nav.drawer-open .nav-logo__navy  { opacity: 1; }

.site-nav.is-scrolled .nav-logo,
.site-nav--solid .nav-logo,
.site-nav:has(+ .nav-drawer.is-open) .nav-logo,
.site-nav.drawer-open .nav-logo {
  color: var(--color-charcoal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.78);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--color-ivory);
}
.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}
.site-nav.is-scrolled .nav-links a,
.site-nav--solid .nav-links a {
  color: var(--color-stone);
}
.site-nav.is-scrolled .nav-links a:hover,
.site-nav.is-scrolled .nav-links a.is-active,
.site-nav--solid .nav-links a:hover,
.site-nav--solid .nav-links a.is-active {
  color: var(--color-charcoal);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-1);
  width: 40px;
  height: 40px;
  padding: var(--space-2);
  z-index: 101;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.04);
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--color-ivory);
  transition: var(--transition-fast);
  border-radius: 1px;
}
.site-nav.is-scrolled .nav-toggle span,
.site-nav--solid .nav-toggle span,
.site-nav:has(+ .nav-drawer.is-open) .nav-toggle span,
.site-nav.drawer-open .nav-toggle span {
  background: var(--color-charcoal);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-2);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.25, 0, 0, 1),
              opacity   0.45s cubic-bezier(0.25, 0, 0, 1),
              visibility 0s linear 0.45s;
  overflow-y: auto;
}
.nav-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.nav-drawer ul {
  text-align: center;
  padding: var(--space-8) 0;
}
.nav-drawer li {
  overflow: hidden;
}
.nav-drawer a {
  display: block;
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--color-charcoal);
  padding: var(--space-3) var(--space-8);
  transition: color var(--transition-fast), letter-spacing var(--transition-fast);
  letter-spacing: 0;
}
.nav-drawer a:hover {
  color: var(--color-accent);
  letter-spacing: 0.01em;
}
.nav-drawer a.is-active {
  color: var(--color-accent);
}


/* ─────────────────────────────────────────────────────────────────────────
   6. HERO / SPLASH SECTION
───────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(44, 74, 138, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(23, 50, 96, 0.40) 0%, transparent 55%),
    linear-gradient(160deg, #0a1628 0%, #0f1e42 35%, #162d5e 65%, #0d1a38 100%);
}

/* Decorative orb — soft glow behind title */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  width: clamp(280px, 55vw, 620px);
  height: clamp(280px, 55vw, 620px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 74, 138, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero__bg {
  display: none;
}

.hero__overlay {
  display: none;
}

/* Grain / film texture overlay */
.hero__overlay::after {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6);
  max-width: 700px;
}

.hero__name {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 400;
  color: #FBFAF8;
  line-height: 1.0;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-shadow: 0 2px 40px rgba(44, 74, 138, 0.5);
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0, 0, 1) 0.3s both;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(195, 215, 245, 0.80);
  letter-spacing: 0.05em;
  line-height: 1.7;
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0, 0, 1) 0.6s both;
}

.hero__content .btn {
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0, 0, 1) 0.9s both;
}

.hero__continue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(250, 248, 244, 0.70);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0, 0, 1) 0.9s both;
}
.hero__continue:hover {
  color: rgba(250, 248, 244, 1);
  transform: translateY(3px);
}
.hero__continue svg {
  opacity: 0.75;
  animation: arrowBob 2s ease-in-out infinite;
}

@media (max-width: 600px) {
  .hero {
    justify-content: center;
  }
  .hero__content {
    text-align: center;
    align-items: center;
    padding: var(--space-5) var(--space-4);
    gap: var(--space-5);
  }
  .hero__continue {
    align-items: center;
  }
}
@keyframes arrowBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

.newsletter-submit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  background: none;
  border: none;
  padding: 0;
  color: rgba(250, 248, 244, 0.70);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.newsletter-submit:hover {
  color: rgba(250, 248, 244, 1);
  transform: translateY(3px);
}
.newsletter-submit svg {
  opacity: 0.75;
  animation: arrowBob 2s ease-in-out infinite;
}


/* ─────────────────────────────────────────────────────────────────────────
   7. PAGE HERO (inner pages)
   — Solid blue gradient banner, centered title, fade-up entrance animation.
   — No background photo: clean, consistent, matches the powder-blue palette.
───────────────────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-32)) var(--section-h) var(--space-20);
  overflow: hidden;
  /* Gradient: Lux Navia Ocean */
  background: linear-gradient(
    160deg,
    #0F1F45 0%,
    #173260 40%,
    #243F78 75%,
    #2C4A8A 100%
  );
}

/* Subtle radial light bloom — adds depth without noise */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(174, 205, 232, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% -10%, rgba(255, 255, 255, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

/* Hide the old bg image — kept in HTML for semantics but not rendered */
.page-hero__bg {
  display: none;
}

/* Base overlay — page-specific CSS activates & styles it */
.page-hero__overlay {
  display: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  animation: pageHeroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes pageHeroIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Thin decorative line above the title */
.page-hero__content::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.50);
  margin: 0 auto var(--space-5);
}

.page-hero__title {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.12);
}


/* ─────────────────────────────────────────────────────────────────────────
   8. BUTTONS
───────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--space-4) var(--space-10);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-ivory);
  border: 1px solid var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(23, 50, 96, 0.12);
}

.btn {
  will-change: transform;
}
.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
}

.btn--outline {
  background: transparent;
  color: var(--color-charcoal);
  border: 1px solid rgba(58, 54, 50, 0.4);
}
.btn--outline:hover {
  background: var(--color-charcoal);
  color: var(--color-ivory);
  border-color: var(--color-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(23, 50, 96, 0.10);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-ivory);
  border: 1px solid rgba(250, 248, 244, 0.55);
  letter-spacing: 0.2em;
}
.btn--outline-white:hover {
  background: rgba(250, 248, 244, 0.10);
  border-color: rgba(250, 248, 244, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Focus states — keyboard navigation */
.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.nav-links a:focus-visible,
.nav-drawer a:focus-visible,
.footer-nav__links a:focus-visible,
.footer-nav__links--light a:focus-visible,
.social-link:focus-visible,
.social-link--light:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Sticky photo utility — replaces inline styles on about/rates */
.sticky-photo {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-8));
}
.sticky-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  display: block;
}

/* Section top-padding utility — replaces inline padding-top calc */
.section-top {
  padding-top: calc(var(--nav-height) + var(--space-32));
}

/* Quote / pull-text style used on about and contact */
.prose-quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-stone);
  font-size: var(--text-md);
  line-height: 1.8;
  margin-top: var(--space-3);
}

/* Form hint text */
.form-hint {
  font-size: var(--text-xs);
  color: rgba(23,50,96,0.60);
  margin-top: var(--space-1);
}


/* ─────────────────────────────────────────────────────────────────────────
   9. ABOUT ME PAGE
───────────────────────────────────────────────────────────────────────── */
.about-intro__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: start;
}

.about-intro__photo-wrap {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-8));
}

.about-intro__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-photo);
}

.about-intro__section-label {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: var(--space-8);
  color: var(--color-charcoal);
}

.about-intro__body {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 2.0;
  color: var(--color-charcoal);
  text-align: left;
  max-width: 62ch;
}
.about-intro__body p + p {
  margin-top: var(--space-7);
}



/* ─────────────────────────────────────────────────────────────────────────
   10. STATS & FAVORITES SECTIONS
───────────────────────────────────────────────────────────────────────── */
.glance-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: start;
}

.favorites-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: start;
}

.stats-list {
  display: flex;
  flex-direction: column;
}

.stats-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-6);
  align-items: start;
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-border);
}
.stats-item:first-child {
  border-top: 1px solid var(--color-border);
}

.stats-item__label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding-top: 3px;
}

.stats-item__value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--color-charcoal);
  line-height: 1.65;
}



/* ── Venue two-column layout (dinner & drink) ── */
.venue-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.venue-col__heading {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.venue-col__eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.venue-col__title {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1.1;
}

.venue-col .venue-grid {
  max-width: none;
}

@media (max-width: 480px) {
  .venue-cols {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.venue-grid {
  display: flex;
  flex-direction: column;
  max-width: 420px;
}

/* ── Drink cards ── */
.drink-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  list-style: none;
  padding: 0;
  margin: 0;
}

.drink-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-6) var(--space-6) var(--space-5);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

.drink-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(110,160,200,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.drink-card:hover {
  border-color: rgba(110,160,200,0.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.drink-card:hover::before {
  opacity: 1;
}

.drink-card__num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-xl);
  font-weight: 300;
  color: rgba(110,160,200,0.25);
  line-height: 1;
  margin-bottom: var(--space-4);
  transition: color var(--transition);
}

.drink-card:hover .drink-card__num {
  color: rgba(110,160,200,0.55);
}

.drink-card__name {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--color-ink);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.drink-card__tag {
  display: inline-block;
  margin-top: var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  background: rgba(110,160,200,0.12);
  border-radius: var(--radius-full);
  padding: 2px var(--space-3);
}

@media (max-width: 768px) {
  .drink-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .drink-cards {
    grid-template-columns: 1fr;
  }
}

.venue-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-serif);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-charcoal);
  transition: color var(--transition-fast);
}
.venue-item:first-child {
  border-top: 1px solid var(--color-border);
}
.venue-item:hover {
  color: var(--color-accent);
}
.venue-item span {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  flex-shrink: 0;
}

.venue-grid--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 var(--space-6);
  max-width: none;
}

.activities-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  max-width: 800px;
  margin-inline: auto;
}

.activity-tag {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  color: var(--color-stone);
  padding: var(--space-3) var(--space-6);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}
.activity-tag a {
  color: inherit;
}
.activity-tag:hover {
  border-color: var(--color-accent);
  color: var(--color-charcoal);
}

.photo-duo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.photo-duo__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-photo);
}

.photo-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.photo-strip__item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-photo);
}

/* Table by Emma — mid-tone cool feature */
.table-by-emma {
  background-color: #4E5B6E;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(110, 160, 200, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(174, 205, 232, 0.08) 0%, transparent 55%);
  padding: var(--space-24) var(--section-h);
  text-align: center;
}
.table-by-emma__inner {
  max-width: 640px;
  margin-inline: auto;
}
.table-by-emma__title {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--color-ivory);
  font-weight: 400;
  margin-bottom: var(--space-4);
}
.table-by-emma__price {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-8);
}
.table-by-emma__desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-md);
  color: rgba(250, 248, 244, 0.70);
  line-height: 1.85;
  margin-bottom: var(--space-6);
}


/* ─────────────────────────────────────────────────────────────────────────
   12. RATES PAGE
   (heavy scoped styles live in rates.html; this has shared overrides)
───────────────────────────────────────────────────────────────────────── */
.experience-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-photo);
}


/* ─────────────────────────────────────────────────────────────────────────
   13. CONTACT PAGE & FORM
───────────────────────────────────────────────────────────────────────── */
.contact-intro__title {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-charcoal);
  line-height: 1.1;
}
.contact-intro__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-md);
  color: var(--color-stone);
  line-height: 1.85;
  max-width: 52ch;
}

.booking-form-section {
  background: #EDF4FF;
  padding-block: var(--space-20);
}
.booking-form,
.booking-form form {
  max-width: 680px;
  margin-inline: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: var(--space-10) var(--space-8);
}
.booking-form form {
  max-width: none;
  padding: 0;
}

.form-group-heading {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #173260;
  margin-bottom: var(--space-6);
  margin-top: var(--space-10);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(23, 50, 96, 0.18);
}
.form-group-heading:first-of-type {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-field label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 50, 96, 0.75);
}
.form-field .required {
  color: #173260;
}

/* Underline-only fields — no bubble, no background */
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: var(--space-3) 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(23, 50, 96, 0.30);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: #173260;
  transition: border-color var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(23, 50, 96, 0.42);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: #173260;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-field select {
  background-image: none;
}
.form-field select::-ms-expand {
  display: none;
}
.form-field select option {
  background: #EDF4FF;
  color: #173260;
}
/* Override browser autofill on contact form */
.form-field input:-webkit-autofill,
.form-field input:-webkit-autofill:hover,
.form-field input:-webkit-autofill:focus,
.form-field select:-webkit-autofill,
.form-field select:-webkit-autofill:hover,
.form-field select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: #173260;
  background-color: transparent !important;
  transition: background-color 5000s ease-in-out 0s;
}

.radio-group {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(23, 50, 96, 0.75);
  cursor: pointer;
}
.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #173260;
}

.form-or {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-block: var(--space-2);
  color: rgba(23, 50, 96, 0.55);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
}
.form-or::before, .form-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(23, 50, 96, 0.15);
}

.upload-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  background: transparent;
  border: none;
  border-bottom: 1px dashed rgba(23, 50, 96, 0.35);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(23, 50, 96, 0.65);
  cursor: pointer;
  transition: var(--transition-fast);
}
.upload-btn:hover {
  border-bottom-color: #173260;
  color: #173260;
}

.banking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.banking-card {
  padding: var(--space-6) var(--space-5);
  text-align: center;
  background: transparent;
  border: 1px solid rgba(23, 50, 96, 0.22);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(23, 50, 96, 0.65);
  transition: var(--transition-fast);
}
.banking-card:hover,
.banking-card.is-selected {
  border-color: #173260;
  color: #173260;
  background: rgba(23, 50, 96, 0.05);
}

/* Location options — "Visit me / I visit you"
   Flat, underline-only style matching all other form fields */
.location-options {
  display: flex;
  justify-content: flex-start;
  gap: 0;
}
.location-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(23, 50, 96, 0.35);
  cursor: pointer;
  transition: color var(--transition-fast);
  user-select: none;
  -webkit-appearance: none;
  appearance: none;
}
.location-card + .location-card {
  margin-left: var(--space-8);
}
.location-card:hover {
  color: rgba(23, 50, 96, 0.65);
}
.location-card[aria-pressed="true"] {
  color: #173260;
}
/* Small circle indicator — replaces the box */
.location-card::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(23, 50, 96, 0.30);
  transition: var(--transition-fast);
}
.location-card:hover::before {
  border-color: rgba(23, 50, 96, 0.5);
}
.location-card[aria-pressed="true"]::before {
  background: #173260;
  border-color: #173260;
}
.location-card__x { display: none; }

.form-submit {
  margin-top: var(--space-8);
  text-align: center;
}

.form-submit-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  background: none;
  border: none;
  padding: var(--space-4) var(--space-6);
  min-height: 44px;
  color: rgba(23, 50, 96, 0.60);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.form-submit-btn:hover {
  color: #173260;
  transform: translateY(3px);
}
.form-submit-btn svg {
  opacity: 0.65;
  animation: arrowBob 2s ease-in-out infinite;
}


/* ─────────────────────────────────────────────────────────────────────────
   14. FOOTER & NEWSLETTER
───────────────────────────────────────────────────────────────────────── */

/* The footer wraps newsletter + brand row — one seamless dark section */
.site-footer {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(44, 74, 138, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(23, 50, 96, 0.40) 0%, transparent 55%),
    linear-gradient(160deg, #0a1628 0%, #0f1e42 35%, #162d5e 65%, #0d1a38 100%);
  color: rgba(237, 244, 255, 0.65);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 50vw, 500px);
  height: clamp(200px, 50vw, 500px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 74, 138, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.site-footer > * {
  position: relative;
  z-index: 1;
}

/* Stay Connected eyebrow — white in footer context */
.footer-newsletter-band .eyebrow {
  color: #ffffff;
}

/* Newsletter band — same background as footer for seamless continuity */
.footer-newsletter-band {
  background: transparent;
  padding: var(--space-20) var(--section-h) var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Plane above newsletter heading — flies right → left */
.footer-newsletter-band::before {
  content: '';
  position: absolute;
  top: 28px;
  width: 36px;
  height: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='rgba(237%2C244%2C255%2C1)' d='M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.28;
  transform: rotate(-90deg);
  animation: newsletter-rtl 26s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

@keyframes newsletter-rtl {
  0%   { left: calc(100% + 44px); }
  100% { left: -44px; }
}
.footer-newsletter-band .container--narrow {
  text-align: center;
}

.newsletter-heading {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--color-ivory);
  margin-bottom: var(--space-8);
  font-weight: 400;
}

.newsletter-subline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: rgba(250, 248, 244, 0.50);
  text-align: center;
  margin-top: calc(-1 * var(--space-4));
  margin-bottom: var(--space-8);
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.newsletter-signup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  max-width: 600px;
  margin-inline: auto;
}
.newsletter-signup__fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-3);
  width: 100%;
}
.newsletter-signup input {
  width: 100%;
  padding: var(--space-3) 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 248, 244, 0.25);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--color-ivory);
  outline: none;
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
}
.newsletter-signup input::placeholder {
  color: rgba(250, 248, 244, 0.30);
}
/* Override browser autofill white background */
.newsletter-signup input:-webkit-autofill,
.newsletter-signup input:-webkit-autofill:hover,
.newsletter-signup input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: var(--color-ivory);
  background-color: transparent !important;
  transition: background-color 5000s ease-in-out 0s;
}
.newsletter-signup input:focus {
  border-bottom-color: rgba(250, 248, 244, 0.80);
}

/* ── Footer flight lane (between newsletter and bottom row) ─────────────── */
.footer-flight-lane {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin: 0 0 0 0;
  pointer-events: none;
}

/* Plane — flies left → right */
.footer-flight-lane::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='rgba(237%2C244%2C255%2C1)' d='M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E");
  transform: rotate(90deg);
  animation: flight-ltr 22s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes flight-ltr {
  0%   { left: -44px; }
  100% { left: calc(100% + 44px); }
}

/* Footer bottom brand/nav/social row */
.footer-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-10);
  align-items: start;
  padding-block: var(--space-12);
  border-top: 1px solid rgba(250, 248, 244, 0.10);
}

/* Footer consistent spacing */
.footer-newsletter-band + .container .footer-bottom-row {
  padding-bottom: var(--space-16);
}

.footer-brand {}

.footer-bottom__email a {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  color: rgba(250, 248, 244, 0.70);
  letter-spacing: 0.02em;
}
.footer-bottom__email a:hover {
  color: rgba(250, 248, 244, 1);
}

.footer-brand__logo,
.footer-brand__logo--light {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.8rem;
  color: var(--color-ivory);
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-bottom: var(--space-2);
}
.footer-brand__tagline,
.footer-brand__tagline--light {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-md);
  color: rgba(250, 248, 244, 0.38);
  line-height: 1.7;
  max-width: 28ch;
}

.footer-nav__links,
.footer-nav__links--light {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: center;
}
.footer-nav__links a,
.footer-nav__links--light a {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: rgba(250, 248, 244, 0.42);
  transition: color var(--transition-fast);
}
.footer-nav__links a:hover,
.footer-nav__links--light a:hover {
  color: var(--color-ivory);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-4);
}

.footer-bottom__email a {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: rgba(250, 248, 244, 0.38);
  transition: color var(--transition-fast);
}
.footer-bottom__email a:hover {
  color: var(--color-ivory);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link,
.social-link--light {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(250, 248, 244, 0.14);
  border-radius: var(--radius-full);
  color: rgba(250, 248, 244, 0.42);
  transition: var(--transition-fast);
}
.social-link:hover,
.social-link--light:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.social-link svg,
.social-link--light svg {
  width: 14px;
  height: 14px;
}


/* ─────────────────────────────────────────────────────────────────────────
   15. ANIMATIONS & MICRO-INTERACTIONS
───────────────────────────────────────────────────────────────────────── */

/* Reveal on scroll — images use a more subtle translate, text uses opacity only */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(3px);
  transition: opacity 0.7s cubic-bezier(0.25, 0, 0, 1),
              transform 0.7s cubic-bezier(0.25, 0, 0, 1),
              filter 0.7s cubic-bezier(0.25, 0, 0, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
  will-change: auto;
}
.reveal--delay-1 { transition-delay: 0.10s; }
.reveal--delay-2 { transition-delay: 0.20s; }
.reveal--delay-3 { transition-delay: 0.30s; }
.reveal--delay-4 { transition-delay: 0.40s; }

/* Reduced motion: skip all animations */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  img.reveal,
  .gallery-item.reveal,
  .about-who__photo-wrap.reveal,
  .about-intro__photo-wrap.reveal,
  .travel-intro__photo-wrap.reveal,
  .travel-rates__photo-wrap.reveal,
  .contact-intro__photo-wrap.reveal,
  .experience-photo.reveal,
  .instagram-post.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal { filter: none; }

  .hero__name,
  .hero__tagline,
  .hero__content .btn,
  .hero__continue {
    animation: none;
  }

  .page-hero__content {
    animation: none;
  }

  .hero__continue svg,
  .newsletter-submit svg,
  .form-submit-btn svg,
  .stamps-cta svg {
    animation: none;
  }

}

/* Images: parallax float-up reveal */
img.reveal,
.gallery-item.reveal,
.about-who__photo-wrap.reveal,
.about-intro__photo-wrap.reveal,
.travel-intro__photo-wrap.reveal,
.travel-rates__photo-wrap.reveal,
.contact-intro__photo-wrap.reveal,
.experience-photo.reveal,
.instagram-post.reveal {
  transform: translateY(40px);
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.25, 0, 0, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
img.reveal.is-visible,
.gallery-item.reveal.is-visible,
.about-who__photo-wrap.reveal.is-visible,
.about-intro__photo-wrap.reveal.is-visible,
.travel-intro__photo-wrap.reveal.is-visible,
.travel-rates__photo-wrap.reveal.is-visible,
.contact-intro__photo-wrap.reveal.is-visible,
.experience-photo.reveal.is-visible,
.instagram-post.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Text elements: fade only, no vertical movement */
p.reveal,
.about-intro__body.reveal,
.contact-intro__text.reveal {
  transform: none;
}
p.reveal.is-visible,
.about-intro__body.reveal.is-visible,
.contact-intro__text.reveal.is-visible {
  transform: none;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* (scroll-behavior defined in base html selector above) */


/* ─────────────────────────────────────────────────────────────────────────
   16a. TESTIMONIALS CAROUSEL
───────────────────────────────────────────────────────────────────────── */

.bg-baby-blue,
.page-cta.bg-baby-blue { background-color: var(--color-cream); }

.testimonials-section { overflow: hidden; }

.pc-stage {
  position: relative;
  height: 490px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  margin-bottom: 32px;
}

.pc-card {
  position: absolute;
  width: min(891px, 90vw);
  height: 431px;
  display: flex;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1),
              opacity  1.1s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 1.1s ease;
}
.pc-card[data-state="active"] {
  z-index: 3;
  opacity: 1;
  transform: translateX(0) rotate(0deg) scale(1);
  box-shadow:
    0 2px 4px rgba(23,50,96,0.06),
    0 8px 24px rgba(23,50,96,0.14),
    0 28px 56px rgba(23,50,96,0.12);
}
.pc-card[data-state="prev"] {
  z-index: 2;
  opacity: 0.60;
  transform: translateX(-46%) rotate(-5deg) scale(0.87);
  box-shadow: 0 4px 16px rgba(23,50,96,0.08);
}
.pc-card[data-state="next"] {
  z-index: 2;
  opacity: 0.60;
  transform: translateX(46%) rotate(5deg) scale(0.87);
  box-shadow: 0 4px 16px rgba(23,50,96,0.08);
}
.pc-card[data-state="far"] {
  z-index: 1;
  opacity: 0;
  transform: translateX(0) scale(0.75);
  pointer-events: none;
}

.pc-photo {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0e1e3a 0%, #173260 50%, #1e3a6e 100%);
}
.pc-photo-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: screen;
  opacity: 0.75;
  pointer-events: none;
  display: block;
}
.pc-pin {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(23,50,96,0.75);
  border-radius: 2px;
  padding: 5px 10px;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  z-index: 2;
}

.pc-perf {
  flex-shrink: 0;
  width: 1px;
  position: relative;
  background: repeating-linear-gradient(
    to bottom,
    rgba(180,195,210,0.6) 0px,
    rgba(180,195,210,0.6) 5px,
    transparent 5px,
    transparent 10px
  );
  z-index: 2;
}
.pc-perf::before,
.pc-perf::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-cream);
  border-radius: 50%;
  border: 1px solid rgba(180,195,210,0.5);
}
.pc-perf::before { top: -6px; }
.pc-perf::after  { bottom: -6px; }

.pc-write {
  flex: 1;
  background: #FAFAF7;
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background-image: repeating-linear-gradient(
    transparent, transparent 24px,
    rgba(23,50,96,0.07) 24px,
    rgba(23,50,96,0.07) 25px
  );
  background-size: 100% 25px;
  background-position: 0 48px;
}

.pc-postmark {
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translateY(-50%) rotate(-20deg);
  width: 56px;
  height: 56px;
  opacity: 0.10;
  pointer-events: none;
}

.pc-stamp {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 62px;
  height: auto;
  z-index: 2;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(23,50,96,0.18));
}
.pc-stamp-inner {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(23,50,96,0.20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(23,50,96,0.45);
  overflow: hidden;
}

.pc-greeting {
  position: relative;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(23,50,96,0.65);
  margin-bottom: 8px;
}
.pc-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  line-height: 1.9;
  color: #253248;
  padding-right: 60px;
}
.pc-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(23,50,96,0.09);
  padding-top: 10px;
  margin-top: 10px;
}
.pc-from {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23,50,96,0.50);
  line-height: 1.6;
}
.pc-from strong {
  display: block;
  font-size: 12px;
  color: rgba(23,50,96,0.90);
  letter-spacing: 0.16em;
}
.pc-address-lines {
  text-align: right;
  font-family: var(--font-sans);
  font-size: 9px;
  line-height: 1.65;
  color: rgba(23,50,96,0.30);
  letter-spacing: 0.04em;
}

.pc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 5;
  margin-top: 8px;
}
.pc-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(23,50,96,0.18);
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.pc-btn:hover {
  background: rgba(23,50,96,0.08);
  border-color: rgba(23,50,96,0.32);
}
.pc-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.pc-dot {
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: rgba(23,50,96,0.14);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.pc-dot.on {
  width: 32px;
  background: var(--color-ink);
}
.pc-counter {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(23,50,96,0.50);
  min-width: 36px;
  text-align: center;
}

@media (max-width: 600px) {
  .pc-stage  { height: 400px; }
  .pc-card   { height: 350px; width: min(891px, 92vw); }
  .pc-card[data-state="prev"] {
    transform: translateX(-42%) rotate(-4deg) scale(0.85);
  }
  .pc-card[data-state="next"] {
    transform: translateX(42%) rotate(4deg) scale(0.85);
  }
  /* Hide photo side — write side takes full width */
  .pc-photo  { display: none; }
  .pc-perf   { display: none; }
  .pc-write  { flex: 1; padding: 18px 16px 14px; display: flex; flex-direction: column; }
  .pc-text   { font-size: 0.92rem; padding-right: 70px; line-height: 1.55; flex: 1; }
  .pc-stamp  { width: 50px; top: 10px; right: 10px; }
  .pc-footer {
    padding-top: 8px;
    margin-top: auto;
    border-top: 1px solid rgba(23,50,96,0.09);
  }
  .pc-address-lines { display: none; }
  .pc-from { font-size: 9px; }
  .pc-from strong { font-size: 10px; }
}


/* ─────────────────────────────────────────────────────────────────────────
   16. RESPONSIVE BREAKPOINTS
───────────────────────────────────────────────────────────────────────── */

/* Large Tablet */
@media (max-width: 1024px) {
  :root {
    --section-v: var(--space-20);
    --section-h: var(--space-6);
  }

  .container,
  .container--narrow {
    padding-inline: var(--space-6);
  }

  .about-intro__grid,
  .glance-grid,
  .favorites-grid {
    gap: var(--space-12);
  }

  /* Reduce section padding on tablet */
  .section {
    padding-block: var(--section-v);
  }

  /* Travel intro grid adjustment for tablet */
  .travel-intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }

  /* Rates experience sections on tablet */
  .experience-inner {
    gap: var(--space-10);
  }

  /* Newsletter fields stack on tablet */
  .newsletter-signup__fields {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }

  /* Boarding pass — slightly tighter on tablet */
  .bp {
    border-radius: 12px;
  }

  /* Gallery grid — 2 cols on iPad portrait */
  @media (max-width: 820px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Stamps grid — 3 cols on tablet */
  .stamps-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
  }

  /* Hero images — slightly shorter on tablet */
  .about-photo-hero,
  .contact-photo-hero,
  .travel-photo-hero,
  .rates-photo-hero,
  .gallery-photo-hero {
    height: min(78vh, 780px);
  }

  /* Contact intro grid — tighter gap on tablet */
  .contact-intro__inner {
    gap: clamp(2rem, 5vw, 4rem);
  }

  /* Postcard — reduce font slightly on tablet */
  .pc-card {
    font-size: 0.95em;
  }

  /* Footer grid — reduce columns on tablet */
  .footer-bottom-row {
    gap: var(--space-8);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
    --section-v: var(--space-16);
    --section-h: var(--space-5);
  }

  .container,
  .container--narrow {
    padding-inline: var(--space-5);
  }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Testimonials: tighter gap on mobile */
  .testimonials-carousel {
    gap: var(--space-3);
  }
  .testimonial-card {
    padding: var(--space-6) var(--space-2);
  }

  .about-intro__grid,
  .glance-grid,
  .favorites-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  /* Disable sticky on all photos — prevents overlap on mobile */
  .about-intro__photo-wrap,
  .sticky-photo,
  .travel-intro__photo-wrap,
  .travel-rates__photo-wrap {
    position: static !important;
  }

  /* Reset parallax transform on mobile */
  .about-intro__photo,
  .sticky-photo img,
  .travel-intro__photo,
  .travel-rates__photo {
    transform: none !important;
  }

  /* glance-grid: text is first in DOM, photo is second — swap order so photo shows first */
  .glance-grid > div:last-child  { order: -1; } /* photo first */
  .glance-grid > div:first-child { order:  1; } /* text second */

  /* Center left-aligned section headers on mobile */
  .glance-grid .section-header,
  .favorites-grid .section-header,
  .section-header--left {
    text-align: center;
  }
  .stats-item {
    grid-template-columns: 120px 1fr;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--color-border);
  }
  .stats-item__label { text-align: left; }
  .stats-item__value { text-align: left; }

  /* favorites-grid: photo is already first in DOM — ensure it stays first */
  .favorites-grid > div:first-child { order: -1; }
  .favorites-grid > div:last-child  { order:  1; }


  .photo-duo__grid {
    grid-template-columns: 1fr;
  }
  .photo-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }
  .venue-grid--3col {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-row {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-brand__tagline,
  .footer-brand__tagline--light {
    max-width: none;
    margin-inline: auto;
  }
  .footer-nav__links,
  .footer-nav__links--light {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .newsletter-signup__fields {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .booking-form {
    padding: var(--space-8) var(--space-5);
    border-radius: 0;
    background: transparent;
  }
  .banking-options {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding-block: var(--section-v);
  }

  /* Restore nav-aware top padding on first sections — .section padding-block
     overrides .section-top's padding-top at this breakpoint */
  .section-top {
    padding-top: calc(var(--nav-height) + var(--space-16));
  }

  /* Travel page mobile */
  .travel-intro__grid,
  .travel-rates__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .travel-intro__photo-wrap,
  .travel-rates__photo-wrap {
    position: static;
  }
  .travel-intro__grid .travel-intro__photo-wrap { order: -1; }
  .travel-rates__inner .travel-rates__photo-wrap { order: -1; }

  /* About intro text centering on mobile */
  .about-intro__section-label,
  .about-intro__body {
    text-align: center;
  }

  /* Contact intro on mobile */
  .contact-intro__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .contact-intro__title {
    text-align: center !important;
  }
  .contact-intro__text {
    margin-inline: auto;
    text-align: center !important;
  }

  /* Hero mobile overlay fix */
  .hero__content {
    padding: var(--space-6) var(--space-5);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .testimonials-section .container {
    padding-inline: 0;
  }
  .testimonials-carousel {
    gap: 0;
    position: relative;
  }
  .testimonials-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 32px;
    min-width: 32px;
    background: rgba(251, 250, 248, 0.72);
    border-radius: var(--radius-sm);
    padding: var(--space-1);
  }
  .testimonials-arrow--prev { left: var(--space-2); }
  .testimonials-arrow--next { right: var(--space-2); }
  .testimonials-track-wrap {
    flex: 1;
    width: 100%;
  }
  .testimonials-slide {
    padding: 0;
  }
  .postcard-img {
    width: 100%;
    max-width: 100%;
  }

  :root {
    --nav-height: 60px;
    --section-v: var(--space-14);
    --section-h: var(--space-4);
  }

  .container,
  .container--narrow {
    padding-inline: var(--space-4);
  }

  .venue-grid--3col {
    grid-template-columns: 1fr;
  }
  .photo-strip__grid {
    grid-template-columns: 1fr;
  }
  .activity-tag {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-4);
  }
  .table-by-emma {
    padding: var(--section-v) var(--section-h);
  }
  .footer-newsletter-band {
    padding: var(--space-16) var(--section-h) var(--space-4);
  }
  .footer-flight-lane {
    margin-top: var(--space-8);
  }

  /* Banking cards always 2-col even on small mobile */
  .banking-options {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }

  /* Stats on small mobile */
  .stats-item {
    grid-template-columns: 1fr;
    gap: var(--space-1);
    text-align: center;
  }
  .stats-item__label,
  .stats-item__value {
    text-align: center;
  }

  /* Reduce hero name size on tiny screens */
  .hero__name {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

  /* Nav logo — scale down on small screens */
  .nav-logo {
    font-size: 1.25rem;
    gap: 0.5em;
  }
  .site-logo-icon {
    width: 1.7rem;
    height: 1.7rem;
  }

  /* Section header titles — tighter clamp on small screens */
  .section-header__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Footer email — allow wrapping on tiny screens */
  .footer-bottom__email a {
    font-size: var(--text-base);
    word-break: break-all;
  }

  /* Form on small mobile */
  .booking-form {
    padding: var(--space-6) var(--space-4);
  }

  /* Section padding on small mobile */
  .section {
    padding-block: var(--section-v);
  }

  /* Restore nav-aware top padding — same fix as 768px breakpoint */
  .section-top {
    padding-top: calc(var(--nav-height) + var(--space-14));
  }

  /* Prevent any horizontal overflow on small screens */
  .section, .container, .container--narrow {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Location cards — full width on tiny screens */
  .location-card {
    width: 100%;
    min-width: 0;
  }
  .location-options {
    flex-direction: column;
  }

  /* Time inputs — allow natural sizing */
  .time-inputs input {
    width: 52px;
  }

  /* Boarding pass fields — single column on very small */
  .bp-fields {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact hero — shorter on small mobile */
  .contact-photo-hero {
    height: min(60vh, 480px);
  }

  /* Gallery grid — 2 cols on small phones */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}





/* ── Page-bottom CTA ─────────────────────────────────────────────────── */
.page-cta {
  padding: var(--space-20) var(--section-h);
  text-align: center;
  background: var(--color-ivory);
}

.page-cta__divider {
  width: 60px;
  height: 1px;
  background: var(--color-border-dark);
  margin: 0 auto var(--space-14);
}

.page-cta__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.page-cta__heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1.2;
  margin: 0 0 var(--space-6);
}

.page-cta__body {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.95;
  color: var(--color-charcoal);
  opacity: 0.72;
  max-width: 520px;
  margin: 0 auto var(--space-10);
}

.page-cta__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-charcoal);
  opacity: 0.65;
  border: none;
  background: none;
  padding: 0;
  transition: color 0.22s cubic-bezier(0.25, 0, 0, 1), opacity 0.22s cubic-bezier(0.25, 0, 0, 1), transform 0.22s cubic-bezier(0.25, 0, 0, 1);
}
.page-cta__btn:hover {
  color: var(--color-charcoal);
  opacity: 1;
  transform: translateY(3px);
}
.page-cta__btn svg {
  opacity: 0.6;
  animation: arrowBob 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .page-cta { padding: var(--section-v) var(--section-h); }
  .page-cta__divider { margin-bottom: var(--space-10); }
}

/* ── Rates page inline continue link ── */
.rates-continue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
  color: var(--color-stone);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.25, 0, 0, 1), transform 0.22s cubic-bezier(0.25, 0, 0, 1);
}
.rates-continue:hover {
  color: var(--color-charcoal);
  transform: translateY(3px);
}
.rates-continue svg {
  opacity: 0.6;
  animation: arrowBob 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════════
   TRAVEL ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. Scroll progress flight path ────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #C9A96E;
  z-index: 10001;
  transition: width 0.08s linear;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(201,169,110,0.6);
}

/* ── 2. Compass section divider ─────────────────────────────────── */
.divider-compass {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0 auto;
  padding: var(--space-16, 4rem) var(--space-6, 1.5rem);
  max-width: 260px;
  width: 100%;
  box-sizing: border-box;
  background: var(--color-cream);
  opacity: 0.45;
  color: var(--color-charcoal, #2C3A50);
}
.divider-compass::before,
.divider-compass::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
}
.divider-compass svg {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
}

/* ── 3. Gallery photo tilt on hover ─────────────────────────────── */
.gallery-grid .gallery-item,
.gallery-masonry .gallery-item {
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.25, 0, 0, 1), box-shadow 0.4s ease;
}
.gallery-grid .gallery-item:nth-child(odd):hover {
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 12px 40px rgba(80, 55, 20, 0.14);
}
.gallery-grid .gallery-item:nth-child(even):hover {
  transform: rotate(1.0deg) scale(1.02);
  box-shadow: 0 12px 40px rgba(80, 55, 20, 0.14);
}
.gallery-masonry .gallery-item:nth-child(odd):hover {
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 12px 40px rgba(80, 55, 20, 0.14);
}
.gallery-masonry .gallery-item:nth-child(even):hover {
  transform: rotate(1.0deg) scale(1.02);
  box-shadow: 0 12px 40px rgba(80, 55, 20, 0.14);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE HARDENING — comprehensive cross-device fixes
   ═══════════════════════════════════════════════════════════════════ */

/* ── Global overflow prevention ── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── Tablet landscape (1024–769px) ── */
@media (max-width: 1024px) {
  /* Ensure photo strips don't overflow */
  .photo-strip__grid {
    gap: var(--space-3);
  }
}

/* ── Mobile (768px and below) ── */
@media (max-width: 768px) {
  /* Prevent long headings from overflowing */
  .heading-script,
  .section-header__title,
  .page-cta__heading {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Ensure tables don't overflow */
  .rate-table,
  .rate-group {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Touch-friendly tap targets — minimum 44px */
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  /* Ensure gallery items don't overflow with rotations */
  .gallery-grid {
    overflow: hidden;
  }

  /* Ensure images never break layout */
  img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
  }
}

/* ── Small mobile (480px and below) ── */
@media (max-width: 480px) {
  /* Ensure no element causes horizontal scroll */
  .section,
  .container,
  .container--narrow,
  main,
  footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Prevent long words in body text from overflowing */
  .about-intro__body,
  .about-who__body,
  .about-eve__v-text,
  .faq-answer,
  .travel-intro__body,
  .experience-tagline,
  .contact-intro__text,
  .contact-intro__quote,
  .page-cta__body {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }

  /* Ensure booking form fits screen */
  .booking-form,
  .form-field input,
  .form-field textarea,
  .form-field select {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Footer social icons — ensure they wrap */
  .footer-nav__links,
  .footer-nav__links--light {
    gap: var(--space-2);
  }

  /* Disable hover effects that cause jank on touch */
  .gallery-item:hover {
    transform: none !important;
  }
  .gallery-grid .gallery-item:nth-child(odd):hover,
  .gallery-grid .gallery-item:nth-child(even):hover,
  .gallery-masonry .gallery-item:nth-child(odd):hover,
  .gallery-masonry .gallery-item:nth-child(even):hover {
    transform: none !important;
  }
}

/* ── Very small screens (360px and below) ── */
@media (max-width: 360px) {
  :root {
    --section-h: var(--space-3);
  }

  .container,
  .container--narrow {
    padding-inline: var(--space-3);
  }

  .hero__name {
    font-size: clamp(2.2rem, 14vw, 3.5rem);
  }

  /* Stack elements that might overlap */
  .rate-table__row {
    flex-wrap: wrap;
    gap: var(--space-1);
  }

  /* Ensure nav logo fits */
  .nav-logo {
    font-size: 1.1rem;
  }
  .site-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* ── Tall phones / landscape mobile ── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100dvh;
    padding: var(--space-4);
  }
  .hero__content {
    gap: var(--space-3);
  }
  .hero__name {
    font-size: clamp(2rem, 8vw, 4rem);
  }
  .page-hero {
    padding-top: calc(var(--nav-height) + var(--space-8));
    padding-bottom: var(--space-8);
  }
}

/* ── Print-friendly baseline ── */
@media print {
  .site-nav,
  .nav-drawer,
  .hero__continue,
  .lightbox,
  #scroll-progress {
    display: none !important;
  }
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
}
