  :root {
    --navy: #0a1628;
    --navy-mid: #0d1f3c;
    --navy-light: #132848;
    --silver: #c8d4e0;
    --silver-bright: #e8f0f8;
    --gold: #b8975a;
    --gold-light: #d4af72;
    --white: #ffffff;
    --text-muted: #7a9bb5;
    --wa-green: #25D366;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--navy);
    color: var(--silver-bright);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(180deg, rgba(10,22,40,0.97) 0%, rgba(10,22,40,0) 100%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(200,212,224,0.08);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
  }

  .nav-logo img {
    height: 52px; width: 52px; object-fit: contain;
  }

  .nav-logo-text {
    line-height: 1.1;
  }

  .nav-logo-text .brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--silver-bright);
    display: block;
  }

  .nav-logo-text .tagline {
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.28em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--gold-light); }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 10px 24px;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s !important;
  }

  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative;
    padding: 120px 48px 80px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?w=1800&q=85&fit=crop');
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.04);
    animation: heroZoom 18s ease-in-out infinite alternate;
  }

  @keyframes heroZoom {
    0%   { transform: scale(1.04) translateX(0); }
    100% { transform: scale(1.10) translateX(-20px); }
  }

  /* Dark cinematic overlay */
  .hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(180deg,
        rgba(6,14,28,0.72) 0%,
        rgba(8,18,36,0.55) 40%,
        rgba(6,14,28,0.80) 100%),
      radial-gradient(ellipse 70% 60% at 50% 50%, rgba(10,30,60,0.3) 0%, transparent 70%);
  }

  /* Gold shimmer line at bottom */
  .hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
  }

  /* ── PHOTO BANNER (between hero and fleet) ── */
  .photo-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
  }

  .photo-banner-track {
    display: flex;
    height: 100%;
    animation: bannerScroll 40s linear infinite;
    width: max-content;
  }

  .photo-banner-track:hover { animation-play-state: paused; }

  @keyframes bannerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .banner-img {
    height: 100%;
    width: 600px;
    object-fit: cover;
    flex-shrink: 0;
    border-right: 3px solid rgba(10,22,40,0.8);
    filter: brightness(0.85) saturate(1.1);
    transition: filter 0.4s;
  }

  .banner-img:hover {
    filter: brightness(1) saturate(1.3);
  }

  .photo-banner-overlay {
    position: absolute; inset: 0; z-index: 2;
    background:
      linear-gradient(90deg, rgba(10,22,40,0.85) 0%, transparent 15%, transparent 85%, rgba(10,22,40,0.85) 100%),
      linear-gradient(180deg, rgba(10,22,40,0.3) 0%, transparent 30%, transparent 70%, rgba(10,22,40,0.5) 100%);
    pointer-events: none;
  }

  .photo-banner-label {
    position: absolute; z-index: 3;
    bottom: 32px; left: 50%; transform: translateX(-50%);
    text-align: center;
    pointer-events: none;
  }

  .photo-banner-label span {
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(10,22,40,0.7);
    padding: 8px 24px;
    border: 1px solid rgba(184,151,90,0.3);
    border-radius: 2px;
  }

  .hero-content {
    position: relative; z-index: 3;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    width: 100%;
  }

  .hero-eyebrow {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 16px;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    width: 40px; height: 1px;
    background: var(--gold);
    opacity: 0.6;
  }

  .hero-logo-large {
    width: 180px; height: 180px;
    object-fit: contain;
    margin-bottom: 32px;
    filter: drop-shadow(0 0 40px rgba(184,151,90,0.25));
    animation: logoFloat 4s ease-in-out infinite;
  }

  @keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: 0.06em;
    text-align: center;
    color: var(--white);
    margin-bottom: 8px;
  }

  .hero h1 span {
    color: var(--gold-light);
    font-weight: 600;
  }

  .hero-sub {
    font-size: clamp(11px, 1.5vw, 13px);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 48px;
  }

  .hero-stats {
    display: flex; gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; font-weight: 600;
    color: var(--white);
    line-height: 1;
    display: block;
  }

  .hero-stat .label {
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 6px;
    display: block;
  }

  .stat-divider {
    width: 1px; background: rgba(200,212,224,0.15);
    align-self: stretch;
  }

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

  .btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    padding: 16px 36px;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    border: none; cursor: pointer;
    border-radius: 2px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(184,151,90,0.35);
    display: inline-block;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(184,151,90,0.5);
  }

  .btn-ghost {
    background: transparent;
    color: var(--silver-bright);
    padding: 15px 36px;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(200,212,224,0.3);
    border-radius: 2px;
    transition: border-color 0.3s, color 0.3s;
    display: inline-block;
  }

  .btn-ghost:hover {
    border-color: var(--silver-bright);
    color: var(--white);
  }

  /* ── LOCATION STRIP ── */
  .location-strip {
    background: var(--gold);
    padding: 14px 48px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
  }

  .location-strip svg { flex-shrink: 0; }

  .location-strip span {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
  }

  /* ── SECTION ── */
  section { padding: 100px 48px; }

  .section-eyebrow {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 14px;
  }

  .section-eyebrow::after {
    content: '';
    flex: 1; max-width: 60px; height: 1px;
    background: var(--gold); opacity: 0.5;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
  }

  .section-title strong { font-weight: 600; color: var(--gold-light); }

  /* ── FLEET GRID ── */
  #fleet { background: var(--navy-mid); }

  .fleet-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .fleet-header .section-eyebrow { justify-content: center; }
  .fleet-header .section-eyebrow::after { max-width: 40px; }

  .yacht-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .yacht-card {
    background: var(--navy-light);
    border: 1px solid rgba(200,212,224,0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }

  .yacht-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184,151,90,0.35);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,151,90,0.15);
  }

  .yacht-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d2040 0%, #0a2050 100%);
    display: flex; align-items: center; justify-content: center;
  }

  /* Yacht silhouette SVG illustrations */
  .yacht-illustration {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
  }

  .yacht-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 8px; font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
  }

  .yacht-body {
    padding: 24px;
  }

  .yacht-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
  }

  .yacht-type {
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  .yacht-specs {
    display: flex; gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(200,212,224,0.08);
  }

  .spec {
    display: flex; flex-direction: column; gap: 4px;
  }

  .spec-label {
    font-size: 8px; font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .spec-value {
    font-size: 14px; font-weight: 600;
    color: var(--silver-bright);
  }

  .spec-value .unit {
    font-size: 10px; font-weight: 400;
    color: var(--text-muted);
  }

  .yacht-pricing {
    display: flex; align-items: flex-end; justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .price-block {}

  .price-label {
    font-size: 8px; font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }

  .price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
  }

  .price-value .currency {
    font-size: 14px; font-weight: 400;
    vertical-align: top; margin-top: 4px;
    display: inline-block;
  }

  .price-value .per {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 400;
    color: var(--text-muted);
    vertical-align: bottom;
    margin-bottom: 2px;
    display: inline-block;
  }

  .btn-book {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    font-size: 9px; font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s;
    white-space: nowrap;
  }

  .btn-book:hover {
    background: var(--gold);
    color: var(--navy);
  }

  /* ── CALCULATOR ── */
  #calculator {
    background: var(--navy);
    position: relative;
  }

  #calculator::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(184,151,90,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .calc-layout {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .calc-left {}

  .calc-box {
    background: var(--navy-light);
    border: 1px solid rgba(200,212,224,0.1);
    border-radius: 4px;
    padding: 40px;
  }

  .calc-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 600;
    color: var(--white);
    margin-bottom: 32px;
  }

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

  .form-group label {
    display: block;
    font-size: 9px; font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
  }

  .form-group select,
  .form-group input {
    width: 100%;
    background: var(--navy-mid);
    border: 1px solid rgba(200,212,224,0.12);
    color: var(--silver-bright);
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
  }

  .form-group select:focus,
  .form-group input:focus {
    border-color: var(--gold);
  }

  .form-group select option { background: var(--navy-mid); }

  .calc-result {
    background: linear-gradient(135deg, rgba(184,151,90,0.12) 0%, rgba(184,151,90,0.04) 100%);
    border: 1px solid rgba(184,151,90,0.3);
    border-radius: 4px;
    padding: 28px;
    margin-top: 24px;
  }

  .calc-result .result-label {
    font-size: 9px; font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .calc-result .result-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 600;
    color: var(--white);
    line-height: 1;
  }

  .calc-result .result-breakdown {
    font-size: 11px; color: var(--text-muted);
    margin-top: 8px;
  }

  .wa-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--wa-green);
    color: white;
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
    border: none;
  }

  .wa-button:hover {
    background: #1da851;
    transform: translateY(-2px);
  }

  /* ── WHY SECTION ── */
  #why {
    background: var(--navy-mid);
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2px;
    margin-top: 64px;
    border: 1px solid rgba(200,212,224,0.08);
  }

  .why-item {
    padding: 40px 32px;
    background: var(--navy-light);
    border: 1px solid rgba(200,212,224,0.06);
    transition: background 0.3s;
  }

  .why-item:hover { background: rgba(20,45,80,0.8); }

  .why-icon {
    width: 44px; height: 44px;
    background: rgba(184,151,90,0.1);
    border: 1px solid rgba(184,151,90,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
  }

  .why-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
  }

  .why-item p {
    font-size: 12px; line-height: 1.7;
    color: var(--text-muted);
  }

  /* ── FOOTER ── */
  footer {
    background: #060f1e;
    padding: 60px 48px 32px;
    border-top: 1px solid rgba(200,212,224,0.06);
  }

  .footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 48px;
  }

  .footer-brand {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 20px;
  }

  .footer-brand img {
    height: 48px; width: 48px; object-fit: contain;
  }

  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--silver-bright);
    display: block;
  }

  .footer-brand-sub {
    font-size: 9px; letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .footer-desc {
    font-size: 12px; line-height: 1.8;
    color: var(--text-muted);
    max-width: 300px;
  }

  .footer-col h5 {
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
  }

  .footer-col ul li a {
    text-decoration: none;
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.3s;
  }

  .footer-col ul li a:hover { color: var(--silver-bright); }

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

  .footer-bottom p {
    font-size: 11px;
    color: var(--text-muted);
  }

  .footer-wa {
    display: flex; align-items: center; gap: 8px;
    text-decoration: none;
    font-size: 12px; font-weight: 600;
    color: var(--wa-green);
    transition: opacity 0.3s;
  }

  .footer-wa:hover { opacity: 0.8; }

  /* ── FLOATING WA ── */
  .floating-wa {
    position: fixed; bottom: 28px; right: 28px; z-index: 99;
    background: var(--wa-green);
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(37,211,102,0.4);
    text-decoration: none;
    animation: pulse 2.5s ease-in-out infinite;
    transition: transform 0.2s;
  }

  .floating-wa:hover {
    transform: scale(1.1);
    animation: none;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 48px rgba(37,211,102,0.7); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    section { padding: 72px 24px; }
    .calc-layout { grid-template-columns: 1fr; }
    .footer-layout { grid-template-columns: 1fr; gap: 32px; }
    .hero { padding: 100px 24px 60px; }
    .hero-stats { gap: 24px; }
    .stat-divider { display: none; }
  }

  @media (max-width: 600px) {
    .yacht-grid { grid-template-columns: 1fr; }
    .location-strip { padding: 14px 24px; }
    .location-strip span { font-size: 10px; }
  }
/* ── GALLERY HINT OVERLAY on card ── */
.gallery-hint {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(10,22,40,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(184,151,90,0.4);
  border-radius: 20px;
  padding: 5px 12px 5px 8px;
  display: flex; align-items: center; gap: 6px;
  color: white;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em;
  pointer-events: none;
  transition: background 0.3s;
}

.yacht-img-wrap:hover .gallery-hint {
  background: rgba(184,151,90,0.85);
}

/* ── GALLERY MODAL ── */
.gallery-modal {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}

.gallery-modal.open {
  opacity: 1; pointer-events: all;
}

.gallery-modal-bg {
  position: absolute; inset: 0;
  background: rgba(4, 10, 22, 0.92);
  backdrop-filter: blur(12px);
}

.gallery-modal-box {
  position: relative; z-index: 1;
  background: var(--navy-light);
  border: 1px solid rgba(200,212,224,0.12);
  border-radius: 8px;
  width: 100%; max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: translateY(20px);
  transition: transform 0.3s;
}

.gallery-modal.open .gallery-modal-box {
  transform: translateY(0);
}

/* Header */
.gm-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(200,212,224,0.08);
  flex-shrink: 0;
}

.gm-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}

