/* =========================================================
   Asia-Rents Yachts — public site styles
   Brand: black + red (#E00000)
   ========================================================= */

:root {
  --ink: #0a0a0b;
  --ink-2: #141417;
  --ink-3: #1f1f24;
  --paper: #ffffff;
  --sand: #f6f4f0;
  --sand-2: #efece6;
  --line: #e6e2db;
  --line-dark: rgba(255, 255, 255, .12);
  --text: #16161a;
  --muted: #676770;
  --muted-light: rgba(255, 255, 255, .64);
  --red: #e00000;
  --red-dark: #b30000;
  --red-soft: #fdecec;
  --green: #16a34a;
  --green-soft: #e8f7ee;
  --amber: #b45309;
  --amber-soft: #fef3e2;
  --wa: #25d366;
  --wa-dark: #1ebe5a;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(10, 10, 11, .06), 0 2px 8px rgba(10, 10, 11, .04);
  --shadow: 0 10px 30px -12px rgba(10, 10, 11, .22);
  --shadow-lg: 0 30px 60px -20px rgba(10, 10, 11, .35);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.12; font-weight: 600; letter-spacing: -.01em; }
h1, h2 { font-family: var(--serif); font-variant-numeric: lining-nums; }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; font-family: var(--sans); font-weight: 700; letter-spacing: -.005em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }

.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 999; border-radius: 8px; }
.skip-link:focus { left: 8px; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .container { padding: 0 16px; } }

.muted { color: var(--muted); }
.muted-light { color: var(--muted-light); }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em; line-height: 1;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
  white-space: nowrap; text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 10px 18px; font-size: .88rem; }
