/* ============================================================
   PRIVÉ LUXURY YACHTS — prive.css
   Unified stylesheet · Homepage + Blog
   Apple-liquid-glass aesthetic · 2026
   ============================================================ */

/* ── SITE LOADER ─────────────────────────────────────────── */
#siteLoader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#siteLoader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  height: 67px;
  width: auto;
  opacity: 0.85;
}
#loaderSpinner {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 400px;
}
#loaderSpinner svg {
  height: 56px;
  width: auto;
  color: var(--gold);
  transform: rotateY(0deg);
  transition: transform 0.35s ease;
}
#loaderSpinner .spin-out {
  transform: rotateY(90deg);
}
#loaderSpinner .spin-in {
  transform: rotateY(-90deg);
  transition: none;
}

/* ============================================================
   1. BRAND TOKENS
   ============================================================ */
:root {
  --gold:          #C9A96E;
  --gold-light:    #E3C38F;
  --gold-pale:     #F5EDD8;
  --green:         #1C513A;
  --green-dark:    #123524;
  --dark:          #0b0f1a;
  --dark-2:        #111520;
  --off-white:     #FAF8F4;
  --text:          #1a1a1a;
  --muted:         #666;
  --border:        rgba(201,169,110,0.2);
  --shadow-soft:   0 8px 40px rgba(0,0,0,0.07);
  --shadow-hover:  0 20px 60px rgba(0,0,0,0.14);
  --explore-scroll-duration: 1200;

  /* === APPLE GLASS TOKENS === */
  /* Light glass — sits on light backgrounds */
  --glass-light-bg:      rgba(255,255,255,0.55);
  --glass-light-border:  rgba(255,255,255,0.75);
  --glass-light-shadow:  0 8px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  --glass-light-blur:    blur(22px) saturate(1.6);

  /* Dark/frosted glass — sits on dark or image backgrounds */
  --glass-dark-bg:       rgba(11,15,26,0.45);
  --glass-dark-border:   rgba(255,255,255,0.12);
  --glass-dark-shadow:   0 8px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  --glass-dark-blur:     blur(24px) saturate(1.4);

  /* Tinted gold glass */
  --glass-gold-bg:       rgba(201,169,110,0.12);
  --glass-gold-border:   rgba(201,169,110,0.35);
  --glass-gold-blur:     blur(16px) saturate(1.5);
}

/* ============================================================
   2. RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', Georgia, serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.75;
  padding-top: 60px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
.no-padding { padding: 0; }
.no-margin  { margin: 0; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Upright', serif;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
h1 { font-size: 72px;  font-weight: 300; }
h2 { font-size: 54px;  font-weight: 300; }
h3 { font-size: 36px;  font-weight: 400; }
h4 { font-size: 22px;  font-weight: 500; }

.eyebrow-label {
  font-family: 'Inconsolata', monospace;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.hp-section-head {
  color: var(--dark);
  margin: 0 0 40px 0;
}
.hp-section-head em {
  font-style: italic;
  color: var(--gold);
}
.hp-section-sub {
  font-family: 'Cormorant Upright', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  margin: -8px 0 24px 0;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.hp-body {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.8;
}

/* ============================================================
   4. GLASS UTILITY CLASSES
   ============================================================ */

/* Light glass pill / card */
.glass-light {
  background:    var(--glass-light-bg);
  border:        1px solid var(--glass-light-border);
  box-shadow:    var(--glass-light-shadow);
  backdrop-filter: var(--glass-light-blur);
  -webkit-backdrop-filter: var(--glass-light-blur);
  border-radius: 18px;
}

/* Dark frosted glass */
.glass-dark {
  background:    var(--glass-dark-bg);
  border:        1px solid var(--glass-dark-border);
  box-shadow:    var(--glass-dark-shadow);
  backdrop-filter: var(--glass-dark-blur);
  -webkit-backdrop-filter: var(--glass-dark-blur);
  border-radius: 18px;
}

/* Gold-tinted glass */
.glass-gold {
  background:    var(--glass-gold-bg);
  border:        1px solid var(--glass-gold-border);
  backdrop-filter: var(--glass-gold-blur);
  -webkit-backdrop-filter: var(--glass-gold-blur);
  border-radius: 14px;
}

/* ============================================================
   5. NAVBAR  (shared)
   ============================================================ */
.prive-navbar {
  background:    rgba(250,248,244,0.5);
  backdrop-filter: blur(22px) saturate(1.8);
  -webkit-backdrop-filter: blur(22px) saturate(1.8);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  box-shadow:    0 1px 0 rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9);
  padding: 8px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.prive-navbar.nav-scrolled {
  background: rgba(250,248,244,0.88);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
}

.brand-text {
  font-family: 'Cormorant Upright', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--dark);
  line-height: 40px;
  display: inline-block;
  padding: 10px 0;
}

.prive-navbar .navbar-brand { padding: 15px 15px; }
.nav-logo { height: 32px; width: auto; display: block; }

.prive-navbar .navbar-nav > li > a {
  font-family: 'Inconsolata', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 20px 14px;
  transition: color 0.3s;
}
.prive-navbar .navbar-nav > li > a:hover { color: var(--gold); background: transparent; }

