.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}

/* hover premium */
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(.8);
}

.gallery-item::after {
  content: "View";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  letter-spacing: .1em;
  opacity: 0;
  background: rgba(7,24,39,.5);
  transition: .4s;
}

.gallery-item:hover::after {
  opacity: 1;
}

    :root {
      --navy: #071827;
      --navy-soft: #0b2438;
      --blue: #0f4c81;
      --cyan: #7bdff2;
      --gold: #d4af37;
      --gold-soft: #f5deb3;
      --cream: #fbf7ef;
      --white: #ffffff;
      --muted: #6f7b85;
      --dark-muted: #aab8c4;
      --danger: #b45309;
      --shadow: 0 28px 80px rgba(0, 0, 0, .22);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 16px;
      --container: 1180px;
      --ease: cubic-bezier(.22, .61, .36, 1);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--cream);
      color: var(--navy);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img, video {
      max-width: 100%;
      display: block;
    }

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

    button, input, textarea, select {
      font: inherit;
    }
    
    .gallery-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-grid a::after {
  content: "View";
  position: absolute;
  inset: 0;
  background: rgba(7,24,39,.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .3s;
  font-weight: bold;
}

.gallery-grid a:hover::after {
  opacity: 1;
}

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

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

    .eyebrow::before {
      content: "";
      width: 44px;
      height: 1px;
      background: currentColor;
      opacity: .75;
    }

    .section-title {
      font-family: "Cinzel", serif;
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1.04;
      letter-spacing: -.045em;
      margin-bottom: 18px;
    }

    .section-lead {
      max-width: 760px;
      color: var(--muted);
      font-size: clamp(16px, 1.8vw, 19px);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      font-weight: 800;
      transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease);
      white-space: nowrap;
    }

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

    .btn-primary {
      color: #08131f;
      background: linear-gradient(135deg, #fff1ba, var(--gold));
      box-shadow: 0 18px 42px rgba(212, 175, 55, .32);
    }

    .btn-primary:hover {
      box-shadow: 0 22px 52px rgba(212, 175, 55, .45);
    }

    .btn-secondary {
      color: var(--white);
      border-color: rgba(255,255,255,.28);
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(16px);
    }

    .btn-secondary:hover {
      border-color: rgba(255,255,255,.55);
      background: rgba(255,255,255,.14);
    }

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

    .btn-outline {
      color: var(--navy);
      border-color: rgba(7,24,39,.16);
      background: rgba(255,255,255,.52);
    }

    .topbar {
      position: fixed;
      z-index: 100;
      inset: 0 0 auto;
      transition: background .28s var(--ease), box-shadow .28s var(--ease), border .28s var(--ease);
    }

    .topbar.scrolled {
      background: rgba(7, 24, 39, .78);
      backdrop-filter: blur(22px);
      box-shadow: 0 18px 50px rgba(0,0,0,.14);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .nav {
      width: min(1280px, calc(100% - 34px));
      height: 82px;
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--white);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -.02em;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--navy);
      background: linear-gradient(135deg, #fff1ba, var(--gold));
      box-shadow: 0 16px 40px rgba(212, 175, 55, .28);
      font-family: "Cinzel", serif;
      font-weight: 700;
    }

    .brand small {
      display: block;
      color: rgba(255,255,255,.62);
      font-size: 11px;
      letter-spacing: .15em;
      text-transform: uppercase;
      margin-top: -3px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 14px;
      font-weight: 700;
      color: rgba(255,255,255,.84);
    }

    .nav-links a {
      position: relative;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -7px;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width .28s var(--ease);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

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

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.2);
      color: var(--white);
      background: rgba(255,255,255,.08);
      cursor: pointer;
    }

    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      color: var(--white);
      overflow: hidden;
      isolation: isolate;
      background: var(--navy);
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: -3;
      background:
        linear-gradient(115deg, rgba(7,24,39,.88), rgba(7,24,39,.45) 42%, rgba(7,24,39,.72)),
        url("https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=2200&q=82") center/cover;
      transform: scale(1.03);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(circle at 70% 20%, rgba(123,223,242,.18), transparent 34%),
        radial-gradient(circle at 25% 65%, rgba(212,175,55,.18), transparent 30%);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      z-index: -1;
      height: 220px;
      background: linear-gradient(transparent, var(--cream));
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .7fr;
      gap: 44px;
      align-items: end;
      padding: 160px 0 92px;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(16px);
      color: rgba(255,255,255,.86);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 22px;
    }

    .pulse {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 0 8px rgba(34,197,94,.16);
    }

    .hero h1 {
      font-family: "Cinzel", serif;
      font-size: clamp(46px, 8vw, 96px);
      line-height: .94;
      letter-spacing: -.07em;
      max-width: 900px;
      margin-bottom: 24px;
    }

    .hero p {
      max-width: 690px;
      color: rgba(255,255,255,.82);
      font-size: clamp(17px, 2vw, 22px);
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 720px;
    }

    .metric {
      padding: 18px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 22px;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(16px);
    }

    .metric strong {
      display: block;
      font-size: 24px;
      color: var(--gold-soft);
      line-height: 1;
    }

    .metric span {
      display: block;
      color: rgba(255,255,255,.68);
      font-size: 13px;
      margin-top: 8px;
    }

    .booking-card {
      border: 1px solid rgba(255,255,255,.15);
      background: rgba(255,255,255,.11);
      backdrop-filter: blur(24px);
      border-radius: var(--radius-xl);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .booking-card h2 {
      font-family: "Cinzel", serif;
      font-size: 26px;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .booking-card p {
      font-size: 14px;
      margin-bottom: 20px;
      color: rgba(255,255,255,.72);
    }

    .form-grid {
      display: grid;
      gap: 12px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field label {
      font-size: 12px;
      font-weight: 800;
      color: rgba(255,255,255,.74);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 48px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 16px;
      padding: 0 14px;
      color: var(--white);
      background: rgba(7,24,39,.42);
      outline: none;
      transition: border .2s var(--ease), box-shadow .2s var(--ease);
    }

    .field textarea {
      padding-block: 13px;
      min-height: 94px;
      resize: vertical;
    }

    .field select option {
      color: var(--navy);
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: rgba(212,175,55,.75);
      box-shadow: 0 0 0 4px rgba(212,175,55,.12);
    }

    .field ::placeholder {
      color: rgba(255,255,255,.48);
    }

    section {
      padding: 110px 0;
    }

    .trust-strip {
      padding: 0;
      margin-top: -34px;
      position: relative;
      z-index: 5;
    }

    .trust-card {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1.2fr;
      gap: 1px;
      overflow: hidden;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      background: rgba(7,24,39,.08);
    }

    .trust-item {
      padding: 26px;
      background: var(--white);
    }

    .trust-item strong {
      display: block;
      color: var(--navy);
      font-size: 18px;
      margin-bottom: 4px;
    }

    .trust-item span {
      color: var(--muted);
      font-size: 14px;
    }

    .trust-item.gold {
      background: linear-gradient(135deg, #fff3c5, #d4af37);
      color: #08131f;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 56px;
      align-items: center;
    }

    .image-stack {
      position: relative;
      min-height: 560px;
    }

    .image-stack .main-img {
      position: absolute;
      inset: 0 auto auto 0;
      width: 75%;
      height: 470px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .image-stack .small-img {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 52%;
      height: 310px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      border: 12px solid var(--cream);
      box-shadow: var(--shadow);
    }

    .floating-note {
      position: absolute;
      left: 10%;
      bottom: 48px;
      max-width: 270px;
      padding: 20px;
      border-radius: 22px;
      color: var(--white);
      background: rgba(7,24,39,.84);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
    }

    .floating-note strong {
      color: var(--gold-soft);
    }

    .feature-list {
      display: grid;
      gap: 16px;
      margin-top: 28px;
    }

    .feature {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      align-items: start;
    }

    .icon {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: rgba(212,175,55,.16);
      color: var(--gold);
      font-weight: 900;
    }

    .feature h3 {
      font-size: 17px;
      margin-bottom: 3px;
    }

    .feature p {
      color: var(--muted);
      font-size: 15px;
    }

    .dark-section {
      color: var(--white);
      background:
        radial-gradient(circle at 80% 5%, rgba(123,223,242,.16), transparent 34%),
        linear-gradient(135deg, var(--navy), var(--navy-soft));
    }

    .dark-section .section-lead,
    .dark-section .card p,
    .dark-section .tour-card p {
      color: var(--dark-muted);
    }

    .fleet-head,
    .tour-head,
    .gallery-head,
    .faq-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 26px;
      margin-bottom: 38px;
    }

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

    .boat-card {
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.07);
      box-shadow: 0 22px 70px rgba(0,0,0,.18);
      transition: transform .34s var(--ease), border .34s var(--ease), background .34s var(--ease);
    }

    .boat-card:hover {
      transform: translateY(-8px);
      border-color: rgba(212,175,55,.42);
      background: rgba(255,255,255,.1);
    }

    .boat-img {
      height: 260px;
      position: relative;
      overflow: hidden;
    }

    .boat-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s var(--ease);
    }

    .boat-card:hover .boat-img img {
      transform: scale(1.06);
    }

    .badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 1;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(7,24,39,.76);
      backdrop-filter: blur(14px);
      color: var(--gold-soft);
      font-size: 12px;
      font-weight: 900;
    }

    .boat-content {
      padding: 24px;
    }

    .boat-content h3 {
      font-family: "Cinzel", serif;
      font-size: 26px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .boat-content p {
      color: var(--dark-muted);
      font-size: 15px;
      margin-bottom: 18px;
    }

    .specs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 20px;
    }

    .spec {
      padding: 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.07);
    }

    .spec span {
      display: block;
      color: rgba(255,255,255,.5);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .07em;
      font-weight: 800;
    }

    .spec strong {
      font-size: 14px;
      color: var(--white);
    }

    .boat-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .price {
      color: var(--gold-soft);
      font-weight: 900;
    }

    .price small {
      display: block;
      color: rgba(255,255,255,.52);
      font-size: 11px;
      font-weight: 700;
    }

    .experiences {
      background: var(--cream);
    }

    .tour-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
    }

    .tour-card {
      min-height: 380px;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      color: var(--white);
      display: flex;
      align-items: end;
      padding: 28px;
      isolation: isolate;
      box-shadow: var(--shadow);
    }

    .tour-card.big {
      min-height: 782px;
    }

    .tour-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background: var(--tour-img) center/cover;
      transition: transform .6s var(--ease);
    }

    .tour-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(transparent 20%, rgba(7,24,39,.88));
    }

    .tour-card:hover::before {
      transform: scale(1.07);
    }

    .tour-card h3 {
      font-family: "Cinzel", serif;
      font-size: clamp(28px, 3vw, 44px);
      line-height: 1;
      margin-bottom: 10px;
    }

    .tour-card p {
      max-width: 570px;
      margin-bottom: 18px;
    }

    .tour-side {
      display: grid;
      gap: 22px;
    }

    .process {
      background: var(--white);
    }

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

    .step {
      padding: 32px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(212,175,55,.08), rgba(255,255,255,.8)),
        var(--cream);
      border: 1px solid rgba(7,24,39,.08);
      position: relative;
      overflow: hidden;
    }

    .step .num {
      font-family: "Cinzel", serif;
      font-size: 58px;
      line-height: 1;
      color: rgba(212,175,55,.42);
      margin-bottom: 20px;
    }

    .step h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }

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

    .scarcity {
      margin-top: 42px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 22px;
      padding: 24px;
      border-radius: var(--radius-xl);
      background: var(--navy);
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .scarcity strong {
      color: var(--gold-soft);
    }

    .reviews {
      color: var(--white);
      background:
        linear-gradient(rgba(7,24,39,.86), rgba(7,24,39,.86)),
        url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=2200&q=82") center/cover fixed;
    }

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

    .review {
      padding: 28px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.09);
      backdrop-filter: blur(18px);
    }

    .stars {
      color: var(--gold);
      letter-spacing: 3px;
      margin-bottom: 16px;
    }

    .review p {
      color: rgba(255,255,255,.78);
      margin-bottom: 22px;
    }

    .review strong {
      display: block;
    }

    .review span {
      color: rgba(255,255,255,.54);
      font-size: 13px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      grid-auto-rows: 250px;
      gap: 16px;
      margin-top: 38px;
    }

    .gallery-grid a {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      background: #ddd;
    }

    .gallery-grid a:first-child {
      grid-row: span 2;
    }

    .gallery-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s var(--ease), filter .5s var(--ease);
    }

    .gallery-grid a:hover img {
      transform: scale(1.06);
      filter: saturate(1.1);
    }

    .faq {
      background: var(--white);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 44px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    details {
      border: 1px solid rgba(7,24,39,.1);
      border-radius: 20px;
      background: var(--cream);
      overflow: hidden;
    }

    summary {
      cursor: pointer;
      padding: 20px 22px;
      font-weight: 900;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      color: var(--gold);
      font-size: 24px;
      line-height: 1;
    }

    details[open] summary::after {
      content: "−";
    }

    details p {
      padding: 0 22px 22px;
      color: var(--muted);
    }

    .cta {
      padding: 0;
      background: var(--white);
    }

    .cta-box {
      position: relative;
      overflow: hidden;
      border-radius: 38px;
      padding: clamp(34px, 6vw, 72px);
      color: var(--white);
      background:
        linear-gradient(115deg, rgba(7,24,39,.95), rgba(7,24,39,.7)),
        url("https://images.unsplash.com/photo-1510414842594-a61c69b5ae57?auto=format&fit=crop&w=2200&q=82") center/cover;
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      max-width: 780px;
      font-family: "Cinzel", serif;
      font-size: clamp(34px, 5vw, 66px);
      line-height: 1;
      letter-spacing: -.05em;
      margin-bottom: 20px;
    }

    .cta-box p {
      color: rgba(255,255,255,.74);
      max-width: 690px;
      font-size: 18px;
      margin-bottom: 28px;
    }

    .footer {
      padding: 80px 0 34px;
      color: rgba(255,255,255,.74);
      background: var(--navy);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr .8fr;
      gap: 34px;
      margin-bottom: 44px;
    }

    .footer h3,
    .footer h4 {
      color: var(--white);
      margin-bottom: 14px;
    }

    .footer p,
    .footer li {
      color: rgba(255,255,255,.66);
      font-size: 14px;
    }

    .footer ul {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .footer-bottom {
      padding-top: 26px;
      border-top: 1px solid rgba(255,255,255,.1);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 13px;
    }

    .whatsapp-float {
      position: fixed;
      z-index: 120;
      right: 22px;
      bottom: 22px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--white);
      background: #25d366;
      box-shadow: 0 18px 45px rgba(37,211,102,.36);
      transition: transform .28s var(--ease);
      font-size: 26px;
    }

    .whatsapp-float:hover {
      transform: translateY(-4px) scale(1.03);
    }

    .mobile-panel {
      position: fixed;
      z-index: 99;
      inset: 82px 16px auto;
      padding: 18px;
      border-radius: 24px;
      background: rgba(7,24,39,.96);
      color: var(--white);
      box-shadow: var(--shadow);
      transform: translateY(-18px);
      opacity: 0;
      pointer-events: none;
      transition: .26s var(--ease);
      border: 1px solid rgba(255,255,255,.08);
    }

    .mobile-panel.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-panel a {
      display: block;
      padding: 13px 10px;
      border-radius: 14px;
      font-weight: 800;
      color: rgba(255,255,255,.85);
    }

    .mobile-panel a:hover {
      background: rgba(255,255,255,.08);
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1040px) {
      .nav-links,
      .nav-actions .btn-secondary {
        display: none;
      }

      .menu-toggle {
        display: grid;
        place-items: center;
      }

      .hero-grid,
      .intro-grid,
      .faq-layout,
      .tour-grid {
        grid-template-columns: 1fr;
      }

      .booking-card {
        max-width: 620px;
      }

      .trust-card,
      .fleet-grid,
      .steps,
      .review-grid,
      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .tour-card.big {
        min-height: 420px;
      }

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

      .gallery-grid a:first-child {
        grid-row: span 1;
      }

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

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

      .nav {
        width: min(100% - 28px, 1280px);
        height: 74px;
      }

      .brand small {
        display: none;
      }

      .hero-grid {
        padding: 128px 0 78px;
      }

      .hero-actions,
      .boat-bottom,
      .fleet-head,
      .tour-head,
      .gallery-head,
      .faq-head,
      .footer-bottom {
        align-items: stretch;
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .hero-metrics,
      .trust-card,
      .fleet-grid,
      .steps,
      .review-grid,
      .footer-grid,
      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .image-stack {
        min-height: auto;
        display: grid;
        gap: 14px;
      }

      .image-stack .main-img,
      .image-stack .small-img,
      .floating-note {
        position: static;
        width: 100%;
      }

      .image-stack .main-img,
      .image-stack .small-img {
        height: 310px;
        border: 0;
      }

      section {
        padding: 78px 0;
      }

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

      .gallery-grid {
        grid-auto-rows: 230px;
      }

      .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
      }
    }
    
    .lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.tour-link-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

.tour-link-card:hover {
  transform: translateY(-6px);
  filter: brightness(1.06);
}

.tour-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.tour-detail-page {
  background: #fbf7ef;
}

.tour-detail-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.tour-detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.tour-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,18,32,.15), rgba(6,18,32,.82)),
    linear-gradient(to right, rgba(6,18,32,.72), rgba(6,18,32,.18));
  z-index: 1;
}