.gm-type {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.gm-close {
  background: rgba(200,212,224,0.08);
  border: 1px solid rgba(200,212,224,0.12);
  color: var(--silver);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.gm-close:hover { background: rgba(200,212,224,0.15); color: var(--white); }

/* Main image area */
.gm-main-wrap {
  position: relative;
  display: flex; align-items: center;
  flex-shrink: 0;
}

.gm-img-container {
  flex: 1;
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--navy);
}

.gm-img-container img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.gm-counter-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(10,22,40,0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(200,212,224,0.15);
  color: var(--silver-bright);
  font-size: 11px; font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.gm-nav {
  position: absolute; z-index: 2;
  width: 44px; height: 44px;
  background: rgba(10,22,40,0.8);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,212,224,0.15);
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.gm-nav:hover { background: var(--gold); transform: scale(1.08); }

.gm-prev { left: 12px; }
.gm-next { right: 12px; }

/* Dots */
.gm-dots {
  display: none;
  gap: 8px;
  justify-content: center;
  padding: 12px 0 4px;
}

.g-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(200,212,224,0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.g-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Thumbnails */
.gm-thumbs {
  display: flex;
  gap: 8px;
  padding: 14px 28px;
  overflow-x: auto;
  flex-shrink: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,212,224,0.15) transparent;
}

.gm-thumbs::-webkit-scrollbar { height: 4px; }
.gm-thumbs::-webkit-scrollbar-track { background: transparent; }
.gm-thumbs::-webkit-scrollbar-thumb { background: rgba(200,212,224,0.15); border-radius: 2px; }

.g-thumb {
  flex-shrink: 0;
  width: 90px; height: 60px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s, opacity 0.2s;
  opacity: 0.6;
}

.g-thumb:hover { opacity: 0.85; transform: scale(1.04); }
.g-thumb.active { border-color: var(--gold); opacity: 1; }

.g-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Footer */
.gm-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(200,212,224,0.08);
  flex-wrap: wrap;
  gap: 16px;
  flex-shrink: 0;
}

.gm-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

/* ── BOOKING PANEL ── */
.gm-booking-panel {
  border-top: 1px solid rgba(200,212,224,0.1);
  padding: 24px 28px 28px;
  background: rgba(6,14,28,0.4);
  flex-shrink: 0;
}

.gm-booking-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}