.nav-book-btn > a {
  background: var(--dark) !important;
  color: var(--gold-light) !important;
  border-radius: 2px;
  margin-top: 13px;
  padding: 7px 18px !important;
}
.nav-book-btn > a:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

.navbar-toggle .icon-bar { background: var(--dark); }

/* Navbar dropdown */
.prive-navbar .dropdown-menu {
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  border: 1px solid rgba(0,0,0,0.07);
  border-top: 2px solid var(--gold);
  border-radius: 0;
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  padding: 8px 0;
  min-width: 220px;
}
.prive-navbar .dropdown-menu > li > a {
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 10px 20px;
  transition: color 0.2s, background 0.2s;
}
.prive-navbar .dropdown-menu > li > a:hover {
  color: var(--gold);
  background: rgba(201,169,110,0.06);
}
.prive-navbar .dropdown-menu .divider {
  background: rgba(0,0,0,0.08);
  margin: 6px 0;
}
.prive-navbar .dropdown-toggle .caret { border-top-color: var(--dark); }
.prive-navbar .dropdown-toggle:hover .caret,
.prive-navbar .open .dropdown-toggle .caret { border-top-color: var(--gold); }

/* ============================================================
   6. BUTTONS  (shared)
   ============================================================ */

/* Ghost button — for dark backgrounds */
.btn-prive-ghost {
  display: inline-block;
  font-family: 'Inconsolata', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 14px 32px;
  border-radius: 0;
  text-decoration: none;
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.35s ease;
}
.btn-prive-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 8px 28px rgba(0,0,0,0.2);
}

/* Gold filled button — for CTAs on dark or light backgrounds */
.btn-prive-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-prive-gold:hover {
  background: var(--gold-light);
  color: var(--dark);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-prive-gold.large {
  font-size: 14px;
  padding: 18px 40px;
}

/* Gold outline button — for secondary CTAs inside dark cards */
.btn-prive-gold-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-prive-gold-ghost:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-prive-gold-ghost.large {
  font-size: 14px;
  padding: 18px 40px;
}

/* Card tag chip — absolute badge over yacht/card images */
.yacht-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 0;
  z-index: 2;
}

