/* ========================================
   LEVANTE — Premium Nautical Experiences
   Design System & Stylesheet
   ======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #0a1628;
  --bg-secondary: #070e1a;
  --bg-black: #000000;
  --bg-cream: #ede4d8;
  --accent-gold: #c9a84c;
  --accent-gold-hover: #e2c06a;
  --accent-gold-glow: rgba(201, 168, 76, 0.08);
  --accent-gold-border: rgba(201, 168, 76, 0.15);
  --accent-gold-border-hover: rgba(201, 168, 76, 0.5);
  --accent-gold-subtle: rgba(201, 168, 76, 0.06);
  --accent-gold-radial: rgba(201, 168, 76, 0.05);
  --text-primary: #ffffff;
  --text-secondary: #d4d4d4;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-padding: 90px;
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background: #1a6b73;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Base --- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-navy {
  background-color: var(--bg-primary);
}

.section-dark {
  background-color: var(--bg-secondary);
}

/* --- Section Label --- */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 20px;
}

/* --- Section Divider --- */
.section-divider {
  width: 80px;
  height: 1px;
  background: var(--accent-gold);
  margin: 24px auto 32px;
}

/* --- Typography --- */
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
}

h3, h4 {
  font-family: var(--font-accent);
}

h2 {
  font-size: 58px;
  text-align: center;
  margin-bottom: 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1.5px solid var(--accent-gold);
  background: transparent;
  color: var(--accent-gold);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}

.btn-gold {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-white {
  border-color: var(--text-secondary);
  color: var(--text-secondary);
}

.btn-white:hover {
  background: var(--text-secondary);
  color: var(--bg-primary);
  border-color: var(--text-secondary);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 11px;
}

/* ========================================
   NAVBAR — Benetti-style transparent
   ======================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.4s ease, background 0.4s ease, border-bottom 0.4s ease, padding 0.4s ease;
  box-sizing: border-box;
}

#navbar.scrolled {
  background: #ffffff;
  border-bottom: 1px solid #000000;
  padding: 10px 48px;
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: #2a2218;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #2a2218;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #2a2218;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after {
  width: 100%;
}

/* BOOK NOW pill */
.nav-book-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #2a2218;
  background: transparent;
  border: 1px solid #2a2218;
  border-radius: 30px;
  padding: 10px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.nav-book-btn:hover {
  background: #2a2218;
  color: #ede4d8;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: #2a2218;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ede4d8;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2a2218;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.mobile-menu a:hover {
  opacity: 0.6;
}

/* ========================================
   LOADING SCREEN
   ======================================== */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ede4d8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

#loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 32px;
}

.loading-bar-track {
  width: 200px;
  height: 4px;
  background: rgba(26,39,68,0.08);
  margin: 32px auto 0;
  overflow: hidden;
  border-radius: 2px;
}

.loading-bar-fill {
  width: 0%;
  height: 100%;
  background: #b8963e;
  border-radius: 2px;
  transition: width 0.15s ease-out;
}

/* ========================================
   HERO — INTRO SCREEN + CANVAS + PEEK BOX
   ======================================== */

/* --- Noise texture for intro background --- */
#intro-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ede4d8;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  box-sizing: border-box;
}

#intro-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 0;
  box-sizing: border-box;
}

/* Bracketed label — [ OWN THE HORIZON ] */
.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #2a2218;
  display: block;
  text-align: center;
  margin-bottom: 48px;
}

/* Main headline — mixed italic/roman */
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 108px;
  line-height: 1;
  color: #2a2218;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 32px 0;
  font-weight: 400;
  white-space: nowrap;
  width: 100%;
}

.hero-headline em {
  font-style: italic;
  font-weight: 300;
  font-size: 1em;
}

/* Subtitle */
.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #2a2218;
  opacity: 0.75;
  max-width: 500px;
  text-align: center;
  margin: 0 auto 40px auto;
}

/* Discover More button */
.discover-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #2a2218;
  background: transparent;
  border: 1px solid #2a2218;
  border-radius: 30px;
  padding: 14px 40px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.discover-btn:hover {
  background: #2a2218;
  color: #ede4d8;
}

/* --- Animation Canvas --- */
#hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 25;
  display: block;
  background: #1a6b73;
  will-change: clip-path;
}