.gm-booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.gm-booking-field {}

.gm-field-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.gm-date-input {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid rgba(200,212,224,0.14);
  color: var(--silver-bright);
  padding: 12px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
  cursor: pointer;
  color-scheme: dark;
}

.gm-date-input:focus { border-color: var(--gold); }

.gm-guest-counter {
  display: flex; align-items: center;
  background: var(--navy-mid);
  border: 1px solid rgba(200,212,224,0.14);
  border-radius: 4px;
  overflow: hidden;
  height: 44px;
}

.gm-guest-counter button {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 20px; font-weight: 300;
  width: 40px; height: 100%;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.gm-guest-counter button:hover { background: rgba(184,151,90,0.15); }

.gm-guest-counter span {
  flex: 1;
  text-align: center;
  font-size: 15px; font-weight: 600;
  color: var(--white);
}

/* Time Slots */
.gm-slots-section {
  margin-bottom: 20px;
}

/* slot number badge inside each row */
.slot-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: rgba(200,212,224,0.08);
  border: 1px solid rgba(200,212,224,0.15);
  border-radius: 50%;
  font-size: 10px; font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.time-slot.selected .slot-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.gm-slots-legend {
  display: flex; gap: 20px;
  font-size: 10px; color: var(--text-muted);
  flex-wrap: wrap;
  margin-top: 4px;
}

.gm-slots-legend span { display: flex; align-items: center; gap: 6px; }

.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.legend-dot.available   { background: rgba(200,212,224,0.35); border: 1px solid rgba(200,212,224,0.5); }
.legend-dot.selected    { background: var(--gold); }
.legend-dot.unavailable { background: rgba(100,100,120,0.4); }
.legend-dot.booked      { background: rgba(220,60,60,0.5); }

/* Booking Summary */
.gm-booking-summary {
  background: rgba(184,151,90,0.06);
  border: 1px solid rgba(184,151,90,0.22);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 4px;
}

.gm-summary-text { width: 100%; }

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(200,212,224,0.06);
  gap: 12px;
}

