/* ============================================================================
   BREEZY TIKI CHARTERS — "Coastal Luxe" Design System
   Fort Lauderdale Private Tiki Boat Charters
   Hand-built, framework-free. Mobile-first. ~95+ Lighthouse target.
   ========================================================================== */

/* ---------- Design Tokens ------------------------------------------------- */
:root {
  /* Canvas & ink */
  --ivory:        #FBF7EF;
  --sand:         #F4ECDD;
  --sand-deep:    #EADFC9;
  --ink:          #11302E;   /* deep teal-black — body text */
  --ink-soft:     #3A524F;
  --ink-muted:    #6B7E7B;

  /* Ocean / teal family */
  --teal-900:     #0B2A2E;
  --teal-800:     #0F3A40;
  --teal-700:     #144E57;
  --teal-600:     #1A6671;
  --teal-500:     #2A8290;
  --foam:         #E7F1ED;

  /* Brushed gold accents */
  --gold:         #C7A24E;
  --gold-bright:  #E2C275;
  --gold-deep:    #9A7A2E;

  /* Coral — used very sparingly for warmth/party energy */
  --coral:        #E8755B;

  /* Surfaces */
  --surface:      #FFFFFF;
  --surface-warm: #FBF7EF;
  --line:         rgba(17, 48, 46, 0.12);
  --line-gold:    rgba(199, 162, 78, 0.45);

  /* Typography */
  --font-display: "Fraunces", "Canela", Georgia, "Times New Roman", serif;
  --font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow:   clamp(0.72rem, 0.68rem + 0.2vw, 0.82rem);
  --fs-body:      clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  --fs-lead:      clamp(1.15rem, 1.05rem + 0.6vw, 1.45rem);
  --fs-h4:        clamp(1.1rem, 1rem + 0.6vw, 1.35rem);
  --fs-h3:        clamp(1.4rem, 1.2rem + 1vw, 2rem);
  --fs-h2:        clamp(2rem, 1.5rem + 2.6vw, 3.4rem);
  --fs-h1:        clamp(2.6rem, 1.8rem + 4.4vw, 5.5rem);
  --fs-display:   clamp(3rem, 1.6rem + 6.5vw, 7rem);

  /* Spacing & layout */
  --maxw:         1240px;
  --maxw-narrow:  860px;
  --gutter:       clamp(1.15rem, 0.6rem + 2.5vw, 3rem);
  --section-y:    clamp(3.5rem, 2rem + 7vw, 8rem);
  --radius:       18px;
  --radius-lg:    26px;
  --radius-pill:  100px;

  /* Shadows — soft, expensive */
  --shadow-sm:  0 2px 10px rgba(11, 42, 46, 0.06);
  --shadow:     0 18px 50px -22px rgba(11, 42, 46, 0.35);
  --shadow-lg:  0 40px 90px -40px rgba(11, 42, 46, 0.55);

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --header-h:   76px;
}

