/* ============================================================
   ANDAMAN YACHT TRAVEL — Design System
   Quiet, deep luxury. Andaman teal-navy + brass gold + ivory sand.
   Display: Cormorant Garamond  ·  UI/Body: Jost
   ============================================================ */

:root {
  /* Color */
  --ink:        #0c1a22;   /* deepest navy-teal, near black */
  --ink-2:      #102530;   /* panel navy */
  --ink-3:      #163240;   /* raised navy */
  --slate:      #3a5a6b;   /* muted teal */
  --slate-2:    #6f8c98;
  --sand:       #f4efe6;   /* ivory page */
  --sand-2:     #ece4d6;   /* warmer ivory */
  --paper:      #fbf8f2;   /* card white */
  --gold:       #c2a05e;   /* brass accent */
  --gold-2:     #d8bd84;   /* lighter brass */
  --gold-deep:  #a9854a;
  --line:       rgba(12,26,34,0.14);
  --line-light: rgba(255,255,255,0.16);
  --text:       #1b2a32;
  --text-soft:  #4a5b64;
  --on-ink:     #eef0ec;
  --on-ink-soft:#a9b6bc;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", system-ui, sans-serif;

  /* Layout */
  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 84px);
  --radius: 3px;
  --shadow-lg: 0 40px 90px -40px rgba(8,18,24,0.55);
  --shadow-md: 0 24px 60px -34px rgba(8,18,24,0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--sand);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.display {
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.h-section {
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 300;
}
.h-card { font-size: clamp(26px, 2.6vw, 34px); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.on-ink { color: var(--gold-2); }

.lead {
  font-size: clamp(18px, 1.5vw, 21px);
  color: var(--text-soft);
  font-weight: 300;
  max-width: 56ch;
  text-wrap: pretty;
}
.on-ink .lead, .lead.on-ink { color: var(--on-ink-soft); }

.serif-accent { font-family: var(--serif); font-style: italic; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 11vw, 160px); position: relative; }
.section--ink { background: var(--ink); color: var(--on-ink); }
.section--ink h1,.section--ink h2,.section--ink h3 { color: var(--on-ink); }
.section--sand2 { background: var(--sand-2); }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 76px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  background: none;
}
.btn--gold { background: var(--gold); color: #1a1206; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); box-shadow: 0 16px 30px -16px rgba(170,133,74,0.7); }
.btn--ghost { border-color: rgba(255,255,255,0.4); color: var(--on-ink); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--on-ink); }
.btn--ink { border-color: var(--ink); color: var(--ink); }
.btn--ink:hover { background: var(--ink); color: var(--sand); }
.btn--block { width: 100%; }
.btn--lg { padding: 20px 40px; font-size: 14px; }

/* ---------- Image slots / placeholders ---------- */
image-slot {
  --slot-bg: #dcd2c0;
  background: var(--slot-bg);
}
image-slot::part(placeholder),
.ph {
  background-color: #d9cfbd;
  background-image:
    repeating-linear-gradient(135deg, rgba(12,26,34,0.05) 0 2px, transparent 2px 11px);
}
/* Plain CSS placeholder (non-fillable, decorative) */
.ph {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(12,26,34,0.4);
  padding: 6px 12px;
  border: 1px solid rgba(12,26,34,0.18);
  background: rgba(249,246,240,0.55);
  border-radius: 2px;
}
.ph--ink { background-color: #15303c; }
.ph--ink::after { color: rgba(238,240,236,0.6); border-color: rgba(238,240,236,0.25); background: rgba(12,26,34,0.3); }
.ph--ink { background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 11px); }

/* Style the web component's internal placeholder caption */
image-slot { border-radius: var(--radius); }

/* ---------- Divider rule ---------- */
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.rule--gold { background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ============================================================
   COMPONENTS
   ============================================================ */

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 30px; }
.nav.scrolled { background: rgba(251,248,242,0.9); backdrop-filter: blur(14px); border-color: var(--line); }
.brand { display: flex; align-items: center; gap: 14px; color: var(--on-ink); transition: color 0.5s var(--ease); }
.nav.scrolled .brand { color: var(--ink); }
.brand__mark {
  font-family: var(--serif); font-size: 18px; letter-spacing: 0.06em;
  border: 1px solid currentColor; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--gold); flex: none;
  white-space: nowrap; line-height: 1; overflow: hidden;
}
.nav.scrolled .brand__mark { color: var(--gold-deep); }
.brand__mark-dot { color: inherit; opacity: 0.7; margin: 0 1px; }
.brand__name { font-family: var(--serif); font-size: 20px; letter-spacing: 0.02em; white-space: nowrap; }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 13px; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 400;
  color: var(--on-ink); opacity: 0.9; position: relative; padding: 4px 0; transition: color 0.5s var(--ease);
}
.nav.scrolled .nav__links a { color: var(--text); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 18px; }

