:root {
  --ink: #241a08;
  --ink-soft: rgba(36, 26, 8, 0.64);
  --ink-faint: rgba(36, 26, 8, 0.44);
  --paper: #fffdf8;
  --paper-2: #faf4e4;
  --paper-3: #f5ecd2;
  --gold-deep: #8a6a1f;
  --gold: #b9862a;
  --gold-light: #c99e3b;
  --gold-pale: #9c7a24;
  --cream: #241a08;
  --line: rgba(185, 134, 42, 0.28);
  --shadow: 0 20px 55px rgba(154, 116, 30, 0.18);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}
body.editor-dialog-open { overflow: hidden; }
h1,
h2,
h3,
h4 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--gold-pale);
}
.accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold-deep);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
::selection {
  background: var(--gold);
  color: #fff;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 40% at 15% 0%,
      rgba(185, 134, 42, 0.1),
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 35% at 100% 20%,
      rgba(185, 134, 42, 0.08),
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
.wave-divider {
  width: 100%;
  height: 46px;
  display: block;
}
.wave-divider svg {
  width: 100%;
  height: 100%;
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1240px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
  background-color: transparent;
}
.foot-brand .brand-logo {
  width: 180px;
}
nav.links {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav.links a {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.72;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
nav.links a:hover {
  opacity: 1;
  color: var(--gold-deep);
}
.nav-actions,
.language-switcher {
  display: flex;
  align-items: center;
}
.nav-actions { gap: 12px; }
.language-switcher {
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}
.language-btn {
  min-width: 34px;
  min-height: 30px;
  padding: 5px 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: 700 11px/1 Manrope, sans-serif;
  letter-spacing: .08em;
  cursor: pointer;
}
.language-btn.active {
  background: var(--gold-deep);
  color: #fff;
}
.language-btn:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #fffdf8;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(185, 134, 42, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(185, 134, 42, 0.4);
}
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: #0d0a04;
}
.hero-bg-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-bg-slide.active {
  opacity: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(13, 10, 4, 0.72) 0%,
      rgba(13, 10, 4, 0.45) 45%,
      rgba(13, 10, 4, 0.82) 100%
    ),
    linear-gradient(90deg, rgba(13, 10, 4, 0.55) 0%, rgba(13, 10, 4, 0.05) 55%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  background-image: repeating-linear-gradient(
    100deg,
    transparent 0 120px,
    rgba(201, 158, 59, 0.06) 120px 121px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.06;
  color: #fffdf8;
}
.hero h1 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold-light);
  font-weight: 600;
}
.hero p.lead {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 253, 248, 0.82);
  max-width: 560px;
}
.hero-price-callout {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 224px;
  max-width: 100%;
  margin-top: 30px;
  padding: 16px 62px 14px 21px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 3px 24px 3px 24px;
  background:
    linear-gradient(118deg, transparent 0 57%, rgba(255, 253, 248, 0.28) 58% 65%, transparent 66%),
    linear-gradient(135deg, #f0d37a 0%, #c99e3b 46%, #936817 100%);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.42),
    7px 7px 0 rgba(36, 26, 8, 0.38),
    inset 0 0 0 1px rgba(255, 253, 248, 0.18);
}
.hero-price-callout[hidden] {
  display: none;
}
.hero-price-callout::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border: 1px solid rgba(36, 26, 8, 0.16);
  border-radius: 1px 19px 1px 19px;
  pointer-events: none;
}
.hero-price-callout::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 80px;
  height: 80px;
  top: 50%;
  right: -48px;
  border: 1px solid rgba(36, 26, 8, 0.2);
  background: rgba(36, 26, 8, 0.12);
  transform: translateY(-50%) rotate(45deg);
}
.hero-price-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(36, 26, 8, 0.78);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}
.hero-price-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.hero-price-callout strong {
  position: relative;
  z-index: 1;
  color: #241a08;
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 0 rgba(255, 253, 248, 0.32);
}
.hero-price-callout + .hero-actions {
  margin-top: 26px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 253, 248, 0.4);
  color: #fffdf8;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 24px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--gold-light);
  background: rgba(255, 253, 248, 0.08);
}
.stat-strip {
  display: flex;
  gap: 56px;
  margin-top: 64px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 253, 248, 0.22);
  padding-top: 30px;
  max-width: 640px;
}
.stat-strip div .num {
  font-family: "Marcellus", serif;
  font-size: 30px;
  color: var(--gold-light);
}
.stat-strip div .lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.6);
  margin-top: 4px;
}
.hero-dots {
  position: absolute;
  bottom: 26px;
  right: 28px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #fffdf8;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.hero-dots button.active {
  background: #fffdf8;
}
section {
  position: relative;
  z-index: 1;
  scroll-margin-top: 112px;
}
footer {
  scroll-margin-top: 112px;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head .eyebrow {
  justify-content: center;
}
.section-head .eyebrow::before {
  display: none;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
}
.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
}
.locations {
  padding: 100px 0;
  background: var(--paper-2);
}
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.loc-card {
  position: relative;
  border: 1px solid var(--line);
  padding: 38px 28px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(185, 134, 42, 0.07), var(--paper) 60%);
  transition: transform 0.25s, border-color 0.25s;
}
.loc-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.loc-card .tag {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.loc-card h3 {
  margin-top: 14px;
  font-size: 24px;
}
.loc-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.loc-card svg {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 90px;
  opacity: 0.1;
}
.services {
  padding: 100px 0;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.svc-card {
  border: 1px solid var(--line);
  padding: 34px 26px;
  background: var(--paper-2);
  transition: border-color 0.25s, transform 0.25s;
}
.svc-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.svc-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}
.svc-card h3 {
  font-size: 20px;
}
.svc-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.catalog {
  padding: 100px 0 60px;
  background: var(--paper-2);
}
.catalog-search {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(58, 42, 14, 0.06);
  display: flex;
  margin: 0 auto 20px;
  max-width: 680px;
  border-radius: 999px;
  padding: 7px 7px 7px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.catalog-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(185, 134, 42, 0.14);
}
.catalog-search-icon {
  color: var(--gold-deep);
  font-size: 25px;
  line-height: 1;
  margin-right: 12px;
}
.catalog-search input {
  background: transparent;
  border: 0;
  color: var(--ink);
  font: 500 14px/1.4 "Manrope", sans-serif;
  outline: 0;
  padding: 14px 0;
  width: 100%;
}
.catalog-search input::placeholder { color: var(--ink-faint); }
.catalog-search-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(185, 134, 42, 0.28);
  color: #fffdf8;
  cursor: pointer;
  flex: 0 0 auto;
  font: 700 13px/1 "Manrope", sans-serif;
  letter-spacing: 0.1em;
  min-height: 48px;
  min-width: 132px;
  padding: 16px 26px;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}
