
    :root {
      --navy: #071a2b;
      --navy-light: #102e49;
      --blue: #0b6fb8;
      --blue-dark: #07548d;
      --sky: #eaf5fb;
      --gold: #e7b85b;
      --cream: #f9f6ef;
      --white: #ffffff;
      --text: #17212b;
      --muted: #607080;
      --border: #dce4ea;
      --shadow: 0 20px 50px rgba(4, 25, 44, 0.12);
      --radius: 18px;
      --container: 1240px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "DM Sans", Arial, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.65;
    }

    body.menu-open {
      overflow: hidden;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 100px 0;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 15px;
      color: var(--blue);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    h1,
    h2,
    h3 {
      line-height: 1.12;
    }

    h1,
    h2 {
      font-family: "Playfair Display", Georgia, serif;
    }

    h1 {
      font-size: clamp(3rem, 6vw, 6.5rem);
      color: var(--white);
      letter-spacing: -0.045em;
    }

    h2 {
      margin-bottom: 22px;
      color: var(--navy);
      font-size: clamp(2.35rem, 4vw, 4.5rem);
      letter-spacing: -0.035em;
    }

    h2 em,
    h1 em {
      color: var(--gold);
      font-weight: 600;
    }

    h3 {
      color: var(--navy);
      font-size: 1.4rem;
    }

    p {
      color: var(--muted);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 28px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 700;
      transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: var(--white);
      background: var(--blue);
    }

    .btn-primary:hover {
      background: var(--blue-dark);
    }

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

    .btn-accent:hover {
      background: #f0c973;
    }

    .btn-light {
      color: var(--navy);
      background: var(--white);
    }

    .btn-light:hover {
      background: var(--sky);
    }

    .btn-outline {
      color: var(--navy);
      border-color: var(--navy);
      background: transparent;
    }

    .btn-outline:hover {
      color: var(--white);
      background: var(--navy);
    }

    .btn-white {
      color: var(--navy);
      border-color: var(--border);
      background: var(--white);
    }

    .btn-small {
      min-height: 44px;
      padding: 0 20px;
      font-size: 0.9rem;
    }

    .wide {
      min-width: 260px;
    }

    .text-link {
      color: var(--blue);
      font-weight: 700;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      min-height: 82px;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
      gap: 11px;
      color: var(--navy);
      font-size: 1.03rem;
      font-weight: 700;
    }

    .brand-mark {
      display: grid;
      width: 43px;
      height: 43px;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background: var(--navy);
      font-size: 1.25rem;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
      gap: 26px;
    }

    .main-nav a {
      color: #304050;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .main-nav a:hover {
      color: var(--blue);
    }

    .nav-actions {
      display: flex;
      gap: 10px;
    }

    .nav-toggle {
      display: none;
      margin-left: auto;
      border: 0;
      background: transparent;
    }

    .nav-toggle span {
      display: block;
      width: 27px;
      height: 2px;
      margin: 6px 0;
      background: var(--navy);
    }

    .hero {
      display: grid;
      min-height: 760px;
      grid-template-columns: 47% 53%;
      background: var(--navy);
    }

    .hero-copy {
      display: flex;
      align-items: center;
      padding: 80px max(40px, calc((100vw - var(--container)) / 2));
      padding-right: 55px;
    }

    .hero-inner {
      max-width: 650px;
    }

    .hero-copy .eyebrow {
      color: #8ed1f5;
    }

    .hero-copy p {
      max-width: 620px;
      margin: 28px 0;
      color: rgba(255, 255, 255, 0.77);
      font-size: 1.16rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-media {
      position: relative;
      min-height: 760px;
      overflow: hidden;
    }

    .hero-media::after {
      position: absolute;
      inset: 0;
      content: "";
      background:
        linear-gradient(90deg, rgba(7, 26, 43, 0.42), transparent 42%),
        linear-gradient(0deg, rgba(7, 26, 43, 0.18), transparent 55%);
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-watermark {
      position: absolute;
      right: 30px;
      bottom: 28px;
      z-index: 2;
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
    }

    .hero-proof {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 38px;
      color: var(--white);
    }

    .hero-proof strong,
    .hero-proof small {
      display: block;
    }

    .hero-proof small {
      color: rgba(255, 255, 255, 0.65);
    }

    .avatar-stack {
      display: flex;
    }

    .avatar-stack span {
      width: 44px;
      height: 44px;
      margin-left: -10px;
      border: 3px solid var(--navy);
      border-radius: 50%;
      background-color: var(--sky);
      background-position: center;
      background-size: cover;
    }

    .avatar-stack span:first-child {
      margin-left: 0;
    }

    .trust-strip {
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      background: var(--white);
    }

    .trust-strip .container {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .trust-strip span {
      flex-shrink: 0;
      color: #83919d;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
    }

    .trust-logos {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex: 1;
      gap: 24px;
      color: #667684;
      flex-wrap: wrap;
    }

    .trust-logos strong {
      font-size: 0.86rem;
      letter-spacing: 0.04em;
    }

    .section-heading {
      max-width: 790px;
      margin-bottom: 50px;
    }

    .section-heading p {
      max-width: 650px;
      font-size: 1.08rem;
    }

    .split-heading {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      max-width: none;
      gap: 50px;
    }

    .split-heading > div {
      max-width: 760px;
    }

    .split-heading > p {
      max-width: 430px;
      padding-bottom: 8px;
    }

    .compact {
      margin-bottom: 42px;
    }

    .fleet-section {
      background: var(--cream);
    }

    .booking-tabs {
      display: grid;
      margin-bottom: 36px;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--white);
    }

    .booking-tab {
      display: flex;
      align-items: center;
      gap: 16px;
      min-height: 94px;
      padding: 20px 26px;
      border: 0;
      border-right: 1px solid var(--border);
      color: var(--navy);
      text-align: left;
      background: var(--white);
    }

    .booking-tab:last-child {
      border-right: 0;
    }

    .booking-tab.active {
      color: var(--white);
      background: var(--navy);
    }

    .tab-icon {
      font-size: 1.6rem;
    }

    .booking-tab strong,
    .booking-tab small {
      display: block;
    }

    .booking-tab small {
      margin-top: 3px;
      opacity: 0.68;
    }

    .yacht-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .yacht-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 8px 30px rgba(4, 25, 44, 0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .yacht-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .card-image {
      position: relative;
      height: 265px;
      overflow: hidden;
    }

    .card-image img {
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .yacht-card:hover .card-image img {
      transform: scale(1.04);
    }

    .card-badge {
      position: absolute;
      top: 18px;
      left: 18px;
      padding: 7px 13px;
      border-radius: 999px;
      color: var(--navy);
      background: var(--gold);
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    .card-body {
      padding: 25px;
    }

    .card-title-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 15px;
    }

    .card-title-row strong {
      color: var(--blue);
      white-space: nowrap;
    }

    .card-body > p {
      margin: 9px 0 18px;
    }

    .card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      list-style: none;
    }

    .card-meta li {
      padding: 6px 10px;
      border-radius: 999px;
      color: #546574;
      background: var(--sky);
      font-size: 0.78rem;
    }

    .fleet-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 36px;
    }

    .light-blue {
      background: var(--sky);
    }

    .experience-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .experience-card {
      min-height: 285px;
      padding: 30px;
      border: 1px solid rgba(7, 26, 43, 0.1);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.75);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .experience-card:hover {
      transform: translateY(-5px);
      background: var(--white);
    }

    .experience-card span {
      color: var(--blue);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
    }

    .experience-card h3 {
      margin: 75px 0 12px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 1.75rem;
    }

    .experience-card.featured {
      color: var(--white);
      background: var(--navy);
    }

    .experience-card.featured h3,
    .experience-card.featured p {
      color: var(--white);
    }

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

    .story-gallery {
      display: grid;
      align-items: end;
      grid-template-columns: 0.75fr 1.25fr;
      gap: 18px;
    }

    .story-photo img {
      height: 100%;
      object-fit: cover;
    }

    .story-photo.small img {
      height: 380px;
    }

    .story-photo.tall img {
      height: 570px;
    }

    .story-photo figcaption,
    .wide-photo figcaption {
      margin-top: 12px;
      color: #73818c;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
    }

    .story-copy .lead {
      margin-bottom: 18px;
      color: var(--navy);
      font-size: 1.18rem;
      font-weight: 600;
    }

    .story-copy > p {
      margin-bottom: 22px;
    }

    .feature-list {
      display: grid;
      margin: 30px 0;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .feature-list div {
      padding: 20px;
      border-left: 3px solid var(--gold);
      background: var(--cream);
    }

    .feature-list strong,
    .feature-list span {
      display: block;
    }

    .feature-list span {
      margin-top: 6px;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .charter-section {
      background: var(--navy);
    }

    .charter-section h2,
    .charter-section h3 {
      color: var(--white);
    }

    .charter-section p {
      color: rgba(255, 255, 255, 0.7);
    }

    .charter-section .eyebrow {
      color: #8ed1f5;
    }

    .wide-photo {
      margin-bottom: 45px;
    }

    .wide-photo img {
      height: 510px;
      object-fit: cover;
      border-radius: var(--radius);
    }

    .wide-photo figcaption {
      color: rgba(255, 255, 255, 0.55);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .steps-grid article {
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: var(--radius);
    }

    .steps-grid article > span {
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
    }

    .steps-grid h3 {
      margin: 32px 0 14px;
    }

    .steps-grid a {
      display: inline-block;
      margin-top: 22px;
      color: #8ed1f5;
      font-size: 0.8rem;
      font-weight: 700;
    }

    .experience-feature {
      display: grid;
      align-items: center;
      margin-bottom: 40px;
      grid-template-columns: 1.15fr 0.85fr;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--cream);
    }

    .experience-feature > img {
      height: 100%;
      min-height: 520px;
      object-fit: cover;
    }

    .experience-feature > div {
      padding: 50px;
    }

    .experience-feature h3 {
      margin-bottom: 18px;
      font-family: "Playfair Display", Georgia, serif;
      font-size: 2.35rem;
    }

    .trip-facts {
      display: grid;
      margin: 28px 0;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .trip-facts div {
      padding: 15px;
      border-radius: 10px;
      background: var(--white);
    }

    .trip-facts dt {
      color: var(--muted);
      font-size: 0.72rem;
      text-transform: uppercase;
    }

    .trip-facts dd {
      margin-top: 5px;
      color: var(--navy);
      font-weight: 700;
    }

    .accordion details {
      border-top: 1px solid var(--border);
    }

    .accordion details:last-child {
      border-bottom: 1px solid var(--border);
    }

    .accordion summary {
      padding: 24px 0;
      color: var(--navy);
      font-size: 1.12rem;
      font-weight: 700;
      cursor: pointer;
    }

    .accordion details p {
      max-width: 860px;
      padding: 0 0 25px;
    }

    .reviews-section {
      background: var(--cream);
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .review-card {
      padding: 30px;
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 8px 30px rgba(4, 25, 44, 0.05);
    }

    .stars {
      margin-bottom: 18px;
      color: var(--gold);
      letter-spacing: 0.12em;
    }

    .review-card > p {
      color: #41505d;
      font-size: 1.03rem;
    }

    .review-card footer {
      margin-top: 25px;
    }

    .review-card footer strong,
    .review-card footer span {
      display: block;
    }

    .review-card footer span {
      color: var(--muted);
      font-size: 0.84rem;
    }

    .guide-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .guide-grid article {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
    }

    .guide-grid img {
      height: 215px;
      object-fit: cover;
    }

    .guide-grid article div {
      padding: 22px;
    }

    .guide-grid span {
      color: var(--blue);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.08em;
    }

    .guide-grid h3 {
      margin-top: 10px;
      font-size: 1.13rem;
    }

    .cta-strip {
      padding: 70px 0;
      color: var(--white);
      background: var(--blue);
    }

    .cta-strip .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .cta-strip .eyebrow {
      color: #d9effc;
    }

    .cta-strip h2 {
      margin: 0;
      color: var(--white);
      font-size: clamp(2rem, 4vw, 3.6rem);
    }

    .site-footer {
      padding: 80px 0 25px;
      color: rgba(255, 255, 255, 0.76);
      background: #04111d;
    }

    .site-footer p {
      color: rgba(255, 255, 255, 0.58);
    }

    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand {
      margin-bottom: 18px;
      color: var(--white);
    }

    .footer-brand .brand-mark {
      color: var(--navy);
      background: var(--gold);
    }

    .footer-top p {
      max-width: 520px;
      margin-bottom: 14px;
    }

    .footer-top a:not(.btn):hover {
      color: var(--gold);
    }

    .footer-locations {
      display: grid;
      padding: 45px 0;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .footer-locations img {
      height: 150px;
      margin-bottom: 18px;
      object-fit: cover;
      border-radius: 10px;
    }

    .footer-locations h3 {
      margin-bottom: 8px;
      color: var(--white);
      font-size: 1rem;
    }

    .footer-locations p {
      font-size: 0.86rem;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 25px;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.48);
      font-size: 0.8rem;
    }

    .footer-bottom nav {
      display: flex;
      gap: 20px;
    }

    .footer-bottom a:hover {
      color: var(--white);
    }

    @media (max-width: 1080px) {
      .main-nav {
        gap: 15px;
      }

      .main-nav a {
        font-size: 0.82rem;
      }

      .nav-actions .btn-outline {
        display: none;
      }

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

      .experience-grid,
      .guide-grid,
      .footer-locations {
        grid-template-columns: repeat(2, 1fr);
      }

      .story-grid {
        gap: 40px;
      }
    }

    @media (max-width: 860px) {
      .nav-toggle {
        display: block;
      }

      .nav-actions {
        display: none;
      }

      .main-nav {
        position: fixed;
        top: 82px;
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        padding: 35px 30px;
        background: var(--white);
      }

      .main-nav.open {
        display: flex;
      }

      .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        font-size: 1.05rem;
      }

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

      .hero-copy {
        min-height: 660px;
        padding: 80px 30px;
      }

      .hero-media {
        min-height: 520px;
      }

      .split-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
      }

      .booking-tabs,
      .yacht-grid,
      .steps-grid,
      .review-grid {
        grid-template-columns: 1fr;
      }

      .booking-tab {
        border-right: 0;
        border-bottom: 1px solid var(--border);
      }

      .booking-tab:last-child {
        border-bottom: 0;
      }

      .story-grid,
      .experience-feature {
        grid-template-columns: 1fr;
      }

      .story-gallery {
        max-width: 650px;
      }

      .experience-feature > img {
        min-height: 380px;
      }

      .cta-strip .container,
      .footer-top,
      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 620px) {
      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .section {
        padding: 75px 0;
      }

      .brand span:last-child {
        max-width: 180px;
        line-height: 1.1;
      }

      .hero-copy {
        min-height: 610px;
        padding: 70px 22px;
      }

      .hero-copy p {
        font-size: 1rem;
      }

      .hero-media {
        min-height: 390px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .trust-strip .container {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
      }

      .trust-logos {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
      }

      .experience-grid,
      .guide-grid,
      .footer-locations,
      .feature-list {
        grid-template-columns: 1fr;
      }

      .story-gallery {
        grid-template-columns: 1fr;
      }

      .story-photo.small img,
      .story-photo.tall img {
        height: 380px;
      }

      .wide-photo img {
        height: 330px;
      }

      .experience-feature > div {
        padding: 30px 22px;
      }

      .experience-feature h3 {
        font-size: 1.85rem;
      }

      .trip-facts {
        grid-template-columns: 1fr;
      }

      .cta-strip .btn {
        width: 100%;
      }

      .footer-bottom nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
      }
    }