/* --- Hero Zone (scroll space, height set via JS) --- */
#hero-zone {
  width: 100%;
  background-color: #1a6b73;
}



/* ========================================
   STORY SECTION — Cinematic 3-Stage Scroll
   ======================================== */
#about {
  position: relative;
  z-index: 30;
  background-color: #1a6b73;
}

.story-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.stage-image-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateY(100%);
  will-change: transform;
  z-index: 8;
}

.stage-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  visibility: visible;
  opacity: 1;
  z-index: 0;
}

.stage-image-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.65) 35%,
    rgba(0,0,0,0.25) 65%,
    transparent 100%
  );
  z-index: 31;
}

.stage-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 80px 60px 80px;
  box-sizing: border-box;
  z-index: 31;
  color: #ffffff;
}

.stage-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #b8963e;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.stage-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1.8;
  color: #ffffff;
  max-width: 680px;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

.stage-body em {
  font-style: italic;
  color: #e8d5a3;
}

@media (max-width: 768px) {
  .stage-text {
    padding: 0 24px 40px 24px;
  }
  .stage-body {
    font-size: 17px;
  }
}

/* Section backgrounds */
#services,
#moments,
#why {
  background-color: #ffffff !important;
}

#story,
#contact {
  background-color: #ede4d8 !important;
}

footer {
  background-color: #000000 !important;
}

/* ========================================
   WHY SECTION — Features
   ======================================== */
/* ========================================
   SERVICES SECTION — Benetti two-column
   ======================================== */
#services {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: visible;
  max-height: none;
  height: auto;
}

#services-zone {
  height: 6800px;
  position: relative;
}

/* -- Left: fixed typography -- */
#services-left {
  position: sticky;
  top: 80px;
  left: 0;
  width: 45%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 60px 0 80px;
  box-sizing: border-box;
  float: left;
  background: #ffffff;
  z-index: 2;
}

.services-typography {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #2a2218;
  margin: 0 auto;
  max-width: 580px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-typography em {
  font-style: italic;
  color: #b8963e;
}

.services-typography.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- Right: scrolling cards -- */
#services-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  padding: 80px 80px 80px 40px;
  box-sizing: border-box;
}

.service-card {
  width: 100%;
  margin-bottom: 80px;
  background: #ffffff;
  border-bottom: 1px solid rgba(42,34,24,0.08);
  padding-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card:last-child {
  border-bottom: none;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card-image {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
  background: #f0ebe3;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

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

.service-card-content {
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #b8963e;
}

.service-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #2a2218;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.1;
}

.service-card-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #4a4540;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #2a2218;
  text-decoration: none;
  border: 1px solid rgba(42,34,24,0.3);
  border-radius: 30px;
  padding: 9px 22px;
  transition: all 0.3s ease;
  background: transparent;
  margin-top: 8px;
  width: fit-content;
}

.service-card-btn:hover {
  background: #2a2218;
  color: #ffffff;
  border-color: #2a2218;
}

/* -- Responsive -- */
@media (max-width: 1024px) {
  #services-left {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    float: none;
    padding: 80px 5vw 0;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .services-typography {
    font-size: clamp(20px, 3.5vw, 28px);
    max-width: 600px;
    margin: 0 auto;
  }
  #services-right {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 40px 5vw 80px;
  }
}

@media (max-width: 768px) {
  .service-card-image {
    height: 320px;
  }
  .service-card-title {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  #services-left {
    padding: 60px 5vw 0;
  }
  .services-typography {
    font-size: 18px;
  }
  #services-right {
    padding: 40px 5vw 60px;
  }
  .service-card {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
  .service-card-image {
    height: 240px;
  }
  .service-card-title {
    font-size: 22px;
  }
  .service-card-description {
    font-size: 12px;
  }
}

/* ========================================
   MOMENTS SECTION — Luxury Masonry Photo Wall
   ======================================== */
.moments-section {
  background: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.moments-header {
  margin-bottom: 60px;
}

.moments-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: #b8963e;
  display: block;
  margin-bottom: 16px;
}

.moments-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  font-weight: 400;
  color: #1a2744;
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
}

.moments-divider {
  width: 80px;
  height: 1px;
  background: #b8963e;
  margin: 0 auto 20px;
}