/* ---------- Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--teal-600); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 470; line-height: 1.04; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-weight: 560; }
p  { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--gold); display: inline-block; }
.eyebrow.is-centered::after { content: ""; width: 28px; height: 1.5px; background: var(--gold); display: inline-block; }

.display { font-size: var(--fs-display); font-weight: 400; line-height: 0.98; }
.italic-accent { font-style: italic; font-weight: 380; color: var(--teal-600); }
.lead { font-size: var(--fs-lead); color: var(--ink-soft); line-height: 1.5; }

/* ---------- Layout helpers ----------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: var(--maxw-narrow); }
.section { padding-block: var(--section-y); position: relative; }
.section--sand { background: var(--sand); }
.section--ink { background: var(--teal-900); color: var(--foam); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink p { color: rgba(231, 241, 237, 0.78); }
.section--ink .eyebrow { color: var(--gold-bright); }
.section--ink .eyebrow::before, .section--ink .eyebrow.is-centered::after { background: var(--gold-bright); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 + p { margin-top: 1.1rem; }

.center { text-align: center; }
.muted { color: var(--ink-muted); }

/* ---------- Buttons ------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--teal-900);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 0.95em 1.9em;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.04em; white-space: nowrap;
  background: var(--btn-bg); color: var(--btn-fg);
  border-radius: var(--radius-pill);
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s;
  box-shadow: 0 12px 28px -12px rgba(154, 122, 46, 0.7);
  will-change: transform;
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform 0.7s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(154, 122, 46, 0.8); }
.btn:hover::after { transform: translateX(130%); }
.btn--lg { padding: 1.1em 2.3em; font-size: 1rem; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border: 1.5px solid rgba(17,48,46,0.25); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--teal-600); background: var(--foam); box-shadow: none; }
.btn--ghost-light {
  --btn-bg: transparent; --btn-fg: #fff;
  border: 1.5px solid rgba(255,255,255,0.4); box-shadow: none;
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; box-shadow: none; }
.btn--teal { --btn-bg: var(--teal-700); --btn-fg: #fff; box-shadow: 0 12px 28px -12px rgba(15,58,64,0.7); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 700; color: var(--teal-700); letter-spacing: 0.02em;
  font-size: 0.95rem;
}
.link-arrow svg { transition: transform 0.35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Header / Nav -------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), backdrop-filter 0.45s;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header.is-solid {
  background: rgba(251, 247, 239, 0.88);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; z-index: 2; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.32rem; font-weight: 500; letter-spacing: 0.01em; color: var(--ink); }
.brand__sub { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; }
.site-header:not(.is-solid):not(.header--light) .brand__name { color: #fff; }
.site-header:not(.is-solid):not(.header--light) .brand__sub { color: var(--gold-bright); }

.nav { display: flex; align-items: center; gap: 0.4rem; }
.nav__list { display: flex; align-items: center; gap: 0.2rem; }
.nav__link {
  position: relative; padding: 0.5rem 0.85rem; font-weight: 600; font-size: 0.92rem;
  color: var(--ink-soft); border-radius: 8px; transition: color 0.25s;
  display: inline-flex; align-items: center; gap: 0.34em; white-space: nowrap;
}
.nav__link svg { flex: none; }
.site-header:not(.is-solid):not(.header--light) .nav__link { color: rgba(255,255,255,0.85); }
.nav__link::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.3rem; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--gold-deep); }
.site-header:not(.is-solid):not(.header--light) .nav__link:hover { color: #fff; }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--gold-deep); }

/* dropdown */
.nav__item--has-menu { position: relative; }
.nav__panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 230px; background: var(--surface); border-radius: 16px; padding: 0.6rem;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.nav__item--has-menu:hover .nav__panel,
.nav__item--has-menu:focus-within .nav__panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__panel a { display: block; padding: 0.7rem 0.9rem; border-radius: 10px; font-weight: 600; font-size: 0.9rem; color: var(--ink-soft); transition: background 0.2s, color 0.2s; }
.nav__panel a:hover { background: var(--foam); color: var(--teal-700); }
.nav__panel a small { display: block; font-weight: 500; font-size: 0.76rem; color: var(--ink-muted); letter-spacing: 0; text-transform: none; }

.nav__cta { margin-left: 0.6rem; }
.nav__phone { display: inline-flex; align-items: center; gap: 0.45em; font-weight: 700; font-size: 0.9rem; color: var(--teal-700); white-space: nowrap; }
.nav__phone svg { flex: none; width: 17px; height: 17px; }
.site-header:not(.is-solid):not(.header--light) .nav__phone { color: #fff; }

/* burger */
.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; z-index: 120; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s; }
.site-header:not(.is-solid):not(.header--light) .burger span { background: #fff; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.burger.is-open span { background: var(--ink) !important; }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 110;
  background: var(--ivory);
  padding: calc(var(--header-h) + 1rem) var(--gutter) 2rem;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__list { display: flex; flex-direction: column; gap: 0.2rem; margin-top: 1rem; }
.drawer__list a { font-family: var(--font-display); font-size: 1.55rem; font-weight: 460; padding: 0.55rem 0; color: var(--ink); border-bottom: 1px solid var(--line); }
.drawer__list a small { display: block; font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; color: var(--ink-muted); }
.drawer__group-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin: 1.4rem 0 0.4rem; }
.drawer__foot { margin-top: auto; padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.drawer__phone { font-family: var(--font-display); font-size: 1.6rem; color: var(--teal-700); }
.drawer__social { display: flex; gap: 1rem; }
.drawer__social a { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--teal-700); }
body.no-scroll { overflow: hidden; }

