/* ============================================================
   AnchorsBook — Coastal-luxury design system
   Palette keyed to logo.webp (petrol-teal mark, navy wordmark,
   golden-amber bookmark) + sea/sunset photography.
   ============================================================ */

:root {
  /* core palette (per CLAUDE-DESIGN.md §Palette) */
  --bg: #0B2A3A;          /* deep marine navy — dark sections / hero overlays */
  --surface: #FFFFFF;
  --surface-alt: #F2F7F9;
  --text: #0E2230;
  --muted: #5E7480;
  --primary: #127F9E;     /* petrol-teal — brand, links */
  --primary-dk: #0E6B86;
  --secondary: #103A5A;   /* deep marine navy — depth */
  --accent: #E8A93C;      /* golden-amber — ONE cta colour */
  --accent-dk: #D6952A;
  --aqua: #5FC4D6;        /* bright water accent (sparing) */
  --border: #D8E4E8;
  --focus: #E8A93C;

  /* derived */
  --ink-on-dark: #EaF3F6;
  --muted-on-dark: #9DB6C1;
  --navy-2: #0F3346;
  --navy-3: #14415A;

  /* type */
  --font-display: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* radii / shadow */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(14, 34, 48, .06), 0 2px 8px rgba(14, 34, 48, .05);
  --shadow: 0 6px 18px rgba(14, 34, 48, .08), 0 2px 6px rgba(14, 34, 48, .05);
  --shadow-lg: 0 24px 60px rgba(11, 42, 58, .16), 0 8px 24px rgba(11, 42, 58, .10);

  /* layout */
  --maxw: 1240px;
  --gutter: clamp(18px, 4vw, 48px);
  --nav-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--secondary);
  line-height: 1.08;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: var(--primary); text-decoration: none; }