.moments-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: #8a8580;
  margin: 0;
}

/* Masonry grid */
.masonry-grid {
  max-width: 1200px;
  margin: 0 auto;
  columns: 3;
  column-gap: 12px;
  padding: 0 24px;
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.masonry-item:nth-child(1) { height: 400px; }
.masonry-item:nth-child(2) { height: 520px; }
.masonry-item:nth-child(3) { height: 340px; }
.masonry-item:nth-child(4) { height: 460px; }
.masonry-item:nth-child(5) { height: 380px; }
.masonry-item:nth-child(6) { height: 500px; }
.masonry-item:nth-child(7) { height: 420px; }
.masonry-item:nth-child(8) { height: 360px; }
.masonry-item:nth-child(9) { height: 480px; }

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.masonry-item:hover img {
  transform: scale(1.02);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
  border-radius: 4px;
}

.masonry-item:hover .masonry-overlay {
  background: rgba(0,0,0,0.4);
}

.masonry-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 0 16px;
  text-align: center;
}

.masonry-item:hover .masonry-caption {
  opacity: 1;
}

/* Footer */
.moments-footer {
  margin-top: 60px;
}

.moments-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #1a2744;
  text-decoration: none;
  border: 1px solid rgba(26,39,68,0.3);
  border-radius: 30px;
  padding: 14px 36px;
  transition: all 0.3s ease;
  background: transparent;
}

.moments-btn:hover {
  background: #1a2744;
  color: #ffffff;
  border-color: #1a2744;
}

.moments-instagram {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #8a8580;
  margin: 16px 0 0 0;
}

/* Responsive */
@media (max-width: 768px) {
  .masonry-grid {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .masonry-grid {
    columns: 1;
  }
  .moments-title {
    font-size: 42px;
  }
}

/* ========================================
   MOMENTS LOOKBOOK PAGE
   ======================================== */
.lookbook {
  background: #ffffff;
  padding: 160px 24px 100px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
}

.lookbook-header {
  text-align: center;
  margin-bottom: 80px;
}

.lookbook-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: #b8963e;
  display: block;
  margin-bottom: 20px;
}

.lookbook-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 400;
  color: #1a2744;
  margin: 0 0 24px 0;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.lookbook-divider {
  width: 80px;
  height: 1px;
  background: #b8963e;
  margin: 0 auto 24px;
}

.lookbook-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: #8a8580;
  margin: 0 auto;
  max-width: 500px;
}

/* Rows */
.lb-row {
  margin-bottom: 60px;
}

.lb-row:last-of-type {
  margin-bottom: 0;
}

/* Full-width row */
.lb-row-full .lb-img-wrap {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 4px;
}

.lb-row-full .lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

.lb-img-wrap img:hover {
  filter: brightness(1.05);
}

/* Split row (60/40) */
.lb-row-split {
  display: flex;
  gap: 12px;
}

.lb-col-60 {
  flex: 0 0 calc(60% - 6px);
}

.lb-col-40 {
  flex: 0 0 calc(40% - 6px);
}

.lb-row-split .lb-img-wrap {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 4px;
}

.lb-row-split .lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

/* Three-column row */
.lb-row-three {
  display: flex;
  gap: 12px;
}

.lb-col-third {
  flex: 1;
}

.lb-row-three .lb-img-wrap {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 4px;
}

.lb-row-three .lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

/* Captions */
.lb-caption {
  margin-top: 12px;
  text-align: left;
}

.lb-caption-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: #1a2744;
  display: block;
  margin-bottom: 4px;
}

.lb-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #b8963e;
  display: block;
}

/* Bottom CTA */
.lookbook-cta {
  text-align: center;
  margin-top: 100px;
}

.lookbook-cta-divider {
  width: 100%;
  height: 1px;
  background: #b8963e;
  margin-bottom: 60px;
}

.lookbook-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: #1a2744;
  margin: 0 0 32px 0;
}

.lookbook-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #1a2744;
  text-decoration: none;
  border: 1px solid rgba(26,39,68,0.3);
  border-radius: 30px;
  padding: 14px 36px;
  transition: all 0.3s ease;
  background: transparent;
}

.lookbook-btn:hover {
  background: #1a2744;
  color: #ffffff;
  border-color: #1a2744;
}

