/* ==========================================================================
   Kimolos Sail — Design System
   Premium Aegean look · mobile-first · accessible
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Sea / Aegean */
  --sea-900: #07263b;
  --sea-800: #0c3a55;
  --sea-700: #134d6e;
  --sea-600: #1d6f93;
  --sea-500: #2a8fb0;
  --turq-400: #3fb6c9;
  --turq-300: #79d0db;

  /* Sand / ivory */
  --sand-50:  #faf6ef;
  --sand-100: #f4ede0;
  --sand-200: #e9dcc6;

  /* Gold accent */
  --gold-600: #b1812c;
  --gold-500: #c8a14c;
  --gold-300: #e3c984;

  /* Ink / neutrals */
  --ink-900: #10212a;
  --ink-700: #2c3d45;
  --ink-600: #4b5a61;
  --ink-400: #859399;
  --white:   #ffffff;

  /* Semantic */
  --bg: var(--sand-50);
  --bg-alt: var(--white);
  --bg-deep: var(--sea-900);
  --text: var(--ink-900);
  --text-muted: var(--ink-600);
  --accent: var(--gold-600);
  --accent-soft: var(--gold-500);
  --line: rgba(16, 33, 42, 0.10);
  --line-strong: rgba(16, 33, 42, 0.16);

  /* Theming tokens — split surface vs on-dark-text so themes can override safely.
     Defaults keep the original look; theme override blocks (appended by build.py) remap them. */
  --heading: var(--sea-900);        /* h1-h4 + headings on light surfaces */
  --link: var(--sea-700);           /* inline links on light surfaces */
  --surface: var(--white);          /* card / panel / input backgrounds */
  --surface-2: var(--sand-100);     /* tinted icon chips, booking slot */
  --on-accent: var(--white);        /* text/icon sitting on the accent (primary button) */
  --icon-on-tint: var(--sea-700);   /* glyph colour on tinted icon chips */
  --header-solid: rgba(250, 246, 239, 0.92); /* solid (scrolled) header background */

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Scale (fluid) */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.4rem);

  /* Layout */
  --container: 1180px;
  --container-narrow: 880px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --section-y: clamp(3rem, 6vw, 5.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(7, 38, 59, 0.08), 0 1px 2px rgba(7, 38, 59, 0.06);
  --shadow-md: 0 10px 30px -12px rgba(7, 38, 59, 0.25);
  --shadow-lg: 0 24px 60px -20px rgba(7, 38, 59, 0.35);
  --ease: cubic-bezier(0.4, 0.14, 0.3, 1);
  --dur: 0.45s;
}

/* ---------- 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; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--gold-600); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; color: var(--heading); letter-spacing: -0.015em; }
h1 { letter-spacing: -0.02em; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { color: var(--text-muted); }
strong { color: var(--text); font-weight: 600; }
.lead { font-size: var(--step-1); color: var(--ink-700); line-height: 1.5; }

/* ---------- Helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); color: var(--sand-100); }
.section--deep h2, .section--deep h3 { color: var(--white); }
.section--deep p { color: rgba(244, 237, 224, 0.78); }
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--sea-900); color: var(--white); padding: 0.6rem 1rem; border-radius: 8px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Eyebrow + section heading */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: var(--step--1); font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent-soft); }
.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { margin-top: 0.7rem; }
.section-head p { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: var(--step-0); letter-spacing: 0.01em;
  transition: transform var(--dur) var(--ease), background-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform; text-align: center;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--gold-600); color: var(--on-accent); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--gold-500); transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-lg); }
.btn--secondary { background: transparent; color: var(--heading); border: 2px solid var(--line-strong); }
.btn--secondary:hover { border-color: var(--sea-700); background: rgba(29, 111, 147, 0.06); transform: translateY(-2px) scale(1.01); }
.btn--ghost-light { background: rgba(255, 255, 255, 0.12); color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.4); backdrop-filter: blur(4px); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: var(--step-1); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--white); letter-spacing: 0.01em; transition: color 0.3s var(--ease); }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__mark path, .brand__mark circle { transition: fill 0.3s var(--ease), stroke 0.3s var(--ease); }
.brand small { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.8; font-weight: 600; }