/* Language switcher */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: 8px; background: none; border: 0;
  color: var(--on-ink); font-size: 13px; letter-spacing: 0.08em; padding: 8px 4px;
  transition: color 0.5s var(--ease); font-weight: 400;
}
.nav.scrolled .lang__btn { color: var(--text); }
.lang__globe { display: grid; place-items: center; opacity: 0.85; }
.lang__chev { font-size: 14px; opacity: 0.7; }
.lang__menu {
  position: absolute; top: calc(100% + 12px); right: 0; min-width: 150px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); list-style: none; margin: 0; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all 0.3s var(--ease); z-index: 10;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: none; }
.lang__menu li {
  padding: 10px 14px; font-size: 14px; color: var(--text); cursor: pointer; border-radius: 2px;
  display: flex; justify-content: space-between; gap: 16px; align-items: center; transition: background 0.2s;
}
.lang__menu li:hover { background: var(--sand-2); }
.lang__menu li.active { color: var(--gold-deep); }
.lang__menu li .l-label { font-size: 12px; letter-spacing: 0.1em; opacity: 0.6; }
.nav__cta { padding: 12px 24px; }

@media (max-width: 940px) { .nav__links { display: none; } }
@media (max-width: 560px) { .brand__name { display: none; } .nav__cta { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; color: var(--on-ink); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; filter: saturate(1.32) contrast(1.07) brightness(1.04); }
.hero__bg::part(img) { width: 100%; height: 100%; }
.hero__scrim { position: absolute; inset: 0; pointer-events: none; background:
  linear-gradient(180deg, rgba(8,16,22,0) 52%, rgba(8,16,22,0.30) 80%, rgba(8,16,22,0.70) 100%); }
.hero__content { position: relative; z-index: 2; padding-bottom: clamp(36px, 5vw, 64px); padding-top: 120px; }
.hero__title { margin: 0 0 26px; max-width: 16ch; text-shadow: 0 2px 24px rgba(6,14,20,0.6), 0 1px 2px rgba(6,14,20,0.5); }
.hero__title em { font-style: italic; color: var(--gold-2); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  position: relative; z-index: 2; display: flex; gap: clamp(30px, 6vw, 90px);
  padding-top: 30px; padding-bottom: 38px; margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__statnum { font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); line-height: 1; color: var(--gold-2); }
.hero__statlbl { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-ink-soft); }
.hero__scroll { position: absolute; top: 50%; right: var(--pad); z-index: 2; width: 1px; height: 70px; background: rgba(255,255,255,0.3); }
.hero__scroll span { position: absolute; top: 0; left: 0; width: 100%; height: 30%; background: var(--gold-2); animation: scrolldown 2.4s var(--ease) infinite; }
@keyframes scrolldown { 0% { top: 0; height: 0; } 40% { top: 0; height: 60%; } 80%,100% { top: 100%; height: 0; } }
@media (max-width: 720px) { .hero__scroll { display: none; } .hero__stats { flex-wrap: wrap; gap: 24px 40px; } }