.tour-detail-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: 90px;
  max-width: 900px;
}

.tour-detail-hero h1 {
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .96;
  letter-spacing: -0.05em;
}

.tour-detail-hero p {
  max-width: 720px;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-weight: 700;
}

.back-link:hover {
  color: var(--gold);
}

.tour-detail-content {
  padding: 90px 0;
}

.tour-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 48px;
  align-items: start;
}

.tour-detail-main {
  background: #fff;
  border-radius: 34px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 24px 80px rgba(15,23,42,.08);
}

.tour-detail-main h2 {
  margin: 12px 0 20px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.tour-detail-main p {
  font-size: 18px;
  line-height: 1.85;
  color: #475569;
}

.tour-detail-points {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(15,23,42,.1);
}

.tour-detail-points h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 24px;
}

.tour-detail-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.tour-detail-points li {
  position: relative;
  padding-left: 30px;
  color: #334155;
  font-weight: 600;
}

.tour-detail-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.tour-detail-sidebar {
  position: sticky;
  top: 110px;
}

.tour-info-box {
  background: #07111f;
  color: #fff;
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 24px 80px rgba(15,23,42,.18);
}

.tour-info-box h3 {
  margin: 0 0 24px;
  font-size: 26px;
}

.tour-info-row {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}

.tour-info-row span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,.48);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

.tour-info-row strong {
  display: block;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
}

.tour-info-note {
  margin: 22px 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(214,165,71,.12);
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.5;
}

.btn.full {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.tour-detail-extra {
  padding: 0 0 90px;
}

@media (max-width: 900px) {
  .tour-detail-grid {
    grid-template-columns: 1fr;
  }

  .tour-detail-sidebar {
    position: static;
  }

  .tour-detail-hero {
    min-height: 66vh;
  }
}