.nav { display: flex; align-items: center; gap: 0.3rem; }
.nav__list { display: flex; align-items: center; gap: 0.2rem; }
.nav__link {
  position: relative; padding: 0.5rem 0.85rem; border-radius: 8px;
  font-size: var(--step--1); font-weight: 500; color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--white); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.25rem; height: 1.5px; background: var(--gold-300);
}
.nav__cta { margin-left: 0.6rem; }
.nav__toggle { display: none; }

/* Scrolled / solid header */
.site-header.is-solid { background: var(--header-solid); backdrop-filter: saturate(140%) blur(10px); box-shadow: 0 1px 0 var(--line), var(--shadow-sm); }
.site-header.is-solid .brand { color: var(--heading); }
.site-header.is-solid .brand__mark .fill-light { fill: var(--link); }
.site-header.is-solid .nav__link { color: var(--text-muted); }
.site-header.is-solid .nav__link:hover, .site-header.is-solid .nav__link[aria-current="page"] { color: var(--heading); }
.site-header.is-solid .nav__toggle .bar { background: var(--heading); }

/* Non-hero pages start solid */
.site-header.header--solid-default { position: sticky; }

/* ---------- Mobile nav ---------- */
@media (max-width: 920px) {
  .nav__toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 46px; padding: 11px; border-radius: 10px; z-index: 120;
  }
  .nav__toggle .bar { display: block; height: 2px; width: 100%; background: var(--white); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
  .nav__toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav { position: fixed; inset: 0; background: var(--sea-900); flex-direction: column; justify-content: center; gap: 1.5rem; padding: 2rem; transform: translateX(100%); transition: transform 0.4s var(--ease); }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 0.4rem; width: 100%; max-width: 360px; }
  .nav__link { display: block; width: 100%; text-align: center; padding: 0.9rem; font-size: var(--step-1); color: var(--sand-100); transition: background-color 0.2s var(--ease); }
  .nav__link:focus-visible { background: rgba(255,255,255,0.15); outline: 3px solid #e3c984; outline-offset: -3px; }
  .nav__link[aria-current="page"]::after { display: none; }
  .nav__cta { margin: 0.5rem 0 0; width: 100%; max-width: 360px; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero { position: relative; display: flex; align-items: flex-end; min-height: min(92vh, 880px); padding-top: 76px; color: var(--white); overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg-fallback { position: absolute; inset: 0; z-index: -2; background: linear-gradient(165deg, var(--sea-700) 0%, var(--sea-900) 55%, #04141f 100%); }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7, 38, 59, 0.55) 0%, rgba(7, 38, 59, 0.15) 35%, rgba(7, 38, 59, 0.62) 100%); }
.hero__inner { padding-block: clamp(2.5rem, 6vw, 5rem); max-width: 760px; }
.hero__eyebrow { color: var(--gold-300); }
.hero__eyebrow::before { background: var(--gold-300); }
.hero h1 { color: var(--white); margin-top: 1rem; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3); }
.hero__sub { margin-top: 1.4rem; max-width: 56ch; font-size: var(--step-1); color: rgba(255, 255, 255, 0.92); line-height: 1.5; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.hero__trust li { display: inline-flex; align-items: center; gap: 0.55rem; font-size: var(--step--1); color: rgba(255, 255, 255, 0.9); font-weight: 500; }
.hero__trust svg { width: 1.1rem; height: 1.1rem; color: var(--gold-300); flex: none; }
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; color: var(--bg); }
.hero__wave path { fill: currentColor; }

/* Page hero (interior pages) */
.page-hero { position: relative; padding: calc(76px + clamp(3rem, 7vw, 6rem)) 0 clamp(2.5rem, 5vw, 4rem); color: var(--white); overflow: hidden; isolation: isolate; }
.page-hero__bg-fallback { position: absolute; inset: 0; z-index: -2; background: linear-gradient(150deg, var(--sea-600), var(--sea-900)); }
.page-hero__bg img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,38,59,0.55), rgba(7,38,59,0.72)); }
.page-hero h1 { color: var(--white); margin-top: 0.8rem; max-width: 18ch; font-size: var(--step-3); }
.page-hero__sub { margin-top: 1.1rem; max-width: 60ch; color: rgba(255,255,255,0.9); font-size: var(--step-1); }
.page-hero__eyebrow { color: var(--gold-300); }
.page-hero__eyebrow::before { background: var(--gold-300); }

/* Breadcrumbs */
.breadcrumbs { font-size: var(--step--1); color: rgba(255,255,255,0.75); margin-bottom: 0.6rem; letter-spacing: 0.02em; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; opacity: 0.6; }
.breadcrumbs a:hover { color: var(--white); text-decoration: underline; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }

.card {
  position: relative; display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.card__media { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(150deg, var(--sea-500), var(--sea-800)); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__tag { position: absolute; top: 0.9rem; left: 0.9rem; background: rgba(7,38,59,0.88); color: var(--white); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: var(--radius-pill); backdrop-filter: blur(4px); box-shadow: 0 2px 8px rgba(7,38,59,0.25); }
.card__body { display: flex; flex-direction: column; gap: 0.7rem; padding: clamp(1.3rem, 2.5vw, 1.8rem); flex: 1; }
.card__body h3 { color: var(--heading); }
.card__ideal { margin-top: auto; padding-top: 0.9rem; font-size: var(--step--1); color: var(--accent); font-weight: 600; font-style: italic; font-family: var(--font-display); font-size: 1.05rem; }
.card__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.4rem; font-weight: 600; font-size: var(--step--1); color: var(--link); transition: color 0.25s var(--ease); }
.card__link svg { width: 1rem; height: 1rem; transition: transform 0.25s var(--ease); }
.card:hover .card__link { color: var(--accent); }
.card:hover .card__link svg { transform: translateX(4px); }

/* Feature (why choose us) */
.feature { display: flex; flex-direction: column; gap: 0.6rem; padding: clamp(1.3rem, 2.5vw, 1.7rem); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color 0.25s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.feature__icon { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 13px; background: linear-gradient(150deg, var(--sea-500), var(--sea-800)); color: var(--white); margin-bottom: 0.4rem; }
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--step-1); color: var(--heading); }
.section--deep .feature { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.section--deep .feature h3 { color: var(--white); }
.section--deep .feature p { color: rgba(244,237,224,0.78); }

/* ---------- Process ---------- */
.steps { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); counter-reset: step; }
.step { position: relative; padding-top: 0.5rem; }
.step__num { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--gold-500); color: var(--gold-600); font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
.section--deep .step__num { color: var(--gold-300); border-color: var(--gold-300); }
.step h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }

/* ---------- Proof / stats ---------- */
.stats { display: grid; gap: clamp(1.5rem, 3vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 600; color: var(--gold-300); line-height: 1; }
.stat__label { margin-top: 0.5rem; font-size: var(--step--1); letter-spacing: 0.04em; text-transform: uppercase; color: rgba(244,237,224,0.8); }

/* ---------- Split content (destinations intro, about) ---------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } .split--media-first .split__media { order: -1; } }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; background: linear-gradient(150deg, var(--sea-500), var(--sea-900)); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body > * + * { margin-top: 1rem; }

/* Highlights list (destination pages) */
.highlights { display: grid; gap: 1rem; margin-top: 1.5rem; }
.highlight { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.2rem 1.3rem; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold-500); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.highlight__icon { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 10px; background: var(--surface-2); color: var(--icon-on-tint); }
.highlight__icon svg { width: 22px; height: 22px; }
.highlight h3 { font-size: var(--step-1); color: var(--heading); margin-bottom: 0.2rem; }
.highlight p { font-size: var(--step--1); }
.badge-boat-only { display: inline-block; margin-top: 0.4rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--turq-400); }

/* Spec grid (the boat) */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 0.9rem; margin-top: 1.5rem; }
.spec { padding: 0.9rem 1rem; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold-500); border-radius: 12px; box-shadow: var(--shadow-sm); }
.spec dt { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.spec dd { margin: 0.2rem 0 0; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--heading); line-height: 1.1; }