.btn-lg { padding: 17px 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 20px -10px rgba(224, 0, 0, .7); }
.btn-red:hover { background: var(--red-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--sand); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-wa { background: var(--wa); color: #06331a; }
.btn-wa:hover { background: var(--wa-dark); }
.btn-ghost { background: var(--sand); color: var(--ink); }
.btn-ghost:hover { background: var(--sand-2); }
.btn[disabled], .btn.is-loading { opacity: .6; pointer-events: none; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.link-arrow .icon { transition: transform .2s; }
.link-arrow:hover .icon { transform: translateX(4px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow-light { color: #ff5a5a; }

/* ---------- announcement + header ---------- */
.announce { background: var(--red); color: #fff; font-size: .85rem; font-weight: 600; text-align: center; padding: 8px 0; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 11, .96);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  color: #fff;
  transition: background .3s, box-shadow .3s;
}
.site-header.is-overlay { position: fixed; left: 0; right: 0; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header.is-overlay.is-scrolled,
.site-header.is-scrolled { background: rgba(10, 10, 11, .96); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); box-shadow: 0 1px 0 var(--line-dark); }
.announce + .site-header.is-overlay { top: 36px; }
.announce + .site-header.is-overlay.is-scrolled { top: 0; }
.header-row { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; }
.lockup { display: inline-flex; align-items: center; gap: 10px; }
.lockup-mark { width: 40px; height: 40px; }
.lockup-text { display: flex; flex-direction: column; line-height: 1; }
.lockup-text strong { font-size: 1.02rem; font-weight: 800; letter-spacing: .14em; }
.lockup-text em { font-style: normal; font-size: .66rem; font-weight: 700; letter-spacing: .42em; color: var(--red); margin-top: 5px; }
.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a { padding: 8px 14px; border-radius: 999px; font-size: .93rem; font-weight: 600; color: rgba(255,255,255,.82); transition: color .2s, background .2s; }
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.main-nav a.active { color: #fff; background: rgba(255,255,255,.1); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .92rem; color: #fff; }
.header-phone svg { color: var(--red); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: rgba(255,255,255,.08); border-radius: 12px; cursor: pointer; padding: 12px 11px; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; }

@media (max-width: 1180px) { .header-phone span { display: none; } }
@media (max-width: 1024px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header-actions { margin-left: auto; }
}
@media (max-width: 480px) {
  :root { --header-h: 66px; }
  .header-actions .btn { display: none; }
  .lockup-mark { width: 34px; height: 34px; }
  .lockup-text strong { font-size: .92rem; }
}

/* drawer */
.drawer { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.5); display: flex; justify-content: flex-end; }
.drawer-panel { width: min(360px, 88vw); height: 100%; background: var(--ink); color: #fff; display: flex; flex-direction: column; padding: 18px 22px 26px; overflow-y: auto; animation: slideIn .25s ease; }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: none; } }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer-close { width: 44px; height: 44px; font-size: 30px; line-height: 1; background: rgba(255,255,255,.08); border: 0; border-radius: 12px; color: #fff; cursor: pointer; }
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line-dark); font-weight: 600; font-size: 1.06rem; }
.drawer-nav a.active { color: #ff5a5a; }
.drawer-foot { margin-top: auto; padding-top: 24px; display: grid; gap: 10px; }
.drawer-phone { text-align: center; font-weight: 700; padding: 8px; color: var(--muted-light); }

/* ---------- alerts ---------- */
.alert { margin: 18px 0; padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: .95rem; border: 1px solid; }
.alert-success { background: var(--green-soft); border-color: #bfe6cd; color: #0f5a2c; }
.alert-error { background: var(--red-soft); border-color: #f6c3c3; color: #8f0000; }
.alert-info { background: #eef4ff; border-color: #cbdcfb; color: #1e3a8a; }
.alert ul { margin: 6px 0 0 18px; padding: 0; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: min(92vh, 860px); display: flex; align-items: flex-end;
  color: #fff; background: var(--ink); overflow: hidden; padding: calc(var(--header-h) + 60px) 0 56px;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.15) 35%, rgba(10,10,11,.55) 70%, rgba(10,10,11,.92) 100%);
}
.hero-inner { position: relative; width: 100%; }
.hero h1 { max-width: 14ch; margin-bottom: 18px; text-wrap: balance; }
.hero h1 em { font-style: italic; color: #fff; position: relative; }
.hero-sub { max-width: 560px; font-size: 1.1rem; color: rgba(255,255,255,.84); margin-bottom: 26px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 0 0 34px; list-style: none; }
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.9); }
.hero-badges .icon { color: #ff4d4d; }

.search-box {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) auto; gap: 0;
  background: #fff; color: var(--text); border-radius: 20px; padding: 8px; box-shadow: var(--shadow-lg);
}
.search-field { display: flex; flex-direction: column; justify-content: center; padding: 10px 18px; border-right: 1px solid var(--line); min-width: 0; }
.search-field:nth-child(4) { border-right: 0; }
.search-field label { font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.search-field input, .search-field select { border: 0; padding: 4px 0; font-weight: 700; font-size: 1rem; background: transparent; outline: none; width: 100%; min-width: 0; appearance: none; -webkit-appearance: none; cursor: pointer; }
.search-box .btn { border-radius: 14px; padding: 0 28px; min-height: 60px; }
@media (max-width: 900px) {
  .search-box { grid-template-columns: 1fr 1fr; padding: 6px; }
  .search-field { border-right: 0; border-bottom: 1px solid var(--line); padding: 10px 14px; }
  .search-field:nth-child(odd) { border-right: 1px solid var(--line); }
  .search-field:nth-child(3), .search-field:nth-child(4) { border-bottom: 0; }
  .search-box .btn { grid-column: 1 / -1; margin-top: 6px; min-height: 54px; }
}
@media (max-width: 640px) {
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 90px); padding-bottom: 32px; }
  .hero-sub { font-size: 1rem; }
}

/* ---------- sections ---------- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-sand { background: var(--sand); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark .muted { color: var(--muted-light); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; }
.section-head h2 { margin: 0; max-width: 18ch; text-wrap: balance; }
.section-head p { max-width: 460px; margin: 0; color: var(--muted); }
.section-dark .section-head p { color: var(--muted-light); }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }
.section-head.center h2 { max-width: 22ch; }
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 30px; }
}

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1024px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- yacht card ---------- */
.yacht-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s;
}
.yacht-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.yacht-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.yacht-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.yacht-card:hover .yacht-card-media img { transform: scale(1.04); }
.card-badges { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; justify-content: space-between; gap: 8px; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; font-size: .74rem; font-weight: 800; letter-spacing: .04em; background: rgba(255,255,255,.94); color: var(--ink); }
.badge-red { background: var(--red); color: #fff; }
.badge-dark { background: rgba(10,10,11,.8); color: #fff; }
.badge-muted { background: var(--sand); color: var(--muted); }
.badge-green { background: var(--green-soft); color: #0f5a2c; }
.badge-amber { background: var(--amber-soft); color: var(--amber); }
.yacht-card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.yacht-card-title { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.yacht-card-title h3 { font-variant-numeric: lining-nums; font-family: var(--serif); font-size: 1.65rem; font-weight: 600; margin: 0; letter-spacing: 0; }
.yacht-card-title h3 a:hover { color: var(--red); }
.yacht-card-tagline { color: var(--muted); font-size: .92rem; margin: -8px 0 0; }
.spec-row { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: .86rem; color: var(--muted); font-weight: 600; }
.spec-row span { display: inline-flex; align-items: center; gap: 6px; }
.spec-row .icon { color: var(--ink); }
.yacht-card-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { line-height: 1.1; }
.price small { display: block; font-size: .72rem; font-weight: 700; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.price strong { font-size: 1.3rem; font-weight: 800; }
.price span { font-size: .85rem; color: var(--muted); font-weight: 600; }
.card-actions { display: flex; gap: 8px; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 999px; }

/* ---------- category chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 700; font-size: .9rem; transition: all .2s; cursor: pointer; }
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip small { font-weight: 700; color: var(--muted); }
.chip.active small { color: rgba(255,255,255,.6); }

/* ---------- experiences ---------- */
.exp-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; color: #fff; display: flex; align-items: flex-end; isolation: isolate; background: var(--ink); }
.exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s; }
.exp-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,10,11,0) 30%, rgba(10,10,11,.88) 100%); }
.exp-card:hover img { transform: scale(1.05); }
.exp-card-body { padding: 24px; width: 100%; }
.exp-card h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; margin: 0 0 6px; }
.exp-card p { margin: 0 0 14px; color: rgba(255,255,255,.82); font-size: .94rem; }
.exp-meta { display: flex; gap: 14px; font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.9); }
.exp-meta span { display: inline-flex; align-items: center; gap: 6px; }
.grid-exp { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1024px) { .grid-exp { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
  .grid-exp { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 82%; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; margin: 0 -16px; padding-left: 16px; padding-right: 16px; scrollbar-width: none; }
  .grid-exp::-webkit-scrollbar { display: none; }
  .grid-exp > * { scroll-snap-align: start; }
}

/* ---------- steps / features ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding: 30px 28px; border-radius: var(--radius); background: var(--ink-2); border: 1px solid var(--line-dark); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--serif); font-size: 3.2rem; font-weight: 600; line-height: 1; color: var(--red); display: block; margin-bottom: 18px; }
.step h3 { color: #fff; font-size: 1.15rem; }
.step p { color: var(--muted-light); margin: 0; font-size: .95rem; }

.feature { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--red-soft); color: var(--red); margin-bottom: 18px; }
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--muted); margin: 0; font-size: .95rem; }

/* split layout */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.split-media { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 5 / 4; background: var(--sand); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }

.route-list { list-style: none; display: grid; gap: 2px; margin: 26px 0 30px; }
.route-list li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.route-list li:last-child { border-bottom: 0; }
.route-num { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .85rem; }
.route-list strong { display: block; }
.route-list span { color: var(--muted); font-size: .93rem; }

/* ---------- reviews ---------- */
.review { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.review blockquote { margin: 0; font-size: 1.02rem; }
.review footer { margin-top: auto; font-weight: 700; }
.review footer span { font-weight: 500; color: var(--muted); }
.stars { color: #f5a300; letter-spacing: 2px; font-size: 1rem; }
.stars-off { color: #d8d4cc; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 22px; font-weight: 700; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; background: var(--sand); display: grid; place-items: center; font-size: 1.2rem; font-weight: 600; transition: transform .2s, background .2s; }
.faq-item[open] summary::after { content: "–"; background: var(--red); color: #fff; }
.faq-answer { padding: 0 22px 22px; color: var(--muted); }
.faq-answer p:last-child { margin: 0; }

/* ---------- inner page hero ---------- */
.page-hero { background: var(--ink); color: #fff; padding: 56px 0 60px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(224,0,0,.28), transparent 70%); pointer-events: none; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 10px; }
.page-hero p { color: var(--muted-light); max-width: 620px; margin: 0; font-size: 1.05rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .84rem; color: var(--muted-light); margin: 0 0 18px; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; opacity: .5; }
.breadcrumbs a:hover { color: #fff; }

/* ---------- fleet listing ---------- */
.fleet-layout { display: grid; grid-template-columns: 280px 1fr; gap: 36px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 20px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.filters h2 { font-family: var(--sans); font-size: 1rem; font-weight: 800; margin: 0 0 16px; display: flex; justify-content: space-between; align-items: center; }
.filters h2 a { font-size: .8rem; color: var(--red); font-weight: 700; }
.filter-group { padding: 16px 0; border-top: 1px solid var(--line); }
.filter-group > label:not(.check), .filter-group > .label { display: block; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.check { display: flex; align-items: center; gap: 10px; padding: 5px 0; cursor: pointer; font-weight: 600; font-size: .93rem; }
.check input { width: 18px; height: 18px; accent-color: var(--red); }
.range-row { display: flex; justify-content: space-between; font-size: .86rem; font-weight: 700; margin-top: 6px; }
input[type="range"] { width: 100%; accent-color: var(--red); }
.fleet-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.fleet-toolbar p { margin: 0; font-weight: 700; }
.fleet-toolbar .select { width: auto; min-width: 200px; }
.filters-toggle { display: none; }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.active-filters a { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: var(--sand); font-size: .82rem; font-weight: 700; }
.active-filters a:hover { background: var(--red-soft); color: var(--red); }
.empty { text-align: center; padding: 60px 24px; border: 1px dashed var(--line); border-radius: var(--radius); background: #fff; }
.empty h3 { font-family: var(--serif); font-size: 1.8rem; }
@media (max-width: 1024px) {
  .fleet-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; inset: 0 0 0 auto; width: min(380px, 92vw); z-index: 90; border-radius: 0; overflow-y: auto; transform: translateX(100%); transition: transform .25s; box-shadow: var(--shadow-lg); }
  .filters.is-open { transform: none; }
  .filters-toggle { display: inline-flex; }
  .filters-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 89; }
}
.fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1280px) { .fleet-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .fleet-grid .yacht-card-title h3 { font-size: 1.5rem; } }
@media (max-width: 640px) { .fleet-grid { grid-template-columns: 1fr; } }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; min-width: 0; }
.field > label, .label { font-size: .82rem; font-weight: 700; color: var(--text); }
.field .hint { font-size: .8rem; color: var(--muted); }
.input, .select, .textarea {
  width: 100%; padding: 13px 14px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff;
  font-size: .98rem; transition: border-color .2s, box-shadow .2s; min-width: 0;
}
.select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23676770' stroke-width='2'%3E%3Cpath d='m1 1 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(10,10,11,.06); }
.textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field-row.stack-sm { grid-template-columns: 1fr; } }
.field-error { color: var(--red); font-size: .82rem; font-weight: 600; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- yacht detail ---------- */
.detail-top { padding: 28px 0 0; }
.detail-top .breadcrumbs { color: var(--muted); }
.detail-top .breadcrumbs a:hover { color: var(--ink); }
.detail-title { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.detail-title h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin: 6px 0 6px; }
.detail-title p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.detail-title .badges { display: flex; gap: 8px; flex-wrap: wrap; }

.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: min(560px, 60vw); border-radius: 22px; overflow: hidden; }
.gallery button { border: 0; padding: 0; background: var(--sand); cursor: zoom-in; overflow: hidden; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery button:hover img { transform: scale(1.03); }
.gallery button:first-child { grid-row: 1 / 3; }
.gallery .more { position: absolute; right: 14px; bottom: 14px; background: rgba(255,255,255,.95); color: var(--ink); padding: 8px 14px; border-radius: 999px; font-size: .82rem; font-weight: 800; }
.gallery.count-1 { grid-template-columns: 1fr; }
.gallery.count-2 { grid-template-columns: 2fr 1fr; }
.gallery.count-2 button:nth-child(2) { grid-row: 1 / 3; }
.gallery.count-3 { grid-template-columns: 2fr 1fr; }
.gallery.count-4 button:nth-child(4) { grid-column: 2 / 4; }
@media (max-width: 760px) {
  .gallery, .gallery.count-2, .gallery.count-3 { display: flex; height: auto; overflow-x: auto; scroll-snap-type: x mandatory; border-radius: 16px; gap: 8px; scrollbar-width: none; }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery button { flex: 0 0 88%; aspect-ratio: 4 / 3; scroll-snap-align: start; border-radius: 14px; }
  .gallery.count-1 button { flex-basis: 100%; }
}

.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 56px; align-items: start; padding-top: 44px; padding-bottom: 90px; }
@media (max-width: 1100px) { .detail-layout { grid-template-columns: minmax(0, 1fr) 380px; gap: 36px; } }
@media (max-width: 960px) { .detail-layout { grid-template-columns: minmax(0, 1fr); padding-bottom: 110px; } }
.detail-section { padding: 34px 0; border-bottom: 1px solid var(--line); }
.detail-section:first-child { padding-top: 0; }
.detail-section:last-child { border-bottom: 0; }
.detail-section h2 { font-size: 2rem; margin-bottom: 18px; }
.prose { font-size: 1.02rem; color: #33333a; }
.prose h2 { font-size: 1.9rem; margin: 1.6em 0 .5em; }
.prose h3 { margin: 1.4em 0 .4em; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1em; }
.prose li { margin: .3em 0; }
.prose a { color: var(--red); text-decoration: underline; }
.prose img { border-radius: 12px; margin: 1em 0; }
.prose blockquote { border-left: 3px solid var(--red); margin: 1.2em 0; padding: .2em 0 .2em 1.2em; font-family: var(--serif); font-size: 1.4rem; color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.prose th, .prose td { border: 1px solid var(--line); padding: 8px 12px; text-align: left; }

.specs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.spec { padding: 18px; border-radius: 14px; background: var(--sand); }
.spec .icon { color: var(--red); margin-bottom: 10px; }
.spec small { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.spec strong { font-size: 1.12rem; }
@media (max-width: 640px) { .specs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.tick-list { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 24px; }
.tick-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.tick-list .icon { flex-shrink: 0; color: var(--green); margin-top: 3px; }
@media (max-width: 640px) { .tick-list { grid-template-columns: 1fr; } }

.rate-table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.rate-table th, .rate-table td { padding: 14px 0; border-bottom: 1px solid var(--line); text-align: left; }
.rate-table th { font-weight: 600; color: var(--muted); }
.rate-table td { text-align: right; font-weight: 800; }

/* booking card */
.book-card { position: sticky; top: calc(var(--header-h) + 20px); background: #fff; border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.book-card-head { background: var(--ink); color: #fff; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.book-card-head .price small { color: var(--muted-light); }
.book-card-head .price strong { font-size: 1.7rem; }
.book-card-head .price span { color: var(--muted-light); }
.book-card-body { padding: 22px 24px 24px; }
.book-steps { display: flex; gap: 6px; margin-bottom: 18px; }
.book-steps span { flex: 1; height: 4px; border-radius: 4px; background: var(--line); }
.book-steps span.on { background: var(--red); }
.slot-note { font-size: .8rem; font-weight: 700; margin-top: 4px; }
.slot-note.bad { color: var(--red); }
.slot-note.ok { color: var(--green); }
.stepper { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden; }
.stepper button { width: 44px; height: 46px; border: 0; background: var(--sand); cursor: pointer; display: grid; place-items: center; flex-shrink: 0; }
.stepper button:hover { background: var(--sand-2); }
.stepper input { border: 0; text-align: center; font-weight: 800; width: 100%; min-width: 0; padding: 0; height: 46px; background: #fff; -moz-appearance: textfield; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper-sm button { width: 32px; height: 32px; }
.stepper-sm input { height: 32px; width: 36px; font-size: .9rem; }
.stepper-sm { border-radius: 10px; }

.addons { border: 1.5px solid var(--line); border-radius: 14px; margin: 4px 0 14px; }
.addons > summary { list-style: none; cursor: pointer; padding: 13px 14px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.addons > summary::-webkit-details-marker { display: none; }
.addons > summary .count { background: var(--red); color: #fff; font-size: .72rem; border-radius: 999px; padding: 2px 8px; margin-left: 6px; }
.addons > summary::after { content: "▾"; color: var(--muted); transition: transform .2s; }
.addons[open] > summary::after { transform: rotate(180deg); }
.addon-list { padding: 0 14px 10px; display: grid; }
.addon { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 10px 0; border-top: 1px solid var(--line); }
.addon-info strong { display: block; font-size: .9rem; }
.addon-info span { font-size: .78rem; color: var(--muted); }
.addon .toggle { width: 20px; height: 20px; accent-color: var(--red); flex-shrink: 0; }

.promo-row { display: flex; gap: 8px; }
.promo-row .input { text-transform: uppercase; }
.promo-row .btn { border-radius: 12px; padding: 0 16px; }

.quote { background: var(--sand); border-radius: 14px; padding: 16px; margin: 16px 0; font-size: .92rem; }
.quote-line { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; }
.quote-line span:first-child { color: var(--muted); }
.quote-line.discount span:last-child { color: var(--green); font-weight: 700; }
.quote-total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; font-weight: 800; font-size: 1.1rem; }
.quote-total strong { font-size: 1.45rem; }
.quote-note { font-size: .78rem; color: var(--muted); margin: 6px 0 0; }
.quote.is-loading { opacity: .55; }
.book-card .or { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .8rem; font-weight: 700; margin: 12px 0; }
.book-card .or::before, .book-card .or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.book-card .small-print { font-size: .78rem; color: var(--muted); text-align: center; margin: 12px 0 0; }
.step-back { background: none; border: 0; padding: 0; font-weight: 700; color: var(--muted); cursor: pointer; margin-bottom: 12px; font-size: .88rem; }
.step-back:hover { color: var(--ink); }
.trip-summary { background: var(--sand); border-radius: 12px; padding: 12px 14px; font-size: .88rem; margin-bottom: 14px; font-weight: 600; }

.mobile-bar { display: none; }
@media (max-width: 960px) {
  .book-card { position: static; scroll-margin-top: calc(var(--header-h) + 10px); }
  .mobile-bar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; background: #fff; border-top: 1px solid var(--line); padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -8px 24px rgba(0,0,0,.08); }
  .has-mobile-bar .wa-float { bottom: 96px; }
}

/* ---------- confirmation ---------- */
.confirm-card { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.confirm-head { padding: 36px 32px; text-align: center; background: var(--ink); color: #fff; }
.confirm-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--red); display: grid; place-items: center; margin: 0 auto 18px; }
.confirm-head h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.confirm-head p { color: var(--muted-light); margin: 0 auto; max-width: 520px; }
.ref-pill { display: inline-block; margin-top: 18px; padding: 8px 18px; border-radius: 999px; background: rgba(255,255,255,.1); font-weight: 800; letter-spacing: .08em; }
.confirm-body { padding: 28px 32px 32px; }
.kv { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.kv div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .94rem; }
.kv dt, .kv span:first-child { color: var(--muted); }
.kv dd, .kv span:last-child { margin: 0; font-weight: 700; text-align: right; }
@media (max-width: 640px) { .kv { grid-template-columns: 1fr; } .confirm-body, .confirm-head { padding: 24px 18px; } }
.status { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; font-weight: 800; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status-pending { background: var(--amber-soft); color: var(--amber); }
.status-confirmed { background: var(--green-soft); color: #0f7a3a; }
.status-completed { background: #eef2ff; color: #3730a3; }
.status-cancelled { background: var(--red-soft); color: var(--red-dark); }
.actions-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.actions-row .btn { flex: 1 1 200px; }

/* ---------- blog ---------- */
.post-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: box-shadow .25s, transform .25s; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.post-card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card-body time { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }
.post-card-body h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; margin: 0; }
.post-card-body p { color: var(--muted); margin: 0; font-size: .94rem; }
.article { max-width: 760px; margin: 0 auto; }
.article-cover { border-radius: 22px; overflow: hidden; aspect-ratio: 16 / 8; margin: -40px auto 40px; max-width: 1000px; position: relative; z-index: 2; background: var(--sand); box-shadow: var(--shadow); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: grid; gap: 12px; }
.contact-card { display: flex; gap: 16px; align-items: center; padding: 18px 20px; border-radius: 14px; background: #fff; border: 1px solid var(--line); transition: border-color .2s; }
a.contact-card:hover { border-color: var(--ink); }
.contact-card .ci { width: 46px; height: 46px; border-radius: 12px; background: var(--ink); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.contact-card.wa .ci { background: var(--wa); color: #06331a; }
.contact-card small { display: block; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-card strong { word-break: break-word; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 30px; }
@media (max-width: 640px) { .panel { padding: 20px; } }
.map { border-radius: 22px; overflow: hidden; border: 1px solid var(--line); height: 360px; background: var(--sand); }
.map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- pagination ---------- */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 12px; border-radius: 12px; border: 1px solid var(--line); font-weight: 700; background: #fff; }
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #fff; padding: 0 0 28px; margin-top: 0; }
.footer-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 64px 24px; border-bottom: 1px solid var(--line-dark); flex-wrap: wrap; }
.footer-cta h2 { margin: 0 0 8px; }
.footer-cta p { margin: 0; color: var(--muted-light); }
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-top: 56px; padding-bottom: 44px; }
.footer-grid h3 { font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 18px; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { color: rgba(255,255,255,.86); transition: color .2s; }
.footer-grid a:hover { color: #ff5a5a; }
.footer-brand p { color: var(--muted-light); margin: 18px 0; max-width: 320px; font-size: .95rem; }
.footer-contact li { color: rgba(255,255,255,.86); font-size: .95rem; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); }
.socials a:hover { background: var(--red); color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line-dark); font-size: .86rem; color: var(--muted-light); }
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a:hover { color: #fff; }
.lockup-light .lockup-text strong { color: #fff; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } .footer-cta { padding: 48px 16px; } }

/* ---------- floating WhatsApp ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 45; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .7); transition: transform .2s; }
.wa-float:hover { transform: scale(1.06); }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(5,5,6,.94); display: flex; align-items: center; justify-content: center; padding: 60px 70px; }
.lightbox img { max-height: 100%; max-width: 100%; object-fit: contain; border-radius: 10px; }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; border-radius: 50%; width: 48px; height: 48px; font-size: 30px; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.7); font-weight: 700; font-size: .9rem; }
@media (max-width: 640px) { .lightbox { padding: 60px 10px; } .lb-nav { top: auto; bottom: 10px; transform: none; } }

/* ---------- search suggestions ---------- */
.suggest { position: absolute; left: 0; right: 0; top: calc(100% + 8px); background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden; z-index: 20; }
.suggest a { display: flex; gap: 12px; align-items: center; padding: 10px 12px; }
.suggest a:hover, .suggest a.on { background: var(--sand); }
.suggest img { width: 56px; height: 42px; object-fit: cover; border-radius: 8px; }
.suggest strong { display: block; font-size: .92rem; }
.suggest span { font-size: .8rem; color: var(--muted); }

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }

@media (max-width: 960px) { .has-mobile-bar .site-footer { padding-bottom: 100px; } }
.promo-row .input::placeholder { text-transform: none; }
@media (max-width: 640px) {
  .hero-media::after { background: linear-gradient(180deg, rgba(10,10,11,.7) 0%, rgba(10,10,11,.55) 40%, rgba(10,10,11,.8) 75%, rgba(10,10,11,.95) 100%); }
  .hero-media img, .hero-media video { object-position: 70% center; }
}