.lookbook-cta-small {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #8a8580;
  margin: 16px 0 0 0;
}

/* Responsive */
@media (max-width: 768px) {
  .lookbook {
    padding: 120px 16px 60px;
  }
  .lookbook-title {
    font-size: 42px;
  }
  .lookbook-header {
    margin-bottom: 48px;
  }
  .lb-row {
    margin-bottom: 32px;
  }
  .lb-row-full .lb-img-wrap {
    height: 300px;
  }
  .lb-row-split {
    flex-direction: column;
  }
  .lb-col-60,
  .lb-col-40 {
    flex: none;
    width: 100%;
  }
  .lb-row-split .lb-img-wrap {
    height: 300px;
  }
  .lb-row-three {
    flex-direction: column;
  }
  .lb-col-third {
    flex: none;
    width: 100%;
  }
  .lb-row-three .lb-img-wrap {
    height: 280px;
  }
  .lb-caption-text {
    font-size: 18px;
  }
  .lookbook-cta {
    margin-top: 60px;
  }
}

/* ========================================
   SECTION — CREAM
   ======================================== */
.section-cream {
  background-color: #ede4d8;
}

.section-cream .section-label {
  color: #b8963e;
}

.section-cream h2 {
  color: #1a2744;
}

.section-cream .about-text p {
  color: #4a4540;
}

.section-cream .closing-quote {
  color: #b8963e;
}

/* ========================================
   STORY SECTION (Be Part of the Story)
   ======================================== */
.story-section {
  background-image: radial-gradient(ellipse at 50% 50%, var(--accent-gold-radial) 0%, transparent 60%);
}

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 48px;
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(42,34,24,0.08);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.review-card:nth-child(4),
.review-card:nth-child(5) {
  grid-column: span 1;
}

.review-card:nth-child(4) {
  grid-column: 1 / 3;
}

.review-card:nth-child(5) {
  grid-column: 3 / 4;
}

.review-stars {
  font-size: 18px;
  color: #b8963e;
  letter-spacing: 3px;
  margin-bottom: 16px;
  line-height: 1;
}

.review-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  font-style: italic;
  color: #8a8580;
  line-height: 1.8;
  margin: 0 0 20px;
  flex: 1;
}

.review-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a2744;
  display: block;
  margin-bottom: 4px;
}

.review-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #b8963e;
  display: block;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .review-card:nth-child(4),
  .review-card:nth-child(5) {
    grid-column: auto;
  }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
#contact .section-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #b8963e;
  text-align: center;
  margin-bottom: 20px;
}

#contact .contact-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 58px;
  color: #1a2744;
  text-align: center;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  color: #4a4540;
  text-align: center;
  margin-bottom: 48px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2a2218;
  padding: 18px 32px;
  border: 1px solid rgba(42,34,24,0.25);
  border-radius: 4px;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.contact-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-btn:hover {
  background: #2a2218;
  color: #ffffff;
}

.contact-btn:hover svg * {
  fill: #ffffff;
  stroke: #ffffff;
}

.contact-divider {
  width: 100%;
  max-width: 500px;
  height: 1px;
  background: rgba(42,34,24,0.12);
  margin: 40px auto 24px;
}

.contact-marina {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: #4a4540;
  text-align: center;
  margin-bottom: 8px;
}

.contact-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: #4a4540;
  text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #0a0a0a;
  padding: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 70px 24px 60px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo-img {
  display: block;
  width: 72px;
  height: auto;
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}

.footer-nav-col a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-social-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 14px;
}

.footer-social-col a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-col a:hover {
  color: #ffffff;
}

.footer-social-col svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 24px 28px;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-legal a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.6);
}

.footer-copyright {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.js .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Staggered delays for children */
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   UTILITY
   ======================================== */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; }

/* ========================================
   RESPONSIVE — SMALLER DESKTOP (max-width: 1200px)
   ======================================== */
@media (max-width: 1200px) {
  .hero-headline {
    font-size: 80px;
  }
}

/* ========================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 70px;
  }

  h2 {
    font-size: 44px;
  }

  #navbar {
    padding: 14px 16px;
  }

  .navbar-links {
    display: none;
  }

  .nav-book-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ========================================
   RESPONSIVE — MEDIUM (max-width: 900px)
   ======================================== */