:focus-visible {
  outline: 2.5px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

button { font-family: inherit; cursor: pointer; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1480px; margin: 0 auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(56px, 9vw, 116px); }
.section-sm { padding-block: clamp(40px, 6vw, 72px); }
.section-alt { background: var(--surface-alt); }
.section-navy { background: var(--bg); color: var(--ink-on-dark); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-navy .eyebrow { color: var(--aqua); }

.h-display { font-size: clamp(2rem, 5.4vw, 3.6rem); }
.h-section { font-size: clamp(1.7rem, 3.8vw, 2.7rem); }
.lede { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--muted); line-height: 1.6; max-width: 60ch; }
.section-navy .lede { color: var(--muted-on-dark); }

.center { text-align: center; }
.center .lede, .center .eyebrow { margin-inline: auto; }
.center .eyebrow { display: inline-flex; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  min-height: 50px;
  transition: transform .18s ease, box-shadow .22s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn svg { flex: 0 0 auto; }

.btn-accent { background: var(--accent); color: #2A1B02; box-shadow: 0 8px 22px rgba(232,169,60,.32); }
.btn-accent:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(232,169,60,.42); color:#2A1B02; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-2px); box-shadow: var(--shadow); color:#fff; }

.btn-wa { background: #1FA855; color: #fff; }
.btn-wa:hover { background: #198f48; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(31,168,85,.34); color:#fff; }

.btn-ghost { background: transparent; color: var(--secondary); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--surface-alt); }

.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.42); backdrop-filter: blur(4px); }
.btn-outline-light:hover { background: rgba(255,255,255,.16); color:#fff; border-color:#fff; transform: translateY(-2px); }

.btn-sm { padding: 10px 18px; min-height: 42px; font-size: 14px; }
.btn-lg { padding: 16px 32px; min-height: 56px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ---------- chips / pills ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  font-family: var(--font-display);
  padding: 6px 13px; border-radius: 999px;
  background: var(--surface-alt); color: var(--secondary);
  border: 1px solid var(--border);
}
.chip-accent { background: rgba(232,169,60,.14); color: #946206; border-color: rgba(232,169,60,.4); }
.chip-teal { background: rgba(18,127,158,.1); color: var(--primary-dk); border-color: rgba(18,127,158,.25); }

/* ---------- navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 90;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.nav.scrolled { box-shadow: 0 6px 22px rgba(14,34,48,.07); border-bottom-color: var(--border); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); width: 100%; display: flex; align-items: center; gap: 20px; }
.nav-logo { display: flex; align-items: center; height: 100%; }
.nav-logo img { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 18px; }
.nav-link {
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  color: var(--secondary); padding: 9px 14px; border-radius: 999px;
  transition: background .18s, color .18s; position: relative;
}
.nav-link:hover { background: var(--surface-alt); color: var(--primary); }
.nav-link.active { color: var(--primary); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; margin-left: auto; background: none; border: 1.5px solid var(--border); border-radius: 12px; width: 46px; height: 46px; align-items: center; justify-content: center; color: var(--secondary); }

/* mobile menu sheet */
.mobile-sheet {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg); color: #fff;
  display: flex; flex-direction: column;
  padding: 22px var(--gutter) 40px;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-sheet.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-sheet-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-sheet-top img { height: 46px; filter: brightness(0) invert(1); }
.mobile-sheet-close { background: rgba(255,255,255,.1); border: none; color:#fff; width: 46px; height: 46px; border-radius: 12px; display:flex; align-items:center; justify-content:center; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-top: 34px; }
.mobile-nav-links a { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: #fff; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); display:flex; justify-content: space-between; align-items:center; }
.mobile-nav-links a .ar { color: var(--aqua); }
.mobile-sheet-cta { margin-top: auto; display: grid; gap: 12px; padding-top: 28px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(92vh, 860px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,42,58,.34) 0%, rgba(11,42,58,.06) 32%, rgba(11,42,58,.5) 74%, rgba(8,28,40,.92) 100%),
    linear-gradient(95deg, rgba(11,42,58,.62) 0%, rgba(11,42,58,.12) 60%);
}
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) clamp(48px, 7vw, 92px); width: 100%; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6.6vw, 5rem); line-height: 1.02; max-width: 16ch; }
.hero .lede { color: rgba(255,255,255,.92); max-width: 52ch; margin-top: 22px; font-size: clamp(1.08rem, 1.9vw, 1.4rem); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.24);
  padding: 8px 16px 8px 8px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px; letter-spacing: .02em;
  margin-bottom: 22px;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 4px rgba(95,196,214,.25); }

/* ---------- trust strip ---------- */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.trust-item { background: var(--surface); padding: 26px 22px; display: flex; flex-direction: column; gap: 8px; }
.trust-item .ti-icon { color: var(--primary); }
.trust-item h4 { font-size: 16px; color: var(--secondary); }
.trust-item p { font-size: 13.5px; color: var(--muted); line-height: 1.45; }

/* ---------- cards generic ---------- */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }

/* media frame helper for missing-imagery / placeholders */
.ph {
  background:
    repeating-linear-gradient(45deg, #e7eef1 0 12px, #eef4f6 12px 24px);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12.5px; letter-spacing: .03em;
  text-align: center; padding: 18px;
}

/* ---------- audience split ---------- */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.aud-card { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.aud-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s ease; }
.aud-card::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(11,42,58,.1) 0%, rgba(11,42,58,.45) 50%, rgba(8,26,38,.92) 100%); }
.aud-card:hover img { transform: scale(1.05); }
.aud-body { padding: 32px; width: 100%; }
.aud-body .tag { font-family: var(--font-display); font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--aqua); }
.aud-body h3 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 8px 0 10px; }
.aud-body p { color: rgba(255,255,255,.88); font-size: 15.5px; max-width: 42ch; margin-bottom: 20px; }

/* ---------- yacht card ---------- */
.yacht-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.yacht-card { display: flex; flex-direction: column; cursor: pointer; }
.yc-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-alt); }
.yc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.yacht-card:hover .yc-media img { transform: scale(1.06); }
.yc-len { position: absolute; top: 14px; left: 14px; }
.yc-type { position: absolute; top: 14px; right: 14px; background: rgba(11,42,58,.66); color:#fff; backdrop-filter: blur(4px); border:none; }
.yc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.yc-body h3 { font-size: 1.28rem; color: var(--secondary); }
.yc-specs { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 13.5px; font-weight: 500; }
.yc-specs span { display: inline-flex; align-items: center; gap: 6px; }
.yc-desc { color: var(--muted); font-size: 14.5px; line-height: 1.5; flex: 1; }
.yc-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; border-top: 1px solid var(--border); margin-top: 4px; }
.yc-foot .from { font-size: 12.5px; color: var(--muted); }
.yc-foot .from b { display:block; font-family: var(--font-display); color: var(--secondary); font-size: 15px; font-weight: 700; }