.summary-row:last-child { border-bottom: none; }
.summary-row.summary-total {
  margin-top: 10px; padding-top: 12px;
  border-top: 1px solid rgba(184,151,90,0.2);
  border-bottom: none;
}

.summary-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.summary-val {
  font-size: 13px; font-weight: 500;
  color: var(--silver-bright);
  text-align: right;
}

.gm-wa-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 22px !important;
  font-size: 10px !important;
  border: none; cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .gm-booking-row { grid-template-columns: 1fr; gap: 12px; }
  .gm-booking-panel { padding: 18px 18px 24px; }
}

/* ── SOCIAL MEDIA ── */
.footer-brand-col { display: flex; flex-direction: column; }

.footer-social {
  margin-top: 24px;
}

.footer-social-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.social-icons {
  display: flex; gap: 10px; flex-wrap: wrap;
}

.social-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(200,212,224,0.1);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  opacity: 0.95;
}

.social-fb  { background: #1877F2; color: white; }
.social-ig  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.social-tt  { background: #010101; color: white; border-color: rgba(255,255,255,0.12); }
.social-wa  { background: #25D366; color: white; }

/* Footer bottom social row */
.footer-bottom-social {
  display: flex; gap: 10px; align-items: center;
}

.footer-bottom-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.75;
}

.footer-bottom-icon:hover { transform: translateY(-2px); opacity: 1; }

/* Override footer-layout for 3-col with wider brand col */
.footer-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

@media (max-width: 900px) {
  .footer-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ═══════════════════════════════════════════
   UPDATED BOOKING PANEL — STEP-BY-STEP UI
   ═══════════════════════════════════════════ */

/* Step number badge */
.step-badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px; font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Info pill next to labels */
.slot-info-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(184,151,90,0.1);
  border: 1px solid rgba(184,151,90,0.25);
  color: var(--gold);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: none;
}

/* ── Slot grid: horizontal scrollable row layout ── */
.gm-slots-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(184,151,90,0.3) transparent;
}

.gm-slots-grid::-webkit-scrollbar       { width: 4px; }
.gm-slots-grid::-webkit-scrollbar-track { background: transparent; }
.gm-slots-grid::-webkit-scrollbar-thumb { background: rgba(184,151,90,0.3); border-radius: 2px; }

/* Individual slot card — horizontal layout */
.time-slot {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid rgba(200,212,224,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.time-slot.available:hover {
  border-color: rgba(184,151,90,0.5);
  background: rgba(184,151,90,0.07);
  transform: translateX(3px);
}

.time-slot.selected {
  border-color: var(--gold);
  background: rgba(184,151,90,0.14);
  box-shadow: 0 0 0 1px rgba(184,151,90,0.4), 0 4px 16px rgba(0,0,0,0.2);
  transform: translateX(3px);
}

.time-slot.unavailable {
  opacity: 0.35;
  cursor: not-allowed;
  background: rgba(80,90,110,0.1);
}

.slot-time {
  font-size: 15px; font-weight: 700;
  color: var(--white);
  min-width: 72px;
  flex-shrink: 0;
}

.slot-sep {
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.slot-end {
  font-size: 13px; font-weight: 500;
  color: var(--silver);
  flex: 1;
}

.slot-dur {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,151,90,0.1);
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid rgba(184,151,90,0.2);
  flex-shrink: 0;
}

.time-slot.selected .slot-time { color: var(--gold-light); }
.time-slot.selected .slot-end  { color: var(--silver-bright); }

/* Status tags on unavailable slots */
.slot-tag {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.booked-tag {
  background: rgba(220,60,60,0.15);
  color: #e06060;
  border: 1px solid rgba(220,60,60,0.3);
}

.past-tag {
  background: rgba(100,100,120,0.2);
  color: var(--text-muted);
  border: 1px solid rgba(100,100,120,0.3);
}

/* Turnaround gap indicator row */
.slot-gap-row {
  display: flex; align-items: center; gap: 8px;
  padding: 0 16px;
  color: var(--text-muted);
}

.slot-gap-row span {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slot-gap-line {
  flex: 1; height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(184,151,90,0.25) 0px,
    rgba(184,151,90,0.25) 4px,
    transparent 4px,
    transparent 8px
  );
}

/* ── Duration Picker ── */
.gm-duration-section {
  border-top: 1px solid rgba(200,212,224,0.08);
  padding-top: 20px;
  margin-top: 4px;
  margin-bottom: 20px;
  animation: fadeSlideIn 0.25s ease;
}

.dur-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dur-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 18px;
  background: var(--navy-mid);
  border: 1px solid rgba(200,212,224,0.12);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  min-width: 80px;
}

.dur-btn:hover {
  border-color: rgba(184,151,90,0.4);
  background: rgba(184,151,90,0.06);
  transform: translateY(-2px);
}

.dur-btn.active {
  border-color: var(--gold);
  background: rgba(184,151,90,0.15);
  box-shadow: 0 0 0 1px rgba(184,151,90,0.4);
}

.dur-hours {
  font-size: 14px; font-weight: 700;
  color: var(--white);
}

.dur-btn.active .dur-hours { color: var(--gold-light); }

.dur-price {
  font-size: 10px; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.dur-btn.active .dur-price { color: var(--gold); }

/* ── Summary ── */
.summary-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 16px;
}

/* Entry animation for sections */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gm-slots-section  { animation: fadeSlideIn 0.25s ease; }
.gm-booking-summary { animation: fadeSlideIn 0.25s ease; }

/* Mobile tweaks */
@media (max-width: 640px) {
  .slot-time { font-size: 13px; min-width: 60px; }
  .slot-end  { font-size: 12px; }
  .dur-picker { gap: 8px; }
  .dur-btn   { min-width: 68px; padding: 10px 12px; }
  .gm-slots-grid { max-height: 220px; }
}

/* ── Gap row: hidden when both adjacent slots are in same consecutive booking ── */
.slot-gap-row.gap-hidden {
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slot-gap-label {
  display: flex; align-items: center; gap: 4px;
  font-size: 9px; font-weight: 500;
  white-space: nowrap;
}

/* ── Calculator breakdown grid ── */
.calc-breakdown-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  font-size: 11px;
}

.cb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(200,212,224,0.06);
}

.cb-row:last-child { border-bottom: none; }

.cb-label {
  color: var(--text-muted);
  font-size: 10px; font-weight: 500;
  display: flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}

.cb-val {
  color: var(--silver-bright);
  font-size: 11px; font-weight: 500;
  text-align: right;
}

.cb-turnaround .cb-label {
  color: var(--gold);
}

.cb-turnaround .cb-val {
  color: var(--gold);
  font-size: 10px;
}

.cb-warn .cb-label { color: #e06060; }
.cb-warn .cb-val   { color: #e06060; font-weight: 600; }

/* ── Summary turnaround note row (lighter/smaller) ── */
.summary-turnaround .summary-label { color: var(--gold); font-size: 9px; }
.summary-val-muted {
  color: var(--text-muted) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
}