/* ---------- Hero ---------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,42,46,0.55) 0%, rgba(11,42,46,0.15) 30%, rgba(11,42,46,0.25) 55%, rgba(11,42,46,0.85) 100%),
    radial-gradient(120% 80% at 50% 120%, rgba(11,42,46,0.6), transparent 60%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin-inline: auto; padding: 0 var(--gutter) clamp(3rem, 2rem + 6vw, 6rem); }
.hero__eyebrow { color: var(--gold-bright); margin-bottom: 1.4rem; }
.hero__eyebrow::before { background: var(--gold-bright); }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero h1 em { font-style: italic; color: var(--gold-bright); font-weight: 380; }
.hero__sub { margin-top: 1.5rem; max-width: 52ch; font-size: var(--fs-lead); color: rgba(255,255,255,0.92); }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__meta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; align-items: center; }
.hero__meta-item { display: flex; align-items: center; gap: 0.7rem; }
.hero__meta-item strong { color: #fff; font-size: 1.05rem; }
.hero__meta-item span { font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.2; }
.hero__stars { color: var(--gold-bright); letter-spacing: 2px; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 1; color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero__scroll::after { content: ""; width: 1px; height: 40px; background: linear-gradient(rgba(255,255,255,0.7), transparent); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* page hero (interior, image) */
.page-hero { position: relative; min-height: 64vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,42,46,0.5) 0%, rgba(11,42,46,0.2) 40%, rgba(11,42,46,0.82) 100%); }
.page-hero__inner { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin-inline: auto; padding: calc(var(--header-h) + 3rem) var(--gutter) clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero__eyebrow { color: var(--gold-bright); margin-bottom: 1.1rem; }
.page-hero__eyebrow::before { background: var(--gold-bright); }
.page-hero p { color: rgba(255,255,255,0.9); max-width: 56ch; margin-top: 1.1rem; font-size: var(--fs-lead); }
.breadcrumb { position: relative; z-index: 1; font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-bottom: 1.2rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ---------- Marquee strip ------------------------------------------------- */
.marquee { background: var(--teal-900); color: var(--foam); overflow: hidden; padding: 0.9rem 0; border-block: 1px solid rgba(255,255,255,0.08); }
.marquee__track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: rgba(231,241,237,0.85); display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track span::after { content: "✦"; color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards / grids ------------------------------------------------- */
.grid { display: grid; gap: clamp(1.1rem, 0.6rem + 2vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: clamp(1.3rem, 1rem + 1vw, 1.9rem); display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.card__tag { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.card__body h3 { font-size: var(--fs-h4); }
.card__body p { font-size: 0.95rem; }
.card__foot { margin-top: auto; padding-top: 0.6rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* charter / pricing card */
.charter-card { position: relative; }
.charter-card__badge { position: absolute; top: 1rem; right: 1rem; background: var(--teal-900); color: var(--gold-bright); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4em 0.9em; border-radius: 100px; z-index: 2; }
.charter-card__dur { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--teal-700); }
.charter-card__dur small { font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); display: block; margin-top: 0.3rem; }
.charter-card ul { display: flex; flex-direction: column; gap: 0.5rem; margin: 0.4rem 0; }
.charter-card li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); }
.charter-card li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 2px; background: var(--gold); border-radius: 50%; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat; }

/* feature / inclusion tiles */
.feature { display: flex; flex-direction: column; gap: 0.8rem; padding: clamp(1.3rem,1rem+1vw,2rem); background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--foam); color: var(--teal-700); display: grid; place-items: center; }
.feature__ic svg { width: 24px; height: 24px; }
.feature h4 { font-size: 1.08rem; }
.feature p { font-size: 0.92rem; }
.section--ink .feature { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.section--ink .feature__ic { background: rgba(199,162,78,0.16); color: var(--gold-bright); }

/* luxury 3D inclusion cards (icon-free, cursor-tilt, animated) */
.incl-wrap { perspective: 1200px; }
.incl {
  position: relative; height: 100%;
  padding: clamp(1.8rem, 1.3rem + 1.6vw, 2.7rem);
  border-radius: 22px;
  background: linear-gradient(155deg, #ffffff 0%, #fdfaf3 52%, #f5ecdb 100%);
  border: 1px solid rgba(199, 162, 78, 0.30);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 0 0 1px rgba(255,255,255,0.4),
    0 2px 6px -2px rgba(11,42,46,0.12),
    0 28px 52px -30px rgba(11,42,46,0.45);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
  will-change: transform;
}
.incl::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.incl::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(460px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,0.7), transparent 42%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.incl:hover {
  border-color: rgba(199, 162, 78, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 0 0 1px rgba(255,255,255,0.5),
    0 10px 18px -10px rgba(11,42,46,0.25),
    0 50px 84px -34px rgba(11,42,46,0.6),
    0 0 40px -16px rgba(199,162,78,0.5);
}
.incl:hover::before, .incl:hover::after { opacity: 1; }
.incl__num {
  display: block; font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(2.7rem, 2rem + 2.2vw, 3.8rem); line-height: 1; margin-bottom: 1.1rem;
  color: var(--gold-deep);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  transform: translateZ(50px);
}
.incl__num::after { content: ""; display: block; width: 36px; height: 2px; margin-top: 0.8rem; background: var(--gold); border-radius: 2px; opacity: 0.8; }
.incl h4 { transform: translateZ(32px); }
.incl p { transform: translateZ(18px); margin-top: 0.3rem; }
@media (hover: none) { .incl { transform: none; } }

/* split / showcase */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 1rem + 4vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.split__media--wide img { aspect-ratio: 5/4; }
.split__badge { position: absolute; bottom: -22px; left: -22px; background: var(--teal-900); color: #fff; padding: 1.1rem 1.4rem; border-radius: 18px; box-shadow: var(--shadow); max-width: 220px; }
.split__badge strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--gold-bright); line-height: 1; }
.split__badge span { font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.split__body > .eyebrow { margin-bottom: 1.1rem; }
.split__body h2 + p, .split__body p + p { margin-top: 1.1rem; }
.split__list { margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.split__list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.split__list li svg { flex: none; width: 22px; height: 22px; color: var(--gold-deep); margin-top: 2px; }
.split__list li b { color: var(--ink); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 1.6rem + 3vw, 4rem); line-height: 1; color: var(--teal-700); }
.section--ink .stat__num { color: var(--gold-bright); }
.stat__label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--ink-muted); margin-top: 0.5rem; }
.section--ink .stat__label { color: rgba(231,241,237,0.7); }

/* ---------- Reviews ------------------------------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 0.5rem + 1.5vw, 1.8rem); }
.review {
  background: var(--surface); border-radius: var(--radius-lg); padding: clamp(1.5rem,1rem+1.5vw,2.2rem);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 1rem;
}
.review__stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.review__text { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.5; color: var(--ink); font-weight: 420; }
.review__by { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-700); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.review__name { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.review__src { font-size: 0.78rem; color: var(--ink-muted); }

.rating-banner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.4rem; text-align: center; }
.rating-banner__score { font-family: var(--font-display); font-size: 3rem; color: var(--teal-700); line-height: 1; }
.rating-banner__stars { color: var(--gold); letter-spacing: 3px; font-size: 1.3rem; }

/* ---------- Crew --------------------------------------------------------- */
.crew { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem,0.5rem+1vw,1.4rem); }
.crew__card { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line); padding: 1.4rem; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.crew__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.crew__avatar { width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-600), var(--teal-800)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1rem; }
.crew__role { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.crew__name { font-family: var(--font-display); font-size: 1.25rem; margin: 0.2rem 0 0.6rem; }
.crew__bio { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Gallery ------------------------------------------------------- */
.gallery { columns: 3; column-gap: clamp(0.6rem, 0.3rem + 1vw, 1.1rem); }
.gallery__item { break-inside: avoid; margin-bottom: clamp(0.6rem,0.3rem+1vw,1.1rem); border-radius: var(--radius); overflow: hidden; position: relative; cursor: zoom-in; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; transition: transform 0.7s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(11,42,46,0.4)); opacity: 0; transition: opacity 0.4s; }
.gallery__item:hover::after { opacity: 1; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(7,26,28,0.94); display: none; align-items: center; justify-content: center; padding: 5vw; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.6rem; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; color: #fff; display: grid; place-items: center; font-size: 1.4rem; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; color: #fff; display: grid; place-items: center; }
.lightbox__nav--prev { left: 1.5rem; } .lightbox__nav--next { right: 1.5rem; }

/* ---------- FAQ ----------------------------------------------------------- */
.faq { max-width: var(--maxw-narrow); margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.4rem 0; text-align: left; font-family: var(--font-display); font-size: clamp(1.1rem,1rem+0.6vw,1.35rem); font-weight: 480; color: var(--ink); }
.faq__icon { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line-gold); display: grid; place-items: center; position: relative; transition: background 0.3s, border-color 0.3s; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--gold-deep); border-radius: 2px; transition: transform 0.35s var(--ease); }
.faq__icon::before { width: 12px; height: 2px; } .faq__icon::after { width: 2px; height: 12px; }
.faq__item[open] .faq__icon { background: var(--gold); border-color: var(--gold); }
.faq__item[open] .faq__icon::before, .faq__item[open] .faq__icon::after { background: #fff; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg) scaleX(0); }
.faq__a { padding: 0 0 1.5rem; max-width: 64ch; }
.faq__a p { font-size: 1rem; }
.faq__q::-webkit-details-marker { display: none; }
details.faq__item summary { list-style: none; cursor: pointer; } details.faq__item summary::-webkit-details-marker { display: none; }

/* ---------- CTA band ------------------------------------------------------ */
.cta-band { position: relative; overflow: hidden; background: var(--teal-900); color: #fff; border-radius: clamp(20px, 1rem + 2vw, 36px); padding: clamp(2.5rem, 1.5rem + 5vw, 5.5rem) var(--gutter); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% -20%, rgba(199,162,78,0.22), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: rgba(231,241,237,0.82); max-width: 52ch; margin: 1.1rem auto 0; }
.cta-band__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Sticky mobile booking bar ------------------------------------ */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; gap: 0.7rem; padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom)); background: rgba(251,247,239,0.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
.mobile-bar .btn { flex: 1; padding: 0.95em 1rem; font-size: 0.92rem; }
.mobile-bar .btn--call { flex: 0 0 auto; width: 54px; padding: 0; }

/* ---------- Footer -------------------------------------------------------- */
.footer { background: var(--teal-900); color: rgba(231,241,237,0.8); padding-top: clamp(3.5rem, 2rem + 5vw, 6rem); }
.footer a:hover { color: var(--gold-bright); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { color: rgba(231,241,237,0.6); margin-top: 1.1rem; max-width: 34ch; font-size: 0.92rem; }
.footer__social { display: flex; gap: 0.8rem; margin-top: 1.6rem; }
.footer__social a { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; display: grid; place-items: center; color: rgba(255,255,255,0.85); transition: background 0.3s, transform 0.3s, border-color 0.3s; }
.footer__social a:hover { background: var(--gold); color: var(--teal-900); border-color: var(--gold); transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-family: var(--font-body); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a, .footer__col li { font-size: 0.92rem; color: rgba(231,241,237,0.72); }
.footer__contact-item { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 1rem; }
.footer__contact-item svg { flex: none; width: 19px; height: 19px; color: var(--gold-bright); margin-top: 2px; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.6rem 0; font-size: 0.82rem; color: rgba(231,241,237,0.5); }
.footer__bottom a { color: rgba(231,241,237,0.6); }
.footer__bottom-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ---------- Reveal animation --------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }

/* ---------- Prose (legal pages) ------------------------------------------ */
.prose { max-width: 72ch; }
.prose h2 { font-size: var(--fs-h3); margin: 2.5rem 0 1rem; }
.prose h3 { font-size: var(--fs-h4); margin: 1.8rem 0 0.8rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.prose a { color: var(--teal-700); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Responsive ---------------------------------------------------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .crew { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --header-h: 66px; }
  .nav { display: none; }
  .burger { display: flex; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .grid--3 { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .crew { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 5/4; }
  .footer { padding-bottom: 80px; }
}
@media (max-width: 560px) {
  .grid--2 { grid-template-columns: 1fr; }
  .crew { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.2rem 1.6rem; }
  .split__badge { left: 0; }
  .hero h1 { font-size: clamp(2.15rem, 1.5rem + 4vw, 3rem); max-width: 100%; }
  .hero__inner, .page-hero__inner { padding-inline: 1.15rem; }
  .page-hero h1 { font-size: clamp(2rem, 1.4rem + 4vw, 2.8rem); }
}