@media (max-width: 900px) {
  .hero-headline {
    font-size: 60px;
    white-space: normal;
  }
}

/* Tablet adjustments — 1024px and below */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding: 50px 24px 40px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer-logo-img {
    width: 64px;
  }

  .footer-nav-col {
    align-items: center;
    text-align: center;
  }

  .footer-social-col {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px 24px;
  }

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

  .contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    justify-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ========================================
   SERVICE HERO — Two Column Layout */
.service-hero {
  height: 100vh;
  display: flex;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.service-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #1a2744;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
}

.service-hero-left .hero-line {
  width: 60px;
  height: 1px;
  background: #b8963e;
  margin: 16px 0;
}

.service-hero-left .section-label {
  text-align: left;
  margin-bottom: 0;
  letter-spacing: 0.35em;
  font-size: 11px;
  color: #b8963e;
}

.service-hero-left h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 72px;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.service-hero-left p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  max-width: 480px;
  margin-top: 24px;
  margin-bottom: 0;
}

.service-hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

/* Ghost buttons */
.btn-ghost-gold {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8963e;
  border: 1.5px solid #b8963e;
  padding: 16px 32px;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-ghost-gold:hover {
  background: #b8963e;
  color: #1a2744;
}

.btn-ghost-white {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 16px 32px;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-ghost-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
}

/* Right column — image */
.service-hero-right {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.service-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-hero-right img.loaded {
  opacity: 1;
  transform: translateX(0);
}

/* Section 2 - Service Memories Gallery */
.service-memories {
  background: #1a2744;
  padding: 70px 24px 80px;
}

.service-memories .drift-header {
  margin-bottom: 40px;
}

.service-memories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.service-memory-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.04);
}

.service-memory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-memory-card:hover img {
  transform: scale(1.06);
}

.service-memory-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(26,39,68,0.92));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-memory-card:hover .service-memory-caption {
  opacity: 1;
}

.service-memory-caption span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
}

.service-memories-empty {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  padding: 60px 20px;
  font-style: italic;
}

@media (max-width: 900px) {
  .service-memories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .service-memories-grid {
    grid-template-columns: 1fr;
  }
}

