    :root {
      --gold: #C9A84C;
      --gold-light: #E4C97A;
      --gold-dim: #8C6E2A;
      --black: #0A0A0A;
      --deep: #111111;
      --surface: #161616;
      --surface2: #1E1E1E;
      --text: #E8E0D0;
      --text-muted: #B0A490;
      --border: rgba(201,168,76,0.2);
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--text);
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 48px;
      background: rgba(10,10,10,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: padding 0.3s;
    }

    nav.scrolled { padding: 12px 48px; }

    .nav-logo {
      flex-shrink: 0;
      z-index: 2;
      position: relative;
    }

    .nav-logo img {
      height: 54px;
      width: auto;
      display: block;
      transition: height 0.3s;
    }
    nav.scrolled .nav-logo img { height: 42px; }

    .nav-links {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      transition: color 0.25s;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      padding: 10px 24px;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none;
      flex-shrink: 0;
      z-index: 2;
      position: relative;
    }
    .nav-cta:hover {
      background: var(--gold);
      color: var(--black);
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 70%, rgba(201,168,76,0.07) 0%, transparent 65%),
        linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.75) 60%, var(--black) 100%);
      z-index: 1;
    }

    .hero-water {
      position: absolute;
      inset: 0;
      background-image: url('images/photo_01_new.jpg');
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      z-index: 0;
      overflow: hidden;
    }

    .hero-water-alt {
      position: absolute;
      inset: 0;
      background-image: url('images/photo_08.jpg');
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      z-index: 0;
      overflow: hidden;
      opacity: 0;
      animation: heroCrossfade 16s ease-in-out infinite;
      animation-delay: 0s;
      animation-fill-mode: both;
    }

    @keyframes heroCrossfade {
      0%   { opacity: 0; }
      20%  { opacity: 1; }
      50%  { opacity: 1; }
      70%  { opacity: 0; }
      100% { opacity: 0; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 820px;
      padding: 0 24px;
      animation: fadeUp 1.2s ease both;
    }

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

    .hero-badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--gold-dim);
      padding: 8px 20px;
      margin-bottom: 32px;
    }

    .hero-logo {
      display: block;
      width: 160px;
      height: auto;
      margin: 0 auto 32px;

      animation: fadeUp 1.2s 0.15s ease both;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(48px, 8vw, 96px);
      font-weight: 300;
      line-height: 1;
      letter-spacing: -0.01em;
      color: var(--text);
      margin-bottom: 20px;
      animation: fadeUp 1.2s 0.25s ease both;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 48px;
      animation: fadeUp 1.2s 0.35s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 1.2s 0.45s ease both;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 16px 40px;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--text);
      border: 1px solid rgba(232,224,208,0.3);
      padding: 16px 40px;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      animation: fadeUpCentered 1.4s 0.8s ease both;
    }

    @keyframes fadeUpCentered {
      from { opacity: 0; transform: translateX(-50%) translateY(40px); }
      to   { opacity: 1; transform: translateX(-50%) translateY(0); }
    }

    .scroll-indicator span {
      font-size: 9px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
      50%       { opacity: 1;   transform: scaleY(1); }
    }

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

    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .section-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--text);
      margin-bottom: 24px;
    }

    .section-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    .divider {
      width: 48px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 32px;
    }

    /* ─── VESSEL ─── */
    #vessel {
      background: var(--deep);
    }

    .vessel-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .vessel-visual {
      position: relative;
    }

    .vessel-visual-inner {
      aspect-ratio: 4/3;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .vessel-visual-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }

    .vessel-visual-inner:hover img {
      transform: scale(1.04);
    }

    /* Photo gallery strip */
    .photo-strip {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: var(--border);
      margin-top: 1px;
    }

    .photo-strip-item {
      aspect-ratio: 1;
      overflow: hidden;
      cursor: pointer;
    }

    .photo-strip-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease, opacity 0.4s ease;
      opacity: 0.85;
    }

    .photo-strip-item:hover img {
      transform: scale(1.08);
      opacity: 1;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 1000;
      align-items: center;
      justify-content: center;
    }

    .lightbox.open { display: flex; }

    .lightbox img {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      border: 1px solid var(--border);
    }

    .lightbox-close {
      position: absolute;
      top: 24px; right: 32px;
      color: var(--gold);
      font-size: 32px;
      cursor: pointer;
      line-height: 1;
      background: none;
      border: none;
      font-family: 'Montserrat', sans-serif;
    }

    .lightbox-prev, .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(201,168,76,0.15);
      border: 1px solid var(--gold-dim);
      color: var(--gold);
      font-size: 24px;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
    }

    .lightbox-prev { left: 24px; }
    .lightbox-next { right: 24px; }
    .lightbox-prev:hover, .lightbox-next:hover { background: rgba(201,168,76,0.3); }

    .vessel-badge {
      position: absolute;
      bottom: -16px;
      right: -16px;
      background: var(--gold);
      color: var(--black);
      padding: 20px 28px;
      text-align: center;
    }

    .vessel-badge .year {
      display: block;
      font-size: 28px;
      font-weight: 700;
      line-height: 1;
    }

    .vessel-badge .label {
      display: block;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .vessel-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      margin-top: 36px;
    }

    .spec-cell {
      background: var(--surface);
      padding: 20px 24px;
    }

    .spec-cell .spec-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 400;
      color: var(--gold-light);
      line-height: 1;
    }

    .spec-cell .spec-key {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 4px;
    }

    .vessel-copy p {
      font-size: 16px;
      line-height: 1.9;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .vessel-features {
      list-style: none;
      margin-top: 28px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .vessel-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: var(--text);
    }

    .vessel-features li::before {
      content: '';
      width: 16px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ─── PRICING ─── */
    #pricing {
      background: var(--black);
    }

    .pricing-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 64px;
    }

    .pricing-tabs {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-bottom: 48px;
      border: 1px solid var(--border);
      display: inline-flex;
      margin-left: 50%;
      transform: translateX(-50%);
    }

    .tab-btn {
      background: transparent;
      border: none;
      color: var(--text-muted);
      padding: 14px 36px;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.25s;
      border-right: 1px solid var(--border);
    }

    .tab-btn:last-child { border-right: none; }

    .tab-btn.active {
      background: var(--gold);
      color: var(--black);
    }

    .tab-btn:hover:not(.active) { color: var(--gold); }

    .pricing-panel { display: none; }
    .pricing-panel.active { display: block; }

    .pricing-grid {
      display: grid;
      grid-template-columns: minmax(0, 760px);
      justify-content: center;
      gap: 24px;
    }

    .price-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 64px 64px;
      position: relative;
      transition: border-color 0.3s, transform 0.3s;
    }

    .price-card:hover {
      border-color: var(--gold-dim);
      transform: translateY(-4px);
    }

    .price-card.featured {
      border-color: var(--gold);
      background:
        radial-gradient(120% 80% at 50% 0%, rgba(198, 162, 92, 0.10) 0%, rgba(198, 162, 92, 0) 60%),
        var(--surface);
      box-shadow: 0 0 0 1px var(--gold-dim), 0 30px 80px rgba(0, 0, 0, 0.45);
    }

    /* Two-column interior so the wider card reads as intentional */
    .price-card-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .pc-right {
      padding-left: 56px;
      border-left: 1px solid var(--border);
    }

    .card-eyebrow {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 34px;
      font-weight: 300;
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 6px;
    }

    .card-sub {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 32px;
    }

    .card-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 8px;
    }

    .price-dollar {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: var(--gold);
      margin-top: 4px;
    }

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

    .price-period {
      font-size: 12px;
      color: var(--text-muted);
      letter-spacing: 0.05em;
    }

    .price-addl {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 32px;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--border);
    }

    .price-addl strong {
      color: var(--gold);
    }

    .includes-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .includes-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 36px;
    }

    .includes-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--text);
      line-height: 1.5;
    }

    .includes-list li .check {
      color: var(--gold);
      font-size: 12px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .card-note {
      font-size: 12px;
      color: var(--text-muted);
      font-style: italic;
      border-top: 1px solid var(--border);
      padding-top: 20px;
      margin-bottom: 28px;
      line-height: 1.7;
    }

    .addons-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .addons-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 28px;
      padding-top: 16px;
      border-top: 1px dashed var(--border);
    }

    .addons-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .addons-list li .plus {
      color: var(--gold);
      font-size: 12px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .member-addons-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
      padding-top: 16px;
      border-top: 1px dashed var(--border);
    }

    .member-addons-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .member-addons-list li .plus {
      color: var(--gold);
      font-size: 12px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ─── MEMBERSHIP ─── */
    .membership-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .member-card {
      border: 1px solid var(--border);
      padding: 52px 44px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
    }

    .member-card.harbor {
      background: var(--surface);
    }

    .member-card.commodore {
      background: linear-gradient(135deg, #1a1506 0%, #1a1506 40%, #0f0e0a 100%);
      border-color: var(--gold-dim);
    }

    .member-card.commodore::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 120px; height: 120px;
      background: radial-gradient(circle at top right, rgba(201,168,76,0.12) 0%, transparent 70%);
    }

    .member-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
    }

    .member-tier {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .member-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      font-weight: 300;
      color: var(--text);
      margin-bottom: 4px;
    }

    .member-season {
      font-size: 12px;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      margin-bottom: 28px;
    }

    .member-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 32px;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--border);
    }

    .member-price-sym {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: var(--gold);
    }

    .member-price-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px;
      font-weight: 500;
      color: var(--gold-light);
      line-height: 1;
    }

    .member-price-comma {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px;
      font-weight: 500;
      color: var(--gold-light);
      line-height: 1;
    }

    .member-price-suffix {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: var(--gold-light);
      align-self: flex-start;
      margin-top: 12px;
    }

    .member-includes {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .member-includes li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      color: var(--text);
      line-height: 1.5;
    }

    .member-includes li .bullet {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 8px;
    }

    .rack-value {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 28px;
      line-height: 1.6;
    }

    .rack-value strong {
      color: var(--gold);
    }

    .booking-policy {
      border: 1px solid var(--border);
      margin-bottom: 28px;
    }

    .booking-policy summary {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      cursor: pointer;
      padding: 14px 20px;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .booking-policy summary::-webkit-details-marker { display: none; }

    .booking-policy summary::after {
      content: '+';
      font-size: 16px;
      color: var(--gold);
      transition: transform 0.25s;
    }

    .booking-policy[open] summary::after {
      content: '\2212';
    }

    .policy-list {
      list-style: none;
      padding: 0 20px 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .policy-list li {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      padding-left: 16px;
      position: relative;
    }

    .policy-list li::before {
      content: '–';
      position: absolute;
      left: 0;
      color: var(--gold);
    }


    /* ─── EXPERIENCE ─── */
    #experience {
      background: var(--deep);
    }

    .experience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      margin-top: 56px;
    }

    .exp-cell {
      background: var(--surface);
      padding: 40px 32px;
      text-align: center;
      transition: background 0.3s;
    }

    .exp-cell:hover { background: var(--surface2); }

    .exp-icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 20px;
      opacity: 0.7;
    }

    .exp-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 12px;
    }

    .exp-desc {
      font-size: 13px;
      line-height: 1.8;
      color: var(--text-muted);
    }

    /* ─── DESTINATIONS ─── */
    #destinations {
      background: var(--black);
    }

    .destinations-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 56px;
    }

    .dest-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 32px 24px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s;
    }

    .dest-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .dest-card:hover::before { transform: scaleX(1); }
    .dest-card:hover { border-color: var(--gold-dim); }

    .dest-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 48px;
      color: rgba(201,168,76,0.1);
      line-height: 1;
      margin-bottom: 12px;
    }

    .dest-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      color: var(--text);
      margin-bottom: 8px;
    }

    .dest-desc {
      font-size: 13px;
      line-height: 1.7;
      color: var(--text-muted);
    }

    /* ─── NOTES ─── */
    #notes {
      background: var(--surface);
    }

    .notes-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--border);
      margin-top: 48px;
    }

    .note-item {
      background: var(--surface2);
      padding: 28px 32px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .note-dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 7px;
    }

    .note-text {
      font-size: 14px;
      line-height: 1.8;
      color: var(--text-muted);
    }

    /* ─── CTA ─── */
    #contact {
      background: linear-gradient(180deg, var(--black) 0%, #0d1008 100%);
      text-align: center;
      padding: 120px 48px;
    }

    .cta-logo {
      width: 100px;
      height: auto;
      margin-bottom: 32px;
      
    }

    .cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(40px, 6vw, 72px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--text);
      margin-bottom: 20px;
    }

    .cta-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    .cta-sub {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 480px;
      margin: 0 auto 48px;
      line-height: 1.8;
    }

    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 64px;
    }

    .cta-contact-info {
      display: flex;
      gap: 48px;
      justify-content: center;
      flex-wrap: wrap;
      padding-top: 48px;
      border-top: 1px solid var(--border);
    }

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

    .contact-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .contact-val {
      font-size: 14px;
      color: var(--text);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--black);
      border-top: 1px solid var(--border);
      padding: 32px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-logo img { height: 44px; width: auto;  }

    .footer-copy {
      font-size: 12px;
      color: var(--text-muted);
      letter-spacing: 0.05em;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer-links a {
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      .hero {
        min-height: 500px;
      }
      .hero-water,
      .hero-water-alt {
        background-position: center center;
        background-size: 120%;
      }
      .hero .scroll-indicator {
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
      }
    }

    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .container { padding: 0 24px; }
      .vessel-grid,
      .pricing-grid,
      .membership-grid { grid-template-columns: 1fr; }
      .price-card { padding: 44px 32px; }
      .price-card-grid { grid-template-columns: 1fr; gap: 36px; }
      .pc-right { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 36px; }
      .vessel-badge { bottom: -12px; right: 12px; }
      .experience-grid { grid-template-columns: 1fr; }
      .destinations-grid { grid-template-columns: 1fr 1fr; }
      .notes-grid { grid-template-columns: 1fr; }
      footer { flex-direction: column; text-align: center; }
      .pricing-tabs { display: flex; flex-direction: column; margin: 0 0 40px; transform: none; }
      .tab-btn { border-right: none; border-bottom: 1px solid var(--border); }
      .tab-btn:last-child { border-bottom: none; }
      .cta-contact-info { gap: 28px; }
      section { padding: 72px 0; }
    }

    @media (max-width: 540px) {
      .destinations-grid { grid-template-columns: 1fr; }
      .vessel-specs { grid-template-columns: 1fr 1fr; }
      .vessel-features { grid-template-columns: 1fr; }
      .price-amount, .member-price-num { font-size: 44px; }
    }
    /* ─── INQUIRY MODAL ─── */
    .inquiry-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      justify-content: center;
      align-items: center;
      padding: 24px;
    }
    .inquiry-overlay.open { display: flex; }

    .inquiry-modal {
      background: var(--deep);
      border: 1px solid var(--border);
      border-radius: 8px;
      width: 100%;
      max-width: 560px;
      max-height: 90vh;
      overflow-y: auto;
      padding: 48px 40px;
      position: relative;
    }

    .inquiry-close {
      position: absolute;
      top: 16px;
      right: 20px;
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 28px;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }
    .inquiry-close:hover { color: var(--gold); }

    .inquiry-modal h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 8px;
    }
    .inquiry-modal h3 em {
      color: var(--gold-light);
      font-style: italic;
    }

    .inquiry-modal .inquiry-sub {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 32px;
      line-height: 1.6;
    }

    .inquiry-field {
      margin-bottom: 20px;
    }
    .inquiry-field label {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .inquiry-field input,
    .inquiry-field select,
    .inquiry-field textarea {
      width: 100%;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 12px 16px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s;
    }
    .inquiry-field input:focus,
    .inquiry-field select:focus,
    .inquiry-field textarea:focus {
      border-color: var(--gold);
    }
    .inquiry-field input::placeholder,
    .inquiry-field textarea::placeholder {
      color: var(--text-muted);
      opacity: 0.6;
    }
    .inquiry-field select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
    }
    .inquiry-field select option {
      background: var(--deep);
      color: var(--text);
    }
    .inquiry-field textarea {
      resize: vertical;
      min-height: 100px;
    }
    .inquiry-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    @media (max-width: 520px) {
      .inquiry-row { grid-template-columns: 1fr; }
      .inquiry-modal { padding: 36px 24px; }
    }

    .inquiry-submit {
      width: 100%;
      margin-top: 8px;
    }

    .inquiry-success {
      display: none;
      text-align: center;
      padding: 40px 0;
    }
    .inquiry-success.show { display: block; }
    .inquiry-success .success-icon {
      width: 56px;
      height: 56px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }
    .inquiry-success .success-icon svg {
      width: 28px;
      height: 28px;
      stroke: var(--gold);
    }
    .inquiry-success h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--gold-light);
      margin-bottom: 16px;
    }
    .inquiry-success p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 360px;
      margin: 0 auto;
    }


    /* ─── CONTENT PAGES (sub-pages) ─── */
    .page-header {
      position: relative;
      min-height: 62vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 160px 24px 90px;
    }
    .page-header .ph-bg {
      position: absolute;
      inset: 0;
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      z-index: 0;
    }
    .page-header .ph-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 70%, rgba(201,168,76,0.06) 0%, transparent 65%),
        linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.78) 60%, var(--black) 100%);
      z-index: 1;
    }
    .page-header .ph-content {
      position: relative;
      z-index: 2;
      max-width: 820px;
      animation: fadeUp 1.1s ease both;
    }
    .page-header h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(38px, 6vw, 72px);
      font-weight: 300;
      line-height: 1.05;
      color: var(--text);
      margin-bottom: 20px;
    }
    .page-header h1 em {
      font-style: italic;
      color: var(--gold-light);
    }
    .page-header .ph-sub {
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto 36px;
    }
    .page-header .hero-actions { margin-top: 8px; }

    /* Article / prose */
    .content-section { background: var(--deep); }
    .content-section.alt { background: var(--black); }
    .prose { max-width: 820px; margin: 0 auto; }
    .prose p {
      font-size: 16px;
      line-height: 1.9;
      color: var(--text-muted);
      margin-bottom: 22px;
    }
    .prose h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 300;
      color: var(--text);
      line-height: 1.15;
      margin: 48px 0 20px;
    }
    .prose h2:first-child { margin-top: 0; }
    .prose h2 em { font-style: italic; color: var(--gold-light); }
    .prose h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--gold-light);
      margin: 36px 0 14px;
    }
    .prose ul {
      list-style: none;
      margin: 0 0 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .prose ul li {
      position: relative;
      padding-left: 24px;
      font-size: 15px;
      line-height: 1.7;
      color: var(--text);
    }
    .prose ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 12px;
      width: 14px;
      height: 1px;
      background: var(--gold);
    }
    .prose .lead {
      font-size: 18px;
      color: var(--text);
      line-height: 1.85;
    }
    .prose strong { color: var(--gold-light); font-weight: 500; }

    /* FAQ accordion */
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      border: 1px solid var(--border);
      background: var(--surface);
      transition: border-color 0.3s;
    }
    .faq-item[open] { border-color: var(--gold-dim); }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 22px 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      color: var(--text);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-size: 22px;
      color: var(--gold);
      flex-shrink: 0;
      transition: transform 0.25s;
    }
    .faq-item[open] summary::after { content: '\2212'; }
    .faq-item summary:hover { color: var(--gold-light); }
    .faq-answer {
      padding: 0 26px 24px;
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-muted);
    }
    .faq-answer strong { color: var(--gold); }

    @media (max-width: 768px) {
      .page-header { min-height: 50vh; padding: 130px 20px 70px; }
      .faq-item summary { font-size: 17px; }
    }
