  :root {
    --midnight: #1D2030;
    --midnight-2: #252839;
    --midnight-3: #2D3043;
    --sun: #FFD84D;
    --sun-dim: rgba(255, 216, 77, 0.12);
    --paper: #FAFAFA;
    --muted: rgba(250, 250, 250, 0.72);
    --rule: rgba(250, 250, 250, 0.10);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    background: var(--midnight);
    color: var(--paper);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background-image: radial-gradient(ellipse 80% 50% at 50% 0%, var(--sun-dim) 0%, transparent 70%);
  }

  .container {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: 48px 24px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  /* ─── HEADER ─── */
  .header {
    text-align: center;
    margin-bottom: 36px;
  }

  .logo-mark {
    display: inline-grid;
    grid-template-columns: repeat(3, 14px);
    grid-template-rows: repeat(3, 14px);
    gap: 3px;
    margin-bottom: 20px;
  }
  .logo-mark span {
    background: var(--sun);
    border-radius: 2px;
  }
  .logo-mark .dim { opacity: 0.18; }

  .wordmark {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--paper);
  }
  .wordmark .by {
    font-weight: 500;
    opacity: 0.85;
    margin: 0 4px;
  }
  .wordmark .bob {
    color: var(--paper);
  }

  .tagline {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.5;
  }

  /* ─── PRIMARY CTA (consult booking) ─── */
  .primary-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--sun);
    color: var(--midnight);
    padding: 22px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    border: 2px solid var(--sun);
    cursor: pointer;
    width: 100%;
    font-family: 'Manrope', sans-serif;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 8px 24px -8px rgba(255, 216, 77, 0.4);
  }
  .primary-cta:hover, .primary-cta:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(255, 216, 77, 0.55);
  }
  .primary-cta .arrow {
    font-weight: 800;
    transition: transform 0.2s ease;
  }
  .primary-cta:hover .arrow {
    transform: translateX(3px);
  }
  .primary-cta-sub {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
  }

  /* ─── FLAGSHIP VIDEO TILE ─── */
  .flagship-tile {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: var(--midnight-2);
    border: 1px solid var(--rule);
    text-decoration: none;
    margin-bottom: 28px;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  }
  .flagship-tile:hover, .flagship-tile:active {
    transform: translateY(-2px);
    border-color: var(--sun);
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.55);
  }
  .flagship-tile video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
  }
  .flagship-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
      rgba(20, 22, 31, 0.10) 0%,
      rgba(20, 22, 31, 0.00) 38%,
      rgba(20, 22, 31, 0.68) 100%);
  }
  .flagship-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 20px;
  }
  .flagship-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sun);
    font-weight: 700;
    margin-bottom: 6px;
  }
  .flagship-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--paper);
    line-height: 1.1;
  }
  .flagship-cue {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--paper);
    transition: color 0.15s ease;
  }
  .flagship-cue .arrow {
    transition: transform 0.2s ease;
  }
  .flagship-tile:hover .flagship-cue {
    color: var(--sun);
  }
  .flagship-tile:hover .flagship-cue .arrow {
    transform: translateX(3px);
  }

  /* ─── DIVIDER LABEL ─── */
  .section-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sun);
    font-weight: 700;
    margin: 4px 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before,
  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rule);
  }

  /* ─── LINK BUTTONS ─── */
  .links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .link {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--midnight-2);
    color: var(--paper);
    padding: 18px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    border: 1px solid var(--rule);
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  }
  .link:hover, .link:active {
    transform: translateY(-2px);
    border-color: var(--sun);
    background: var(--midnight-3);
  }

  .link-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--midnight-3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sun);
    transition: background 0.15s ease;
  }
  .link:hover .link-icon {
    background: var(--sun);
    color: var(--midnight);
  }
  .link-icon svg {
    width: 20px;
    height: 20px;
  }

  .link-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .link-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--paper);
  }
  .link-sub {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
  }
  .link-arrow {
    color: var(--muted);
    font-weight: 700;
    transition: color 0.15s ease, transform 0.15s ease;
    flex-shrink: 0;
  }
  .link:hover .link-arrow {
    color: var(--sun);
    transform: translateX(3px);
  }

  /* ─── SOCIAL ROW ─── */
  .socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
  }
  .social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--midnight-2);
    border: 1px solid var(--rule);
    border-radius: 12px;
    color: var(--paper);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  }
  .social:hover {
    transform: translateY(-2px);
    background: var(--sun);
    border-color: var(--sun);
    color: var(--midnight);
  }
  .social svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  /* ─── FOOTER ─── */
  .footer {
    text-align: center;
    padding: 32px 24px 24px;
    margin-top: auto;
  }
  .footer-tagline {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .footer-tagline .sun-text {
    color: var(--sun);
  }
  .footer-meta {
    margin-top: 8px;
    font-size: 11px;
    color: rgba(250, 250, 250, 0.4);
    font-weight: 500;
    letter-spacing: 0.05em;
  }