/* Section 3 - Booking CTA */
.booking-cta-glow {
  background: #1a2744;
  background-image: radial-gradient(circle at center, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 70px 24px;
}

.booking-cta-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.booking-cta-content h2 {
  font-size: 56px;
  margin-top: 12px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.booking-cta-content p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.booking-cta-note {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 16px;
  font-weight: 300;
}

/* Section 4 - Other Experiences Grid */
.other-exp-section {
  padding: 70px 0 90px;
  background-color: #1a2744;
  position: relative;
}

.other-exp-header {
  max-width: var(--container-max);
  margin: 0 auto 40px;
  padding: 0 24px;
  text-align: left;
}

.other-exp-header h2 {
  font-size: 48px;
  text-align: left;
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

.other-exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.other-exp-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.other-exp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 12px 35px rgba(201,168,76,0.08);
}

.other-exp-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.other-exp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.other-exp-card:hover .other-exp-card-image img {
  transform: scale(1.06);
}

.other-exp-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.other-exp-card-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.other-exp-card-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.other-exp-card-body .btn-sm {
  align-self: flex-start;
  font-size: 10px;
  padding: 10px 22px;
  letter-spacing: 0.12em;
}

@media (max-width: 1100px) {
  .other-exp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .other-exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .other-exp-section {
    padding: 50px 0 70px;
  }
  .other-exp-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .other-exp-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .other-exp-card-image {
    aspect-ratio: 16 / 10;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
  }
  
  .service-hero-left {
    padding: 60px 40px;
    order: 2;
  }
  
  .service-hero-right {
    min-height: 50vh;
    height: 400px;
    order: 1;
  }

  .service-hero-left h1 {
    font-size: 56px;
  }
}

/* Mobile adjustments — fine-tune for very small screens */
@media (max-width: 640px) {
  .service-hero-left {
    padding: 40px 24px;
  }

  .service-hero-left h1 {
    font-size: 38px;
  }

  .service-hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .booking-cta-content h2 {
    font-size: 38px;
  }
}

/* Tablet — 2x2 grid */
@media (max-width: 768px) {
}

/* ========================================
   MOBILE — max-width: 768px
   ======================================== */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  #intro-screen {
    padding: 0 24px;
  }

  #hero-canvas {
    height: 100vh;
    height: 100dvh;
  }

  .story-stage {
    height: 100vh;
    height: 100dvh;
  }

  .stage-image-container {
    height: 100vh;
    height: 100dvh;
  }

  .section {
    padding: 60px 24px;
  }

  .container,
  .container-narrow {
    padding: 0;
  }

  .btn,
  .btn-ghost-gold,
  .btn-ghost-white {
    width: 100%;
    max-width: 280px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-sizing: border-box;
  }

  .service-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    justify-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

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

  .hero-headline {
    font-size: 52px;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 14px;
    max-width: 300px;
    margin-bottom: 32px;
  }

  .discover-btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
    box-sizing: border-box;
  }

  #navbar {
    padding: 14px 16px;
  }

  .navbar-brand {
    font-size: 22px;
  }

  .navbar-links,
  .nav-book-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #2a2218;
    letter-spacing: 0.05em;
  }

  .mobile-menu .btn {
    margin-top: 16px;
    max-width: 280px;
  }

  #about {
    padding: 60px 24px;
  }

  #about h2 {
    font-size: 40px;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .closing-quote {
    font-size: 18px !important;
  }

  #about .btn {
    max-width: 280px;
  }

  .story-section {
    padding: 60px 24px;
  }

  .story-section h2 {
    font-size: 38px;
  }

  .story-text {
    font-size: 15px;
  }

  .stars {
    font-size: 24px;
  }

  .story-section .btn {
    max-width: 280px;
  }

  #contact {
    padding: 60px 24px;
  }

  #contact h2 {
    font-size: 40px;
  }

  .contact-subtitle {
    font-size: 15px;
  }

  .contact-marina {
    font-size: 13px;
  }

  .contact-note {
    font-size: 14px;
  }

  .contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    justify-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 16px 28px;
    min-height: 44px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 24px 32px;
  }

  .footer-brand-col {
    align-items: center;
    text-align: center;
  }

  .footer-logo-img {
    width: 56px;
  }

  .footer-nav-col {
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-nav-col a {
    font-size: 12px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 16px 24px 20px;
  }

  .footer-legal {
    justify-content: center;
    gap: 6px 16px;
  }

  .service-hero {
    height: auto;
    min-height: 100vh;
  }

  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-left {
    padding: 40px 24px;
    order: 2;
  }

  .service-hero-left h1 {
    font-size: 38px;
  }

  .service-hero-left p {
    font-size: 15px;
  }

  .service-hero-right {
    min-height: 280px;
    height: 280px;
    order: 1;
  }

  .service-hero-buttons .btn-ghost-gold,
  .service-hero-buttons .btn-ghost-white {
    width: 100%;
    max-width: 280px;
    text-align: center;
    box-sizing: border-box;
  }

  .booking-cta-content h2 {
    font-size: 40px;
  }

  .booking-cta-content .btn {
    max-width: 280px;
  }

  .btn,
  .btn-sm,
  .btn-gold,
  .btn-white {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ========================================
   VERY SMALL PHONES — max-width: 480px
   ======================================== */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 12px;
    max-width: 260px;
    margin-bottom: 28px;
  }

  .hero-label {
    font-size: 10px;
    margin-bottom: 32px;
  }

  #intro-screen {
    padding: 0 24px;
  }

  .loading-logo {
    width: 90px;
  }

  .loading-bar-track {
    width: 160px;
  }

  .mobile-menu a {
    font-size: 28px;
  }

  .section {
    padding: 48px 20px;
  }

  .section-label {
    font-size: 10px;
  }

  .section-divider {
    width: 60px;
    margin: 20px auto 24px;
  }

  h2 {
    font-size: 34px;
  }

  .section h2,
  #about h2,
  #contact h2,
  .booking-cta-content h2,
  .story-section h2,
  .other-exp-header h2,
  .lookbook-title {
    font-size: 34px;
  }

  .service-hero-left h1 {
    font-size: 30px;
  }

  .service-hero-left {
    padding: 28px 16px;
  }

  .service-hero-left p {
    font-size: 13px;
  }

  .about-text p {
    font-size: 13px;
  }

  #about {
    padding: 48px 20px;
  }

  #about h2 {
    font-size: 34px;
  }

  .closing-quote {
    font-size: 16px !important;
  }

  .story-section {
    padding: 48px 20px;
  }

  .story-section h2 {
    font-size: 34px;
  }

  .story-text {
    font-size: 14px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card-description {
    font-size: 12px;
  }

  .service-card-image {
    height: 200px;
  }

  #contact {
    padding: 48px 20px;
  }

  #contact h2 {
    font-size: 34px;
  }

  .contact-subtitle {
    font-size: 14px;
  }

  .contact-marina {
    font-size: 12px;
  }

  .contact-note {
    font-size: 13px;
  }

  .contact-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-btn {
    max-width: 100%;
    padding: 14px 20px;
  }

  .booking-cta-content h2 {
    font-size: 34px;
  }

  .booking-cta-content p {
    font-size: 14px;
  }

  .booking-cta-content {
    padding: 40px 20px;
  }

  .footer-main {
    padding: 32px 20px 24px;
    gap: 20px;
  }

  .footer-nav-col {
    gap: 10px;
  }

  .footer-nav-col a {
    font-size: 11px;
  }

  .footer-logo-img {
    width: 48px;
  }

  .footer-bottom {
    padding: 14px 20px 18px;
  }

  .footer-legal a {
    font-size: 10px;
  }

  .footer-copyright {
    font-size: 10px;
  }

  /* Masonry — single column, reduce heights */
  .masonry-grid {
    columns: 1;
  }

  .masonry-item {
    break-inside: avoid;
    margin-bottom: 12px;
  }

  .masonry-item img,
  .masonry-item video {
    width: 100%;
    height: auto;
    min-height: auto;
    object-fit: cover;
  }

  /* Lookbook page adjustments */
  .lookbook {
    padding: 100px 12px 40px;
  }

  .lookbook-title {
    font-size: 34px;
  }

  .lookbook-header {
    margin-bottom: 32px;
  }

  .lb-row {
    margin-bottom: 20px;
  }

  .lb-row-full .lb-img-wrap {
    height: 220px;
  }

  .lb-row-split .lb-img-wrap {
    height: 220px;
  }

  .lb-row-three .lb-img-wrap {
    height: 200px;
  }

  .lb-caption-text {
    font-size: 16px;
  }

  .lookbook-cta {
    margin-top: 40px;
  }

  /* Service memories */
  .service-memories {
    padding: 48px 16px 60px;
  }

  .service-memory-card {
    border-radius: 6px;
  }

  .service-memory-caption {
    padding: 28px 16px 12px;
  }

  .service-memory-caption span {
    font-size: 12px;
  }

  /* Other experiences */
  .other-exp-section {
    padding: 40px 16px 56px;
  }

  .other-exp-header h2 {
    font-size: 30px;
  }

  .other-exp-card-body {
    padding: 14px;
  }

  .other-exp-card-body h3 {
    font-size: 16px;
  }

  .other-exp-card-image {
    aspect-ratio: 16 / 10;
  }

  /* Stage 4 */
  .stage4-left p,
  .stage4-right p {
    font-size: 22px;
  }

  /* Reviews */
  .reviews-section {
    padding: 48px 20px;
  }

  .reviews-section h2 {
    font-size: 34px;
  }

  .review-card {
    padding: 20px;
  }

  .review-text {
    font-size: 13px;
  }

  .review-author {
    font-size: 12px;
  }

  .moments-section {
    padding: 48px 20px;
  }

  .moments-title {
    font-size: 36px;
  }

  .moments-footer {
    margin-top: 32px;
  }

  .moments-btn {
    padding: 12px 28px;
    font-size: 11px;
  }

  .moments-instagram {
    font-size: 13px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 11px;
  }

  #stage4-content {
    gap: 32px;
    padding: 0 16px;
  }

  .service-hero {
    height: auto;
    min-height: 100vh;
  }

  .service-hero-right {
    min-height: 220px;
    height: 220px;
  }
}

/* ========================================
   STAGE 4 — MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  #stage4-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 24px;
  }

  .stage4-left,
  .stage4-right {
    max-width: 100%;
    text-align: center;
  }

  .stage4-left p,
  .stage4-right p {
    font-size: 28px;
  }
}