/* Scroll indicator — hero bottom-center animated chevron */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--gold-light);
  opacity: 0.85;
  cursor: pointer;
  z-index: 5;
  animation: scroll-indicator-bob 3s ease-in-out infinite;
  transition: opacity 0.3s ease;
  text-decoration: none;
}
.scroll-indicator:visited,
.scroll-indicator:hover,
.scroll-indicator:active,
.scroll-indicator:focus {
  color: var(--gold-light);
  text-decoration: none;
  outline: none;
}
.scroll-indicator:hover { opacity: 1; }
.scroll-indicator-label {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.scroll-indicator-chevron {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
@keyframes scroll-indicator-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* WhatsApp */
.btn-prive-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inconsolata', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--green-dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: 0;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.btn-prive-wa:hover {
  background: var(--green);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-prive-wa svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-prive-wa.large { font-size: 14px; padding: 18px 36px; }

/* Outline */
.btn-prive-outline {
  display: inline-block;
  font-family: 'Inconsolata', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 14px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-prive-outline:hover {
  background: var(--dark);
  color: var(--gold-light);
  text-decoration: none;
}

/* Dark solid */
.btn-prive-dark {
  display: inline-block;
  font-family: 'Inconsolata', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--gold-light);
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 16px;
}
.btn-prive-dark:hover {
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
}

/* Green */
.btn-primary {
  background: var(--green);
  border: none;
  color: #fff;
  border-radius: 3px;
}
.btn-primary:hover { background: var(--green-dark); color: #fff; }

/* Soft secondary — glass flavour */
.btn-secondary {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.7);
  color: #000;
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.btn-secondary:hover { background: rgba(255,255,255,0.75); color: #000; }

/* ============================================================
   7. SCROLL REVEAL ANIMATIONS  (shared)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }

/* ============================================================
   8. SECTIONS  (shared rhythm)
   ============================================================ */
.section-hp    { padding: 100px 0; }
.section-padding { padding: 80px 0; }

.arrived-section    { background: #F5EDE0; }
.yachts-section     { background: #F5EDE0; }
.corporate-section  { background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%); }
.experiences-section { padding: 0; background: #F5EDE0; }
.experiences-section > .container { padding: 100px 0 48px; }
.price-anchor-strip {
  background: #F5EDE0;
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.price-anchor-text {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  line-height: 1.6;
  color: rgba(11,15,26,0.6);
  margin: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.price-anchor-icon {
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
}
.price-anchor-text strong {
  font-family: 'Cormorant Upright', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin: 8px 0 4px;
  letter-spacing: 0.02em;
}
.addons-section     { background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%); padding-bottom: 0; }
.team-section       { background: #F5EDE0; }
.testimonials-section { background: #F5EDE0; }
.contact-section    { background: #F5EDE0; }
.whyrent            { background: #F5EDE0; }

/* ============================================================
   9. HERO  (homepage)
   ============================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -8%;   /* extra room for parallax travel */
  background: url('../images/boat.jpg') center center / cover no-repeat;
  animation: heroZoom 14s ease-out forwards;
  will-change: transform;
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.02); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,15,26,0.18) 0%,
    rgba(11,15,26,0.42) 55%,
    rgba(11,15,26,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 30px;
}

.hero-eyebrow {
  font-family: 'Inconsolata', monospace;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Cormorant Upright', serif;
  font-size: 88px;
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
}
/* Signature italic-gold treatment — use ONCE per page, hero only.
   Do not add <em> tags for this effect in section headers, cards,
   or body copy. If you need emphasis elsewhere, use <strong> or
   a dedicated class. */
.hero .hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
  font-style: italic;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1;   }
}

/* ============================================================
   10. BLOG PAGE HERO JUMBOTRON
   ============================================================ */
.hero-jumbotron {
  position: relative;
  background-image: url('../images/boat.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 0;
  height: 80vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-jumbotron::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,15,26,0.15) 0%,
    rgba(11,15,26,0.4)  50%,
    rgba(11,15,26,0.7)  100%
  );
}

/* Glass card that wraps the jumbotron inner text */
.hero-jumbotron .hero-overlay {
  position: relative;
  z-index: 2;
  background:    rgba(255,255,255,0.12);
  border:        1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  box-shadow:    0 12px 48px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 70px 60px;
  max-width: 880px;
  margin: auto;
}

.hero-jumbotron .hero-overlay h1 {
  font-family: 'Cormorant Upright', serif;
  font-size: 68px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}

.hero-jumbotron .hero-overlay p {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 36px;
}

.hero-jumbotron .btn {
  border-radius: 0;
  padding: 12px 28px;
  font-family: 'Inconsolata', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 6px;
}

/* ============================================================
   11. MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--green-dark);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeRoll 18s linear infinite;
}
.marquee-track span {
  font-family: 'Inconsolata', monospace;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0 20px;
}
.marquee-dot { color: var(--gold) !important; padding: 0 4px !important; }
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   12. ARRIVED SECTION
   ============================================================ */
.arrived-row   { align-items: center; }
.arrived-img-wrap { position: relative; }

/* Mosaic canvas reveal */
.mosaic-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.arrived-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}
.arrived-img-label {
  position: absolute;
  bottom: -18px;
  right: -18px;
  z-index: 3;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 20px;
}
.arrived-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat-num {
  display: block;
  font-family: 'Cormorant Upright', serif;
  font-size: 46px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================================
   13. YACHTS SECTION
   ============================================================ */
.yachts-grid   { margin-top: 60px; }
.yacht-col     { margin-bottom: 30px; }

.hp-yacht-card {
  background: var(--off-white);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.hp-yacht-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.hp-yacht-img-wrap {
  position: relative;
  overflow: hidden;
}
.hp-yacht-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hp-yacht-card:hover .hp-yacht-img-wrap img { transform: scale(1.06); }

/* Glass badge over yacht image */
.yacht-capacity-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(11,15,26,0.55);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  color: var(--gold-light);
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 0;
}

/* deprecated — replaced by .yacht-chip */
.yacht-featured-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0;
}

.hp-yacht-info { padding: 24px; }
.yacht-name {
  font-family: 'Cormorant Upright', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 4px 0;
}
.yacht-type {
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.yacht-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}
.yacht-from {
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.yacht-price {
  font-family: 'Cormorant Upright', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--dark);
}
.btn-yacht-view {
  display: inline-block;
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  text-decoration: none;
  padding-bottom: 2px;
  transition: all 0.3s;
}
.btn-yacht-view:hover { color: var(--dark); border-color: var(--dark); text-decoration: none; }

.view-all-wrap { margin-top: 60px; }
.featured-yacht .hp-yacht-img-wrap img { height: 320px; }

/* Blog page yacht cards */
.yacht-card {
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.yacht-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.yacht-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s;
}
.yacht-card:hover img { transform: scale(1.04); }

/* ============================================================
   14. PARALLAX DIVIDERS  (scroll upward)
   ============================================================ */
.parallax-divider {
  position: relative;
  height: 480px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;   /* starts at top so scroll reveals downward portion */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background images injected by JS when in view */

.parallax-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,15,26,0.72);
}

.parallax-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 40px;
}

.parallax-quote {
  font-family: 'Cormorant Upright', serif;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
  margin-bottom: 16px;
}
.parallax-attr {
  font-family: 'Inconsolata', monospace;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.parallax-cta-head {
  font-family: 'Cormorant Upright', serif;
  font-size: 80px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 0 0 80px rgba(201,169,110,0.25), 0 4px 32px rgba(0,0,0,0.6);
}
.parallax-cta-head em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
  font-size: 100px;
  text-shadow: 0 0 60px rgba(201,169,110,0.5), 0 4px 32px rgba(0,0,0,0.6);
}
.parallax-cta-sub {
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 48px;
  display: block;
}

.parallax-overlay .btn-prive-wa {
  font-size: 15px;
  padding: 20px 48px;
  letter-spacing: 0.2em;
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(201,169,110,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.parallax-overlay .btn-prive-wa:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}
.parallax-overlay .btn-prive-wa::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: shimmer 3.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { left: -75%; }
  60%, 100% { left: 130%; }
}

/* ============================================================
   15. CORPORATE SECTION
   ============================================================ */
.corporate-row { align-items: center; }
.corporate-section .hp-section-head { color: #fff; }
.corporate-section .hp-body         { color: rgba(255,255,255,0.55); }
.corporate-section .hp-section-sub  { color: rgba(255,255,255,0.7); }
.corporate-features {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px 0;
}
.corporate-features li {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-tick { color: var(--gold); font-size: 14px; }

.corporate-img-stack { position: relative; }
.corp-img-main { width: 100%; height: 560px; object-fit: cover; display: block; }
.corp-img-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  z-index: -1;
}

/* ---- Corporate Carousel ---- */

.corp-carousel {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

/* Thumbnail strip */
.corp-thumbs {
  display: flex;
  gap: 4px;
  height: 72px;
}
.corp-thumb {
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
  position: relative;
}
.corp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.corp-thumb.active { opacity: 1; }
.corp-thumb.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}
.corp-thumb:hover { opacity: 0.85; }

/* Main track */
.corp-carousel-track {
  position: relative;
  width: 100%;
  height: 520px;
}
.corp-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.corp-carousel-slide.active {
  opacity: 1;
}
.corp-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Client logo bar */
.client-logo-bar {
  margin-top: 32px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.09);
  border-top: 1px solid rgba(201,169,110,0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  text-align: center;
}
.client-logo-label {
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.7;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.client-logo-slot img {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(1) brightness(10) opacity(0.35);
  transition: filter 0.3s;
}
.client-logo-slot:hover img {
  filter: grayscale(0) brightness(1) opacity(1);
}

@media (max-width: 768px) {
  .corp-carousel-track { height: 360px; }
  .corp-thumbs         { height: 54px; }
  .addon-hp-card       { height: 360px; }
  .client-logos        { gap: 24px; }
  .client-logo-slot img { height: 28px; }
}

/* ============================================================
   16. EXPERIENCE TILES GRID
   ============================================================ */
.exp-grid { display: flex; flex-wrap: wrap; }
.exp-tile {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
}
.exp-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,15,26,0.35);
  backdrop-filter: blur(6px) saturate(1.3);
  -webkit-backdrop-filter: blur(6px) saturate(1.3);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.exp-tile:hover::before {
  background: rgba(11,15,26,0.15);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.exp-tile-overlay {
  position: absolute;
  inset: 0;
  padding: 28px 32px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.exp-tile-overlay-right {
  text-align: center;
  align-items: center;
}
.exp-tile-overlay:not(.exp-tile-overlay-right) {
  align-items: center;
}
.exp-icon-wrap {
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.9)) drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}
.exp-tile-overlay h3 {
  font-family: 'Cormorant Upright', serif;
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.8);
}
.exp-tile-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin: 8px 0 12px;
  display: none;
}
.exp-sub {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 8px 0 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}
.exp-tile:hover .exp-sub {
  opacity: 1;
  transform: translateY(0);
}
.exp-link {
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid rgba(201,169,110,0.5);
  padding: 6px 14px;
  margin-top: 10px;
  display: inline-block;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
}
.exp-tile:hover .exp-link { opacity: 1; }
.exp-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ============================================================
   17. ADD-ONS SECTION  (homepage dark)
   ============================================================ */
.addons-section .eyebrow-label { color: var(--gold); }
.addons-section .hp-section-head { color: #fff; }
.addons-row { margin-top: 60px; }
.addon-tile { margin-bottom: 30px; }

/* ---- Addon Split Rows ---- */
.addon-row-wrap {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0;
}

.addons-section > .container {
  padding-bottom: 48px;
}

.addon-split {
  display: flex;
  align-items: stretch;
  height: 400px;
}

.addon-row-reverse .addon-split {
  flex-direction: row-reverse;
}

/* Images side */
.addon-split-images {
  flex: 0 0 50%;
  display: flex;
  gap: 4px;
  overflow: hidden;
}

.addon-img-main {
  flex: 1 1 65%;
  overflow: hidden;
}
.addon-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.addon-row-wrap:hover .addon-img-main img {
  transform: scale(1.04);
}

.addon-img-stack {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
/* deprecated — no longer used */
.addon-img-stack--grid {
  flex: 0 0 45%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 70% 30%;
}
.addon-img-sm {
  flex: 1;
  overflow: hidden;
}
.addon-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.addon-row-wrap:hover .addon-img-sm img {
  transform: scale(1.04);
}

/* Content side */
.addon-split-content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
  background: transparent;
}
.addon-content-right {
  text-align: right;
  align-items: flex-end;
}

.addon-number {
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 8px;
  margin-top: 12px;
}

.addon-title {
  font-family: 'Cormorant Upright', serif;
  font-size: 38px;
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}

.addon-desc {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}

.addon-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.addon-features li {
  font-family: 'Inconsolata', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.addon-features li::before {
  content: '✦  ';
  color: var(--gold);
  font-size: 8px;
}

@media (max-width: 768px) {
  .addon-split,
  .addon-row-reverse .addon-split {
    flex-direction: column;
  }
  .addon-split { height: auto; }
  .addon-split-content { order: 1; flex: none; padding: 40px 28px; }
  .addon-split-images  { order: 2; flex: none; height: 260px; }
  .addon-title { font-size: 32px; }
}

/* Image background card */
.addon-hp-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 480px;
  background-size: cover;
  background-position: center;
  border: none;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}
.addon-hp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

/* Gradient overlay — transparent at top, dark at bottom */
.addon-hp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,15,26,0.95) 0%,
    rgba(11,15,26,0.65) 35%,
    rgba(11,15,26,0.15) 65%,
    transparent 100%
  );
  transition: opacity 0.35s ease;
}
.addon-hp-card:hover::before {
  opacity: 0.85;
}