/* ---------- Fleet ---------- */
.fleet { display: flex; flex-direction: column; gap: clamp(60px, 9vw, 120px); margin-top: 20px; }
.boat { display: grid; grid-template-columns: 1.25fr 0.75fr; align-items: center; gap: clamp(34px, 5vw, 76px); }
.boat--reverse { direction: rtl; }
.boat--reverse > * { direction: ltr; }
.boat__media { position: relative; }
.boat__img { width: 100%; aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.boat__img::part(img) { width: 100%; height: 100%; }
.boat__tag {
  position: absolute; top: 20px; left: 20px; background: rgba(12,26,34,0.78); color: var(--gold-2);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding: 8px 14px; backdrop-filter: blur(4px);
}
.boat__body { padding-inline: clamp(0px, 1vw, 20px); }
.boat__head { margin-bottom: 26px; }
.boat__sub { color: var(--text-soft); font-size: 15px; letter-spacing: 0.04em; margin: 8px 0 0; }
.boat__specs { list-style: none; margin: 0 0 30px; padding: 26px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; border-block: 1px solid var(--line); }
.boat__specs li { display: flex; flex-direction: column; gap: 6px; }
.boat__specs span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-2); }
.boat__specs b { font-family: var(--serif); font-size: 26px; font-weight: 400; }
.boat__foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.boat__price { font-size: 15px; color: var(--text-soft); }
.boat__price b { font-family: var(--serif); font-size: 28px; color: var(--text); font-weight: 500; margin: 0 4px; }
.boat__price small { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
@media (max-width: 820px) {
  .boat, .boat--reverse { grid-template-columns: 1fr; direction: ltr; gap: 28px; }
  .boat__specs { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) { .boat__specs b { font-size: 22px; } }

/* ---------- Booking ---------- */
.booking { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 30px; align-items: start; }
.booking__main { background: var(--ink-2); border: 1px solid var(--line-light); border-radius: var(--radius); padding: clamp(22px, 3vw, 40px); }
.booking__field + .booking__field { margin-top: 34px; }
.booking__label { display: flex; align-items: center; gap: 14px; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-ink); margin-bottom: 18px; }
.booking__step { font-family: var(--serif); font-size: 20px; color: var(--gold-2); font-style: italic; }

.vessels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.vessel {
  text-align: left; background: var(--ink-3); border: 1px solid transparent; border-radius: var(--radius);
  padding: 16px 16px 18px; color: var(--on-ink); cursor: pointer; transition: all 0.35s var(--ease); position: relative;
}
.vessel:hover { border-color: rgba(216,189,132,0.5); transform: translateY(-2px); }
.vessel.active { border-color: var(--gold); background: #1b3845; }
.vessel__name { font-family: var(--serif); font-size: 21px; margin-bottom: 3px; }
.vessel__type { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-ink-soft); }
.vessel__rate { margin-top: 12px; font-size: 13px; color: var(--gold-2); }
.vessel__rate b { font-weight: 500; }
.vessel__check { position: absolute; top: 14px; right: 14px; width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--on-ink-soft); display: grid; place-items: center; font-size: 11px; color: var(--ink); transition: all 0.3s; }
.vessel.active .vessel__check { background: var(--gold); border-color: var(--gold); }
.vessel.active .vessel__check::after { content: "✓"; }
@media (max-width: 560px) { .vessels { grid-template-columns: 1fr; } }