/* ---------- fleet filter bar ---------- */
.filterbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.fb-btn { font-family: var(--font-display); font-weight: 600; font-size: 14px; padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--border); background: var(--surface); color: var(--secondary); transition: all .18s; min-height: 44px; }
.fb-btn:hover { border-color: var(--primary); color: var(--primary); }
.fb-btn.active { background: var(--secondary); border-color: var(--secondary); color: #fff; }

/* ---------- experience card ---------- */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.exp-card { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 320px; display: flex; align-items: flex-end; color: #fff; cursor: pointer; isolation: isolate; }
.exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .55s ease; }
.exp-card::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(11,42,58,0) 28%, rgba(11,42,58,.5) 62%, rgba(8,26,38,.92) 100%); }
.exp-card:hover img { transform: scale(1.07); }
.exp-body { padding: 22px; width: 100%; }
.exp-body h3 { color:#fff; font-size: 1.32rem; margin-bottom: 6px; }
.exp-body p { color: rgba(255,255,255,.86); font-size: 14px; line-height: 1.45; }
.exp-body .arrow { display:inline-flex; align-items:center; gap:7px; margin-top: 14px; font-family: var(--font-display); font-weight:600; font-size:13.5px; color: var(--aqua); }

/* tall variant */
.exp-grid .span2 { grid-column: span 2; }
.exp-grid .row2 { grid-row: span 2; }

/* ---------- owner revenue table ---------- */
.rev-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; background: var(--surface); }
.rev-table th, .rev-table td { padding: 16px 20px; text-align: left; font-size: 15px; }
.rev-table thead th { background: var(--secondary); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; letter-spacing: .04em; }
.rev-table tbody tr:nth-child(even) { background: var(--surface-alt); }
.rev-table tbody td:first-child { font-weight: 600; color: var(--secondary); font-family: var(--font-display); }
.rev-table tbody td:last-child { font-weight: 700; color: var(--primary-dk); font-family: var(--font-display); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 6px; }
.step .num { font-family: var(--font-display); font-weight: 700; font-size: 14px; width: 40px; height: 40px; border-radius: 50%; display:flex; align-items:center; justify-content:center; background: rgba(18,127,158,.1); color: var(--primary); margin-bottom: 16px; border: 1px solid rgba(18,127,158,.22); }
.section-navy .step .num { background: rgba(95,196,214,.16); color: var(--aqua); border-color: rgba(95,196,214,.3); }
.step h4 { font-size: 17px; color: var(--secondary); margin-bottom: 8px; }
.section-navy .step h4 { color: #fff; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.section-navy .step p { color: var(--muted-on-dark); }

/* ---------- forms ---------- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--secondary); }
.field label .opt { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15.5px; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--surface); width: 100%; transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(18,127,158,.14); }
.field textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.form-success { background: rgba(31,168,85,.08); border: 1px solid rgba(31,168,85,.3); border-radius: var(--r); padding: 28px; text-align: center; }
.form-success .ok { width: 56px; height: 56px; border-radius: 50%; background: #1FA855; color:#fff; display:flex; align-items:center; justify-content:center; margin: 0 auto 16px; }
.form-success h3 { color: var(--secondary); margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15px; }

/* ---------- attribution / footnote ---------- */
.attrib { font-size: 12.5px; color: var(--muted); font-style: italic; }
.section-navy .attrib { color: var(--muted-on-dark); }

/* ---------- app promo ---------- */
.app-band { background: linear-gradient(120deg, var(--secondary) 0%, var(--primary) 120%); color:#fff; border-radius: var(--r-xl); padding: clamp(34px, 5vw, 60px); overflow: hidden; position: relative; }
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.store-badge { display: inline-flex; align-items: center; gap: 11px; background: #0c0c0c; color:#fff; padding: 11px 20px; border-radius: 14px; border: 1px solid rgba(255,255,255,.15); transition: transform .18s, background .2s; }
.store-badge:hover { transform: translateY(-2px); background: #1c1c1c; color:#fff; }
.store-badge small { display:block; font-size: 10px; opacity: .8; letter-spacing: .04em; text-transform: uppercase; line-height: 1.2; }
.store-badge b { display:block; font-family: var(--font-display); font-size: 16px; font-weight: 600; line-height: 1.1; }

/* ---------- cta band ---------- */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; color:#fff; }
.cta-band img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; z-index:-2; }
.cta-band::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(100deg, rgba(8,26,38,.92) 0%, rgba(11,42,58,.72) 55%, rgba(11,42,58,.5) 100%); }
.cta-band-inner { padding: clamp(40px, 6vw, 84px) clamp(28px, 5vw, 72px); }

/* ---------- footer ---------- */
.footer { background: var(--bg); color: var(--muted-on-dark); padding-top: clamp(56px, 7vw, 84px); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer-logo img { height: 60px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .96; }
.footer p.tag { color: var(--muted-on-dark); font-size: 14.5px; max-width: 30ch; line-height: 1.55; }
.footer h5 { font-family: var(--font-display); color:#fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a, .footer-contact a { color: var(--muted-on-dark); font-size: 14.5px; transition: color .18s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--aqua); }
.footer-contact { display: flex; flex-direction: column; gap: 13px; font-size: 14.5px; }
.footer-contact .fc-row { display:flex; gap: 11px; align-items: flex-start; }
.footer-contact .fc-row svg { flex: 0 0 auto; margin-top: 3px; color: var(--aqua); }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; color: var(--ink-on-dark); transition: background .2s, transform .2s, color .2s; }
.socials a:hover { background: var(--primary); color:#fff; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0 30px; display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between; font-size: 13px; color: var(--muted-on-dark); }
.footer-bottom .legal { display:flex; gap: 20px; flex-wrap: wrap; }

/* ---------- whatsapp fab + mobile bar ---------- */
.wa-fab { position: fixed; right: 20px; bottom: 22px; z-index: 80; width: 58px; height: 58px; border-radius: 50%; background: #1FA855; color:#fff; display:flex; align-items:center; justify-content:center; box-shadow: 0 10px 28px rgba(31,168,85,.42); border: none; transition: transform .2s; }
.wa-fab:hover { transform: scale(1.07); }
.wa-fab::after { content:""; position:absolute; inset:0; border-radius:50%; border: 2px solid rgba(31,168,85,.5); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0%{ transform: scale(1); opacity:.7;} 100%{ transform: scale(1.5); opacity:0;} }

.mobile-bar { display: none; }

/* ---------- map placeholder ---------- */
.map-ph { border: 1.5px dashed var(--border); border-radius: var(--r-lg); background: var(--surface-alt); min-height: 320px; display:flex; flex-direction: column; align-items:center; justify-content:center; gap: 12px; text-align:center; padding: 30px; }
.map-ph .pin { width: 54px; height: 54px; border-radius: 50%; background: rgba(18,127,158,.1); color: var(--primary); display:flex; align-items:center; justify-content:center; }
.map-ph code { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12.5px; color: var(--muted); background: var(--surface); padding: 4px 10px; border-radius: 6px; border: 1px solid var(--border); }

/* ---------- detail page gallery ---------- */
.gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; }
.gallery .g-main { aspect-ratio: 16/10; border-radius: var(--r-lg); overflow: hidden; }
.gallery .g-main img { width:100%; height:100%; object-fit: cover; }
.gallery .g-side { display: grid; grid-template-rows: 1fr 1fr; gap: 14px; }
.gallery .g-side > div { border-radius: var(--r); overflow: hidden; }
.gallery .g-side img { width:100%; height:100%; object-fit: cover; }

.detail-grid { display:grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: start; }
.detail-aside { position: sticky; top: calc(var(--nav-h) + 20px); }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.spec-list .sl { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 18px; }
.spec-list .sl small { display:block; color: var(--muted); font-size: 12.5px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 4px; }
.spec-list .sl b { font-family: var(--font-display); color: var(--secondary); font-size: 18px; }
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px; }
.incl li { display:flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text); list-style: none; }
.incl li svg { flex:0 0 auto; color: var(--primary); margin-top: 3px; }
.incl { padding: 0; margin: 0; }

.quote-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow); }
.quote-box .qb-price { display:flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.quote-box .qb-price b { font-family: var(--font-display); font-size: 1.5rem; color: var(--secondary); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa-fab::after { animation: none; }
}

/* ---------- breadcrumb / page header ---------- */
.page-head { background: var(--secondary); color:#fff; padding: clamp(40px,6vw,72px) 0 clamp(36px,5vw,56px); position: relative; overflow:hidden; }
.page-head::before { content:""; position:absolute; right:-80px; top:-80px; width: 320px; height:320px; border-radius:50%; background: radial-gradient(circle, rgba(95,196,214,.18), transparent 70%); }
.page-head h1 { color:#fff; font-size: clamp(2rem, 4.6vw, 3.2rem); }
.page-head .lede { color: rgba(255,255,255,.85); margin-top: 14px; }
.crumb { display:flex; gap: 8px; align-items:center; font-size: 13.5px; color: var(--aqua); margin-bottom: 16px; font-family: var(--font-display); font-weight: 500; }
.crumb a { color: rgba(255,255,255,.7); }
.crumb a:hover { color:#fff; }

/* ---------- misc ---------- */
.divider-anchor { display:flex; align-items:center; justify-content:center; gap: 16px; color: var(--border); }
.divider-anchor::before, .divider-anchor::after { content:""; height:1px; background: var(--border); flex:1; max-width: 120px; }
.divider-anchor svg { color: var(--accent); }

.feature-row { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items:center; }
.feature-media { border-radius: var(--r-lg); overflow:hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-lg); }
.feature-media img { width:100%; height:100%; object-fit: cover; }

.stat-row { display:flex; flex-wrap:wrap; gap: 14px; }
.stat { flex: 1; min-width: 150px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 22px 24px; }
.stat b { font-family: var(--font-display); font-size: 1.9rem; color: var(--primary); display:block; line-height:1; }
.stat small { font-size: 13px; color: var(--muted); display:block; margin-top: 8px; }
.section-navy .stat { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section-navy .stat b { color: var(--aqua); }
.section-navy .stat small { color: var(--muted-on-dark); }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width:100%; text-align:left; background:none; border:none; padding: 22px 0; display:flex; justify-content:space-between; align-items:center; gap: 18px; font-family: var(--font-display); font-weight:600; font-size: 1.1rem; color: var(--secondary); }
.faq-q .ic { flex:0 0 auto; color: var(--primary); transition: transform .25s; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow:hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-a p { color: var(--muted); font-size: 15.5px; padding-bottom: 0; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-item.open .faq-a p { padding-bottom: 22px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .yacht-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn:not(.nav-wa) { display: none; }
  .nav-burger { display: flex; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media { order: -1; }
  .trust { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .g-side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .audience { grid-template-columns: 1fr; }
  .yacht-grid { grid-template-columns: 1fr; gap: 20px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-grid .span2, .exp-grid .row2 { grid-column: auto; grid-row: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .spec-list, .incl { grid-template-columns: 1fr; }
  .rev-table th, .rev-table td { padding: 12px 13px; font-size: 13.5px; }

  /* mobile action bar */
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
    background: var(--surface); border-top: 1px solid var(--border);
    box-shadow: 0 -6px 20px rgba(14,34,48,.1);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  }
  .mobile-bar a { display:flex; flex-direction: column; align-items:center; justify-content:center; gap: 4px; padding: 8px 4px; border-radius: 12px; font-family: var(--font-display); font-weight: 600; font-size: 11.5px; color: var(--secondary); min-height: 52px; }
  .mobile-bar a.wa { color: #1FA855; }
  .mobile-bar a.call { color: var(--primary); }
  .mobile-bar a.quote { color: #fff; background: var(--accent); }
  .mobile-bar a.quote { color: #2A1B02; }
  .wa-fab { display: none; }
  body { padding-bottom: 72px; }
  .footer-bottom { padding-bottom: 86px; }
  .hero { min-height: min(88vh, 720px); }
  .page-head { }
}

@media (max-width: 420px) {
  .hero-cta .btn { width: 100%; }
  .nav-logo img { height: 42px; }
}