/* Content sits above overlay */
.addon-hp-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 32px 24px;
}
.addon-icon-wrap {
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  justify-content: flex-start;
}
.addon-hp-card h4 {
  color: #fff;
  font-family: 'Cormorant Upright', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
}
.addon-hp-card p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* Blog add-on cards */
.addon-card {
  background: #fff;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
  border-radius: 12px;
}
.addon-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.addon-caption  { padding: 15px; text-align: center; }
.addon-caption h5 { margin: 0; font-size: 16px; }
.addon-card:hover {
  transform: translateY(-5px);
  border: 1px solid var(--gold-light);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ============================================================
   18. TEAM SECTION
   ============================================================ */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 64px;
  max-width: 896px; /* 4 × 200px + 3 × 32px gap */
  margin-left: auto;
  margin-right: auto;
}
.team-card {
  text-align: center;
  width: 200px;
  flex-shrink: 0;
}
.team-img-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  background: #e8e4dc;
  border: 3px solid var(--gold-pale);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}
.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-name {
  font-family: 'Cormorant Upright', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 2px;
}
.team-tag {
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.team-role {
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   19. TESTIMONIALS
   ============================================================ */
/* Testimonial carousel */
.testi-carousel {
  margin-top: 60px;
  position: relative;
}
.testi-slide {
  display: none;
  align-items: stretch;
}
.testi-slide.active {
  display: flex;
}

/* Images panel */
.testi-images {
  flex: 0 0 45%;
  display: flex;
  gap: 4px;
  overflow: hidden;
  height: 420px;
}
.testi-img-main {
  flex: 1 1 65%;
  overflow: hidden;
}
.testi-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-img-stack {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testi-img-sm {
  flex: 1;
  overflow: hidden;
}
.testi-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content panel */
.testi-content {
  flex: 1;
  height: 420px;
  padding: 48px 52px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testi-quote-mark {
  font-family: 'Cormorant Upright', serif;
  font-size: 80px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.5;
}
.testi-text {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
}
.testi-author   { display: flex; flex-direction: column; gap: 4px; }
.testi-name {
  font-family: 'Cormorant Upright', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}
.testi-occasion {
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Carousel controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.testi-prev, .testi-next {
  background: none;
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
  width: 44px;
  height: 44px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-prev:hover, .testi-next:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.testi-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.testi-dot {
  width: 6px;
  height: 6px;
  background: rgba(201,169,110,0.3);
  transition: all 0.3s;
  cursor: pointer;
}
.testi-dot.active {
  background: var(--gold);
  width: 24px;
}

@media (max-width: 768px) {
  .testi-slide.active { flex-direction: column; }
}

/* ============================================================
   20. CONTACT SECTION
   ============================================================ */
.contact-row       { align-items: flex-start; }
.contact-options   { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }

.contact-option-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 4px 16px rgba(0,0,0,0.05);
  border-radius: 0;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
}
.contact-option-card.contact-wa svg { color: #25d366; }
.contact-option-card.contact-wa:hover { border-color: #25d366; }
.contact-option-card:hover {
  border-color: var(--gold);
  background: rgba(245,237,216,0.7);
  text-decoration: none;
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 24px rgba(0,0,0,0.08);
}
.contact-option-card svg    { flex-shrink: 0; color: var(--gold); }
.contact-option-card strong {
  display: block;
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
}
.contact-option-card span { font-size: 14px; color: var(--muted); }

/* Form glass wrap */
.contact-form-wrap {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.75);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  box-shadow: 0 12px 48px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  border-radius: 0;
  padding: 48px 40px;
}
.form-group-hp { margin-bottom: 22px; }
.form-group-hp label {
  display: block;
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.hp-input {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 0;
  padding: 12px 16px;
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  color: var(--text);
  background: rgba(255,255,255,0.7);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.hp-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.hp-textarea { resize: vertical; min-height: 100px; }
.hp-select   { cursor: pointer; }

.btn-prive-submit {
  width: 100%;
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--gold-light);
  border: none;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
  margin-top: 8px;
}
.btn-prive-submit:hover { background: var(--gold); color: var(--dark); }
.btn-prive-submit.sending { opacity: 0.6; pointer-events: none; }
.form-success {
  display: none;
  margin-top: 16px;
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

/* ============================================================
   21. CTA BOX  (blog page)
   ============================================================ */
.cta-box {
  position: relative;
  background: url('../images/ciao2.jpeg') center center / cover no-repeat;
  background-attachment: fixed;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  background: rgba(11,15,26,0.75);
  z-index: 1;
}
.cta-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}
.cta-box h2 { color: #fff; font-size: 50px; margin-bottom: 20px; }
.cta-box p  { color: #ddd; font-size: 18px; margin-bottom: 30px; }
.wa-icon    { width: 20px; height: 20px; }

/* ============================================================
   22. PARALLAX 3 / MAP DIVIDER  (shared)
   ============================================================ */
.parallax3 {
  position: relative;
  width: 100%;
  height: 400px;
  background: url('../images/ciao2.jpeg') center center fixed;
  background-size: cover;
  overflow: hidden;
}
.parallax3::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(11,15,26,0.75) 20%, transparent 100%);
}
.map-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 20%;
  z-index: 2;
}

/* ============================================================
   23. BRAND SPONSORS
   ============================================================ */
.brand-sponsors {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 96px 0;
  text-align: center;
}

.brand-sponsors-inner {
  max-width: 860px;
  margin: 0 auto;
}

.brand-sponsors-eyebrow {
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.brand-sponsors-heading {
  font-family: 'Cormorant Upright', serif;
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.brand-sponsors-sub {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 56px;
}

.brand-sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 56px;
}

.brand-sponsor-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.4);
  transition: filter 0.35s ease;
}

.brand-sponsor-item img:hover {
  filter: none;
}

@media (max-width: 768px) {
  .brand-sponsors-heading { font-size: 30px; }
  .brand-sponsor-logos    { gap: 28px 36px; }
  .brand-sponsor-item img { height: 30px; }
}

/* ============================================================
   24. FOOTER  (shared)
   ============================================================ */
.prive-footer {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--gold-light);
  padding-top: 80px;
  height: auto;
  min-height: 500px;
}
.prive-footer > .container > .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  filter: brightness(10);
}
.footer-logo {
  width: 50%;
  margin-left: 60px;
  margin-top: 20px;
}
.footer-tagline {
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-desc {
  font-family: 'Cormorant Upright', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
}
.footer-desc:last-of-type { margin-bottom: 28px; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inconsolata', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-social:hover { color: var(--gold-light); text-decoration: none; }
.footer-links h4 {
  color: #fff;
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 40px;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-links ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(227,195,143,0.18);
  margin-top: 60px;
  padding: 22px 0;
  text-align: center;
  font-family: 'Inconsolata', monospace;
  font-size: 12px;
  color: rgba(227,195,143,0.4);
  letter-spacing: 0.05em;
}

/* ============================================================
   24. BLOG-SPECIFIC STYLES
   ============================================================ */

/* Intro section */
.intro-section  { background: #fff; }
.anchor-icon    { width: 60px; margin: 0 auto 40px; display: block; opacity: 0.8; }

.section-head {
  text-align: center;
  margin: 40px 0 80px 0;
  position: relative;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.section-head:after {
  content: '';
  width: 60px;
  height: 2px;
  background: var(--gold);
  display: block;
  margin: 20px auto 0;
}

/* Blog body text */
.section-padding p { font-size: 20px; color: var(--muted); }
.sub-heading        { margin: -30px 0 70px 0; }
.intro-para         { margin: 15px; font-size: 19px; color: var(--muted); line-height: 1.8; }
.left-para          { margin: 40px; text-align: right; }
.right-para         { margin: 40px; }
.right-para-heading { padding-top: 20px; }
.p-l-50             { padding-left: 50px; }
.tile-img           { width: 100%; }
.col-md-6-img       { padding: 0; }

/* WHY RENT section alternating */
.section-padding:nth-child(even) { background: #fafafa; }

/* Experience cards (blog) */
.exp-card {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
  border-radius: 16px;
  margin-bottom: 25px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.exp-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.exp-text     { flex: 1; padding: 25px; }
.exp-img      { width: 180px; height: 180px; flex-shrink: 0; }
.exp-img img  { width: 100%; height: 100%; object-fit: cover; border-radius: 0 12px 12px 0; }

/* Price table */
.table {
  background: #fff;
  overflow: hidden;
  border: 1px solid #222;
  margin: 60px 0;
  border-radius: 12px;
}
.table th { background: var(--green-dark); color: #fff; }

/* FAQ accordion */
.panel-group .panel {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: none;
  border: 1px solid rgba(0,0,0,0.07);
}
.panel-heading {
  background: rgba(255,255,255,0.65) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.6) !important;
}
.panel-title a {
  font-size: 20px;
  display: block;
  padding: 10px 0;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}
.panel-body { background: rgba(250,248,244,0.8); }

/* Drone / video section */
.drone-section { text-align: center; padding: 50px 20px; }
.video-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 30px;
  margin-top: 40px;
  aspect-ratio: 9/16;
  height: 600px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-radius: 20px;
  transition: 0.3s ease;
}
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  backdrop-filter: blur(2px);
}
.play-btn {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.video-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.video-card:hover .video-overlay { background: rgba(0,0,0,0.5); }
.video-card:hover .play-btn { transform: scale(1.1); }
.video-card.playing .video-overlay { opacity: 0; pointer-events: none; }
video:focus { outline: none; }

/* ============================================================
   25. BLOG CAROUSEL (featured yachts)
   ============================================================ */
.featured-yachts { background: #fff; }
.carousel-control { z-index: 10; }

/* ============================================================
   26. BOARDING LOCATIONS list
   ============================================================ */
.intro-para ul { padding-left: 20px; }

/* ============================================================
   27. GLASS FLOATING CARDS (used in various sections)
   ============================================================ */

/* A reusable "apple card" — light surface */
.apple-card {
  background:    rgba(255,255,255,0.6);
  border:        1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(20px) saturate(1.6) brightness(1.05);
  -webkit-backdrop-filter: blur(20px) saturate(1.6) brightness(1.05);
  box-shadow:    0 8px 32px rgba(0,0,0,0.07),
                 inset 0 1px 0 rgba(255,255,255,0.95);
  border-radius: 18px;
}

/* ============================================================
   28. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  h1, .hero-headline            { font-size: 64px; }
  h2, .hp-section-head          { font-size: 44px; }
  .parallax-cta-head            { font-size: 46px; }
  .hero-jumbotron .hero-overlay h1 { font-size: 52px; }
}

@media (max-width: 768px) {
  .hero-headline            { font-size: 38px; }
  .hero-sub                 { font-size: 18px; }
  .section-hp               { padding: 48px 0; }
  h2, .hp-section-head      { font-size: 32px; line-height: 1.2; margin-bottom: 24px; }
  .hp-section-sub           { font-size: 18px; margin-top: -4px; }
  .hp-body                  { font-size: 18px; line-height: 1.6; }
  .addon-split-content      { padding: 28px 24px; }
  .testi-content            { padding: 24px 20px; }
  .hp-yacht-img-wrap img    { height: 220px; }
  .team-grid                { max-width: 400px; gap: 24px 32px; }
  .team-card                { width: 160px; }
  .testi-img-stack          { display: flex; flex: 1; }
  .testi-img-main           { flex: 1; }
  .testi-images             { flex: none; height: 280px; }
  .testi-text               { font-size: 16px; }
  .section-padding          { padding: 60px 0; }

  /* ── 2. Horizontal snap-scroll: Yachts ── */
  .yachts-section           { overflow-x: hidden; }
  .yachts-grid {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 16px;
    gap: 12px;
    margin-top: 32px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .yachts-grid::-webkit-scrollbar { display: none; }
  .yacht-col {
    min-width: 82vw;
    max-width: 82vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    margin-bottom: 0;
    overflow: hidden;
  }

  /* ── 3. Horizontal snap-scroll: Testimonials ── */
  .testimonials-section     { overflow-x: hidden; }
  .testi-carousel {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-top: 32px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .testi-carousel::-webkit-scrollbar { display: none; }
  .testi-slide,
  .testi-slide.active {
    display: flex !important;
    flex-direction: column;
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    overflow: hidden;
  }

  .hp-yacht-card            { display: flex; flex-direction: column; width: 100%; }
  .hp-yacht-img-wrap        { flex-shrink: 0; width: 100%; }
  .hp-yacht-img-wrap img    { height: 220px; width: 100%; object-fit: cover; }

  /* ── 4. Tap press feedback ── */
  .mob-tile              { transition: transform 0.12s ease, opacity 0.2s; }
  .mob-tile:active       { transform: scale(0.97); opacity: 1; }
  .hp-yacht-card         { transition: transform 0.12s ease; }
  .hp-yacht-card:active  { transform: scale(0.98); }
  .btn-prive:active,
  .btn-prive-wa:active,
  .btn-prive-ghost:active { transform: scale(0.97); }

  .arrived-img              { height: 340px; }
  .arrived-right            { margin-top: 36px; }
  .view-all-wrap            { margin-top: 32px; }
  .yachts-section           { padding-bottom: 48px; }
  .arrived-stats            { gap: 20px; flex-wrap: wrap; }
  .arrived-stats .stat-item { text-align: center; }
  .arrived-img-label        { right: 0; bottom: 0; }

  .exp-tile                 { height: 320px; width: 100%; }
  .exp-tile::before         { transition: background 0.7s ease, backdrop-filter 0.7s ease, -webkit-backdrop-filter 0.7s ease; }
  .exp-tile.tile-revealed::before {
    background: rgba(11,15,26,0.15);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
  .exp-tile-overlay         { padding: 24px; }
  .exp-tile-overlay h3      { font-size: 28px; }
  .exp-tile-overlay p,
  .exp-link                 { opacity: 1; }

  .exp-card                 { flex-direction: column; }
  .exp-img                  { width: 100%; height: 200px; }
  .exp-img img              { border-radius: 0 0 12px 12px; }

  .corp-img-main            { height: 320px; }
  .corp-img-accent          { display: none; }
  .corporate-right          { margin-top: 40px; }
  .contact-right            { margin-top: 40px; }

  .contact-form-wrap        { padding: 30px 24px; border-radius: 0; }

  .parallax-divider         { height: auto; min-height: 0; padding: 40px 0; background-attachment: scroll; }
  .parallax-2               { padding: 100px 0; }
  .addons-section           { padding-bottom: 0; }
  .cta-box                  { background-attachment: scroll; }
  .hero-jumbotron           { background-attachment: scroll; }
  .parallax3                { background-attachment: scroll; }

  .map-logo                 { width: 40%; }
  .footer-brand             { margin-bottom: 40px; text-align: center; }
  .footer-links             { margin-bottom: 30px; }
  .footer-logo-text         { font-size: 28px; }

  .parallax-quote           { font-size: 26px; }
  .parallax-cta-head        { font-size: 36px; }
  .parallax-cta-sub         { font-size: 15px; }
  .parallax-overlay .btn-prive-wa svg { width: 34px; height: 34px; }
  .cta-box h2               { font-size: 28px; }

  .navbar-collapse          { background: rgba(250,248,244,0.97); }
  .prive-navbar .navbar-nav > li > a { padding: 12px 20px; }

  .hero-jumbotron .hero-overlay { padding: 50px 28px; border-radius: 14px; }
  .hero-jumbotron .hero-overlay h1 { font-size: 40px; }

  .left-para, .right-para   { margin: 20px 0; text-align: left; }

  .video-card               { height: 400px; }
}

@media (max-width: 480px) {
  .hero-headline            { font-size: 38px; }
  .hero-ctas                { flex-direction: column; align-items: center; }
  .btn-prive-ghost,
  .btn-prive-wa             { width: 100%; justify-content: center; }
  .arrived-stats            { flex-direction: column; gap: 24px; }
  .carousel-control         { display: none; }
}

/* ============================================================
   MOBILE BENTO NAV  (≤768px only)
   ============================================================ */

/* Hide Bootstrap navbar on mobile */
@media (max-width: 768px) {
  .prive-navbar { display: none !important; }
  body { padding-top: 0; }
}

/* Floating hamburger trigger */
.mob-nav-toggle {
  display: none;
}
@media (max-width: 768px) {
  .mob-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 20px;
    z-index: 990;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(11,15,26,0.55);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.3);
  }
  /* Gold moniker — scroll to top — sits above calc + hamburger */
  .mob-scroll-top {
    bottom: calc(20px + 68px + 12px + 68px + 12px + env(safe-area-inset-bottom, 0px));
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  /* Hamburger — opens menu — sits at the very bottom */
  .mob-menu-btn {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  /* Hide both when hero is in viewport */
  .hero-in-view .mob-scroll-top,
  .hero-in-view .mob-menu-btn {
    opacity: 0;
    pointer-events: none;
  }
}
.mob-toggle-moniker {
  width: 34px;
  height: auto;
  display: block;
}
.mob-hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mob-hamburger-lines span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
/* Hamburger → X when menu is open */
.mob-menu-btn.is-open .mob-hamburger-lines span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mob-menu-btn.is-open .mob-hamburger-lines span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mob-menu-btn.is-open .mob-hamburger-lines span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Full-screen overlay */
.mob-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgb(3, 11, 36); /* fallback if WebGL caustic fails */
  z-index: 1000;
  clip-path: circle(0px at var(--origin-x, calc(100% - 48px)) var(--origin-y, calc(100% - 88px)));
  transition: clip-path 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Caustic WebGL canvas — fills the overlay, sits behind all content */
#mob-caustic-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.mob-menu-header,
.mob-bento { position: relative; z-index: 1; }
.mob-menu-overlay.open {
  clip-path: circle(150% at var(--origin-x, calc(100% - 48px)) var(--origin-y, calc(100% - 88px)));
}
@media (max-width: 768px) { .mob-menu-overlay { display: block; } }

/* Hamburger button above overlay */
@media (max-width: 768px) {
  .mob-menu-btn { z-index: 1010; }
}

/* Menu header */
.mob-menu-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.mob-menu-logo-img { height: 56px; width: auto; display: block; }

/* Close button */

/* Bento — flex column; two sub-columns for yachts vs blog */
.mob-bento {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px 40px;
  padding-bottom: max(40px, calc(40px + env(safe-area-inset-bottom)));
}
.mob-bento-cols {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.mob-bento-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
}

/* Tile base */
.mob-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mob-tile:hover, .mob-tile:active { opacity: 0.85; text-decoration: none; color: #fff; }

/* Book (hero) — full width, tall */
.mob-tile--book {
  grid-column: span 6;
  background: rgba(28, 81, 58, 0.35);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 18px 16px;
  gap: 4px;
  min-height: 110px;
  flex: 1 1 auto;
  color: #25D366;
}
.mob-tile--book .mob-tile-label { color: #fff; }
.mob-tile--book .mob-tile-sub { display: none; }

/* Medium tiles — half width */
.mob-tile--md {
  grid-column: span 3;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 22px 18px;
  gap: 4px;
  min-height: 110px;
}
.mob-bento-col:last-child .mob-tile--md,
.mob-bento-col:last-child .mob-tile--blog {
  background: rgba(255, 255, 255, 0.06);
}

/* Small tiles — third width */
.mob-tile--sm {
  grid-column: span 2;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 16px 12px;
  font-family: 'Inconsolata', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  justify-content: center;
  align-items: center;
  min-height: 52px;
}

/* Blog article sub-tiles — half width, compact */
.mob-tile--blog {
  grid-column: span 3;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 14px 12px;
  min-height: 64px;
  justify-content: flex-end;
}
.mob-tile--blog .mob-tile-eyebrow { margin-bottom: 5px; }
.mob-tile--blog .mob-tile-label { font-size: 17px; line-height: 1.2; }

/* Tile icon */
.mob-tile-icon {
  color: var(--gold);
  margin-bottom: auto;
  flex-shrink: 0;
}

/* Tile typography */
.mob-tile-eyebrow {
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}
.mob-tile-label {
  font-family: 'Cormorant Upright', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
.mob-tile-sub {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  line-height: 1.4;
}
.mob-tile--book .mob-tile-label { font-size: 20px; margin-top: 4px; }
.mob-tile--book svg { opacity: 0.9; }