.cal { color: var(--on-ink); }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cal__title { font-family: var(--serif); font-size: 22px; letter-spacing: 0.02em; }
.cal__nav { width: 40px; height: 40px; border: 1px solid var(--line-light); background: none; color: var(--on-ink); border-radius: 50%; font-size: 18px; transition: all 0.3s; }
.cal__nav:hover { border-color: var(--gold); color: var(--gold-2); }
.cal__nav:disabled { opacity: 0.25; cursor: not-allowed; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__dow { margin-bottom: 8px; }
.cal__dow span { text-align: center; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-ink-soft); padding: 4px 0; }
.cal__cell {
  aspect-ratio: 1; display: grid; place-items: center; font-size: 15px; border-radius: 2px; cursor: pointer;
  background: rgba(255,255,255,0.04); color: var(--on-ink); border: 1px solid transparent; transition: background 0.2s, color 0.2s; position: relative;
}
.cal__cell:hover:not(.is-disabled):not(.is-booked) { background: rgba(216,189,132,0.22); }
.cal__cell.is-empty { background: none; cursor: default; }
.cal__cell.is-disabled { color: rgba(169,182,188,0.3); cursor: not-allowed; background: none; }
.cal__cell.is-booked { color: rgba(169,182,188,0.4); cursor: not-allowed; background: rgba(255,255,255,0.02); text-decoration: line-through; }
.cal__cell.is-booked::after { content: ""; position: absolute; bottom: 5px; width: 4px; height: 4px; border-radius: 50%; background: var(--slate); }
.cal__cell.in-range { background: rgba(194,160,94,0.18); border-radius: 0; }
.cal__cell.is-start, .cal__cell.is-end { background: var(--gold); color: #1a1206; font-weight: 500; }
.cal__cell.is-start { border-radius: 2px 0 0 2px; }
.cal__cell.is-end { border-radius: 0 2px 2px 0; }
.cal__cell.is-start.is-end { border-radius: 2px; }
.cal__legend { display: flex; gap: 22px; margin-top: 20px; flex-wrap: wrap; }
.cal__legend span { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--on-ink-soft); letter-spacing: 0.04em; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot--avail { background: rgba(255,255,255,0.18); }
.dot--booked { background: var(--slate); }
.dot--sel { background: var(--gold); }

/* Quote panel */
.booking__side { position: sticky; top: 100px; }
.quote { background: var(--paper); color: var(--text); border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-lg); }
.quote__hint { font-family: var(--serif); font-size: 22px; color: var(--slate); text-align: center; padding: 50px 10px; font-style: italic; }
.quote__boatimg { width: 100%; aspect-ratio: 16/9; margin-bottom: 16px; }
.quote__boatimg image-slot { width: 100%; height: 100%; }
.quote__boatname { font-family: var(--serif); font-size: 28px; margin-bottom: 20px; }
.quote__row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.quote__row span { color: var(--text-soft); }
.quote__row b { font-weight: 500; }
.quote__row--rate { border: 0; color: var(--text-soft); }
.quote__total { display: flex; align-items: baseline; justify-content: space-between; margin: 6px 0 4px; }
.quote__total span { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft); }
.quote__total b { font-family: var(--serif); font-size: 38px; font-weight: 500; color: var(--ink); }
.quote__warn { color: #b4502f; font-size: 13px; margin: 8px 0 0; }
.quote__fine { font-size: 12px; color: var(--slate-2); line-height: 1.5; margin: 12px 0 20px; }
.stepper { display: flex; align-items: center; gap: 12px; }
.stepper button { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); background: none; color: var(--ink); font-size: 16px; line-height: 1; transition: all 0.25s; }
.stepper button:hover { border-color: var(--gold); background: var(--sand); }
.stepper b { font-weight: 500; min-width: 18px; text-align: center; }
@media (max-width: 920px) { .booking { grid-template-columns: 1fr; } .booking__side { position: static; } }

/* ---------- Destinations ---------- */
.dests { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 10px; }
.dest { position: relative; grid-column: span 2; overflow: hidden; border-radius: var(--radius); display: block; }
.dest--wide { grid-column: span 3; }
.dest__img { width: 100%; aspect-ratio: 4/5; transition: transform 1.1s var(--ease); }
.dest--wide .dest__img { aspect-ratio: 16/10; }
.dest__img::part(img) { width: 100%; height: 100%; }
.dest:hover .dest__img { transform: scale(1.05); }
.dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,16,22,0.82)); pointer-events: none; }
.dest__cap { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; color: var(--on-ink); }
.dest__n { font-size: 12px; letter-spacing: 0.2em; color: var(--gold-2); }
.dest__cap h3 { font-size: clamp(24px, 2.4vw, 32px); margin: 4px 0 4px; color: var(--on-ink); }
.dest__cap p { margin: 0; font-size: 14px; color: rgba(238,240,236,0.85); }
@media (max-width: 860px) {
  .dests { grid-template-columns: repeat(2, 1fr); }
  .dest, .dest--wide { grid-column: span 1; }
  .dest__img, .dest--wide .dest__img { aspect-ratio: 4/5; }
}

/* ---------- Onboard experience ---------- */
.exp { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.exp__feature { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 0; align-items: stretch; border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; }
.exp__feature .exp__img { width: 100%; height: 100%; min-height: 380px; }
.exp__feature .exp__txt { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; gap: 16px; background: var(--ink-2); }
.exp__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.exp__card { border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.exp__img::part(img) { width: 100%; height: 100%; }
.exp__img--sq { width: 100%; aspect-ratio: 16/10; }
.exp__card .exp__txt { padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; gap: 14px; background: var(--ink-2); flex: 1; }
.exp .lead { font-size: 17px; }
@media (max-width: 820px) { .exp__feature { grid-template-columns: 1fr; } .exp__pair { grid-template-columns: 1fr; } .exp__feature .exp__img { min-height: 280px; } }

/* ---------- Sea band (full-bleed) ---------- */
.band { position: relative; min-height: clamp(420px, 70vh, 720px); display: grid; place-items: center; overflow: hidden; color: var(--on-ink); }
.band__bg { position: absolute; inset: 0; width: 100%; height: 100%; filter: saturate(1.22) contrast(1.04); }
.band__bg::part(image) { width: 100%; height: 100%; }
.band__scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(8,16,22,0.32) 0%, rgba(8,16,22,0.18) 50%, rgba(8,16,22,0.46) 100%); }
.band__content { position: relative; z-index: 2; text-align: center; padding-block: 40px; }
.band__line { font-family: var(--serif); font-weight: 300; font-size: clamp(30px, 4.4vw, 58px); line-height: 1.08; max-width: 20ch; margin: 16px auto 0; text-shadow: 0 2px 26px rgba(6,14,20,0.55); text-wrap: balance; }