/* Photo credits */
.credits { display: grid; gap: 0.7rem; margin-top: 1.5rem; }
.credit { display: flex; flex-direction: column; gap: 0.2rem; padding: 0.9rem 1.1rem; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold-500); border-radius: 12px; }
.credit strong { color: var(--heading); }
.credit span { font-size: var(--step--1); color: var(--text-muted); }
.credit a { color: var(--link); font-weight: 600; }
.credit a:hover { text-decoration: underline; }

/* Prose */
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { margin-top: 2.4rem; font-size: var(--step-2); }
.prose h3 { margin-top: 1.8rem; font-size: var(--step-1); }
.prose ul { display: grid; gap: 0.8rem; }
.prose ul li { position: relative; padding-left: 1.6rem; color: var(--text-muted); line-height: 1.7; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); }
.prose strong { color: var(--heading); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.8rem; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease); }
.faq__item[open] { box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.4rem; font-family: var(--font-display); font-size: var(--step-1); font-weight: 600; color: var(--heading); list-style: none; cursor: pointer; }
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { flex: none; width: 26px; height: 26px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 13px; height: 2px; background: var(--gold-600); transform: translate(-50%, -50%); transition: transform 0.3s var(--ease); border-radius: 2px; }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a { padding: 0 1.4rem 1.3rem; }
.faq__a p { color: var(--text-muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; } }
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: var(--step--1); font-weight: 600; color: var(--heading); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font: inherit; font-size: var(--step-0); color: var(--text); background: var(--surface);
  border: 1.5px solid var(--line-strong); border-radius: 10px; padding: 0.8rem 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sea-500); box-shadow: 0 0 0 3px rgba(42, 143, 176, 0.16); }
.field textarea { min-height: 130px; resize: vertical; }
.form__note { font-size: var(--step--1); color: var(--text-muted); }
.form__success { display: none; padding: 1.1rem 1.3rem; border-radius: var(--radius); background: rgba(63, 182, 201, 0.12); border: 1px solid var(--turq-400); color: var(--heading); }
.form.is-sent .form__success { display: block; }
.form.is-sent .form__fields { display: none; }

.contact-info { display: grid; gap: 1.3rem; align-content: start; }
.contact-info__item { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.contact-info__icon { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 11px; background: var(--surface-2); color: var(--icon-on-tint); }
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__item h3 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 700; color: var(--heading); }
.contact-info__item a { color: var(--link); font-weight: 600; }
.contact-info__item a:hover { text-decoration: underline; }
.placeholder-val { color: var(--ink-400); font-style: italic; }

/* WhatsApp button */
.btn--whatsapp { background: #25d366; color: #06321a; }
.btn--whatsapp:hover { background: #2be673; transform: translateY(-2px); }

/* Booking embed slot */
.booking-slot { margin-top: 1.5rem; padding: 1.6rem; border: 2px dashed var(--line-strong); border-radius: var(--radius); background: var(--surface-2); text-align: center; color: var(--text-muted); font-size: var(--step--1); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; text-align: center; overflow: hidden; isolation: isolate; }
.cta-band__bg { position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, var(--sea-700), var(--sea-900)); }
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(244,237,224,0.85); max-width: 56ch; margin: 1rem auto 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--sea-900); color: rgba(244,237,224,0.72); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer__top { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand .brand { color: var(--white); margin-bottom: 1rem; }
.footer__brand p { max-width: 34ch; font-size: var(--step--1); }
.footer__col h4 { color: var(--white); font-family: var(--font-body); font-size: var(--step--1); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.footer__col ul { display: grid; gap: 0.6rem; }
.footer__col a { font-size: var(--step--1); transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--gold-300); }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer__social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); transition: background-color 0.2s var(--ease); }
.footer__social a:hover { background: var(--gold-600); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; align-items: center; padding-top: 1.8rem; font-size: var(--step--1); }
.footer__bottom a:hover { color: var(--gold-300); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none !important; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.flow > * + * { margin-top: 1rem; }
.wave-divider { display: block; width: 100%; height: auto; color: var(--bg-alt); }
.wave-divider path { fill: currentColor; }