.catalog-search-btn:hover {
  box-shadow: 0 12px 30px rgba(185, 134, 42, 0.4);
  transform: translateY(-2px);
}
.catalog-search-btn:focus-visible {
  outline: 3px solid rgba(185, 134, 42, 0.35);
  outline-offset: 3px;
}
.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
}
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 46px;
}
.catalog-empty {
  border: 1px dashed var(--line);
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-column: 1 / -1;
  padding: 52px 24px;
  text-align: center;
}
.catalog-empty strong {
  color: var(--ink);
  font-family: "Marcellus", serif;
  font-size: 24px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: var(--paper-3);
  color: var(--ink);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: #fffdf8;
  border-color: var(--gold);
  font-weight: 700;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.cat-open {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  width: 100%;
}
.cat-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: linear-gradient(155deg, #f7eecf, #fffdf8 70%);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.cat-card:hover .cat-media img {
  transform: scale(1.04);
}
.cat-media svg {
  width: 60%;
  height: 60%;
  opacity: 0.95;
}
.cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  color: var(--gold-deep);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.cat-pax {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 10.5px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cat-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-kicker {
  color: var(--gold-deep);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.cat-body h3 {
  font-size: 18.5px;
  line-height: 1.3;
}
.cat-body .marina {
  font-size: 12px;
  color: var(--gold-deep);
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.cat-details {
  display: grid;
  gap: 9px;
  margin-top: 15px;
}
.cat-detail-row {
  background: rgba(185, 134, 42, 0.055);
  border-left: 2px solid var(--gold);
  color: var(--ink-soft);
  display: grid;
  font-size: 12px;
  gap: 4px;
  line-height: 1.55;
  padding: 9px 11px;
}
.cat-detail-label {
  color: var(--gold-deep);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cat-detail-note {
  background: rgba(29, 51, 48, 0.035);
  border-left-color: var(--ink-faint);
}
.cat-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.cat-foot .price {
  font-family: "Marcellus", serif;
  font-size: 22px;
  color: var(--gold-pale);
}
.cat-foot .price span {
  font-size: 11px;
  font-family: "Manrope", sans-serif;
  color: var(--ink-faint);
  display: block;
  margin-top: 2px;
}
.cat-foot a.book {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 3px;
  white-space: nowrap;
}
.cat-foot a.book:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.cat-foot .book {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding-bottom: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.cat-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.cat-actions .cat-photo-link {
  padding: 10px 16px;
}
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}
.load-more-wrap .btn-ghost {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.load-more-wrap .btn-ghost:hover {
  background: rgba(185, 134, 42, 0.08);
}
.yacht-modal {
  align-items: center;
  background: rgba(18, 13, 5, 0.72);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 28px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  z-index: 300;
}
.yacht-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.yacht-modal-panel {
  background: var(--paper);
  border: 1px solid rgba(201, 158, 59, 0.48);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  max-height: min(820px, 92vh);
  max-width: 1080px;
  overflow: auto;
  position: relative;
  width: 100%;
}
.modal-close {
  align-items: center;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  color: var(--gold-deep);
  cursor: pointer;
  display: flex;
  font-size: 30px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 44px;
  z-index: 2;
}
.modal-media {
  background: var(--paper-3);
  background-position: center;
  background-size: cover;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}
.modal-media img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}
.modal-copy {
  padding: 42px;
}
.modal-copy .eyebrow {
  margin-bottom: 14px;
}
.modal-copy .eyebrow::before {
  width: 26px;
}
.modal-copy h3 {
  color: var(--gold-deep);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}
.modal-summary {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 18px;
}
.modal-description {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 18px;
  white-space: pre-line;
}
.modal-facts {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
}
.modal-facts > div {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 16px 18px;
}
.modal-facts > div > span {
  color: var(--ink-faint);
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.modal-facts > div > strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  white-space: pre-line;
}
.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.modal-photos-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold-deep);
  color: var(--gold-deep);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 22px;
  transition: background 0.2s, color 0.2s;
}
.modal-photos-link:hover {
  background: var(--gold-deep);
  color: #fffdf8;
}
.adventures {
  padding: 100px 0;
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.adv-card {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.adv-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.adv-open {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  width: 100%;
}
.adv-media {
  aspect-ratio: 16/11;
  background: linear-gradient(155deg, #f7eecf, #fffdf8 70%);
  background-position: center;
  background-size: cover;
  display: block;
  overflow: hidden;
  position: relative;
}
.adv-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}
.adv-card:hover .adv-media img {
  transform: scale(1.04);
}
.cat-card:hover .cat-media.media-fit-contain > img,
.adv-card:hover .adv-media.media-fit-contain > img { transform: scale(1.015); }
.adv-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.adv-card svg.deco {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 150px;
  opacity: 0.1;
}
.adv-card .tag {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.adv-card h3 {
  font-size: 26px;
  margin-top: 12px;
}
.adv-card .meta {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
}
.adv-desc {
  color: var(--ink-soft);
  display: block;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 13px;
}
.adv-prices {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  flex-wrap: wrap;
}
.adv-price {
  border: 1px solid var(--line);
  padding: 12px 18px;
  min-width: 110px;
  background: var(--paper);
}
.adv-price .d {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.adv-price .v {
  font-family: "Marcellus", serif;
  font-size: 20px;
  color: var(--gold-pale);
  margin-top: 4px;
}
.adv-link {
  border-bottom: 1px solid var(--gold-deep);
  color: var(--gold-deep);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding-bottom: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.deals {
  padding: 90px 0;
  background: var(--paper-2);
}
.deals-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.deal-card {
  border: 1px solid var(--line);
  padding: 26px 22px;
  text-align: center;
  background: var(--paper);
}
.deal-card .n {
  font-family: "Marcellus", serif;
  color: var(--gold-deep);
  font-size: 17px;
}
.deal-card p {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1.6;
}
.cta-band {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg, #faf1d9, #fffdf8);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band h2 {
  font-size: clamp(28px, 4vw, 42px);
}
.cta-band p {
  margin: 18px auto 32px;
  max-width: 520px;
  color: var(--ink-soft);
}
footer {
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.foot-brand p {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 280px;
}
.foot-col h4 {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.foot-col a,
.foot-col p {
  display: block;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.foot-col a:hover {
  color: var(--gold-deep);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bottom p {
  font-size: 12px;
  color: var(--ink-faint);
}
.socials {
  display: flex;
  gap: 14px;
}
.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: border-color 0.2s;
}
.socials a:hover {
  border-color: var(--gold);
}
.socials svg {
  width: 15px;
  height: 15px;
}
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(185, 134, 42, 0.4);
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fffdf8;
}
.media-bg-cream { background: linear-gradient(155deg, #f7eecf, #fffdf8 70%); }
.media-bg-dark { background: linear-gradient(145deg, #172824, #29423c); }
.media-bg-white { background: #fff; }
.media-bg-blur { background: #e9e2d2; isolation: isolate; }
.media-bg-blur::before {
  background-image: var(--media-image);
  background-position: var(--media-position, center center);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  filter: blur(16px) saturate(.85);
  inset: -18px;
  opacity: .52;
  position: absolute;
  transform: scale(1.08);
  z-index: 0;
}
.media-bg-blur > img,
.media-bg-blur > video { position: relative; z-index: 1; }
.cat-media .cat-badge,
.cat-media .cat-pax,
.adv-media .cat-badge,
.adv-media .cat-pax { z-index: 2; }
.media-fit-contain > img { transform: none; }
.cat-card:hover .media-fit-contain > img,
.adv-card:hover .media-fit-contain > img { transform: scale(1.015); }
.modal-facts [data-modal-rates] {
  display: block;
  min-width: 0;
}
.modal-facts .modal-rates-fact {
  background: transparent;
  border: 0;
  padding: 4px 0 0;
}
.adv-body .price-table { margin-top: 14px; width: 100%; }
.price-table {
  background: linear-gradient(145deg, rgba(255, 252, 243, 0.98), rgba(246, 235, 207, 0.68));
  border: 1px solid rgba(185, 134, 42, 0.28);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(71, 49, 13, 0.06);
  display: grid;
  overflow: hidden;
}
.price-table-heading,
.price-table-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.price-table-heading {
  background: linear-gradient(90deg, #243b37, #35534c);
  color: #fff8e8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 9px 12px;
  text-transform: uppercase;
}
.price-table-heading em {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 99px;
  color: #f6d995;
  font-size: 8px;
  font-style: normal;
  padding: 3px 7px;
}
.price-table-row {
  color: var(--ink-soft);
  font-size: 11.5px;
  padding: 8px 12px;
}
.price-table-row + .price-table-row { border-top: 1px solid rgba(185, 134, 42, 0.16); }
.price-table-row strong {
  color: var(--gold-deep);
  font-family: "Marcellus", serif;
  font-size: 14px;
  white-space: nowrap;
}
.price-table-more {
  border-top: 1px solid rgba(185, 134, 42, 0.16);
  color: var(--ink-faint);
  font-size: 9.5px;
  padding: 7px 12px;
  text-align: center;
  text-transform: uppercase;
}
.price-table-modal {
  background: #fffdf8;
  border-color: rgba(185, 134, 42, 0.22);
  border-radius: 8px;
  box-shadow: none;
  margin-top: 7px;
  width: 100%;
}
.price-table-modal .price-table-heading { display: none; }
.price-table-modal .price-table-row { font-size: 13px; padding: 10px 13px; }
.price-table-modal .price-table-row strong { font-size: 16px; }

/* Fleet editor */
.footer-editor-access {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  border: 0;
  background: transparent;
  color: rgba(27, 35, 34, .32);
  font: 700 8px/1 Manrope, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s, opacity .2s;
}
.footer-editor-access:hover,
.footer-editor-access:focus-visible { color: var(--gold-deep); }
.footer-editor-access.is-active { color: rgba(27, 35, 34, .52); }
.footer-editor-access span:first-child { font-size: 9px; }

.editor-exit-mode {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1000;
  display: none;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 12px;
  background: #183b36;
  color: #fff;
  box-shadow: 0 14px 45px rgba(8, 30, 27, .34);
  transform: translateX(-50%);
  cursor: pointer;
  text-align: left;
}
body.fleet-editing .editor-exit-mode { display: inline-flex; }
.editor-exit-mode:hover { background: #0f302c; }
.editor-exit-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-deep);
  font-weight: 800;
}
.editor-exit-mode > span:last-child { display: grid; gap: 3px; }
.editor-exit-mode strong { font: 800 12px/1.2 Manrope, sans-serif; letter-spacing: .06em; text-transform: uppercase; }
.editor-exit-mode small { color: rgba(255,255,255,.7); font: 500 10px/1.2 Manrope, sans-serif; }

.editor-login,
.fleet-editor {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(13, 25, 24, .66);
  backdrop-filter: blur(10px);
}
.editor-login.is-open,
.fleet-editor.is-open { display: flex; }
.editor-login-card,
.fleet-editor-card {
  position: relative;
  width: min(100%, 460px);
  border: 1px solid rgba(201, 158, 59, .35);
  background: #fffdf8;
  box-shadow: 0 28px 90px rgba(5, 14, 13, .32);
}
.editor-login-card { padding: 36px; border-radius: 18px; }
.editor-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font: 800 10px/1.2 Manrope, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.editor-login-card h2,
.fleet-editor-head h2 { margin: 0; color: var(--ink); font-size: 32px; }
.editor-login-card > p { margin: 10px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.editor-login-card label,
.fleet-editor-card label {
  display: grid;
  gap: 7px;
  color: #4b5653;
  font: 700 11px/1.2 Manrope, sans-serif;
  letter-spacing: .04em;
}
.editor-login-fields { display: grid; gap: 9px; }
.editor-login-fields label:not(:first-child) { margin-top: 5px; }
.editor-login-fields input,
.fleet-editor-card input,
.fleet-editor-card select,
.fleet-editor-card textarea {
  width: 100%;
  border: 1px solid #ddd8ca;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: 500 14px/1.45 Manrope, sans-serif;
  padding: 11px 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.editor-login-fields input[readonly] { background: #f4f2eb; color: #6a716f; }
.fleet-editor-card textarea { resize: vertical; min-height: 86px; }
.editor-login-fields input:focus,
.fleet-editor-card input:focus,
.fleet-editor-card select:focus,
.fleet-editor-card textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 158, 59, .13); }
.editor-login-actions { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.editor-login-hint { display: block; margin-top: 12px; color: var(--muted); font: 500 11px/1.55 Manrope, sans-serif; }
.editor-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid #ddd8ca;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}
.editor-login-feedback { min-height: 20px; margin: 10px 0 0 !important; color: #a83a32 !important; font-weight: 700; }
.editor-login-feedback.is-success { color: #26735e !important; }
.editor-login-card button:disabled,
.fleet-editor-card :disabled { opacity: .58; cursor: wait; }

.fleet-editor { align-items: stretch; justify-content: flex-end; padding: 0; }
.fleet-editor-card {
  width: min(760px, 100%);
  height: 100%;
  border: 0;
  border-left: 1px solid rgba(201, 158, 59, .35);
  border-radius: 0;
  overflow-y: auto;
  animation: editorSlideIn .28s ease both;
}
@keyframes editorSlideIn { from { transform: translateX(35px); opacity: .5; } }
.fleet-editor-head {
  position: relative;
  padding: 28px 72px 20px 30px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fffdf8, #faf4e4);
}
.fleet-editor-head h2 { font-size: 28px; }
.fleet-editor-head p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.fleet-editor-preview {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  align-items: center;
  margin: 24px 30px 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.editor-preview-media { width: 128px; height: 82px; border-radius: 8px; overflow: hidden; position: relative; background: var(--cream); }
.fleet-editor-preview img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.fleet-editor-preview div { display: grid; gap: 5px; }
.fleet-editor-preview span { color: var(--gold-deep); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.fleet-editor-preview strong { color: var(--ink); font-family: "Cormorant Garamond", serif; font-size: 23px; }
.fleet-editor-preview small { color: var(--muted); }
.fleet-editor-nav { display: flex; justify-content: space-between; gap: 12px; padding: 0 30px 12px; }
.fleet-editor-nav .btn-ghost { padding: 9px 14px; font-size: 10px; }
.fleet-editor-section { margin: 12px 30px 0; padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.fleet-editor-section-title { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.fleet-editor-section-title span { color: var(--ink); font: 700 18px/1.2 "Cormorant Garamond", serif; }
.fleet-editor-section-title small { color: var(--muted); font-size: 10px; }
.editor-field-grid { display: grid; gap: 14px; }
.editor-field-grid + .editor-field-grid { margin-top: 14px; }
.editor-field-grid-3 { grid-template-columns: 1.5fr .7fr .7fr; }
.editor-field-grid-2 { grid-template-columns: 1fr 1fr; }
.image-display-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.image-display-group { min-width: 0; padding: 16px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(145deg, #fffdf8, #faf7ee); }
.image-display-group.is-detail-view { background: linear-gradient(145deg, #f7faf8, #eef5f1); border-color: rgba(42, 82, 70, .2); }
.image-display-group-head { display: grid; gap: 3px; margin-bottom: 14px; }
.image-display-group-head strong { color: var(--ink); font: 700 16px/1.2 "Cormorant Garamond", serif; }
.image-display-group-head small { color: var(--muted); font: 500 10px/1.45 "Manrope", sans-serif; }
.image-display-fields { grid-template-columns: 1fr; gap: 11px; }
.image-display-hint { color: var(--muted); font-size: 11px; line-height: 1.55; margin: 14px 0 0; }
.bilingual-editor-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; overflow: hidden; }
.fleet-editor-language { display: grid; gap: 14px; padding: 20px; }
.fleet-editor-language.is-english { border-left: 1px solid var(--line); background: #f8faf9; }
.fleet-editor-language .fleet-editor-section-title { margin-bottom: 0; }
.editor-link-section { display: grid; gap: 14px; }
.pricing-editor-section { display: grid; gap: 12px; }
.legacy-rates-field { display: none !important; }
.pricing-editor-section .fleet-editor-section-title { margin-bottom: 2px; }
.pricing-editor-head,
.pricing-editor-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) minmax(120px, .75fr) 78px 38px;
}
.pricing-editor-head {
  color: var(--ink-faint);
  font: 800 9px/1.2 Manrope, sans-serif;
  letter-spacing: .11em;
  padding: 0 4px;
  text-transform: uppercase;
}
.pricing-editor-rows { display: grid; gap: 9px; }
.pricing-editor-row {
  background: #fbf8f0;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 9px;
}
.pricing-editor-row input { min-width: 0; }
.pricing-estimated-toggle {
  align-items: center;
  color: var(--muted);
  display: flex !important;
  font-size: 9px !important;
  gap: 6px !important;
  justify-content: center;
  letter-spacing: .02em !important;
  text-transform: none !important;
}
.pricing-estimated-toggle input { accent-color: var(--gold-deep); appearance: auto; border: 0; box-shadow: none; height: 15px; margin: 0; padding: 0; width: 15px; }
.pricing-remove-row {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(168, 58, 50, .24);
  border-radius: 7px;
  color: #a83a32;
  cursor: pointer;
  display: inline-flex;
  font-size: 19px;
  height: 38px;
  justify-content: center;
  width: 38px;
}
.pricing-remove-row:hover { background: #a83a32; border-color: #a83a32; color: #fff; }
.pricing-add-row {
  background: transparent;
  border: 1px dashed rgba(185, 134, 42, .55);
  border-radius: 8px;
  color: var(--gold-deep);
  cursor: pointer;
  font: 800 10px/1 Manrope, sans-serif;
  letter-spacing: .06em;
  padding: 12px;
  text-transform: uppercase;
}
.pricing-add-row:hover { background: rgba(185, 134, 42, .07); }
.editor-link-toggle { grid-template-columns: auto 1fr !important; align-items: center; cursor: pointer; }
.editor-link-toggle input { width: 18px; height: 18px; accent-color: var(--gold-deep); }
.fleet-editor-actions {
  position: sticky;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding: 16px 30px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, .95);
  backdrop-filter: blur(10px);
}
.editor-destructive-actions { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.editor-danger { border: 0; background: transparent; color: #7b645f; font: 700 11px Manrope, sans-serif; cursor: pointer; }
.editor-delete {
  align-items: center;
  background: #fff4f2;
  border: 1px solid rgba(168, 58, 50, .35);
  border-radius: 4px;
  color: #a83a32;
  cursor: pointer;
  display: inline-flex;
  font: 800 11px/1 Manrope, sans-serif;
  gap: 6px;
  padding: 11px 13px;
}
.editor-delete:hover { background: #a83a32; border-color: #a83a32; color: #fff; }
.editor-delete span { font-size: 16px; line-height: .7; }
.editor-save-status { color: #26735e; font-size: 11px; font-weight: 700; }
.editor-save-status.is-error { color: #a83a32; }
.editor-finish-button {
  border: 1px solid #183b36;
  border-radius: 4px;
  background: #183b36;
  color: #fff;
  padding: 12px 17px;
  font: 800 11px/1 Manrope, sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}
.editor-finish-button:hover { background: #0f302c; }
.card-edit-btn {
  position: absolute;
  top: 52px;
  right: 12px;
  z-index: 5;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 999px;
  background: #183b36;
  color: #fff;
  box-shadow: 0 6px 18px rgba(5, 14, 13, .25);
  font: 800 10px/1 Manrope, sans-serif;
  letter-spacing: .06em;
  cursor: pointer;
}
body.fleet-editing .card-edit-btn { display: inline-flex; }
body.fleet-editing .cat-card { outline: 1px dashed rgba(201, 158, 59, .5); outline-offset: 3px; }

@media (max-width: 980px) {
  .loc-grid,
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .adv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .deals-grid {
    grid-template-columns: 1fr 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .yacht-modal-panel {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
  .modal-media img {
    aspect-ratio: 16/10;
    height: auto;
    min-height: 0;
  }
}
@media (max-width: 720px) {
  .editor-exit-mode { bottom: 18px; width: calc(100% - 36px); justify-content: center; }
  .editor-login, .fleet-editor { padding: 0; }
  .editor-login-card { width: calc(100% - 28px); padding: 30px 22px; }
  .editor-login-actions { align-items: stretch; flex-direction: column; }
  .fleet-editor-card { width: 100%; }
  .fleet-editor-head { padding-left: 20px; }
  .fleet-editor-preview { margin-inline: 18px; grid-template-columns: 92px 1fr; }
  .editor-preview-media { width: 92px; height: 72px; }
  .fleet-editor-preview img { width: 100%; height: 100%; }
  .fleet-editor-nav { padding-inline: 18px; }
  .fleet-editor-section { margin-inline: 18px; padding: 16px; }
  .image-display-groups { grid-template-columns: 1fr; }
  .image-display-editor > .fleet-editor-section-title { align-items: flex-start; flex-direction: column; gap: 5px; }
  .pricing-editor-section .fleet-editor-section-title { align-items: flex-start; flex-direction: column; gap: 5px; }
  .editor-field-grid-3, .editor-field-grid-2, .bilingual-editor-fields { grid-template-columns: 1fr; }
  .fleet-editor-language.is-english { border-left: 0; border-top: 1px solid var(--line); }
  .pricing-editor-head { display: none; }
  .pricing-editor-row { grid-template-columns: 1fr auto 38px; }
  .pricing-editor-row input[data-rate-label-en],
  .pricing-editor-row input[data-rate-value] { grid-column: 1; }
  .pricing-estimated-toggle { grid-column: 2; grid-row: 1 / span 3; }
  .pricing-remove-row { grid-column: 3; grid-row: 1 / span 3; }
  .fleet-editor-actions { flex-wrap: wrap; padding: 14px 18px; }
  .editor-destructive-actions { width: 100%; justify-content: space-between; }
  .editor-save-status { order: -1; width: 100%; }
  .catalog-search {
    align-items: stretch;
    border-radius: 24px;
    flex-wrap: wrap;
    padding: 10px;
  }
  .catalog-search-icon { margin: 14px 10px 0 6px; }
  .catalog-search input { width: calc(100% - 48px); }
  .catalog-search-btn { width: 100%; }
  nav.links {
    display: none;
  }
  .nav { padding-inline: 16px; }
  .brand-logo { width: 120px; }
  .nav-actions { gap: 8px; }
  .nav-actions > .cta-btn { display: none; }
  .loc-grid,
  .svc-grid,
  .cat-grid,
  .adv-grid {
    grid-template-columns: 1fr;
  }
  .deals-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-strip {
    gap: 34px;
    margin-top: 44px;
  }
  .hero-price-callout {
    width: auto;
    min-width: 208px;
    margin-top: 24px;
    padding: 14px 52px 12px 18px;
    gap: 6px;
  }
  .hero-price-callout strong {
    font-size: 46px;
  }
  .hero-price-callout + .hero-actions {
    margin-top: 20px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 110px 0 60px;
  }
  .wrap {
    padding: 0 20px;
  }
  .nav {
    padding: 12px 20px;
  }
  .brand-logo {
    width: 126px;
  }
  .nav > .cta-btn {
    display: none;
  }
  .filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
  }
  .filter-btn {
    flex: 0 0 auto;
  }
  .cat-body {
    padding: 20px;
  }
  .cat-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .yacht-modal {
    align-items: flex-start;
    padding: 16px;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
  .yacht-modal-panel {
    max-height: calc(100dvh - 40px);
    overscroll-behavior: contain;
    scroll-padding-bottom: calc(32px + env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
  }
  .modal-copy {
    padding: 28px 22px calc(48px + env(safe-area-inset-bottom));
  }
  .modal-copy .eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    letter-spacing: 0.22em;
  }
  .modal-close {
    height: 40px;
    right: 10px;
    top: 10px;
    width: 40px;
  }
  .yacht-carousel {
    height: 56vh;
    min-height: 340px;
  }
  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

body{
}