/* ---------- Onboard menu strip ---------- */.menu { margin-top: 8px; }
.menu__eyebrow { justify-content: center; margin-bottom: 30px; }
.menu__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.menu__tile { margin: 0; }
.menu__img { width: 100%; aspect-ratio: 1/1; border: 1px solid var(--line-light); }
.menu__img::part(image) { width: 100%; height: 100%; }
.menu__cap { margin-top: 14px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-ink-soft); text-align: center; }
@media (max-width: 860px) { .menu__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .menu__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Onboard feast / buffet ---------- */
.feast { margin-top: 6px; }
.feast__head { text-align: center; max-width: 660px; margin: 0 auto clamp(30px, 4vw, 46px); }
.menu__eyebrow { justify-content: center; margin-bottom: 18px; }
.feast__intro { color: var(--on-ink-soft); font-size: 17px; line-height: 1.65; margin: 0; }
.feast__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: clamp(34px, 5vw, 52px); }
.feast__img { width: 100%; height: auto; aspect-ratio: 4/5; border: 1px solid var(--line-light); }
.feast__img::part(image) { width: 100%; height: 100%; }
.feast__menu { list-style: none; margin: 0 auto; padding: 0; max-width: 980px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(34px, 6vw, 80px); }
.feast__menu li { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--line-light); }
.feast__menu b { font-family: var(--serif); font-weight: 400; font-size: clamp(19px, 2vw, 23px); color: var(--on-ink); white-space: nowrap; }
.feast__menu span { font-size: 13px; color: var(--on-ink-soft); text-align: right; letter-spacing: 0.02em; }
@media (max-width: 760px) {
  .feast__gallery { grid-template-columns: 1fr 1fr; }
  .feast__menu { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 460px) { .feast__gallery { grid-template-columns: 1fr; } }

/* ---------- Concierge ---------- */
.concierge { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 90px); align-items: center; }
.concierge__img { width: 100%; aspect-ratio: 4/5; }
.concierge__img::part(img) { width: 100%; height: 100%; }
.concierge__txt { display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 820px) { .concierge { grid-template-columns: 1fr; } .concierge__img { aspect-ratio: 16/10; } }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 90px); align-items: center; }
.about__txt { display: flex; flex-direction: column; gap: 20px; }
.about__img { width: 100%; aspect-ratio: 5/4; }
.about__img::part(img) { width: 100%; height: 100%; }
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.faq .section-head { margin-bottom: 0; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--serif); font-size: clamp(20px, 2vw, 25px); color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--gold-deep); transition: transform 0.35s var(--ease); }
.faq__plus::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq__plus::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq__item[open] .faq__plus::after { transform: translateX(-50%) scaleY(0); }
.faq__a { overflow: hidden; }
.faq__a p { margin: 0 0 26px; max-width: 60ch; color: var(--text-soft); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 80px); align-items: start; }
.contact__intro { display: flex; flex-direction: column; gap: 18px; }
.contact__direct { margin-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.contact__or { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 4px; }
.contact__line { display: flex; align-items: center; gap: 14px; color: var(--on-ink); font-size: 16px; transition: color 0.3s; }
.contact__line:hover { color: var(--gold-2); }
.contact__ico { width: 34px; height: 34px; border: 1px solid var(--line-light); border-radius: 50%; display: grid; place-items: center; color: var(--gold-2); flex: none; }
.contact__addr { color: var(--on-ink-soft); font-size: 14px; margin: 8px 0 0; }
.contact__form { background: var(--ink-2); border: 1px solid var(--line-light); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 44px); display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ink-soft); }
.field input, .field textarea {
  background: var(--ink-3); border: 1px solid var(--line-light); border-radius: var(--radius); color: var(--on-ink);
  font-family: var(--sans); font-size: 16px; padding: 14px 16px; transition: border-color 0.3s; resize: vertical;
}
.field input::placeholder { color: rgba(169,182,188,0.5); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.contact__sent { color: var(--gold-2); font-size: 14px; text-align: center; margin: 4px 0 0; }
@media (max-width: 820px) { .contact { grid-template-columns: 1fr; } .field2 { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.foot { background: var(--ink); color: var(--on-ink-soft); padding-top: 64px; }
.foot__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 44px; }
.foot__brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.foot__brand .brand__mark { color: var(--gold); }
.foot__brand p { margin: 0; font-size: 15px; line-height: 1.6; }
.foot__links { display: flex; flex-wrap: wrap; gap: 14px 30px; align-content: start; }
.foot__links a { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.3s; }
.foot__links a:hover { color: var(--gold-2); }
.foot__base { border-top: 1px solid var(--line-light); padding: 24px 0; font-size: 13px; letter-spacing: 0.06em; }

/* ---------- Floating contact ---------- */
.float { position: fixed; right: clamp(16px, 3vw, 32px); bottom: clamp(16px, 3vw, 32px); z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.float__btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); transition: transform 0.3s var(--ease); }
.float__btn:hover { transform: scale(1.08); }
.float__btn--wa { background: #25d366; }
.float__btn--call { background: var(--gold); color: #1a1206; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__scrim { position: absolute; inset: 0; background: rgba(8,16,22,0.7); backdrop-filter: blur(4px); animation: fade 0.4s; }
.modal__card { position: relative; background: var(--paper); border-radius: var(--radius); padding: clamp(32px, 5vw, 54px); max-width: 480px; text-align: center; box-shadow: var(--shadow-lg); animation: pop 0.5s var(--ease); }
.modal__x { position: absolute; top: 16px; right: 18px; background: none; border: 0; font-size: 26px; color: var(--slate); line-height: 1; }
.modal__mark { font-size: 30px; color: var(--gold); margin-bottom: 14px; }
.modal__sum { font-family: var(--serif); font-size: 19px; color: var(--slate); margin: 14px 0; font-style: italic; }
.modal__body { color: var(--text-soft); font-size: 16px; margin-bottom: 28px; }
.modal__btns { display: flex; gap: 12px; justify-content: center; }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(0.97); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   CHECKOUT / BOOKING PAGE
   ============================================================ */
.co-body { background: var(--sand); }
.co-nav { border-bottom: 1px solid var(--line); background: var(--paper); }
.co-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.co-nav .brand { color: var(--ink); }
.co-nav .brand__mark { color: var(--gold-deep); }
.co-nav__secure { display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate); }
.co-nav__back { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft); transition: color 0.3s; }
.co-nav__back::before { content: "← "; }
.co-nav__back:hover { color: var(--gold-deep); }
@media (max-width: 560px) { .co-nav__secure { display: none; } }

.co-empty { padding: clamp(60px, 12vw, 140px) 0; max-width: 560px; }
.co-empty .lead { margin-bottom: 24px; }

.checkout { padding: clamp(36px, 6vw, 72px) 0 100px; }
.co-head { margin-bottom: clamp(28px, 4vw, 48px); }
.co-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(24px, 4vw, 52px); align-items: start; }
@media (max-width: 900px) { .co-grid { grid-template-columns: 1fr; } }

.co-form { display: flex; flex-direction: column; gap: 22px; }
.co-card { border: 1px solid var(--line); background: var(--paper); border-radius: var(--radius); padding: clamp(22px, 3vw, 36px); margin: 0; }
.co-card__title { display: flex; align-items: center; gap: 12px; width: 100%; white-space: nowrap; font-family: var(--serif); font-size: clamp(22px, 2.4vw, 28px); color: var(--ink); padding: 0; margin-bottom: 24px; }
.co-step { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--gold-deep); border: 1px solid var(--gold); border-radius: 50%; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; flex: none; }

.co-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.co-field:last-child { margin-bottom: 0; }
.co-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.co-field label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); }
.co-opt { text-transform: none; letter-spacing: 0; color: var(--slate-2); font-size: 12px; }
.co-field input, .co-field textarea {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--text);
  font-family: var(--sans); font-size: 16px; padding: 13px 15px; transition: border-color 0.25s, box-shadow 0.25s; resize: vertical; width: 100%;
}
.co-field input:focus, .co-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(194,160,94,0.16); }
.co-field input[readonly] { background: var(--sand-2); color: var(--text-soft); }
.co-field input.co-bad, .co-field textarea.co-bad { border-color: #b4502f; box-shadow: 0 0 0 3px rgba(180,80,47,0.12); }
.co-field--card { position: relative; }
.co-cardmarks { position: absolute; right: 12px; bottom: 12px; display: flex; gap: 5px; }
.co-cardmarks i { font-style: normal; font-size: 9px; letter-spacing: 0.06em; font-weight: 500; color: var(--slate-2); border: 1px solid var(--line); border-radius: 3px; padding: 3px 5px; background: var(--paper); }

.pay-opts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.pay-opt { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; cursor: pointer; transition: all 0.25s var(--ease); }
.pay-opt:hover { border-color: var(--gold); }
.pay-opt.is-active { border-color: var(--gold); background: #fbf6ec; }
.pay-opt input { accent-color: var(--gold-deep); width: 18px; height: 18px; flex: none; }
.pay-opt__main { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.pay-opt__label { font-size: 15px; color: var(--ink); font-weight: 500; }
.pay-opt__sub { font-size: 13px; color: var(--text-soft); }
.pay-opt__amt { font-family: var(--serif); font-size: 22px; color: var(--ink); }

.co-secure { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--slate); line-height: 1.5; margin: 20px 0 0; }
.co-secure svg { flex: none; margin-top: 2px; color: var(--gold-deep); }
.co-terms { font-size: 12px; color: var(--slate-2); text-align: center; line-height: 1.5; margin: 4px 0 0; }

/* Summary */
.co-summary { position: sticky; top: 96px; }
.co-sum-card { border: 1px solid var(--line); background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.co-sum-media { aspect-ratio: 16/10; background: var(--sand-2); }
.co-sum-media img { width: 100%; height: 100%; object-fit: cover; }
.co-sum-body { padding: clamp(22px, 3vw, 30px); }
.co-sum-boat { margin-bottom: 20px; }
.co-sum-boat h2 { font-family: var(--serif); font-weight: 400; font-size: 28px; }
.co-sum-boat p { margin: 4px 0 0; font-size: 13px; letter-spacing: 0.06em; color: var(--text-soft); }
.co-sum-rows { display: flex; flex-direction: column; }
.co-sum-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; gap: 14px; }
.co-sum-row span { color: var(--text-soft); }
.co-sum-row b { font-weight: 500; text-align: right; }
.co-sum-row--soft { border: 0; color: var(--text-soft); }
.co-sum-total { display: flex; align-items: baseline; justify-content: space-between; margin-top: 4px; }
.co-sum-total span { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft); }
.co-sum-total b { font-family: var(--serif); font-size: 30px; color: var(--ink); }
.co-sum-due { display: flex; align-items: baseline; justify-content: space-between; margin-top: 14px; padding: 14px 16px; background: var(--ink); border-radius: var(--radius); }
.co-sum-due span { font-size: 13px; color: var(--on-ink-soft); }
.co-sum-due b { font-family: var(--serif); font-size: 24px; color: var(--gold-2); }
.co-sum-note { font-size: 13px; color: var(--gold-deep); margin: 16px 0 0; }
.co-sum-help { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.co-sum-help span { color: var(--text-soft); }
.co-sum-help a { color: var(--gold-deep); }
.co-sum-help a:hover { text-decoration: underline; }

/* Confirmation */
.co-confirm { display: grid; place-items: center; padding: clamp(48px, 9vw, 120px) 0; }
.co-confirm__card { max-width: 620px; text-align: center; }
.co-confirm__mark { font-size: 34px; color: var(--gold); margin-bottom: 18px; }
.co-confirm__card h1 { margin-bottom: 16px; }
.co-confirm__ref { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 32px 0 20px; }
.co-confirm__ref div { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 28px; background: var(--paper); }
.co-confirm__ref span { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate); margin-bottom: 6px; }
.co-confirm__ref b { font-family: var(--serif); font-size: 24px; color: var(--ink); }
.co-confirm__sum { font-size: 15px; color: var(--text-soft); max-width: 52ch; margin: 0 auto 30px; line-height: 1.6; }
.co-confirm__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

