/* [project]/apps/web/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --background: #fafaf7;
  --foreground: #18211f;
  --muted: #71715f;
  --line: #e7e7df;
  --line-strong: #d1d1c4;
  --accent: #2d5016;
  --accent-strong: #1a300d;
  --accent-soft: #e8f1dc;
  --coral: #c74435;
  --sun: #f2c94c;
  --surface: #fff;
  --surface-soft: #f4f8ed;
  --shadow: 0 20px 60px #1a300d1c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  background: var(--background);
  min-height: 100%;
  color: var(--foreground);
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

body, button, input, textarea, select {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

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

main {
  overflow: clip;
}

.site-header {
  z-index: 40;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: #f5f9f6eb;
  border-bottom: 1px solid #d9e4dfd1;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4%, 56px);
  display: grid;
  position: sticky;
  top: 0;
}

.brand {
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 850;
  display: inline-flex;
}

.brand-mark {
  background: var(--foreground);
  color: #fff;
  border-radius: 8px;
  place-items: center;
  width: 38px;
  height: 38px;
  font-size: .82rem;
  display: grid;
}

.site-nav {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  padding: 5px;
  display: flex;
}

.site-nav a, .header-cta, .text-link, .primary-link {
  border-radius: 8px;
  min-height: 40px;
  font-weight: 750;
}

.site-nav a {
  color: var(--muted);
  align-items: center;
  padding: 0 13px;
  display: inline-flex;
}

.site-nav a:hover {
  color: var(--foreground);
  background: var(--surface-soft);
}

.header-cta {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  justify-content: center;
  justify-self: end;
  align-items: center;
  padding: 0 16px;
  display: inline-flex;
}

.header-auth {
  justify-self: end;
  align-items: center;
  gap: 8px;
  min-width: 0;
  display: inline-flex;
}

.header-auth--muted {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 750;
}

.header-auth__link, .header-auth__button {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  font-weight: 780;
  display: inline-flex;
}

.header-auth__link {
  border: 1px solid var(--line);
  background: var(--surface);
  max-width: 220px;
  color: var(--accent-strong);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.header-auth__button {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--foreground);
  cursor: pointer;
}

.header-auth__button:disabled {
  cursor: not-allowed;
  opacity: .62;
}

.hero {
  color: #fff;
  background-position: center;
  background-size: cover;
  align-items: end;
  min-height: 76svh;
  padding: clamp(42px, 7%, 96px) clamp(18px, 5%, 72px);
  display: flex;
  position: relative;
}

.hero:before {
  content: "";
  background: #0a121094;
  position: absolute;
  inset: 0;
}

.hero__content {
  width: min(100%, 1040px);
  position: relative;
}

.hero h1, .page-intro h1, .detail-hero h1, .section-header h2, .editorial-block h2, .detail-section h2, .site-footer h2, .inquiry-panel h2 {
  letter-spacing: 0;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-weight: 700;
}

.hero h1 {
  max-width: 780px;
  font-size: 6.4rem;
  line-height: .95;
}

.hero p {
  color: #ffffffdb;
  max-width: 610px;
  margin: 18px 0 0;
  font-size: 1.12rem;
  line-height: 1.65;
}

.eyebrow {
  color: var(--accent-strong);
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-size: .78rem;
  font-weight: 850;
}

.search-panel {
  width: min(100%, 980px);
  box-shadow: var(--shadow);
  background: #fffffff5;
  border: 1px solid #ffffff57;
  border-radius: 8px;
  grid-template-columns: 1.1fr 1fr 1.1fr auto;
  gap: 10px;
  margin-top: 30px;
  padding: 10px;
  display: grid;
}

.search-panel[data-compact="true"] {
  border-color: var(--line);
  box-shadow: none;
}

.search-panel label {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  gap: 5px;
  min-width: 0;
  padding: 8px 10px;
  display: grid;
}

.search-panel span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.search-panel select, .search-panel input {
  width: 100%;
  min-width: 0;
  color: var(--foreground);
  background: none;
  border: 0;
  outline: 0;
  font-weight: 760;
}

.search-panel button, .primary-link {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  font-weight: 820;
  display: inline-flex;
}

.search-panel button {
  padding: 0 22px;
}

.section {
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
  padding: 78px 0;
}

.section--split {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  align-items: stretch;
  gap: 32px;
  display: grid;
}

.section-header {
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
  display: flex;
}

.section-header--tight {
  margin-bottom: 18px;
}

.section-header h2, .editorial-block h2, .detail-section h2, .site-footer h2, .inquiry-panel h2 {
  max-width: 760px;
  font-size: 2.55rem;
  line-height: 1.06;
}

.section-header p, .editorial-block p, .detail-section p, .site-footer p, .inquiry-panel p, .empty-state p {
  max-width: 680px;
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.72;
}

.text-link {
  color: var(--accent-strong);
  flex: none;
  align-items: center;
  display: inline-flex;
}

.text-link:hover {
  text-underline-offset: 5px;
  text-decoration: underline;
}

.listing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  display: grid;
}

.listing-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.listing-card__image {
  aspect-ratio: 4 / 3;
  background: var(--surface-soft);
  display: block;
  position: relative;
  overflow: hidden;
}

.listing-card__image img, .destination-card img, .detail-hero__media img, .gallery-strip img, .host-block img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.listing-card__image img, .destination-card img {
  transition: transform .22s;
}

.listing-card:hover .listing-card__image img, .destination-card:hover img {
  transform: scale(1.035);
}

.listing-card__image span {
  color: var(--foreground);
  background: #ffffffeb;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: .78rem;
  font-weight: 850;
  position: absolute;
  top: 12px;
  left: 12px;
}

.listing-card__body {
  flex-direction: column;
  flex: 1;
  gap: 14px;
  padding: 18px;
  display: flex;
}

.listing-card__meta, .listing-card__foot, .detail-hero__facts {
  color: var(--muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-size: .9rem;
  display: flex;
}

.listing-card h3 {
  letter-spacing: 0;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.22;
}

.listing-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.chip-row, .stat-row {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.chip, .stat-row span, .filter-links a {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  min-height: 34px;
  color: var(--muted);
  border-radius: 8px;
  align-items: center;
  padding: 0 10px;
  font-size: .84rem;
  font-weight: 750;
  display: inline-flex;
}

.listing-card__foot {
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}

.listing-card__foot strong {
  color: var(--foreground);
}

.destination-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

.destination-card {
  background: var(--foreground);
  color: #fff;
  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
}

.destination-card a {
  align-items: end;
  min-height: 360px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.destination-card img {
  opacity: .76;
  position: absolute;
  inset: 0;
}

.destination-card a:after {
  content: "";
  background: #0b171461;
  position: absolute;
  inset: 0;
}

.destination-card div {
  z-index: 1;
  padding: 18px;
  position: relative;
}

.destination-card p, .destination-card span {
  color: #ffffffd6;
  margin: 0;
  line-height: 1.55;
}

.destination-card h3 {
  letter-spacing: 0;
  margin: 8px 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 2rem;
}

.editorial-block {
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  display: flex;
}

.editorial-block .text-link {
  margin-top: 22px;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
  gap: 12px;
  display: grid;
}

.proof-grid div {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  min-height: 170px;
  padding: 18px;
}

.proof-grid strong {
  color: var(--accent-strong);
  font-family: Georgia, Times New Roman, serif;
  font-size: 2.25rem;
  display: block;
}

.proof-grid span {
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.45;
  display: block;
}

.page-intro {
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
  padding: 72px 0 34px;
}

.page-intro h1 {
  max-width: 860px;
  font-size: 4.35rem;
  line-height: .98;
}

.page-intro p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.page-intro .search-panel {
  margin-top: 28px;
}

.auth-page {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  align-items: start;
  gap: 36px;
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
  padding: 72px 0 82px;
  display: grid;
}

.auth-page--single {
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
}

.auth-copy {
  padding-top: 22px;
}

.auth-copy h1, .auth-card h1, .auth-card h2 {
  letter-spacing: 0;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-weight: 700;
  line-height: 1;
}

.auth-copy h1 {
  max-width: 740px;
  font-size: 4.5rem;
}

.auth-copy p, .auth-card p {
  color: var(--muted);
  line-height: 1.7;
}

.auth-copy > p {
  max-width: 640px;
  font-size: 1.08rem;
}

.auth-help {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  gap: 8px;
  max-width: 430px;
  margin-top: 28px;
  padding: 16px;
  display: grid;
}

.auth-help span {
  color: var(--muted);
  font-size: .92rem;
}

.auth-card {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 8px;
  gap: 22px;
  padding: 24px;
  display: grid;
}

.auth-card h1, .auth-card h2 {
  font-size: 2.35rem;
}

.auth-card p {
  margin: 10px 0 0;
}

.auth-form {
  gap: 14px;
  display: grid;
}

.auth-form label {
  gap: 7px;
  display: grid;
}

.auth-form label span, .auth-role-grid label span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 760;
}

.auth-form input {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  width: 100%;
  min-width: 0;
  color: var(--foreground);
  border-radius: 8px;
  outline: 0;
  padding: 12px;
}

.auth-form input:focus {
  border-color: var(--accent);
  background: var(--surface);
}

.auth-form button, .auth-actions .primary-link {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  min-height: 46px;
  padding: 0 16px;
  font-weight: 820;
}

.auth-form button:disabled {
  cursor: not-allowed;
  opacity: .64;
}

.auth-role-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  display: grid;
}

.auth-role-grid label {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  cursor: pointer;
  border-radius: 8px;
  min-width: 0;
  padding: 12px;
}

.auth-role-grid label[data-active="true"] {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.auth-role-grid input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.auth-role-grid strong, .auth-role-grid span {
  display: block;
}

.auth-role-grid span {
  margin-top: 5px;
  line-height: 1.35;
}

.auth-status {
  background: var(--surface-soft);
  color: var(--muted);
  border-radius: 8px;
  margin: 0;
  padding: 11px 12px;
  font-size: .92rem;
}

.auth-status[data-state="success"] {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.auth-status[data-state="error"] {
  color: #8d271b;
  background: #ffe7e3;
}

.auth-switch {
  color: var(--muted);
  margin: 0;
}

.auth-switch a {
  color: var(--accent-strong);
  font-weight: 800;
}

.auth-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  display: flex;
}

.filter-links {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  display: flex;
}

.filter-links a {
  background: var(--surface);
}

.empty-state {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  padding: 36px;
}

.empty-state h3 {
  letter-spacing: 0;
  margin: 0;
  font-size: 1.4rem;
}

.detail-hero {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 32px;
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
  padding: 52px 0 24px;
  display: grid;
}

.detail-hero__copy {
  min-width: 0;
}

.detail-hero h1 {
  max-width: 720px;
  font-size: 4.55rem;
  line-height: .97;
}

.detail-hero__copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.72;
}

.detail-hero__facts span {
  background: var(--surface);
  border-radius: 8px;
  padding: 8px 10px;
}

.detail-hero__media {
  aspect-ratio: 5 / 4;
  background: var(--surface-soft);
  border-radius: 8px;
  overflow: hidden;
}

.gallery-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
  padding: 14px 0 38px;
  display: grid;
}

.gallery-strip img {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

.detail-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 36px;
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
  display: grid;
}

.detail-section {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.itinerary-list, .inclusion-list {
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
}

.itinerary-list {
  list-style-position: inside;
}

.itinerary-list li, .inclusion-list li {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  border-radius: 8px;
  padding: 14px 16px;
  line-height: 1.55;
}

.inclusion-list {
  list-style: none;
}

.inclusion-list li:before {
  content: "Included";
  color: var(--accent-strong);
  text-transform: uppercase;
  margin-right: 10px;
  font-size: .78rem;
  font-weight: 850;
  display: inline-flex;
}

.host-block {
  gap: 18px;
  display: grid;
}

.host-block__profile {
  align-items: center;
  gap: 16px;
  display: flex;
}

.host-block__profile img {
  border-radius: 8px;
  flex: none;
  width: 82px;
  height: 82px;
}

.host-block__profile h2, .host-block__profile p {
  margin: 0;
}

.review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  display: grid;
}

.review-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  gap: 14px;
  padding: 18px;
  display: grid;
}

.review-card div {
  color: var(--muted);
  justify-content: space-between;
  gap: 12px;
  display: flex;
}

.review-card strong {
  color: var(--foreground);
}

.review-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.review-card > span {
  color: var(--accent-strong);
  font-weight: 850;
}

.inquiry-panel {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 8px;
  gap: 16px;
  padding: 22px;
  display: grid;
  position: sticky;
  top: 92px;
}

.inquiry-panel .primary-link {
  min-height: 48px;
  padding: 0 18px;
}

.inquiry-panel > span {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}

.booking-sidebar {
  gap: 14px;
  display: grid;
  position: sticky;
  top: 92px;
}

.booking-sidebar .inquiry-panel {
  position: static;
}

.booking-request-form, .data-notice {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
}

.booking-request-form {
  gap: 13px;
  padding: 18px;
  display: grid;
}

.booking-request-form div:first-child {
  gap: 5px;
  display: grid;
}

.booking-request-form label {
  gap: 6px;
  display: grid;
}

.booking-request-form span, .booking-request-form label span, .data-notice span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.booking-request-form input, .booking-request-form textarea {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  width: 100%;
  min-width: 0;
  color: var(--foreground);
  border-radius: 8px;
  outline: 0;
  padding: 10px 11px;
}

.booking-request-form textarea {
  resize: vertical;
  min-height: 86px;
}

.booking-request-form input:focus, .booking-request-form textarea:focus {
  border-color: var(--accent);
  background: var(--surface);
}

.booking-request-form__actions {
  grid-template-columns: 1fr;
  gap: 8px;
  display: grid;
}

.booking-request-form button {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  min-height: 44px;
  color: var(--foreground);
  cursor: pointer;
  border-radius: 8px;
  padding: 0 12px;
  font-weight: 800;
}

.booking-request-form button:first-child {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.booking-request-form button:disabled {
  cursor: not-allowed;
  opacity: .58;
}

.form-status {
  background: var(--surface-soft);
  color: var(--muted);
  border-radius: 8px;
  margin: 0;
  padding: 10px 11px;
  font-size: .9rem;
  line-height: 1.5;
}

.form-status[data-state="success"] {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.form-status[data-state="error"] {
  color: #8d271b;
  background: #ffe7e3;
}

.data-notice {
  gap: 5px;
  margin-top: 18px;
  padding: 12px 14px;
  display: grid;
}

.data-notice strong {
  color: var(--foreground);
  font-size: .92rem;
}

.data-notice[data-source="api"] {
  background: var(--accent-soft);
  border-color: #0f766e5c;
}

.site-footer {
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  width: min(100% - 36px, 1180px);
  margin: 34px auto 0;
  padding: 42px 0 48px;
  display: grid;
}

.footer-links {
  flex-wrap: wrap;
  place-content: start end;
  gap: 10px;
  display: flex;
}

.footer-links a {
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 38px;
  color: var(--muted);
  border-radius: 8px;
  align-items: center;
  padding: 0 12px;
  font-weight: 750;
  display: inline-flex;
}

.footer-links a:hover {
  color: var(--foreground);
}

.dashboard-shell {
  width: min(100% - 36px, 1220px);
  margin: 0 auto;
  padding: 54px 0 28px;
}

.dashboard-hero {
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  padding: 0 0 30px;
  display: grid;
}

.dashboard-hero h1 {
  letter-spacing: 0;
  max-width: 860px;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 4rem;
  line-height: 1;
}

.dashboard-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  margin: 16px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.dashboard-nav {
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
  max-width: 520px;
  display: flex;
}

.dashboard-nav a {
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 38px;
  color: var(--muted);
  border-radius: 8px;
  align-items: center;
  padding: 0 12px;
  font-size: .9rem;
  font-weight: 780;
  display: inline-flex;
}

.dashboard-nav a:hover, .dashboard-nav a.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.dashboard-content {
  gap: 24px;
  padding: 28px 0 0;
  display: grid;
}

.dashboard-grid {
  gap: 24px;
  display: grid;
}

.dashboard-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  display: grid;
}

.metric-card, .dashboard-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
}

.metric-card {
  min-height: 168px;
  padding: 18px;
}

.metric-card span, .profile-detail-grid span, .profile-summary span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.metric-card strong {
  color: var(--accent-strong);
  margin-top: 18px;
  font-family: Georgia, Times New Roman, serif;
  font-size: 2.45rem;
  line-height: 1;
  display: block;
}

.metric-card p {
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.48;
}

.dashboard-panel {
  scroll-margin-top: 110px;
  overflow: hidden;
}

.dashboard-panel__header {
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  padding: 20px;
  display: flex;
}

.dashboard-panel__header h2 {
  letter-spacing: 0;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.85rem;
  line-height: 1.08;
}

.dashboard-panel__action {
  flex: none;
}

.mock-actions {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.mock-actions button {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  min-height: 38px;
  color: var(--foreground);
  cursor: pointer;
  border-radius: 8px;
  padding: 0 12px;
  font-weight: 780;
}

.mock-actions button:first-child {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.workflow-list {
  display: grid;
}

.workflow-row {
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  display: grid;
}

.workflow-row:last-child {
  border-bottom: 0;
}

.workflow-row span, .dashboard-table span {
  color: var(--muted);
  font-size: .86rem;
}

.workflow-row h3 {
  letter-spacing: 0;
  margin: 6px 0;
  font-size: 1.05rem;
  line-height: 1.24;
}

.workflow-row p {
  color: var(--muted);
  margin: 0;
  line-height: 1.52;
}

.workflow-row__meta {
  justify-items: end;
  gap: 8px;
  min-width: 150px;
  display: grid;
}

.status-pill {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  min-height: 30px;
  color: var(--muted);
  border-radius: 8px;
  align-items: center;
  padding: 0 10px;
  font-size: .78rem;
  font-weight: 850;
  display: inline-flex;
}

.status-pill[data-status="approved"], .status-pill[data-status="active"], .status-pill[data-status="available"], .status-pill[data-status="confirmed"], .status-pill[data-status="hero_ready"], .status-pill[data-status="paid"], .status-pill[data-status="published"], .status-pill[data-status="ready"], .status-pill[data-status="strong"], .status-pill[data-status="verified"] {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: #0f766e5c;
}

.status-pill[data-status="pending"], .status-pill[data-status="pending_review"], .status-pill[data-status="awaiting_confirmation"], .status-pill[data-status="draft"], .status-pill[data-status="few_left"], .status-pill[data-status="needs_image"], .status-pill[data-status="needs_review"], .status-pill[data-status="needs_story"], .status-pill[data-status="needs_tagline"], .status-pill[data-status="on_request"], .status-pill[data-status="requires_action"] {
  color: #6f5200;
  background: #fff7d6;
  border-color: #f2c94c9e;
}

.status-pill[data-status="rejected"], .status-pill[data-status="blocked"], .status-pill[data-status="cancelled"], .status-pill[data-status="failed"], .status-pill[data-status="inactive"], .status-pill[data-status="missing"], .status-pill[data-status="suspended"] {
  color: #8d271b;
  background: #ffe7e3;
  border-color: #c7443552;
}

.status-pill[data-status="sold_out"], .status-pill[data-status="completed"], .status-pill[data-status="not_started"], .status-pill[data-status="refunded"], .status-pill[data-status="unpublished"] {
  color: #3f4945;
  background: #edf0ef;
}

.dashboard-table-wrap {
  overflow-x: auto;
}

.dashboard-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 760px;
}

.dashboard-table th, .dashboard-table td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  padding: 16px 18px;
}

.dashboard-table th {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 850;
}

.dashboard-table tr:last-child td {
  border-bottom: 0;
}

.dashboard-table strong {
  margin-bottom: 4px;
  display: block;
}

.profile-summary, .profile-detail-grid {
  padding: 20px;
}

.profile-summary {
  gap: 16px;
  display: grid;
}

.profile-summary--wide {
  gap: 18px;
}

.profile-summary strong, .profile-detail-grid strong {
  margin-top: 7px;
  display: block;
}

.profile-summary p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.profile-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

.profile-detail-grid div {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  min-height: 112px;
  padding: 16px;
}

.mini-listing-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  display: grid;
}

.mini-listing-strip article {
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
  display: grid;
}

.mini-listing-strip img {
  object-fit: cover;
  border-radius: 8px;
  width: 92px;
  height: 74px;
}

.mini-listing-strip strong, .mini-listing-strip span {
  display: block;
}

.mini-listing-strip strong {
  line-height: 1.28;
}

.mini-listing-strip span {
  color: var(--muted);
  margin-top: 6px;
  font-size: .88rem;
}

.customer-status-grid, .customer-payment-list, .customer-next-step-list {
  gap: 14px;
  padding: 20px;
  display: grid;
}

.customer-status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.customer-status-grid article, .customer-payment-list article, .customer-next-step-list article {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  min-width: 0;
  padding: 16px;
}

.customer-status-grid article {
  align-content: start;
  gap: 10px;
  display: grid;
}

.customer-status-grid span, .customer-payment-list span, .customer-next-step-list span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 780;
}

.customer-status-grid p, .customer-next-step-list p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.customer-payment-list article {
  grid-template-columns: minmax(0, 1.2fr) 120px auto auto;
  align-items: center;
  gap: 14px;
  display: grid;
}

.customer-payment-list strong, .customer-payment-list span, .customer-next-step-list strong, .customer-next-step-list span {
  display: block;
}

.customer-next-step-list article {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px 18px;
  display: grid;
}

.customer-next-step-list p {
  grid-column: 1 / -1;
}

.customer-next-step-list__statuses {
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
  display: flex;
}

.admin-control-shell {
  grid-template-columns: 264px minmax(0, 1fr);
  gap: 26px;
  width: min(100% - 36px, 1480px);
  margin: 0 auto;
  padding: 28px 0 52px;
  display: grid;
}

.admin-control-sidebar {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 94%, white);
  border-radius: 8px;
  align-self: start;
  gap: 18px;
  max-height: calc(100svh - 118px);
  padding: 18px;
  display: grid;
  position: sticky;
  top: 96px;
  overflow: auto;
}

.admin-control-brand {
  border-bottom: 1px solid var(--line);
  gap: 6px;
  padding-bottom: 16px;
  display: grid;
}

.admin-control-brand span, .admin-control-nav span, .admin-control-metric span, .admin-roadmap-card span, .admin-module-row span, .admin-boat-summary-grid span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 850;
}

.admin-control-brand strong {
  color: var(--foreground);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.admin-control-nav {
  gap: 7px;
  display: grid;
}

.admin-control-nav a {
  min-height: 38px;
  color: var(--foreground);
  border: 1px solid #0000;
  border-radius: 8px;
  align-items: center;
  padding: 0 11px;
  font-size: .92rem;
  font-weight: 780;
  display: flex;
}

.admin-control-nav a:hover {
  border-color: var(--line);
  background: var(--surface-soft);
}

.admin-control-nav--muted a {
  color: var(--muted);
}

.admin-control-main {
  gap: 22px;
  min-width: 0;
  display: grid;
}

.admin-control-hero {
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 24px;
  min-width: 0;
  padding: 28px 0 30px;
  scroll-margin-top: 120px;
  display: grid;
}

.admin-control-hero h1 {
  letter-spacing: 0;
  max-width: 960px;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 4rem;
  line-height: 1;
}

.admin-control-hero p:not(.eyebrow), .admin-control-hero__card p, .admin-control-roadmap p, .admin-control-metric p, .admin-boat-summary-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.admin-control-hero p:not(.eyebrow) {
  max-width: 830px;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.admin-control-hero__card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  gap: 10px;
  padding: 18px;
  display: grid;
}

.admin-control-hero__card span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 850;
}

.admin-control-hero__card strong {
  font-size: 1.2rem;
}

.admin-control-hero__card p {
  margin: 0;
}

.admin-control-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.admin-control-metric {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  min-width: 0;
  min-height: 158px;
  padding: 16px;
}

.admin-control-metric[data-tone="accent"] {
  background: color-mix(in srgb, var(--accent-soft) 48%, var(--surface));
}

.admin-control-metric[data-tone="attention"] {
  background: #fff8e4;
}

.admin-control-metric strong {
  margin-top: 14px;
  font-family: Georgia, Times New Roman, serif;
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.admin-control-metric p {
  margin: 13px 0 0;
  font-size: .9rem;
}

.admin-control-roadmap {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.admin-control-roadmap article, .admin-boat-summary-grid article {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  min-width: 0;
  padding: 16px;
}

.admin-control-roadmap strong, .admin-boat-summary-grid strong {
  margin-top: 8px;
  font-size: 1.05rem;
  display: block;
}

.admin-control-roadmap p, .admin-boat-summary-grid p {
  margin: 8px 0 0;
}

.admin-control-section {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  scroll-margin-top: 112px;
  overflow: hidden;
}

.admin-control-section--quiet {
  background: var(--surface-soft);
}

.admin-control-section__header {
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-soft) 86%, white);
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  padding: 18px;
  display: flex;
}

.admin-control-section__header h2 {
  letter-spacing: 0;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.8rem;
  line-height: 1.08;
}

.admin-control-section__toolbar {
  flex: none;
  justify-content: end;
  display: flex;
}

.admin-section-toolbar {
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  display: flex;
}

.admin-primary-link {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  font-weight: 850;
  text-decoration: none;
  transition: opacity .2s;
  display: inline-flex;
}

.admin-primary-link:hover {
  opacity: .9;
}

.admin-control-section__body {
  gap: 18px;
  display: grid;
}

.admin-control-grid {
  gap: 22px;
  display: grid;
}

.admin-control-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-chip-row {
  flex-wrap: wrap;
  gap: 7px;
  display: flex;
}

.admin-chip, .admin-soft-badge, .admin-endpoint-badge {
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 30px;
  color: var(--muted);
  border-radius: 8px;
  align-items: center;
  padding: 0 10px;
  font-size: .78rem;
  font-weight: 850;
  display: inline-flex;
}

.admin-chip {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.admin-soft-badge {
  background: var(--surface-soft);
}

.admin-endpoint-badge {
  gap: 8px;
  max-width: 360px;
  min-height: 36px;
}

.admin-endpoint-badge strong {
  color: var(--accent-strong);
}

.admin-endpoint-badge code, .admin-endpoint-list code {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, monospace;
  font-size: .76rem;
}

.admin-action-text {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, monospace;
  font-size: .78rem;
}

.admin-module-list {
  display: grid;
}

.admin-module-row {
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  display: grid;
}

.admin-module-row:last-child {
  border-bottom: 0;
}

.admin-module-row strong {
  margin-bottom: 5px;
  display: block;
}

.admin-module-row > span {
  text-transform: none;
}

.admin-endpoint-list {
  max-height: 540px;
  display: grid;
  overflow: auto;
}

.admin-endpoint-list article {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 64px minmax(0, .8fr) minmax(0, 1.4fr);
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  display: grid;
}

.admin-endpoint-list article:last-child {
  border-bottom: 0;
}

.admin-endpoint-list span {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  min-height: 28px;
  color: var(--accent-strong);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  font-size: .76rem;
  font-weight: 900;
  display: inline-flex;
}

.admin-boat-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  display: grid;
}

.admin-form-grid, .admin-analytics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  display: grid;
}

.admin-form-grid--flush {
  padding: 0;
}

.admin-form {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  border-radius: 8px;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  display: grid;
}

.admin-action-notice, .admin-empty-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  gap: 6px;
  padding: 14px 16px;
  display: grid;
}

.admin-action-notice[data-tone="success"] {
  border-color: color-mix(in srgb, var(--accent) 34%, var(--line));
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.admin-action-notice[data-tone="error"] {
  color: #80391f;
  background: #fff2ec;
  border-color: #d69a7d;
}

.admin-action-notice span, .admin-empty-panel p {
  color: inherit;
  line-height: 1.5;
}

.admin-form > strong, .admin-mini-board > strong, .admin-snippet-box strong {
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.12rem;
}

.admin-form__fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.admin-form label {
  gap: 7px;
  min-width: 0;
  display: grid;
}

.admin-form label span, .admin-checkbox-field legend {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 850;
}

.admin-form input, .admin-form select, .admin-form textarea {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  width: 100%;
  min-height: 40px;
  color: var(--foreground);
  font: inherit;
  border-radius: 8px;
  padding: 9px 10px;
}

.admin-form textarea {
  resize: vertical;
  min-height: 106px;
}

.admin-form button, .admin-inline-action button, .admin-inline-link {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  min-height: 38px;
  padding: 0 12px;
  font-weight: 850;
}

.admin-form button:disabled, .admin-inline-action button:disabled {
  cursor: not-allowed;
  opacity: .52;
}

.admin-checkbox-field {
  border: 0;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  display: grid;
}

.admin-checkbox-field > div {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  display: grid;
}

.admin-checkbox-field label {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  cursor: pointer;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 10px;
  display: flex;
}

.admin-checkbox-field input {
  width: auto;
  min-height: 0;
}

.admin-checkbox-field label span {
  color: var(--foreground);
  text-transform: none;
  font-size: .88rem;
  font-weight: 760;
}

.admin-record-editor-list {
  gap: 10px;
  display: grid;
}

.admin-record-editor {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
}

.admin-record-editor summary {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 13px 15px;
  list-style: none;
  display: flex;
}

.admin-record-editor summary::-webkit-details-marker {
  display: none;
}

.admin-record-editor summary span {
  gap: 4px;
  display: grid;
}

.admin-record-editor summary small {
  color: var(--muted);
  font-size: .82rem;
}

.admin-record-editor .admin-form {
  margin: 0 14px 14px;
}

.admin-boat-workflow {
  gap: 18px;
  padding: 0 18px 18px;
  display: grid;
}

.admin-boat-selector {
  gap: 10px;
  padding-bottom: 2px;
  display: flex;
  overflow-x: auto;
}

.admin-boat-selector a {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: inherit;
  border-radius: 8px;
  flex: 0 0 220px;
  gap: 5px;
  padding: 12px;
  text-decoration: none;
  display: grid;
}

.admin-boat-selector a[data-active="true"] {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.admin-boat-selector span, .admin-boat-workspace__header p, .admin-boat-subsection p, .admin-compact-list span {
  color: var(--muted);
}

.admin-boat-workspace {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
}

.admin-boat-workspace__header {
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-soft) 88%, white);
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  padding: 18px;
  display: flex;
}

.admin-boat-workspace__header h3, .admin-boat-subsection h4 {
  letter-spacing: 0;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
}

.admin-boat-workspace__header h3 {
  font-size: 1.6rem;
  line-height: 1.08;
}

.admin-boat-subsection h4 {
  font-size: 1.16rem;
}

.admin-boat-workspace-grid {
  gap: 18px;
  padding: 18px;
  display: grid;
}

.admin-boat-subsection {
  gap: 14px;
  display: grid;
}

.admin-boat-subsection--quiet {
  border: 1px dashed var(--line-strong);
  background: var(--surface-soft);
  border-radius: 8px;
  padding: 14px;
}

.admin-compact-list {
  gap: 8px;
  display: grid;
}

.admin-compact-list article, .admin-compact-list p {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  border-radius: 8px;
  gap: 5px;
  padding: 12px;
  display: grid;
}

.admin-inline-action {
  z-index: 1;
  pointer-events: auto;
  display: inline-flex;
  position: relative;
}

.admin-inline-actions {
  flex-wrap: wrap;
  gap: 7px;
  display: flex;
}

.admin-inline-action button {
  border-color: var(--line-strong);
  background: var(--surface);
  min-height: 32px;
  color: var(--foreground);
  pointer-events: auto;
  touch-action: manipulation;
  font-size: .78rem;
}

.admin-inline-link {
  border-color: var(--line-strong);
  background: var(--surface);
  min-height: 32px;
  color: var(--foreground);
  align-items: center;
  font-size: .78rem;
  text-decoration: none;
  display: inline-flex;
}

.admin-gallery-manager {
  gap: 14px;
  display: grid;
}

.admin-gallery-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  display: grid;
}

.admin-gallery-preview-grid article {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  gap: 9px;
  min-width: 0;
  padding: 10px;
  display: grid;
}

.admin-gallery-preview-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-soft);
  border-radius: 8px;
  width: 100%;
}

.admin-gallery-preview-grid span, .admin-gallery-empty {
  color: var(--muted);
  font-size: .82rem;
}

.admin-mini-board {
  gap: 12px;
  padding: 18px;
  display: grid;
}

.admin-mini-board > div {
  gap: 10px;
  display: grid;
}

.admin-mini-board article, .admin-snippet-box, .admin-kanban article {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  display: grid;
}

.admin-mini-board article span, .admin-mini-board p, .admin-snippet-box p, .admin-kanban article span {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.admin-kanban {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  display: grid;
}

.admin-snippet-box {
  margin: 0 18px 18px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-auth {
    grid-column: 2;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: center;
  }

  .search-panel, .listing-grid, .destination-grid, .section--split, .detail-hero, .detail-layout, .site-footer, .dashboard-hero, .dashboard-grid--two, .dashboard-stats, .profile-detail-grid, .customer-status-grid, .customer-payment-list article, .customer-next-step-list article, .mini-listing-strip {
    grid-template-columns: 1fr;
  }

  .dashboard-nav, .customer-next-step-list__statuses {
    justify-content: start;
  }

  .auth-page {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-layout {
    gap: 8px;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .inquiry-panel, .booking-sidebar {
    position: static;
  }

  .admin-control-shell, .admin-control-hero, .admin-control-grid--two, .admin-boat-workspace__header, .admin-control-metrics, .admin-control-roadmap, .admin-boat-summary-grid, .admin-gallery-preview-grid, .admin-form-grid, .admin-analytics-grid {
    grid-template-columns: 1fr;
  }

  .admin-control-sidebar {
    max-height: none;
    position: static;
  }

  .admin-control-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-control-nav span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-auth {
    gap: 6px;
  }

  .header-auth__link {
    max-width: 118px;
  }

  .header-cta {
    padding: 0 12px;
  }

  .site-nav {
    justify-content: start;
    overflow-x: auto;
  }

  .hero {
    min-height: 72svh;
    padding: 42px 18px;
  }

  .hero h1, .page-intro h1, .detail-hero h1, .auth-copy h1 {
    font-size: 3.1rem;
  }

  .section, .page-intro, .detail-hero, .gallery-strip, .detail-layout, .site-footer, .dashboard-shell {
    width: min(100% - 28px, 1180px);
  }

  .auth-page {
    width: min(100% - 28px, 1180px);
    padding: 48px 0 58px;
  }

  .auth-role-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    gap: 14px;
    display: grid;
  }

  .section-header h2, .editorial-block h2, .detail-section h2, .site-footer h2, .inquiry-panel h2, .dashboard-hero h1 {
    font-size: 2rem;
  }

  .proof-grid, .review-grid, .gallery-strip {
    grid-template-columns: 1fr;
  }

  .destination-card a {
    min-height: 280px;
  }

  .review-card div, .listing-card__foot {
    display: grid;
  }

  .footer-links {
    justify-content: start;
  }

  .dashboard-panel__header, .workflow-row {
    grid-template-columns: 1fr;
  }

  .dashboard-panel__header {
    display: grid;
  }

  .workflow-row__meta {
    justify-items: start;
  }

  .mini-listing-strip article {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .mini-listing-strip img {
    width: 78px;
    height: 64px;
  }

  .admin-control-shell {
    width: min(100% - 28px, 1180px);
  }

  .admin-control-hero h1 {
    font-size: 2.35rem;
  }

  .admin-control-section__header, .admin-module-row, .admin-form__fields, .admin-kanban, .admin-endpoint-list article {
    grid-template-columns: 1fr;
  }

  .admin-control-section__header {
    display: grid;
  }

  .admin-control-section__toolbar {
    justify-content: start;
  }

  .admin-endpoint-badge {
    max-width: 100%;
  }
}

:root {
  --background: #f7f6f2;
  --foreground: #151713;
  --muted: #646a60;
  --line: #dedbd0;
  --line-strong: #c8c2b3;
  --accent: #315f4b;
  --accent-strong: #234737;
  --accent-soft: #e7eee8;
  --coral: #9d463c;
  --sun: #e4c46a;
  --surface: #fffdf8;
  --surface-soft: #efeee8;
  --shadow: 0 18px 48px #15171314;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--sans);
}

.site-header {
  background: #f7f6f2e0;
  border-bottom-color: #1517131a;
  min-height: 82px;
}

.brand {
  gap: 12px;
}

.brand-mark {
  background: var(--foreground);
  width: 42px;
  height: 42px;
  font-family: var(--serif);
  font-weight: 700;
}

.brand-copy {
  gap: 2px;
  line-height: 1;
  display: grid;
}

.brand-copy strong {
  letter-spacing: 0;
  font-size: .98rem;
}

.brand-copy small {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 650;
}

.site-nav {
  background: #fffdf8b8;
  border-color: #1517131a;
}

.site-nav a, .header-auth__link, .header-auth__button {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 720;
}

.site-nav a:hover, .header-auth__link:hover, .header-auth__button:hover {
  color: var(--foreground);
  background: #315f4b14;
}

.hero {
  background-position: center;
  align-items: center;
  min-height: 78svh;
  padding: clamp(70px, 8vw, 118px) clamp(18px, 5vw, 76px);
}

.hero:before {
  background: linear-gradient(90deg, #090c09c2 0%, #090c096b 48%, #090c092e 100%), linear-gradient(0deg, #090c0975, #090c0914);
}

.hero__content {
  width: min(100%, 1120px);
}

.hero h1 {
  max-width: 910px;
  font-size: clamp(4.4rem, 9vw, 8.9rem);
  font-weight: 650;
  line-height: .88;
}

.hero p:not(.eyebrow) {
  color: #ffffffd6;
  max-width: 660px;
  font-size: 1.18rem;
}

.hero__proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  display: flex;
}

.hero__proof span {
  color: #ffffffdb;
  border: 1px solid #ffffff4d;
  border-radius: 8px;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  font-size: .82rem;
  font-weight: 760;
  display: inline-flex;
}

.eyebrow {
  color: var(--accent-strong);
  letter-spacing: .08em;
  font-size: .75rem;
  font-weight: 850;
}

.hero .eyebrow, .detail-hero .eyebrow {
  color: var(--sun);
}

.search-panel {
  background: #fffdf8f0;
  border-color: #ffffff75;
  border-radius: 8px;
  grid-template-columns: 1.05fr 1fr 1.1fr auto;
  gap: 0;
  padding: 8px;
  box-shadow: 0 18px 52px #0000001f;
}

.search-panel[data-compact="true"] {
  border-color: var(--line);
  background: var(--surface);
}

.search-panel label {
  border: 0;
  border-right: 1px solid var(--line);
  background: none;
  border-radius: 0;
  gap: 6px;
  padding: 11px 14px;
}

.search-panel label:last-of-type {
  border-right: 0;
}

.search-panel span {
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .72rem;
}

.search-panel select, .search-panel input {
  color: var(--foreground);
  font-weight: 680;
}

.search-panel button, .primary-link {
  border-color: var(--foreground);
  background: var(--foreground);
  color: var(--surface);
  transition: background .18s, color .18s, border-color .18s;
}

.search-panel button:hover, .primary-link:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.section {
  width: min(100% - 44px, 1240px);
  padding: clamp(78px, 8vw, 118px) 0;
}

.section-header {
  align-items: end;
  margin-bottom: 34px;
}

.section-header h2, .editorial-block h2, .detail-section h2, .site-footer h2, .inquiry-panel h2 {
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.7vw, 4.9rem);
  font-weight: 620;
  line-height: .96;
}

.section-header p, .editorial-block p, .detail-section p, .site-footer p, .inquiry-panel p, .empty-state p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.text-link {
  color: var(--accent-strong);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .9rem;
}

.collection-grid {
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 16px;
  display: grid;
}

.collection-card {
  color: #fff;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  align-content: end;
  min-height: 250px;
  padding: clamp(20px, 3vw, 34px);
  display: grid;
  position: relative;
  overflow: hidden;
}

.collection-card:before {
  content: "";
  background: linear-gradient(0deg, #080c09b3, #080c091f);
  position: absolute;
  inset: 0;
}

.collection-card--large {
  grid-row: 1 / span 2;
  min-height: 520px;
}

.collection-card span, .collection-card strong {
  position: relative;
}

.collection-card span {
  color: var(--sun);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: .76rem;
  font-weight: 850;
}

.collection-card strong {
  max-width: 620px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3.45rem);
  font-weight: 620;
  line-height: 1;
}

.listing-grid {
  gap: 24px;
}

.listing-card {
  background: none;
  border-color: #1517131a;
}

.listing-card__image {
  aspect-ratio: 5 / 4;
  border-radius: 8px;
}

.listing-card__image span {
  color: var(--foreground);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #fffdf8e0;
  border: 1px solid #ffffff80;
  font-size: .72rem;
  top: 14px;
  left: 14px;
}

.listing-card__body {
  gap: 12px;
  padding: 18px 2px 0;
}

.listing-card__meta {
  color: var(--muted);
  font-size: .82rem;
}

.listing-card h3 {
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 620;
  line-height: 1.02;
}

.listing-card p {
  line-height: 1.62;
}

.listing-card__host {
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 800;
  color: var(--accent-strong) !important;
}

.chip, .stat-row span, .filter-links a {
  border-color: var(--line);
  min-height: 34px;
  color: var(--muted);
  background: #fffdf8b8;
  font-size: .8rem;
}

.listing-card__foot {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.destination-grid {
  gap: 18px;
}

.destination-card {
  background: var(--foreground);
}

.destination-card a {
  min-height: 430px;
}

.destination-card img {
  opacity: .82;
}

.destination-card a:after {
  background: linear-gradient(0deg, #090c09c2, #090c091a), #090c091f;
}

.destination-card div {
  padding: 22px;
}

.destination-card h3 {
  font-size: 2.55rem;
  font-weight: 620;
  line-height: .95;
}

.destination-card p, .destination-card span {
  color: #ffffffd1;
}

.destination-card strong {
  color: var(--sun);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 18px;
  font-size: .76rem;
  display: block;
}

.section--split {
  border-color: var(--line);
  gap: 42px;
}

.trust-section {
  align-items: center;
}

.proof-grid div {
  background: var(--surface);
  border-color: #1517131a;
}

.proof-grid strong {
  color: var(--accent-strong);
  font-family: var(--serif);
  font-weight: 620;
}

.field-note-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  display: grid;
}

.field-note-grid article {
  border-top: 1px solid var(--foreground);
  min-height: 300px;
  padding: 20px 0 0;
}

.field-note-grid span {
  color: var(--accent-strong);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 850;
}

.field-note-grid h3 {
  max-width: 360px;
  font-family: var(--serif);
  margin: 28px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 620;
  line-height: 1;
}

.field-note-grid p {
  max-width: 330px;
  color: var(--muted);
  margin: 18px 0 0;
  line-height: 1.7;
}

.page-intro {
  width: min(100% - 44px, 1240px);
  padding: clamp(64px, 7vw, 104px) 0 38px;
}

.page-intro--image-led {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  display: grid;
}

.page-intro h1 {
  max-width: 920px;
  font-size: clamp(3.8rem, 7vw, 7.4rem);
  font-weight: 620;
  line-height: .88;
}

.page-intro p {
  max-width: 710px;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-intro--image-led img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

.filter-links {
  margin-bottom: 26px;
}

.filter-links a:hover, .filter-links a.is-active {
  border-color: var(--foreground);
  background: var(--foreground);
  color: var(--surface);
}

.detail-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(28px, 5vw, 70px);
  width: min(100% - 44px, 1320px);
  padding: clamp(46px, 6vw, 82px) 0 28px;
}

.detail-hero__media {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
}

.detail-hero h1 {
  max-width: 720px;
  font-size: clamp(3.75rem, 6.4vw, 7.4rem);
  font-weight: 620;
  line-height: .88;
}

.detail-hero__copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.detail-hero__facts {
  margin-top: 24px;
}

.detail-hero__facts span {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
}

.gallery-strip {
  gap: 18px;
  width: min(100% - 44px, 1320px);
  padding: 14px 0 54px;
}

.gallery-strip img {
  aspect-ratio: 16 / 10;
}

.detail-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: clamp(30px, 5vw, 74px);
  width: min(100% - 44px, 1240px);
}

.detail-section {
  padding: 42px 0;
}

.detail-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
}

.itinerary-list, .inclusion-list {
  gap: 0;
  margin-top: 24px;
}

.itinerary-list li, .inclusion-list li {
  color: var(--foreground);
  background: none;
  border-width: 1px 0 0;
  border-radius: 0;
  padding: 18px 0;
}

.itinerary-list li:last-child, .inclusion-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.host-block__profile {
  align-items: start;
}

.host-block__profile img {
  border-radius: 8px;
  width: 104px;
  height: 104px;
}

.host-block__assurance {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  display: grid;
}

.host-block__assurance span {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--accent-strong);
  border-radius: 8px;
  padding: 12px;
  font-size: .82rem;
  font-weight: 800;
}

.review-card {
  border-color: var(--line);
  background: none;
}

.booking-sidebar {
  gap: 16px;
}

.inquiry-panel, .booking-request-form, .data-notice {
  border-color: var(--line-strong);
  background: var(--surface);
}

.inquiry-panel {
  padding: 24px;
  top: 104px;
  box-shadow: 0 20px 58px #1517131a;
}

.inquiry-panel h2 {
  font-size: 2.25rem;
  line-height: 1;
}

.booking-request-form {
  padding: 20px;
}

.booking-request-form input, .booking-request-form textarea, .auth-form input {
  border-color: var(--line);
  background: #fbfaf6;
}

.site-footer {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr);
  gap: 56px;
  width: min(100% - 44px, 1240px);
  margin-top: 52px;
  padding: 64px 0 70px;
}

.site-footer h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4vw, 4.25rem);
}

.site-footer__lead p:not(.eyebrow) {
  max-width: 620px;
}

.site-footer__columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 26px;
  display: grid;
}

.site-footer__columns div {
  gap: 10px;
  display: grid;
}

.site-footer__columns span {
  color: var(--accent-strong);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 850;
}

.site-footer__columns a, .site-footer__columns p {
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

.site-footer__columns a:hover {
  color: var(--foreground);
}

@media (max-width: 980px) {
  .search-panel, .collection-grid, .page-intro--image-led, .detail-hero, .detail-layout, .site-footer, .host-block__assurance, .field-note-grid {
    grid-template-columns: 1fr;
  }

  .collection-card--large {
    grid-row: auto;
  }

  .collection-card, .collection-card--large {
    min-height: 360px;
  }

  .search-panel label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .search-panel label:last-of-type {
    border-bottom: 0;
  }

  .page-intro--image-led img {
    aspect-ratio: 16 / 10;
  }

  .detail-hero__media {
    aspect-ratio: 16 / 11;
    order: -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: auto;
  }

  .brand-copy {
    display: none;
  }

  .hero {
    min-height: 78svh;
    padding: 56px 18px;
  }

  .hero h1, .page-intro h1, .detail-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  .section, .page-intro, .detail-hero, .gallery-strip, .detail-layout, .site-footer {
    width: min(100% - 28px, 1240px);
  }

  .listing-grid, .destination-grid, .review-grid, .gallery-strip, .site-footer__columns {
    grid-template-columns: 1fr;
  }

  .section-header {
    gap: 14px;
    display: grid;
  }

  .destination-card a {
    min-height: 340px;
  }

  .field-note-grid article {
    min-height: auto;
    padding-bottom: 34px;
  }
}

:is(body:has(.experience-home) > .site-header, body:has(.experience-home) > .site-footer) {
  display: none;
}

.experience-home {
  --home-bg: #f8f5ed;
  --home-ink: #11140f;
  --home-muted: #69665d;
  --home-line: #d9d1bf;
  --home-green: #1f4a38;
  --home-gold: #c9aa58;
  --home-surface: #fffaf1;
  background: var(--home-bg);
  color: var(--home-ink);
}

.home-announcement, .home-header, .home-section, .home-footer {
  width: min(100% - 56px, 1320px);
  margin: 0 auto;
}

.home-announcement {
  min-height: 40px;
  color: var(--home-muted);
  border-bottom: 1px solid #1316111a;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: .78rem;
  font-weight: 720;
  display: flex;
}

.home-announcement div {
  flex-wrap: wrap;
  gap: 8px 18px;
  min-width: 0;
  display: flex;
}

.home-announcement span {
  align-items: center;
  display: inline-flex;
}

.home-announcement span:before {
  background: var(--home-green);
  content: "";
  border-radius: 999px;
  width: 5px;
  height: 5px;
  margin-right: 8px;
}

.home-announcement a {
  color: var(--home-green);
  letter-spacing: .03em;
  text-transform: uppercase;
  flex: none;
  font-weight: 850;
}

.home-header {
  z-index: 50;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: #f7f5efe6;
  border-bottom: 1px solid #1316111a;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  min-height: 80px;
  display: grid;
  position: sticky;
  top: 0;
}

.home-brand {
  align-items: center;
  gap: 12px;
  font-weight: 820;
  display: inline-flex;
}

.home-brand span {
  background: var(--home-ink);
  width: 42px;
  height: 42px;
  color: var(--home-surface);
  font-family: var(--serif);
  border-radius: 8px;
  place-items: center;
  display: grid;
}

.home-header nav {
  min-width: 0;
  color: var(--home-muted);
  justify-content: center;
  gap: 24px;
  font-size: .88rem;
  font-weight: 740;
  display: flex;
}

.home-header nav a:hover, .home-header__actions a:first-child:hover, .home-footer a:hover {
  color: var(--home-ink);
}

.home-header__actions {
  align-items: center;
  gap: 10px;
  display: flex;
}

.home-header__actions a:first-child {
  color: var(--home-muted);
  font-size: .9rem;
  font-weight: 760;
}

.home-button {
  border: 1px solid var(--home-ink);
  letter-spacing: .02em;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  font-size: .86rem;
  font-weight: 820;
  transition: background .18s, color .18s, border-color .18s;
  display: inline-flex;
}

.home-button--dark {
  background: var(--home-ink);
  color: var(--home-surface);
}

.home-button--dark:hover {
  border-color: var(--home-green);
  background: var(--home-green);
}

.home-button--light {
  border-color: var(--home-surface);
  background: var(--home-surface);
  color: var(--home-ink);
}

.home-button--light:hover {
  border-color: var(--home-gold);
  background: var(--home-gold);
}

.home-button--glass, .home-button--outline-light {
  color: var(--home-surface);
  background: #ffffff14;
  border-color: #ffffff80;
}

.home-button--glass:hover, .home-button--outline-light:hover {
  background: #ffffff2e;
}

.home-hero {
  color: #fff;
  background-position: center;
  background-size: cover;
  align-items: center;
  min-height: 80svh;
  display: grid;
  position: relative;
  overflow: hidden;
}

.home-hero:before {
  content: "";
  background: linear-gradient(90deg, #080a08bd, #080a0861 54%, #080a081a), linear-gradient(0deg, #080a0861, #080a080a);
  position: absolute;
  inset: 0;
}

.home-hero__content {
  width: min(100% - 56px, 1320px);
  margin: 0 auto;
  padding: clamp(82px, 8vw, 118px) 0;
  position: relative;
}

.home-kicker {
  color: var(--home-green);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: .72rem;
  font-weight: 880;
}

.home-hero .home-kicker, .home-final-cta .home-kicker {
  color: var(--home-gold);
}

.home-hero h1, .home-section__header h2, .home-final-cta h2 {
  font-family: var(--serif);
  letter-spacing: 0;
  margin: 0;
  font-weight: 560;
}

.home-hero h1 {
  max-width: 920px;
  font-size: 7.2rem;
  line-height: .92;
}

.home-hero p:not(.home-kicker) {
  color: #ffffffd6;
  max-width: 640px;
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.74;
}

.home-hero__actions, .home-final-cta__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  display: flex;
}

.home-trip-finder {
  width: min(100%, 940px);
  color: var(--home-ink);
  background: #fffdf8f2;
  border: 1px solid #fff6;
  border-radius: 8px;
  grid-template-columns: 1fr 1fr .82fr auto;
  gap: 0;
  margin-top: 36px;
  padding: 8px;
  display: grid;
  box-shadow: 0 16px 38px #0000001f;
}

.home-trip-finder label {
  border-right: 1px solid var(--home-line);
  gap: 6px;
  min-width: 0;
  padding: 12px 16px;
  display: grid;
}

.home-trip-finder label:last-of-type {
  border-right: 0;
}

.home-trip-finder span {
  color: var(--home-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 850;
}

.home-trip-finder select, .home-trip-finder input {
  width: 100%;
  min-width: 0;
  color: var(--home-ink);
  background: none;
  border: 0;
  outline: 0;
  font-weight: 720;
}

.home-trip-finder button {
  border: 1px solid var(--home-ink);
  background: var(--home-ink);
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  min-height: 56px;
  padding: 0 20px;
  font-weight: 850;
}

.home-trust-row {
  flex-wrap: wrap;
  gap: 10px;
  max-width: 940px;
  margin-top: 16px;
  display: flex;
}

.home-trust-row span {
  color: #ffffffd1;
  border: 1px solid #ffffff52;
  border-radius: 8px;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  font-size: .8rem;
  font-weight: 760;
  display: inline-flex;
}

.home-section {
  padding: clamp(92px, 8vw, 136px) 0;
}

.home-section--tinted {
  background: #efebe0;
  width: 100%;
  max-width: none;
  padding-left: max(28px, 50vw - 660px);
  padding-right: max(28px, 50vw - 660px);
}

.home-section__header {
  gap: 16px;
  max-width: 820px;
  margin-bottom: 46px;
  display: grid;
}

.home-section__header h2, .home-final-cta h2 {
  font-size: 4.55rem;
  line-height: .98;
}

.home-section__header p:not(.home-kicker), .home-final-cta p {
  max-width: 650px;
  color: var(--home-muted);
  margin: 0;
  font-size: 1rem;
  line-height: 1.76;
}

.home-experience-grid, .home-destination-grid, .home-trust-grid, .home-step-grid, .home-testimonial-grid, .home-editorial-grid {
  gap: 28px;
  display: grid;
}

.home-experience-grid, .home-editorial-grid, .home-destination-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-experience-card {
  gap: 16px;
  min-width: 0;
  display: grid;
}

.home-experience-card__image, .home-destination-card a {
  background: var(--home-ink);
  border: 1px solid #11140f1f;
  border-radius: 8px;
  display: block;
  position: relative;
  overflow: hidden;
}

.home-experience-card__image {
  aspect-ratio: 4 / 5.08;
}

.home-experience-card__image img, .home-destination-card img, .home-editorial-card img {
  object-fit: cover;
  filter: saturate(.94) contrast(1.03);
  width: 100%;
  height: 100%;
  transition: filter .24s, transform .24s;
}

.home-experience-card:hover img, .home-destination-card:hover img, .home-editorial-card:hover img {
  filter: saturate() contrast(1.04);
  transform: scale(1.035);
}

.home-experience-card__image span {
  color: var(--home-ink);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #fffaf1e6;
  border: 1px solid #ffffff80;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: .72rem;
  font-weight: 850;
  position: absolute;
  top: 14px;
  left: 14px;
}

.home-experience-card__body {
  gap: 13px;
  display: grid;
}

.home-experience-card__meta, .home-experience-card__footer {
  color: var(--home-muted);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: .82rem;
  display: flex;
}

.home-experience-card h3, .home-destination-card h3, .home-editorial-card h3, .home-trust-grid h3, .home-step-grid h3 {
  font-family: var(--serif);
  letter-spacing: 0;
  margin: 0;
  font-weight: 560;
}

.home-experience-card h3 {
  font-size: 1.9rem;
  line-height: 1.04;
}

.home-experience-card p {
  color: var(--home-muted);
  margin: 0;
  line-height: 1.68;
}

.home-experience-card__footer {
  border-top: 1px solid var(--home-line);
  align-items: center;
  padding-top: 16px;
}

.home-experience-card__footer strong {
  color: var(--home-ink);
}

.home-experience-card__footer a {
  color: var(--home-green);
  font-weight: 850;
}

.home-destination-card a {
  color: #fff;
  min-height: 390px;
}

.home-destination-card a:after {
  content: "";
  background: linear-gradient(0deg, #080a08b8, #080a081a);
  position: absolute;
  inset: 0;
}

.home-destination-card div {
  z-index: 1;
  padding: 24px;
  position: absolute;
  inset: auto 0 0;
}

.home-destination-card span, .home-editorial-card span, .home-trust-grid span, .home-step-grid span {
  color: var(--home-gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 870;
}

.home-destination-card h3 {
  margin-top: 8px;
  font-size: 2.65rem;
  line-height: .98;
}

.home-destination-card p {
  color: #ffffffd6;
  max-width: 330px;
  margin: 14px 0 0;
  line-height: 1.62;
}

.home-trust-grid, .home-step-grid, .home-testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-step-grid, .home-testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-trust-grid article, .home-step-grid article, .home-testimonial-grid article {
  border-top: 1px solid var(--home-ink);
  min-height: 250px;
  padding-top: 24px;
}

.home-trust-grid h3, .home-step-grid h3 {
  margin-top: 42px;
  font-size: 2.05rem;
  line-height: 1.04;
}

.home-trust-grid p, .home-step-grid p, .home-testimonial-grid p, .home-editorial-card p {
  color: var(--home-muted);
  line-height: 1.74;
}

.home-how-it-works {
  gap: 34px;
  display: grid;
}

.home-testimonial-grid article {
  border: 1px solid var(--home-line);
  background: var(--home-surface);
  border-radius: 8px;
  min-height: 290px;
  padding: 26px;
}

.home-testimonial-grid p {
  color: var(--home-ink);
  font-family: var(--serif);
  margin: 0 0 30px;
  font-size: 1.58rem;
  line-height: 1.22;
}

.home-testimonial-grid strong, .home-testimonial-grid span {
  display: block;
}

.home-testimonial-grid span {
  color: var(--home-muted);
  margin-top: 6px;
}

.home-editorial-card {
  background: var(--home-surface);
  border: 1px solid #11140f14;
  border-radius: 8px;
  overflow: hidden;
}

.home-editorial-card img {
  aspect-ratio: 16 / 10.5;
}

.home-editorial-card div {
  gap: 13px;
  padding: 22px;
  display: grid;
}

.home-editorial-card span {
  color: var(--home-green);
}

.home-editorial-card h3 {
  font-size: 1.8rem;
  line-height: 1.05;
}

.home-editorial-card p {
  margin: 0;
}

.home-final-cta {
  color: #fff;
  background-color: #0000;
  background-image: linear-gradient(90deg, #080a08d1, #080a0875), url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-repeat: repeat, repeat;
  background-size: cover;
  background-attachment: scroll, scroll;
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  border-radius: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
  width: min(100% - 44px, 1240px);
  margin: clamp(92px, 8vw, 136px) auto;
  padding: clamp(38px, 5vw, 70px);
  display: grid;
}

.home-final-cta h2 {
  max-width: 780px;
}

.home-final-cta p {
  color: #ffffffd1;
}

.home-final-cta__actions {
  justify-content: end;
  min-width: 260px;
}

.home-footer {
  border-top: 1px solid var(--home-line);
  min-height: 108px;
  color: var(--home-muted);
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  display: flex;
}

.home-footer div, .home-footer nav {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  display: flex;
}

.home-footer strong {
  color: var(--home-ink);
}

.home-footer a {
  font-weight: 760;
}

@media (max-width: 1040px) {
  .home-header {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 0;
  }

  .home-header nav {
    justify-content: start;
    overflow-x: auto;
  }

  .home-header__actions {
    justify-content: start;
  }

  .home-trip-finder, .home-experience-grid, .home-destination-grid, .home-trust-grid, .home-step-grid, .home-testimonial-grid, .home-editorial-grid, .home-final-cta {
    grid-template-columns: 1fr;
  }

  .home-trip-finder label {
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .home-trip-finder label:last-of-type {
    border-bottom: 0;
  }

  .home-destination-card a {
    min-height: 340px;
  }

  .home-final-cta__actions {
    justify-content: start;
  }

  .home-hero h1 {
    font-size: 5.6rem;
  }

  .home-section__header h2, .home-final-cta h2 {
    font-size: 3.7rem;
  }
}

@media (max-width: 720px) {
  .home-announcement, .home-header, .home-section, .home-footer, .home-hero__content, .home-final-cta {
    width: min(100% - 28px, 1240px);
  }

  .home-announcement, .home-footer {
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 12px 0;
  }

  .home-header nav {
    gap: 14px;
  }

  .home-hero {
    min-height: 82svh;
  }

  .home-hero h1 {
    font-size: 3.85rem;
  }

  .home-section {
    padding: 64px 0;
  }

  .home-section--tinted {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-section__header h2, .home-final-cta h2 {
    font-size: 3.05rem;
  }

  .home-trust-grid article, .home-step-grid article {
    min-height: auto;
    padding-bottom: 28px;
  }
}

.listing-detail-page {
  --detail-bg: #f8f5ed;
  --detail-ink: #11140f;
  --detail-muted: #69665d;
  --detail-line: #d9d1bf;
  --detail-green: #1f4a38;
  --detail-gold: #c9aa58;
  --detail-surface: #fffaf1;
  background: var(--detail-bg);
  color: var(--detail-ink);
}

.listing-detail-page .detail-hero {
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 64px;
  width: min(100% - 56px, 1320px);
  padding: 72px 0 42px;
}

.listing-detail-page .detail-hero__copy {
  gap: 22px;
  display: grid;
}

.listing-detail-page .detail-hero h1 {
  max-width: 720px;
  font-size: 5.65rem;
  font-weight: 560;
  line-height: .94;
}

.listing-detail-page .detail-hero__copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--detail-muted);
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.76;
}

.listing-detail-page .detail-hero__facts {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
  display: flex;
}

.listing-detail-page .detail-hero__facts span {
  border-color: var(--detail-line);
  min-height: 38px;
  color: var(--detail-muted);
  background: #fffaf1bf;
  font-size: .82rem;
  font-weight: 780;
}

.detail-hero__actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  display: flex;
}

.listing-detail-page .detail-hero__actions .primary-link {
  min-height: 48px;
  padding: 0 20px;
}

.listing-detail-page .detail-hero__actions .text-link {
  align-items: center;
  min-height: 48px;
}

.detail-hero__gallery {
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 14px;
  display: grid;
}

.listing-detail-page .detail-hero__media {
  aspect-ratio: 4 / 5;
  border: 1px solid #11140f1f;
  border-radius: 8px;
}

.listing-detail-page .detail-hero__media img, .detail-hero__thumbs img {
  filter: saturate(.94) contrast(1.03);
}

.detail-hero__thumbs {
  gap: 14px;
  display: grid;
}

.detail-hero__thumbs img {
  object-fit: cover;
  border: 1px solid #11140f1f;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.listing-detail-page .gallery-strip {
  display: none;
}

.listing-detail-page .detail-layout {
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 72px;
  width: min(100% - 56px, 1240px);
  padding-top: 20px;
}

.detail-summary-panel {
  border-top: 1px solid var(--detail-ink);
  border-bottom: 1px solid var(--detail-line);
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 26px;
  display: grid;
}

.detail-summary-panel > div {
  border-right: 1px solid var(--detail-line);
  align-content: start;
  gap: 8px;
  min-height: 136px;
  padding: 20px 22px;
  display: grid;
}

.detail-summary-panel > div:last-child {
  border-right: 0;
}

.detail-summary-panel span, .detail-summary-panel small {
  color: var(--detail-muted);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 830;
}

.detail-summary-panel strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 560;
  line-height: 1.08;
}

.detail-summary-panel__price strong {
  color: var(--detail-green);
  font-size: 2.25rem;
}

.listing-detail-page .detail-section {
  border-top-color: var(--detail-line);
  padding: 52px 0;
}

.listing-detail-page .detail-section h2 {
  max-width: 760px;
  font-size: 3.45rem;
  font-weight: 560;
  line-height: 1;
}

.listing-detail-page .detail-section p:not(.eyebrow) {
  max-width: 690px;
  color: var(--detail-muted);
  line-height: 1.76;
}

.listing-detail-page .chip-row {
  margin-top: 22px;
}

.listing-detail-page .chip, .listing-detail-page .stat-row span {
  border-color: var(--detail-line);
  color: var(--detail-muted);
  background: #fffaf1b8;
}

.listing-detail-page .itinerary-list {
  counter-reset: itinerary;
  list-style: none;
}

.listing-detail-page .itinerary-list li {
  counter-increment: itinerary;
  color: var(--detail-ink);
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  font-size: 1.03rem;
  display: grid;
}

.listing-detail-page .itinerary-list li:before {
  content: counter(itinerary, decimal-leading-zero);
  color: var(--detail-green);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
}

.inclusion-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  margin-top: 28px;
  display: grid;
}

.inclusion-grid h3 {
  font-family: var(--serif);
  margin: 0;
  font-size: 2rem;
  font-weight: 560;
}

.listing-detail-page .inclusion-list, .exclusion-list {
  padding: 0;
  list-style: none;
}

.listing-detail-page .inclusion-list li, .exclusion-list li {
  border-width: 1px 0 0;
  border-color: var(--detail-line);
  color: var(--detail-ink);
  padding: 18px 0;
  line-height: 1.58;
}

.listing-detail-page .inclusion-list li:last-child, .exclusion-list li:last-child {
  border-bottom: 1px solid var(--detail-line);
}

.listing-detail-page .inclusion-list li:before {
  content: "Included";
  color: var(--detail-green);
}

.exclusion-list li:before {
  content: "Note";
  color: var(--detail-muted);
  text-transform: uppercase;
  margin-right: 10px;
  font-size: .78rem;
  font-weight: 850;
  display: inline-flex;
}

.listing-detail-page .host-block {
  gap: 22px;
  display: grid;
}

.listing-detail-page .host-block__profile {
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 20px;
  display: grid;
}

.listing-detail-page .host-block__profile img {
  width: 116px;
  height: 116px;
}

.listing-detail-page .host-block__assurance span {
  background: var(--detail-surface);
}

.listing-detail-page .review-grid {
  gap: 18px;
}

.listing-detail-page .review-card {
  border-color: var(--detail-line);
  background: #fffaf18f;
  padding: 22px;
}

.listing-detail-page .review-card p {
  color: var(--detail-ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.25;
}

.listing-detail-page .review-card > span {
  color: var(--detail-green);
}

.listing-detail-page .booking-sidebar {
  gap: 16px;
  position: sticky;
  top: 102px;
}

.listing-detail-page .inquiry-panel {
  border-color: var(--detail-line);
  background: var(--detail-surface);
  padding: 24px;
  top: 102px;
  box-shadow: 0 16px 38px #11140f1a;
}

.inquiry-panel__price {
  border-bottom: 1px solid var(--detail-line);
  gap: 4px;
  padding-bottom: 18px;
  display: grid;
}

.inquiry-panel__price span, .inquiry-panel__price small {
  color: var(--detail-muted);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 820;
}

.inquiry-panel__price strong {
  color: var(--detail-green);
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 560;
  line-height: 1;
}

.listing-detail-page .inquiry-panel h2 {
  font-size: 2.15rem;
  font-weight: 560;
}

.inquiry-panel__facts {
  gap: 8px;
  display: grid;
}

.inquiry-panel__facts span {
  border: 1px solid var(--detail-line);
  color: var(--detail-muted);
  background: #f8f5ed9e;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: .86rem;
  font-weight: 760;
}

.listing-detail-page .inquiry-panel .primary-link {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
}

.listing-detail-page .inquiry-panel .text-link {
  justify-content: center;
}

.listing-detail-page .booking-request-form {
  border-color: var(--detail-line);
  background: var(--detail-surface);
  gap: 14px;
  padding: 20px;
}

.listing-detail-page .booking-request-form input, .listing-detail-page .booking-request-form textarea {
  background: #fbf7ef;
}

.boat-cabin-grid {
  gap: 18px;
  margin-top: 28px;
  display: grid;
}

.boat-cabin-card {
  border-top: 1px solid var(--detail-line);
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  display: grid;
}

.boat-cabin-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

.boat-cabin-card h3 {
  font-family: var(--serif);
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 560;
}

.boat-cabin-card p {
  margin: 0 0 14px;
}

.boat-cabin-card span {
  border: 1px solid var(--detail-line);
  color: var(--detail-muted);
  border-radius: 8px;
  margin: 0 8px 8px 0;
  padding: 8px 10px;
  font-size: .84rem;
  font-weight: 760;
  display: inline-flex;
}

.boat-cabin-card strong {
  color: var(--detail-green);
  font-family: var(--serif);
  margin-top: 8px;
  font-size: 1.65rem;
  font-weight: 560;
  display: block;
}

.boat-booking-panel {
  position: sticky;
  top: 102px;
}

.boat-selector-group {
  gap: 10px;
  display: grid;
}

.boat-selector-group > span {
  color: var(--detail-muted);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 820;
}

.boat-option-grid, .boat-option-list {
  gap: 10px;
  display: grid;
}

.boat-option-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.boat-option {
  border: 1px solid var(--detail-line);
  width: 100%;
  color: var(--detail-ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  background: #f8f5ed9e;
  border-radius: 8px;
  gap: 6px;
  padding: 12px;
  display: grid;
}

.boat-option[data-active="true"] {
  border-color: var(--detail-green);
  background: #1f4a3814;
}

.boat-option:disabled {
  cursor: not-allowed;
  opacity: .52;
}

.boat-option strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 560;
}

.boat-option small {
  color: var(--detail-muted);
  line-height: 1.45;
}

@media (max-width: 1040px) {
  .listing-detail-page .detail-hero, .listing-detail-page .detail-layout, .detail-summary-panel, .inclusion-grid, .detail-hero__gallery {
    grid-template-columns: 1fr;
  }

  .detail-hero__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero__thumbs img {
    aspect-ratio: 16 / 10;
  }

  .detail-summary-panel > div {
    border-right: 0;
    border-bottom: 1px solid var(--detail-line);
  }

  .detail-summary-panel > div:last-child {
    border-bottom: 0;
  }

  .listing-detail-page .booking-sidebar {
    position: static;
  }

  .listing-detail-page .detail-hero h1 {
    font-size: 4.3rem;
  }

  .listing-detail-page .detail-section h2 {
    font-size: 3rem;
  }
}

@media (max-width: 720px) {
  .listing-detail-page .detail-hero, .listing-detail-page .detail-layout {
    width: min(100% - 28px, 1240px);
  }

  .listing-detail-page .detail-hero {
    gap: 32px;
    padding: 44px 0 24px;
  }

  .listing-detail-page .detail-hero h1 {
    font-size: 3.35rem;
  }

  .listing-detail-page .detail-section h2 {
    font-size: 2.55rem;
  }

  .listing-detail-page .host-block__profile, .listing-detail-page .review-grid, .listing-detail-page .host-block__assurance {
    grid-template-columns: 1fr;
  }

  .listing-detail-page .itinerary-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .boat-cabin-card, .boat-option-grid {
    grid-template-columns: 1fr;
  }
}

.boat-sales-page {
  padding-bottom: 88px;
}

.boat-detail-hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: center;
  gap: 56px;
  width: min(100% - 56px, 1320px);
  margin: 0 auto;
  padding: 56px 0 28px;
  display: grid;
}

.boat-detail-hero__gallery {
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
  min-height: 600px;
  display: grid;
  position: relative;
}

.boat-detail-hero__main-image, .boat-detail-hero__side-images figure {
  background: var(--detail-surface);
  border: 1px solid #11140f24;
  border-radius: 8px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.boat-detail-hero__main-image img, .boat-detail-hero__side-images img {
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
  width: 100%;
  height: 100%;
}

.boat-detail-hero__main-image {
  min-height: 600px;
}

.boat-detail-hero__side-images {
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.boat-photo-note {
  color: #fffaf1;
  text-transform: uppercase;
  background: #11140f9e;
  border: 1px solid #fffaf157;
  border-radius: 8px;
  padding: 10px 13px;
  font-size: .78rem;
  font-weight: 820;
  position: absolute;
  bottom: 14px;
  right: 14px;
}

.boat-detail-hero__content {
  gap: 20px;
  display: grid;
}

.boat-detail-hero__content h1 {
  color: var(--detail-ink);
  font-family: var(--serif);
  margin: 0;
  font-size: 5.4rem;
  font-weight: 540;
  line-height: .94;
}

.boat-detail-hero__subtitle {
  max-width: 620px;
  color: var(--detail-ink);
  font-family: var(--serif);
  margin: 0;
  font-size: 2rem;
  line-height: 1.17;
}

.boat-detail-hero__positioning {
  max-width: 620px;
  color: var(--detail-muted);
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
}

.boat-detail-hero__trust {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.boat-detail-hero__trust span {
  border: 1px solid var(--detail-line);
  min-height: 36px;
  color: var(--detail-muted);
  text-transform: uppercase;
  background: #fffaf1b3;
  border-radius: 999px;
  align-items: center;
  padding: 0 12px;
  font-size: .78rem;
  font-weight: 820;
  display: inline-flex;
}

.boat-quick-facts {
  border-top: 1px solid var(--detail-ink);
  border-bottom: 1px solid var(--detail-line);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100% - 56px, 1320px);
  margin: 22px auto 0;
  display: grid;
}

.boat-quick-facts div {
  border-right: 1px solid var(--detail-line);
  align-content: start;
  gap: 8px;
  min-height: 124px;
  padding: 20px;
  display: grid;
}

.boat-quick-facts div:last-child {
  border-right: 0;
}

.boat-quick-facts span, .boat-panel-summary span {
  color: var(--detail-muted);
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 840;
}

.boat-quick-facts strong {
  color: var(--detail-ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 560;
  line-height: 1.1;
}

.boat-anchor-nav {
  z-index: 18;
  border-bottom: 1px solid var(--detail-line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #f8f5edf0;
  gap: 8px;
  width: min(100% - 56px, 1320px);
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  position: sticky;
  top: 0;
  overflow-x: auto;
}

.boat-anchor-nav a {
  color: var(--detail-muted);
  text-transform: uppercase;
  border: 1px solid #0000;
  border-radius: 999px;
  flex: none;
  padding: 10px 14px;
  font-size: .82rem;
  font-weight: 820;
  text-decoration: none;
}

.boat-anchor-nav a:hover {
  border-color: var(--detail-line);
  background: var(--detail-surface);
  color: var(--detail-green);
}

.boat-sales-layout {
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 72px;
  width: min(100% - 56px, 1240px);
  margin: 0 auto;
  padding-top: 28px;
  display: grid;
}

.boat-sales-main {
  min-width: 0;
}

.boat-sales-layout .detail-section {
  scroll-margin-top: 88px;
}

.boat-highlight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  display: grid;
}

.boat-highlight-card {
  border: 1px solid var(--detail-line);
  background: #fffaf1a3;
  border-radius: 8px;
  gap: 12px;
  min-height: 230px;
  padding: 22px;
  display: grid;
}

.boat-highlight-card span, .boat-cabin-choice__badge, .boat-departure-card span {
  color: var(--detail-green);
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 850;
}

.boat-highlight-card h3, .boat-empty-state h3, .boat-inclusion-grid h3, .boat-itinerary-list h3 {
  color: var(--detail-ink);
  font-family: var(--serif);
  margin: 0;
  font-size: 1.65rem;
  font-weight: 560;
  line-height: 1.12;
}

.boat-highlight-card p, .boat-empty-state p, .boat-inclusion-grid li, .boat-itinerary-list p, .boat-facility-grid p, .boat-trust-card p {
  color: var(--detail-muted);
  margin: 0;
  line-height: 1.68;
}

.boat-story-section {
  gap: 16px;
  display: grid;
}

.boat-cabin-choice-grid {
  gap: 18px;
  margin-top: 28px;
  display: grid;
}

.boat-cabin-choice {
  border: 1px solid var(--detail-line);
  width: 100%;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  background: #fffaf194;
  border-radius: 8px;
  grid-template-columns: 238px minmax(0, 1fr);
  gap: 22px;
  padding: 14px;
  display: grid;
  position: relative;
}

.boat-cabin-choice[data-selected="true"] {
  border-color: var(--detail-green);
  background: #1f4a3814;
  box-shadow: inset 0 0 0 1px #1f4a3829;
}

.boat-cabin-choice:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.boat-cabin-choice img {
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  min-height: 248px;
}

.boat-cabin-choice__content {
  align-content: start;
  gap: 14px;
  padding: 8px 4px 8px 0;
  display: grid;
}

.boat-cabin-choice h3 {
  color: var(--detail-ink);
  font-family: var(--serif);
  margin: 0;
  font-size: 2.2rem;
  font-weight: 560;
  line-height: 1;
}

.boat-cabin-choice p {
  color: var(--detail-muted);
  margin: 0;
  line-height: 1.65;
}

.boat-cabin-choice dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  display: grid;
}

.boat-cabin-choice dl div {
  border-top: 1px solid var(--detail-line);
  padding-top: 10px;
}

.boat-cabin-choice dt {
  color: var(--detail-muted);
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: .72rem;
  font-weight: 820;
}

.boat-cabin-choice dd {
  color: var(--detail-ink);
  margin: 0;
  font-weight: 760;
}

.boat-cabin-choice strong {
  color: var(--detail-green);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 560;
}

.boat-cabin-choice small {
  color: var(--detail-muted);
  font-weight: 780;
}

.boat-cabin-choice__badge {
  background: #fffaf1e6;
  border-radius: 999px;
  padding: 8px 10px;
  position: absolute;
  top: 26px;
  left: 26px;
}

.boat-trip-mode-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  display: grid;
}

.boat-trip-mode {
  border: 1px solid var(--detail-line);
  color: var(--detail-ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  background: #fffaf18f;
  border-radius: 8px;
  gap: 8px;
  padding: 18px;
  display: grid;
}

.boat-trip-mode[data-active="true"] {
  border-color: var(--detail-green);
  background: #1f4a3814;
}

.boat-trip-mode span, .boat-trip-mode small {
  color: var(--detail-muted);
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 830;
}

.boat-trip-mode strong {
  color: var(--detail-ink);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 560;
}

.boat-selection-note {
  color: var(--detail-ink);
  background: #c9aa581f;
  border: 1px solid #c9aa586b;
  border-radius: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  font-weight: 760;
}

.boat-departure-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  display: grid;
}

.boat-departure-card {
  border: 1px solid var(--detail-line);
  min-height: 210px;
  color: var(--detail-ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  background: #fffaf194;
  border-radius: 8px;
  gap: 10px;
  padding: 18px;
  display: grid;
}

.boat-departure-card[data-selected="true"] {
  border-color: var(--detail-green);
  background: #1f4a3814;
}

.boat-departure-card[data-status="few_left"] {
  border-color: #c9aa58cc;
}

.boat-departure-card:disabled {
  cursor: not-allowed;
  opacity: .52;
}

.boat-departure-card strong {
  color: var(--detail-ink);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 560;
  line-height: 1.08;
}

.boat-departure-card small, .boat-departure-card em {
  color: var(--detail-muted);
  font-size: .86rem;
  font-style: normal;
  font-weight: 790;
}

.boat-departure-card p {
  color: var(--detail-muted);
  margin: 0;
  line-height: 1.58;
}

.boat-empty-state {
  border: 1px solid var(--detail-line);
  background: #fffaf19e;
  border-radius: 8px;
  grid-column: 1 / -1;
  gap: 10px;
  padding: 24px;
  display: grid;
}

.boat-itinerary-list {
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.boat-itinerary-list li {
  border-top: 1px solid var(--detail-line);
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  display: grid;
}

.boat-itinerary-list li:last-child {
  border-bottom: 1px solid var(--detail-line);
}

.boat-itinerary-list li > span {
  color: var(--detail-green);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.boat-itinerary-list div {
  gap: 10px;
  display: grid;
}

.boat-inclusion-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  display: grid;
}

.boat-inclusion-grid article {
  border: 1px solid var(--detail-line);
  background: #fffaf194;
  border-radius: 8px;
  padding: 24px;
}

.boat-inclusion-grid ul {
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.boat-inclusion-grid li {
  border-top: 1px solid var(--detail-line);
  padding: 15px 0;
}

.boat-inclusion-grid li:last-child {
  padding-bottom: 0;
}

.boat-facility-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  display: grid;
}

.boat-facility-grid article {
  border: 1px solid var(--detail-line);
  background: #fffaf194;
  border-radius: 8px;
  gap: 10px;
  min-height: 190px;
  padding: 20px;
  display: grid;
}

.boat-facility-grid span {
  color: var(--detail-muted);
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 830;
}

.boat-facility-grid strong {
  color: var(--detail-ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 560;
  line-height: 1.1;
}

.boat-trust-card {
  border: 1px solid var(--detail-line);
  background: var(--detail-surface);
  border-radius: 8px;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  padding: 30px;
  display: grid;
}

.boat-trust-card h2 {
  margin-bottom: 14px;
}

.boat-trust-list {
  align-content: start;
  gap: 10px;
  display: grid;
}

.boat-trust-list span {
  border: 1px solid var(--detail-line);
  color: var(--detail-green);
  text-transform: uppercase;
  border-radius: 8px;
  padding: 12px;
  font-size: .82rem;
  font-weight: 820;
}

.boat-review-grid {
  margin-top: 28px;
}

.listing-detail-page .booking-sidebar {
  align-self: start;
}

.boat-booking-panel__header {
  border-bottom: 1px solid var(--detail-line);
  gap: 6px;
  padding-bottom: 18px;
  display: grid;
}

.boat-booking-panel__header span {
  color: var(--detail-muted);
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 840;
}

.boat-booking-panel__header h2 {
  color: var(--detail-ink);
  font-family: var(--serif);
  margin: 0;
  font-size: 2rem;
  font-weight: 560;
  line-height: 1.05;
}

.boat-booking-panel__header p {
  color: var(--detail-muted);
  margin: 0;
}

.boat-panel-summary {
  gap: 8px;
  display: grid;
}

.boat-panel-summary div {
  border: 1px solid var(--detail-line);
  background: #f8f5ed9e;
  border-radius: 8px;
  gap: 4px;
  padding: 11px 12px;
  display: grid;
}

.boat-panel-summary div[data-empty="true"] {
  border-style: dashed;
}

.boat-panel-summary strong {
  color: var(--detail-ink);
  font-size: .95rem;
  line-height: 1.34;
}

.boat-panel-summary small {
  color: var(--detail-muted);
  line-height: 1.4;
}

.boat-panel-actions {
  grid-template-columns: 1fr;
  gap: 10px;
  display: grid;
}

.boat-panel-actions button, .boat-panel-actions a {
  border: 1px solid var(--detail-green);
  background: var(--detail-green);
  color: #fffaf1;
  cursor: pointer;
  min-height: 48px;
  font: inherit;
  text-transform: uppercase;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  font-size: .86rem;
  font-weight: 850;
  text-decoration: none;
  display: inline-flex;
}

.boat-panel-actions a {
  border-color: var(--detail-line);
  color: var(--detail-green);
  background: none;
}

.listing-detail-page .booking-request-form__token textarea {
  min-height: 78px;
}

.mobile-booking-bar {
  display: none;
}

@media (max-width: 1180px) {
  .boat-highlight-grid, .boat-facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .boat-sales-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 42px;
  }
}

@media (max-width: 1040px) {
  .boat-detail-hero, .boat-sales-layout, .boat-trust-card {
    grid-template-columns: 1fr;
  }

  .boat-detail-hero__gallery {
    order: 2;
  }

  .boat-detail-hero__content {
    order: 1;
  }

  .boat-quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .boat-quick-facts div {
    border-bottom: 1px solid var(--detail-line);
  }

  .boat-quick-facts div:nth-child(2n) {
    border-right: 0;
  }

  .boat-quick-facts div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .boat-sales-page {
    padding-bottom: 84px;
  }

  .boat-detail-hero, .boat-quick-facts, .boat-anchor-nav, .boat-sales-layout {
    width: min(100% - 28px, 1240px);
  }

  .boat-detail-hero {
    gap: 30px;
    padding-top: 34px;
  }

  .boat-detail-hero__gallery {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .boat-detail-hero__main-image {
    min-height: 420px;
  }

  .boat-detail-hero__side-images {
    grid-template-rows: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .boat-detail-hero__side-images figure {
    aspect-ratio: 4 / 3;
  }

  .boat-detail-hero__side-images figure:nth-child(n+3) {
    display: none;
  }

  .boat-detail-hero__content h1 {
    font-size: 3.5rem;
  }

  .boat-detail-hero__subtitle {
    font-size: 1.55rem;
  }

  .boat-quick-facts, .boat-highlight-grid, .boat-trip-mode-row, .boat-departure-grid, .boat-inclusion-grid, .boat-facility-grid, .boat-cabin-choice, .boat-itinerary-list li {
    grid-template-columns: 1fr;
  }

  .boat-quick-facts div, .boat-quick-facts div:nth-child(2n) {
    border-right: 0;
  }

  .boat-cabin-choice img {
    min-height: 240px;
  }

  .boat-cabin-choice dl {
    grid-template-columns: 1fr;
  }

  .boat-anchor-nav {
    padding: 12px 0;
    top: 0;
  }

  .boat-sales-layout {
    gap: 24px;
    padding-top: 12px;
  }

  .mobile-booking-bar {
    z-index: 40;
    background: #fffaf1f5;
    border: 1px solid #11140f24;
    border-radius: 8px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    display: grid;
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    box-shadow: 0 12px 30px #11140f24;
  }

  .mobile-booking-bar a {
    background: var(--detail-green);
    color: #fffaf1;
    text-transform: uppercase;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    font-size: .82rem;
    font-weight: 850;
    text-decoration: none;
    display: inline-flex;
  }

  .mobile-booking-bar a:first-child {
    border: 1px solid var(--detail-line);
    color: var(--detail-green);
    background: none;
  }
}

.home-hero-trip-types {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 940px);
  margin-top: 30px;
  display: grid;
}

.home-hero-trip-types a {
  color: #fffaf1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #0a0d0a47;
  border: 1px solid #ffffff4d;
  border-radius: 8px;
  gap: 8px;
  min-height: 118px;
  padding: 16px;
  text-decoration: none;
  display: grid;
}

.home-hero-trip-types a:hover {
  background: #0a0d0a66;
  border-color: #fff9;
}

.home-hero-trip-types span {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.05;
}

.home-hero-trip-types small {
  color: #ffffffbd;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: .8rem;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}

.boat-product-card {
  border-top: 1px solid var(--line);
  padding-top: 0;
}

.boat-product-card .listing-card__image {
  aspect-ratio: 4 / 3.4;
}

.boat-product-card__eyebrow {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  display: grid;
}

.boat-product-card__eyebrow span, .boat-product-card__trust span {
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 850;
}

.boat-product-card__eyebrow strong {
  color: var(--foreground);
  font-family: var(--serif);
  text-align: right;
  font-size: 1.35rem;
  font-weight: 560;
  line-height: 1;
}

.boat-product-card__facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  display: grid;
}

.boat-product-card__facts span {
  border: 1px solid var(--line);
  min-height: 58px;
  color: var(--muted);
  background: #fffdf89e;
  border-radius: 8px;
  padding: 10px;
  font-size: .78rem;
  font-weight: 760;
  line-height: 1.35;
}

.boat-product-card__trust {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.boat-product-card__trust span {
  border: 1px solid var(--line);
  background: #315f4b0f;
  border-radius: 999px;
  padding: 7px 10px;
}

.boat-product-card .listing-card__foot {
  border-top-color: var(--line);
  align-items: center;
}

.boat-product-card .listing-card__foot a {
  border: 1px solid var(--foreground);
  background: var(--foreground);
  min-height: 38px;
  color: var(--surface);
  text-transform: uppercase;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 0 13px;
  font-size: .78rem;
  font-weight: 850;
  text-decoration: none;
  display: inline-flex;
}

.boat-proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
  display: grid;
}

.boat-proof-strip span {
  border: 1px solid var(--detail-line);
  color: var(--detail-green);
  text-transform: uppercase;
  background: #fffaf19e;
  border-radius: 8px;
  padding: 13px 14px;
  font-size: .8rem;
  font-weight: 820;
  line-height: 1.45;
}

.cabin-photo-carousel {
  background: var(--detail-surface);
  border-radius: 6px;
  min-height: 248px;
  position: relative;
  overflow: hidden;
}

.cabin-photo-carousel img, .boat-cabin-choice .cabin-photo-carousel img {
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  height: 100%;
  min-height: 248px;
}

.cabin-photo-carousel__controls {
  gap: 6px;
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.cabin-photo-carousel__controls button, .cabin-photo-carousel__dots button {
  cursor: pointer;
}

.cabin-photo-carousel__controls button {
  color: #fffaf1;
  min-height: 34px;
  font: inherit;
  text-transform: uppercase;
  background: #11140f9e;
  border: 1px solid #fffaf16b;
  border-radius: 8px;
  padding: 0 10px;
  font-size: .72rem;
  font-weight: 820;
}

.cabin-photo-carousel__dots {
  gap: 6px;
  display: flex;
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.cabin-photo-carousel__dots button {
  background: #fffaf185;
  border: 0;
  border-radius: 999px;
  width: 8px;
  height: 8px;
  padding: 0;
}

.cabin-photo-carousel__dots button[data-active="true"] {
  background: #fffaf1;
  width: 22px;
}

.boat-cabin-choice[data-disabled="true"] {
  opacity: .58;
}

.boat-cabin-select-button {
  border: 1px solid var(--detail-green);
  background: var(--detail-green);
  color: #fffaf1;
  cursor: pointer;
  width: fit-content;
  min-height: 44px;
  font: inherit;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 0 16px;
  font-size: .82rem;
  font-weight: 850;
}

.boat-cabin-select-button:disabled {
  cursor: not-allowed;
  opacity: .58;
}

.boat-cabin-choice[data-selected="true"] .boat-cabin-select-button {
  color: var(--detail-green);
  background: none;
}

.boat-booking-panel__header small {
  color: var(--detail-muted);
  font-size: .8rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .home-hero-trip-types, .boat-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .boat-product-card__facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-hero-trip-types, .boat-proof-strip, .boat-product-card__eyebrow {
    grid-template-columns: 1fr;
  }

  .home-hero-trip-types a {
    min-height: 94px;
  }

  .boat-product-card__eyebrow strong {
    text-align: left;
  }

  .cabin-photo-carousel, .cabin-photo-carousel img, .boat-cabin-choice .cabin-photo-carousel img {
    min-height: 240px;
  }
}

#destinations {
  scroll-margin-top: 118px;
}

#destinations.home-section--tinted {
  padding-top: clamp(118px, 9vw, 154px);
}

#destinations .home-section__header {
  max-width: 760px;
  margin-bottom: 40px;
}

#destinations .home-destination-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.destination-menu {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.destination-menu__trigger {
  align-items: center;
  display: inline-flex;
}

.destination-menu__panel {
  z-index: 60;
  border: 1px solid var(--line, #dedbd0);
  opacity: 0;
  pointer-events: none;
  background: #fffdf8fa;
  border-radius: 8px;
  gap: 4px;
  width: 240px;
  padding: 8px;
  transition: opacity .16s, transform .16s;
  display: grid;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  transform: translateY(8px);
  box-shadow: 0 18px 44px #1517131f;
}

.destination-menu:hover .destination-menu__panel, .destination-menu:focus-within .destination-menu__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.destination-menu__panel a, .destination-menu__placeholder {
  color: var(--foreground, #151713);
  border-radius: 8px;
  gap: 4px;
  padding: 11px 12px;
  text-decoration: none;
  display: grid;
}

.destination-menu__panel a:hover {
  background: #315f4b14;
}

.destination-menu__panel span {
  font-size: .9rem;
  font-weight: 820;
  line-height: 1.2;
}

.destination-menu__panel small {
  color: var(--muted, #646a60);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 820;
}

.destination-menu__placeholder {
  cursor: default;
}

.home-destination-card, .home-destination-card a, .home-destination-card .home-destination-card__surface {
  height: 100%;
}

.home-destination-card .home-destination-card__surface {
  z-index: auto;
  color: #fff;
  border-radius: 8px;
  min-height: 430px;
  padding: 0;
  display: block;
  position: relative;
  inset: auto;
  overflow: hidden;
}

#destinations .home-destination-card a {
  min-height: 430px;
}

.home-destination-card__surface:after {
  content: "";
  background: linear-gradient(0deg, #090c09c7, #090c0924), #090c0933;
  position: absolute;
  inset: 0;
}

.home-destination-card__surface img {
  object-fit: cover;
  filter: saturate(.86) contrast(1.02);
  width: 100%;
  height: 100%;
}

.home-destination-card .home-destination-card__surface > div {
  z-index: 1;
  padding: 22px;
  position: absolute;
  inset: auto 0 0;
}

.home-destination-card[data-live="false"] .home-destination-card__surface img {
  opacity: .72;
}

.home-destination-card[data-live="false"] .home-destination-card__surface span {
  color: var(--home-gold, #c9aa58);
}

@media (max-width: 980px) {
  #destinations .home-destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-menu__panel {
    left: auto;
    right: 0;
  }
}

@media (max-width: 720px) {
  .destination-menu {
    justify-content: center;
    width: 100%;
  }

  .destination-menu__panel {
    left: auto;
    right: 50%;
    transform: translate(50%, 8px);
  }

  .destination-menu:hover .destination-menu__panel, .destination-menu:focus-within .destination-menu__panel {
    transform: translate(50%);
  }

  #destinations {
    scroll-margin-top: 96px;
  }

  #destinations.home-section--tinted {
    padding-top: 92px;
  }

  #destinations .home-destination-grid {
    grid-template-columns: 1fr;
  }

  #destinations .home-destination-card a, .home-destination-card .home-destination-card__surface {
    min-height: 340px;
  }
}

.boat-sales-page .boat-detail-hero {
  align-items: stretch;
  padding-top: 44px;
}

.boat-sales-page .boat-detail-hero__gallery {
  min-height: 640px;
}

.boat-sales-page .boat-detail-hero__content {
  align-content: center;
}

.boat-view-photos-link {
  z-index: 2;
  color: #fffaf1;
  text-transform: uppercase;
  background: #11140fa8;
  border: 1px solid #fffaf175;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  font-size: .76rem;
  font-weight: 850;
  text-decoration: none;
  display: inline-flex;
  position: absolute;
  bottom: 64px;
  right: 14px;
}

.boat-detail-hero__commerce {
  border-top: 1px solid var(--detail-ink);
  border-bottom: 1px solid var(--detail-line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
}

.boat-detail-hero__commerce div {
  border-right: 1px solid var(--detail-line);
  align-content: center;
  gap: 8px;
  min-height: 96px;
  padding: 14px 16px;
  display: grid;
}

.boat-detail-hero__commerce div:last-child {
  border-right: 0;
}

.boat-detail-hero__commerce span, .boat-panel-picker span, .boat-panel-trust-microcopy span, .boat-info-accordion__item summary {
  color: var(--detail-muted);
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 850;
}

.boat-detail-hero__commerce strong {
  color: var(--detail-ink);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 560;
  line-height: 1.08;
}

.boat-sales-page .boat-anchor-nav {
  justify-content: center;
  padding: 14px 0;
  top: 0;
}

.boat-sales-page .boat-sales-layout .detail-section {
  scroll-margin-top: 112px;
}

.boat-sales-page .boat-sales-layout {
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: start;
}

.boat-sales-page .booking-sidebar {
  position: sticky;
  top: 90px;
}

.boat-booking-panel.inquiry-panel {
  max-height: calc(100vh - 112px);
  overflow: auto;
}

.boat-sales-page .boat-highlight-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.boat-sales-page .boat-highlight-card {
  background: #fffaf1b8;
  align-content: space-between;
  min-height: 254px;
}

.boat-sales-page .boat-itinerary-list li {
  grid-template-columns: 148px minmax(0, 1fr);
  padding: 30px 0;
}

.boat-sales-page .boat-inclusion-grid article {
  background: #fffaf1b8;
}

.boat-sales-page .boat-cabin-choice-grid {
  scroll-snap-type: x mandatory;
  grid-auto-columns: minmax(340px, 430px);
  grid-auto-flow: column;
  padding-bottom: 12px;
  display: grid;
  overflow-x: auto;
}

.boat-sales-page .boat-cabin-choice {
  scroll-snap-align: start;
  grid-template-rows: auto minmax(0, 1fr);
  grid-template-columns: 1fr;
  min-height: 100%;
}

.boat-sales-page .boat-cabin-choice__content {
  padding: 4px 2px 2px;
}

.boat-sales-page .boat-cabin-choice h3 {
  font-size: 1.9rem;
}

.boat-sales-page .cabin-photo-carousel, .boat-sales-page .cabin-photo-carousel img, .boat-sales-page .boat-cabin-choice .cabin-photo-carousel img {
  min-height: 280px;
}

.boat-panel-picker-grid {
  grid-template-columns: 1fr;
  gap: 9px;
  display: grid;
}

.boat-panel-picker {
  border: 1px solid var(--detail-line);
  width: 100%;
  color: var(--detail-ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  background: #f8f5edb8;
  border-radius: 8px;
  gap: 6px;
  padding: 13px 14px;
  display: grid;
}

.boat-panel-picker:hover {
  border-color: #1f4a386b;
}

.boat-panel-picker--date {
  background: #1f4a381a;
  border-color: #1f4a38b8;
  min-height: 104px;
  padding: 17px 16px;
  box-shadow: inset 0 0 0 1px #1f4a3814;
}

.boat-panel-picker--date:hover, .boat-panel-picker--date[aria-expanded="true"] {
  border-color: var(--detail-green);
  background: #1f4a3824;
}

.boat-panel-picker strong {
  color: var(--detail-ink);
  font-size: .96rem;
  line-height: 1.3;
}

.boat-panel-picker--date strong {
  color: var(--detail-green);
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 560;
}

.boat-panel-picker--date small {
  color: var(--detail-muted);
  font-size: .78rem;
  font-weight: 760;
  line-height: 1.35;
}

.boat-panel-picker--input {
  cursor: default;
}

.boat-panel-picker input {
  width: 100%;
  color: var(--detail-ink);
  font: inherit;
  background: none;
  border: 0;
  outline: none;
  padding: 0;
  font-size: 1rem;
  font-weight: 780;
}

.boat-panel-selected-date {
  background: #1f4a3814;
  border: 1px solid #1f4a3847;
  border-radius: 8px;
  gap: 6px;
  padding: 13px 14px;
  display: grid;
}

.boat-panel-selected-date span {
  color: var(--detail-muted);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 850;
}

.boat-panel-selected-date strong {
  color: var(--detail-ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 560;
  line-height: 1.16;
}

.boat-panel-selected-date small, .boat-panel-selected-date em {
  color: var(--detail-muted);
  font-size: .8rem;
  font-style: normal;
  font-weight: 760;
  line-height: 1.35;
}

.boat-panel-selected-date dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 0;
  display: grid;
}

.boat-panel-selected-date dl div {
  border-top: 1px solid #1f4a382e;
  gap: 4px;
  padding-top: 9px;
  display: grid;
}

.boat-panel-selected-date dt {
  color: var(--detail-muted);
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 850;
}

.boat-panel-selected-date dd {
  color: var(--detail-ink);
  margin: 0;
  font-size: .88rem;
  font-weight: 780;
  line-height: 1.32;
}

.boat-calendar-modal {
  z-index: 90;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #11140f85;
  place-items: center;
  padding: 24px;
  display: grid;
  position: fixed;
  inset: 0;
}

.boat-calendar-modal__panel {
  background: #fffaf1;
  border: 1px solid #fffaf15c;
  border-radius: 8px;
  gap: 18px;
  width: min(100%, 760px);
  max-height: min(92vh, 860px);
  padding: clamp(18px, 3vw, 28px);
  display: grid;
  overflow: auto;
  box-shadow: 0 28px 80px #11140f42;
}

.boat-calendar-modal__header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  display: grid;
}

.boat-calendar-modal__header h2 {
  color: var(--detail-ink);
  font-family: var(--serif);
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 560;
  line-height: .98;
}

.boat-calendar-modal__header p:not(.eyebrow) {
  max-width: 560px;
  color: var(--detail-muted);
  margin: 12px 0 0;
  line-height: 1.65;
}

.boat-calendar-modal__close, .boat-calendar-modal__toolbar button, .boat-calendar-modal__notice button {
  border: 1px solid var(--detail-line);
  color: var(--detail-green);
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
  background: none;
  border-radius: 8px;
  font-size: .74rem;
  font-weight: 850;
}

.boat-calendar-modal__close {
  min-height: 40px;
  padding: 0 12px;
}

.boat-calendar-modal__notice, .boat-calendar-modal__empty {
  background: #c9aa581f;
  border: 1px solid #c9aa586b;
  border-radius: 8px;
  gap: 8px;
  padding: 14px;
  display: grid;
}

.boat-calendar-modal__notice strong, .boat-calendar-modal__empty strong {
  color: var(--detail-ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 560;
}

.boat-calendar-modal__notice p, .boat-calendar-modal__empty p, .boat-calendar-modal__footer p {
  color: var(--detail-muted);
  margin: 0;
  line-height: 1.55;
}

.boat-calendar-modal__notice button {
  width: fit-content;
  min-height: 38px;
  padding: 0 12px;
}

.boat-calendar-modal__toolbar {
  border-top: 1px solid var(--detail-line);
  border-bottom: 1px solid var(--detail-line);
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  display: grid;
}

.boat-calendar-modal__toolbar strong {
  color: var(--detail-ink);
  font-family: var(--serif);
  text-align: center;
  font-size: 1.65rem;
  font-weight: 560;
}

.boat-calendar-modal__toolbar button {
  min-height: 38px;
  padding: 0 12px;
}

.boat-calendar-modal__weekdays, .boat-calendar-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  display: grid;
}

.boat-calendar-modal__weekdays span {
  color: var(--detail-muted);
  text-align: center;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 850;
}

.boat-calendar-day {
  border: 1px solid var(--detail-line);
  min-height: 88px;
  color: var(--detail-ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  background: #f8f5ed8a;
  border-radius: 8px;
  align-content: start;
  gap: 4px;
  padding: 10px;
  display: grid;
}

.boat-calendar-day:hover:not(:disabled) {
  background: #1f4a3814;
  border-color: #1f4a388a;
}

.boat-calendar-day > span {
  color: var(--detail-ink);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 560;
  line-height: 1;
}

.boat-calendar-day strong {
  color: var(--detail-green);
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: .68rem;
  font-weight: 850;
  line-height: 1.25;
  display: block;
  overflow: hidden;
}

.boat-calendar-day small {
  color: var(--detail-muted);
  font-size: .68rem;
  font-weight: 760;
  line-height: 1.25;
}

.boat-calendar-day[data-current-month="false"] {
  opacity: .34;
}

.boat-calendar-day[data-has-departure="false"], .boat-calendar-day:disabled {
  cursor: not-allowed;
}

.boat-calendar-day[data-has-departure="false"] {
  background: #f8f5ed52;
}

.boat-calendar-day[data-status="few_left"] {
  background: #c9aa5821;
  border-color: #c9aa58d1;
}

.boat-calendar-day[data-status="sold_out"], .boat-calendar-day[data-status="closed"], .boat-calendar-day[data-past="true"] {
  opacity: .5;
}

.boat-calendar-day[data-selected="true"] {
  border-color: var(--detail-green);
  background: var(--detail-green);
  color: #fffaf1;
}

.boat-calendar-day[data-selected="true"] > span, .boat-calendar-day[data-selected="true"] strong, .boat-calendar-day[data-selected="true"] small {
  color: #fffaf1;
}

.boat-calendar-modal__footer {
  border-top: 1px solid var(--detail-line);
  gap: 12px;
  padding-top: 14px;
  display: grid;
}

.boat-calendar-legend {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.boat-calendar-legend span {
  border: 1px solid var(--detail-line);
  min-height: 30px;
  color: var(--detail-muted);
  text-transform: uppercase;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  font-size: .72rem;
  font-weight: 820;
  display: inline-flex;
}

.boat-calendar-legend span:before {
  background: var(--detail-green);
  content: "";
  border-radius: 999px;
  width: 8px;
  height: 8px;
}

.boat-calendar-legend span[data-state="few-left"]:before {
  background: #c9aa58;
}

.boat-calendar-legend span[data-state="closed"]:before {
  background: var(--detail-line);
}

.boat-panel-date-selector {
  background: #fffaf1;
  border: 1px solid #1f4a3847;
  border-radius: 8px;
  gap: 12px;
  max-height: min(58vh, 520px);
  padding: 14px;
  display: grid;
  overflow: auto;
}

.boat-panel-date-selector__header {
  border-bottom: 1px solid var(--detail-line);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  display: flex;
}

.boat-panel-date-selector__header div {
  gap: 4px;
  display: grid;
}

.boat-panel-date-selector__header span, .boat-panel-date-option__status {
  color: var(--detail-muted);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 850;
}

.boat-panel-date-selector__header strong {
  color: var(--detail-ink);
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 560;
}

.boat-panel-date-selector__header button, .boat-panel-date-selector__notice button {
  border: 1px solid var(--detail-line);
  color: var(--detail-green);
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
  background: none;
  border-radius: 8px;
  padding: 9px 11px;
  font-size: .72rem;
  font-weight: 850;
}

.boat-panel-date-selector__notice, .boat-panel-date-empty {
  background: #c9aa581f;
  border: 1px solid #c9aa586b;
  border-radius: 8px;
  gap: 8px;
  padding: 12px;
  display: grid;
}

.boat-panel-date-selector__notice strong, .boat-panel-date-empty strong {
  color: var(--detail-ink);
}

.boat-panel-date-selector__notice p, .boat-panel-date-empty p {
  color: var(--detail-muted);
  margin: 0;
  font-size: .84rem;
  line-height: 1.5;
}

.boat-panel-date-options {
  gap: 9px;
  display: grid;
}

.boat-panel-date-option {
  border: 1px solid var(--detail-line);
  width: 100%;
  color: var(--detail-ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  background: #f8f5eda8;
  border-radius: 8px;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 10px;
  display: grid;
}

.boat-panel-date-option:hover {
  background: #1f4a3812;
  border-color: #1f4a3880;
}

.boat-panel-date-option[data-selected="true"] {
  border-color: var(--detail-green);
  background: #1f4a381f;
  box-shadow: inset 0 0 0 1px #1f4a3824;
}

.boat-panel-date-option[data-status="few_left"] {
  background: #c9aa581f;
  border-color: #c9aa58db;
}

.boat-panel-date-option[data-status="on_request"] {
  border-style: dashed;
}

.boat-panel-date-option:disabled {
  cursor: not-allowed;
  opacity: .52;
}

.boat-panel-date-option__calendar {
  border: 1px solid var(--detail-line);
  background: #fffaf1e6;
  border-radius: 8px;
  align-content: center;
  justify-items: center;
  min-height: 58px;
  display: grid;
}

.boat-panel-date-option__calendar small {
  color: var(--detail-muted);
  text-transform: uppercase;
  font-size: .66rem;
  font-weight: 850;
}

.boat-panel-date-option__calendar strong {
  color: var(--detail-ink);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 560;
  line-height: 1;
}

.boat-panel-date-option__copy {
  gap: 4px;
  display: grid;
}

.boat-panel-date-option__copy strong {
  color: var(--detail-ink);
  font-size: .92rem;
  line-height: 1.25;
}

.boat-panel-date-option__copy small, .boat-panel-date-option__copy em {
  color: var(--detail-muted);
  font-size: .76rem;
  font-style: normal;
  font-weight: 760;
  line-height: 1.3;
}

.boat-panel-date-option__status {
  color: var(--detail-green);
  white-space: nowrap;
  justify-self: end;
}

.boat-panel-trust-microcopy {
  border-top: 1px solid var(--detail-line);
  border-bottom: 1px solid var(--detail-line);
  gap: 8px;
  padding: 14px 0;
  display: grid;
}

.boat-panel-trust-microcopy span {
  color: var(--detail-green);
  align-items: center;
  gap: 8px;
  line-height: 1.35;
  display: flex;
}

.boat-panel-trust-microcopy span:before {
  background: var(--detail-green);
  content: "";
  border-radius: 999px;
  width: 6px;
  height: 6px;
}

.boat-date-card {
  min-height: 178px;
}

.boat-availability-guide-note {
  color: var(--detail-muted);
  background: #1f4a3812;
  border: 1px solid #1f4a383d;
  border-radius: 8px;
  margin-top: 16px;
  padding: 13px 15px;
  font-size: .9rem;
  line-height: 1.55;
}

.boat-availability-guide-note strong {
  color: var(--detail-green);
}

.boat-date-card--support {
  background: #fffaf17a;
  min-height: 164px;
}

.boat-date-card__body {
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  display: grid;
}

.boat-date-card__calendar {
  border: 1px solid var(--detail-line);
  background: #fffaf1e0;
  border-radius: 8px;
  align-content: center;
  justify-items: center;
  min-height: 86px;
  display: grid;
}

.boat-date-card__calendar span {
  color: var(--detail-muted);
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 850;
}

.boat-date-card__calendar strong {
  color: var(--detail-ink);
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 560;
  line-height: 1;
}

.boat-date-card__copy {
  gap: 8px;
  display: grid;
}

.boat-date-card__copy strong {
  font-size: 1.32rem;
}

.boat-date-card__panel-note {
  width: fit-content;
  color: var(--detail-green);
  text-transform: uppercase;
  border: 1px solid #1f4a3838;
  border-radius: 999px;
  padding: 6px 8px;
  font-size: .68rem;
  font-weight: 850;
}

.boat-info-accordion {
  border-top: 1px solid var(--detail-line);
  margin-top: 28px;
  display: grid;
}

.boat-info-accordion__item {
  border-bottom: 1px solid var(--detail-line);
  padding: 0;
}

.boat-info-accordion__item summary {
  cursor: pointer;
  min-height: 64px;
  color: var(--detail-ink);
  justify-content: space-between;
  align-items: center;
  list-style: none;
  display: flex;
}

.boat-info-accordion__item summary::-webkit-details-marker {
  display: none;
}

.boat-info-accordion__item summary:after {
  color: var(--detail-green);
  content: "+";
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 560;
}

.boat-info-accordion__item[open] summary:after {
  content: "-";
}

.boat-info-accordion__item p {
  max-width: 720px;
  color: var(--detail-muted);
  margin: 0;
  padding: 0 0 24px;
  line-height: 1.72;
}

@media (max-width: 1180px) {
  .boat-sales-page .boat-sales-layout {
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 34px;
  }

  .boat-sales-page .boat-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .boat-sales-page .boat-sales-layout {
    grid-template-columns: 1fr;
  }

  .boat-sales-page .booking-sidebar {
    position: static;
  }

  .boat-booking-panel.inquiry-panel {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .boat-sales-page .boat-detail-hero__gallery {
    min-height: auto;
  }

  .boat-view-photos-link {
    bottom: 58px;
  }

  .boat-detail-hero__commerce {
    grid-template-columns: 1fr;
  }

  .boat-detail-hero__commerce div {
    border-right: 0;
    border-bottom: 1px solid var(--detail-line);
    min-height: 82px;
  }

  .boat-detail-hero__commerce div:last-child {
    border-bottom: 0;
  }

  .boat-sales-page .boat-anchor-nav {
    justify-content: flex-start;
  }

  .boat-sales-page .boat-highlight-grid {
    scroll-snap-type: x mandatory;
    display: flex;
    overflow-x: auto;
  }

  .boat-sales-page .boat-highlight-card {
    scroll-snap-align: start;
    flex: 0 0 min(84vw, 310px);
  }

  .boat-sales-page .boat-itinerary-list li, .boat-date-card__body {
    grid-template-columns: 1fr;
  }

  .boat-panel-date-option {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .boat-panel-selected-date dl {
    grid-template-columns: 1fr;
  }

  .boat-panel-date-option__status {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .boat-calendar-modal {
    align-items: start;
    padding: 10px;
  }

  .boat-calendar-modal__panel {
    max-height: calc(100svh - 20px);
    padding: 16px;
  }

  .boat-calendar-modal__header {
    grid-template-columns: 1fr;
  }

  .boat-calendar-modal__close {
    width: fit-content;
  }

  .boat-calendar-modal__toolbar {
    grid-template-columns: 1fr;
  }

  .boat-calendar-modal__toolbar strong {
    text-align: left;
    order: -1;
  }

  .boat-calendar-modal__weekdays, .boat-calendar-grid {
    gap: 5px;
  }

  .boat-calendar-day {
    min-height: 70px;
    padding: 7px;
  }

  .boat-calendar-day > span {
    font-size: 1rem;
  }

  .boat-calendar-day strong, .boat-calendar-day small {
    font-size: .62rem;
  }

  .boat-sales-page .boat-cabin-choice-grid {
    grid-auto-columns: minmax(286px, 88vw);
  }

  .boat-date-card__calendar {
    width: 82px;
  }
}

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

body {
  word-wrap: break-word;
}

img, video {
  max-width: 100%;
  height: auto;
}

.auth-page--single {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  :root {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 14px;
  }

  .site-nav {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    order: 3;
    grid-column: 1 / -1;
    overflow-x: auto;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .auth-page {
    gap: 20px;
    padding: 24px 16px !important;
  }

  .auth-copy h1 {
    line-height: 1.15;
    font-size: 2.4rem !important;
  }

  .auth-card {
    padding: 20px !important;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta, .header-auth__link, .header-auth__button {
    padding: 0 10px;
    font-size: .85rem;
  }

  .auth-copy h1 {
    font-size: 2rem !important;
  }

  .hero h1 {
    font-size: 2.4rem !important;
  }
}

.upload-field {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.upload-field > label {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.upload-field input[type="file"] {
  border: 1px dashed var(--line-strong, #aaa);
  background: var(--surface-soft, #fafafa);
  border-radius: 8px;
  padding: 6px;
}

.upload-field__status {
  color: var(--muted, #666);
  font-size: .85rem;
}

.upload-field__status[data-state="error"] {
  color: #b00020;
}

.upload-field__previews {
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
  display: grid;
}

.upload-field__preview {
  aspect-ratio: 1;
  border: 1px solid var(--line, #ddd);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.upload-field__preview img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.upload-field__preview button {
  color: #fff;
  cursor: pointer;
  background: #000000b3;
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 14px;
  line-height: 1;
  position: absolute;
  top: 4px;
  right: 4px;
}

.admin-inline-table {
  border-collapse: collapse;
  width: 100%;
  font-size: .9rem;
}

.admin-inline-table th, .admin-inline-table td {
  border-bottom: 1px solid var(--line, #eee);
  text-align: left;
  vertical-align: top;
  padding: 6px 8px;
}

.admin-inline-table input, .admin-inline-table select {
  border: 1px solid var(--line, #ccc);
  border-radius: 6px;
  width: 100%;
  padding: 6px 8px;
}

.admin-inline-table__row-remove {
  color: #b00020;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 700;
}

.admin-inline-actions {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  display: flex;
}

.admin-inline-actions button {
  border: 1px solid var(--line, #ccc);
  background: var(--surface, #fff);
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 600;
}

.admin-inline-actions button[data-primary="true"] {
  background: var(--accent, #0a7);
  color: #fff;
  border-color: var(--accent, #0a7);
}

.admin-inline-actions button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.cabin-locked {
  background: #fff4cc;
  border-left: 3px solid #d4a017;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: .88rem;
}

.cabin-locked code {
  font-family: inherit;
  font-weight: 700;
}

.safe-image--fallback {
  aspect-ratio: 1;
  color: #888;
  text-align: center;
  background: repeating-linear-gradient(45deg, #f0f0f0 0 8px, #e5e5e5 8px 16px);
  border-radius: 8px;
  place-items: center;
  width: 100%;
  padding: 8px;
  font-size: .8rem;
  display: grid;
}

.testimonial-avatar {
  object-fit: cover;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.testimonial-manager label {
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  display: flex;
}

.testimonial-manager input, .testimonial-manager select, .testimonial-manager textarea {
  font: inherit;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 8px;
}

.blog-thumb {
  object-fit: cover;
  border-radius: 4px;
  width: 60px;
  height: 40px;
}

.blog-cover-preview {
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
}

.blog-card {
  background: #fff;
  border: 1px solid #00000014;
  border-radius: 12px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.blog-card__cover {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.blog-card__body {
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  display: flex;
}

.blog-card__category {
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .6;
  font-size: 12px;
}

.blog-card h3 {
  margin: 0;
  font-size: 18px;
}

.blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card h3 a:hover {
  text-decoration: underline;
}

.blog-article {
  max-width: 720px;
  margin: 48px auto;
  padding: 0 20px;
}

.blog-article__header {
  margin-bottom: 24px;
}

.blog-article__meta {
  opacity: .6;
  gap: 16px;
  margin-top: 8px;
  font-size: 13px;
  display: flex;
}

.blog-article__cover {
  border-radius: 12px;
  width: 100%;
  margin-bottom: 24px;
}

.blog-article__body p {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.8;
}

.blog-article__tags {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  display: flex;
}

.blog-tag {
  background: #0000000d;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 13px;
}

.blog-manager label {
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  display: flex;
}

.blog-manager input, .blog-manager select, .blog-manager textarea {
  font: inherit;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 8px;
}

.destinations-manager label {
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  display: flex;
}

.destinations-manager input, .destinations-manager textarea {
  font: inherit;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 8px;
}

.dest-hero-preview {
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
}

.dest-gallery-thumb {
  object-fit: cover;
  border-radius: 6px;
  width: 90px;
  height: 60px;
}

.destination-hero {
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 20px;
  position: relative;
}

.destination-hero__image {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
}

.destination-hero__body {
  max-width: 720px;
  margin-top: 20px;
}

.destination-hero__status {
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #0000000d;
  border-radius: 999px;
  margin-bottom: 12px;
  padding: 4px 12px;
  font-size: 12px;
  display: inline-block;
}

.destination-hero__lead {
  opacity: .8;
  font-size: 18px;
  line-height: 1.6;
}

.destination-hero__meta {
  opacity: .6;
  margin-top: 8px;
  font-size: 14px;
}

.destination-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.destination-prose p {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.8;
}

.destination-highlights {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.destination-highlights li {
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 2px 6px #0000000a;
}

.destination-gallery {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  display: grid;
}

.destination-gallery__item {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}

.media-toolbar {
  background: #fafafa;
  border-radius: 8px;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px;
  display: flex;
}

.media-toolbar input[type="text"], .media-toolbar input:not([type]) {
  font: inherit;
  border: 1px solid #ccc;
  border-radius: 6px;
  min-width: 160px;
  padding: 6px 10px;
}

.media-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  display: grid;
}

.media-card {
  background: #fff;
  border: 1px solid #00000014;
  border-radius: 10px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.media-card__image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f0f0f0;
  width: 100%;
}

.media-card__body {
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  font-size: 13px;
  display: flex;
}

.media-card__meta {
  opacity: .6;
  font-size: 12px;
}

.media-card__tags {
  flex-wrap: wrap;
  gap: 4px;
  display: flex;
}

.media-card__actions {
  gap: 8px;
  margin-top: 4px;
  display: flex;
}

.media-edit label {
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  display: flex;
}

.media-edit input {
  font: inherit;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 8px;
}

.media-edit-preview {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  max-height: 240px;
}

.leads-filters {
  background: #fafafa;
  border-radius: 8px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px;
  display: flex;
}

.lead-chip {
  cursor: pointer;
  text-transform: capitalize;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
}

.lead-chip--active {
  color: #fff;
  background: #111;
  border-color: #111;
}

.contact-form {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.contact-form__row {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  display: grid;
}

.contact-form label {
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.contact-form input, .contact-form textarea, .contact-form select {
  font: inherit;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  padding: 10px 12px;
}

.contact-form__success {
  color: #1b5e20;
  background: #e8f5e9;
  border-radius: 8px;
  padding: 12px 16px;
}

.contact-form__error {
  color: #b71c1c;
  background: #ffebee;
  border-radius: 8px;
  padding: 12px 16px;
}

.contact-form__hint {
  opacity: .7;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

:root {
  --brand-900: #1a300d;
  --brand-800: #233f11;
  --brand-700: #2d5016;
  --brand-600: #3a6620;
  --brand-500: #4a7f2a;
  --brand-400: #6ba048;
  --brand-300: #9ec67d;
  --brand-200: #cbe0b5;
  --brand-100: #e8f1dc;
  --brand-50: #f4f8ed;
  --accent-700: #a8892e;
  --accent-600: #c9a84c;
  --accent-500: #d4b86a;
  --accent-400: #e4cf94;
  --accent-300: #efdfb6;
  --accent-200: #f5edd6;
  --accent-100: #faf5e8;
  --neutral-0: #fff;
  --neutral-50: #fafaf7;
  --neutral-100: #f4f4ef;
  --neutral-200: #e7e7df;
  --neutral-300: #d1d1c4;
  --neutral-400: #a3a393;
  --neutral-500: #71715f;
  --neutral-600: #4f4f42;
  --neutral-700: #35352c;
  --neutral-800: #22221c;
  --neutral-900: #0f0f0c;
  --color-success: #2d6a4f;
  --color-success-bg: #e4f2ea;
  --color-warning: #b7791f;
  --color-warning-bg: #fdf3d7;
  --color-error: #c53030;
  --color-error-bg: #fde8e8;
  --color-info: #2b6cb0;
  --color-info-bg: #dbeafe;
  --background: var(--neutral-50);
  --foreground: var(--neutral-900);
  --muted: var(--neutral-500);
  --line: var(--neutral-200);
  --line-strong: var(--neutral-300);
  --accent: var(--brand-700);
  --accent-strong: var(--brand-800);
  --accent-soft: var(--brand-100);
  --surface: var(--neutral-0);
  --surface-soft: var(--brand-50);
  --shadow: 0 20px 60px #1a300d1a;
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --fs-xs: .75rem;
  --fs-sm: .875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 1.875rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 3rem;
  --fs-5xl: 3.75rem;
  --fs-6xl: 4.5rem;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;
  --tracking-tight: -.02em;
  --tracking-wide: .04em;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px #0f0f0c0f, 0 1px 3px #0f0f0c0a;
  --shadow-md: 0 4px 12px #0f0f0c14, 0 2px 4px #0f0f0c0a;
  --shadow-lg: 0 12px 28px #0f0f0c1f, 0 4px 10px #0f0f0c0f;
  --shadow-xl: 0 24px 56px #0f0f0c2e, 0 8px 20px #0f0f0c14;
  --shadow-focus: 0 0 0 3px #2d501647;
  --dur-fast: .15s;
  --dur-base: .25s;
  --dur-slow: .4s;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.4, 0, .2, 1);
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: var(--lh-relaxed);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--foreground);
  margin: 0;
}

h1 {
  font-size: clamp(var(--fs-3xl), 4.5vw, var(--fs-5xl));
}

h2 {
  font-size: clamp(var(--fs-2xl), 3.2vw, var(--fs-4xl));
}

h3 {
  font-size: clamp(var(--fs-xl),  2.2vw, var(--fs-2xl));
}

h4 {
  font-size: var(--fs-lg);
}

h5 {
  font-size: var(--fs-md);
}

h6 {
  font-size: var(--fs-base);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

p {
  color: var(--muted);
  line-height: var(--lh-relaxed);
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-sm);
  outline: none;
}

:where(input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="number"], input[type="date"], input[type="search"], input[type="url"], select, textarea) {
  min-height: 44px;
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-base);
  color: var(--foreground);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  width: 100%;
}

textarea {
  min-height: 120px;
  line-height: var(--lh-normal);
  resize: vertical;
}

:where(input, select, textarea):focus {
  border-color: var(--brand-700);
  box-shadow: var(--shadow-focus);
  outline: none;
}

:where(input, select, textarea):disabled {
  background: var(--neutral-100);
  color: var(--muted);
  cursor: not-allowed;
}

.site-header {
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  background: #ffffffeb;
}

.brand {
  color: var(--foreground);
  font-family: var(--font-serif);
  font-weight: var(--fw-semibold);
}

.brand-mark, .brand strong {
  color: var(--brand-700);
}

.nav-links a, .site-header nav a {
  color: var(--foreground);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  padding: var(--space-2) var(--space-1);
  transition: color var(--dur-fast);
  position: relative;
}

.nav-links a:hover, .site-header nav a:hover, .nav-links a[aria-current="page"], .nav-links a.active, .site-header nav a[aria-current="page"] {
  color: var(--brand-700);
}

.nav-links a[aria-current="page"]:after, .nav-links a.active:after {
  content: "";
  left: var(--space-1);
  right: var(--space-1);
  background: var(--brand-700);
  border-radius: var(--radius-full);
  height: 2px;
  position: absolute;
  bottom: -4px;
}

.btn, .button, button.cta, a.cta, .primary-cta, .secondary-cta {
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  height: 44px;
  padding: 0 var(--space-6);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wide);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-in-out);
  white-space: nowrap;
  border: 1px solid #0000;
  text-decoration: none;
  display: inline-flex;
}

.btn:active, .button:active {
  transform: translateY(1px);
}

.btn:disabled, .button:disabled, .btn[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.btn-sm, .button-sm {
  height: 36px;
  padding: 0 var(--space-4);
  font-size: var(--fs-xs);
}

.btn-lg, .button-lg {
  height: 52px;
  padding: 0 var(--space-8);
  font-size: var(--fs-base);
}

.btn-primary, .primary-cta, button[type="submit"]:not(.btn-secondary):not(.btn-outline) {
  background: var(--brand-700);
  color: #fff;
}

.btn-primary:hover, .primary-cta:hover {
  background: var(--brand-600);
  box-shadow: var(--shadow-md);
}

.btn-secondary, .secondary-cta {
  background: var(--accent-600);
  color: var(--brand-900);
}

.btn-secondary:hover, .secondary-cta:hover {
  background: var(--accent-500);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  color: var(--brand-700);
  border-color: var(--brand-700);
  background: none;
}

.btn-outline:hover {
  background: var(--brand-700);
  color: #fff;
}

.btn-ghost {
  color: var(--foreground);
  background: none;
}

.btn-ghost:hover {
  background: var(--neutral-100);
}

.card, .boat-card, .listing-card, .destination-card, .home-destination-card, .home-experience-card, .home-editorial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-fast);
  overflow: hidden;
}

.card:hover, .boat-card:hover, .listing-card:hover, .destination-card:hover, .home-destination-card:hover, .home-experience-card:hover, .home-editorial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-200);
  transform: translateY(-4px);
}

.img-placeholder {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  color: var(--brand-700);
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  justify-content: center;
  align-items: center;
  display: flex;
}

.img-placeholder:before {
  content: "⚓";
}

.hero, .home-hero, .page-hero {
  color: #fff;
  align-items: center;
  min-height: 72vh;
  display: flex;
  position: relative;
}

.hero:before, .home-hero:before, .page-hero:before {
  content: "";
  z-index: 1;
  background: linear-gradient(#1a300d73 0%, #1a300dc7 100%);
  position: absolute;
  inset: 0;
}

.hero > *, .home-hero > *, .page-hero > * {
  z-index: 2;
  position: relative;
}

.hero h1, .home-hero h1, .page-hero h1 {
  color: #fff;
  font-family: var(--font-display, var(--font-serif));
  text-shadow: 0 2px 24px #00000059;
}

.hero p, .home-hero p, .page-hero p {
  color: #ffffffeb;
}

.tabs, .trip-type-tabs {
  gap: var(--space-1);
  padding: var(--space-1);
  background: var(--neutral-100);
  border-radius: var(--radius-full);
  display: inline-flex;
}

.tab, .trip-type-tabs a, .trip-type-tabs button {
  padding: var(--space-2) var(--space-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--muted);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--dur-fast);
}

.tab:hover, .trip-type-tabs a:hover {
  color: var(--brand-700);
}

.tab.active, .tab[aria-selected="true"], .trip-type-tabs a[aria-current="page"], .trip-type-tabs .active {
  background: var(--brand-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.form-card, .inquiry-form, .contact-form, .booking-request-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}

.form-row {
  gap: var(--space-4);
  grid-template-columns: 1fr 1fr;
  display: grid;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-field {
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  flex-direction: column;
  display: flex;
}

.form-field label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.form-field .hint {
  font-size: var(--fs-xs);
  color: var(--muted);
}

.form-field.error :where(input, select, textarea) {
  border-color: var(--color-error);
}

.form-field .error-msg {
  color: var(--color-error);
  font-size: var(--fs-xs);
}

.badge, .status-pill, .pill {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  letter-spacing: var(--tracking-wide);
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  display: inline-flex;
}

.badge-success, .status-active, .status-confirmed, .status-paid {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.badge-warning, .status-pending, .status-processing {
  background: var(--color-warning-bg);
  color: var(--color-warning);
}

.badge-error, .status-cancelled, .status-failed, .status-inactive {
  background: var(--color-error-bg);
  color: var(--color-error);
}

.badge-info {
  background: var(--color-info-bg);
  color: var(--color-info);
}

.badge-neutral, .status-draft {
  background: var(--neutral-200);
  color: var(--neutral-700);
}

.badge-brand {
  background: var(--brand-100);
  color: var(--brand-800);
}

.site-footer, footer.site-footer {
  background: var(--brand-900);
  color: #ffffffc7;
  padding: var(--space-16) 0 var(--space-6);
}

.site-footer h4, .site-footer .footer-heading {
  color: #fff;
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  margin-bottom: var(--space-4);
}

.site-footer a {
  color: #ffffffb8;
  transition: color var(--dur-fast);
}

.site-footer a:hover {
  color: var(--accent-500);
}

.site-footer .footer-bottom, .site-footer .footer-legal {
  padding-top: var(--space-6);
  margin-top: var(--space-10);
  color: #ffffff8c;
  font-size: var(--fs-xs);
  border-top: 1px solid #ffffff14;
}

.skeleton {
  background: linear-gradient(90deg, var(--neutral-200) 0%, var(--neutral-100) 50%, var(--neutral-200) 100%);
  border-radius: var(--radius-sm);
  background-size: 200% 100%;
  animation: 1.4s ease-in-out infinite ds-shimmer;
}

.skeleton-line {
  height: 12px;
  margin-bottom: var(--space-2);
}

.skeleton-line.lg {
  height: 20px;
}

.skeleton-circle {
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
}

@keyframes ds-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.spinner {
  border: 3px solid var(--brand-200);
  border-top-color: var(--brand-700);
  border-radius: var(--radius-full);
  width: 32px;
  height: 32px;
  animation: .8s linear infinite ds-spin;
}

@keyframes ds-spin {
  to {
    transform: rotate(360deg);
  }
}

.empty-state, .admin-empty-panel {
  text-align: center;
  padding: var(--space-16) var(--space-6);
  color: var(--muted);
  border: 2px dashed var(--line);
  border-radius: var(--radius-md);
}

.empty-state .icon, .admin-empty-panel .icon {
  font-size: var(--fs-5xl);
  color: var(--brand-300);
  margin-bottom: var(--space-3);
}

.empty-state h3, .admin-empty-panel h3 {
  color: var(--foreground);
  margin-bottom: var(--space-2);
}

.admin-control-shell, .admin-layout {
  background: var(--background);
  min-height: 100vh;
}

.admin-control-sidebar, .admin-sidebar {
  background: var(--brand-900);
  color: #ffffffd9;
  border-right: 1px solid #ffffff0f;
}

.admin-control-sidebar a, .admin-sidebar a, .admin-control-nav a {
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  color: #ffffffc7;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  transition: all var(--dur-fast);
  display: flex;
}

.admin-control-sidebar a:hover, .admin-sidebar a:hover, .admin-control-nav a:hover {
  color: #fff;
  background: #ffffff0f;
}

.admin-control-sidebar a[aria-current="page"], .admin-control-sidebar a.active, .admin-sidebar a.active, .admin-control-nav a[aria-current="page"] {
  background: var(--brand-700);
  color: #fff;
  box-shadow: inset 3px 0 0 var(--accent-500);
}

.admin-control-hero, .admin-page-header {
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-8);
}

.admin-control-hero h1, .admin-page-header h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-2);
}

.breadcrumbs {
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-bottom: var(--space-2);
  display: flex;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--brand-700);
}

.breadcrumbs .current {
  color: var(--foreground);
  font-weight: var(--fw-medium);
}

.admin-control-section, .admin-card, .admin-panel, .admin-control-metric, .admin-roadmap-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.admin-control-metric .value, .admin-control-metric strong {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-semibold);
  color: var(--foreground);
}

.admin-inline-table, .admin-table, table.data-table {
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border-radius: var(--radius-md);
  width: 100%;
  font-size: var(--fs-sm);
  overflow: hidden;
}

.admin-inline-table thead th, .admin-table thead th, .data-table thead th {
  text-align: left;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-weight: var(--fw-semibold);
  color: var(--muted);
  padding: var(--space-4) var(--space-5);
  background: var(--neutral-50);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.admin-inline-table tbody td, .admin-table tbody td, .data-table tbody td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.admin-inline-table tbody tr:nth-child(2n), .admin-table tbody tr:nth-child(2n), .data-table tbody tr:nth-child(2n) {
  background: var(--neutral-50);
}

.admin-inline-table tbody tr:hover, .admin-table tbody tr:hover, .data-table tbody tr:hover {
  background: var(--brand-50);
}

.admin-inline-table tbody tr:last-child td, .admin-table tbody tr:last-child td, .data-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-inline-actions, .table-actions {
  gap: var(--space-2);
  justify-content: flex-end;
  display: inline-flex;
}

.admin-form, .admin-form-grid {
  gap: var(--space-5);
  display: grid;
}

.admin-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 720px) {
  .admin-form-grid {
    grid-template-columns: 1fr;
  }
}

.admin-form label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.admin-form .help {
  font-size: var(--fs-xs);
  color: var(--muted);
}

.admin-chip, .admin-soft-badge {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  background: var(--brand-100);
  color: var(--brand-800);
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  display: inline-flex;
}

@media (max-width: 960px) {
  .admin-control-shell, .admin-layout {
    grid-template-columns: 1fr !important;
  }

  .admin-control-sidebar, .admin-sidebar {
    z-index: 400;
    width: 280px;
    transition: transform var(--dur-base) var(--ease-in-out);
    position: fixed;
    inset: 0 auto 0 0;
    transform: translateX(-100%);
  }

  .admin-control-sidebar.open, .admin-sidebar.open {
    transform: translateX(0);
  }
}

.toast-container {
  top: var(--space-5);
  right: var(--space-5);
  z-index: 9999;
  gap: var(--space-2);
  pointer-events: none;
  flex-direction: column;
  display: flex;
  position: fixed;
}

.toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 420px;
  padding: var(--space-3) var(--space-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-700);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-size: var(--fs-sm);
  gap: var(--space-3);
  animation: toast-in var(--dur-base) var(--ease-out);
  align-items: flex-start;
  display: flex;
}

.toast.success {
  border-left-color: var(--color-success);
}

.toast.warning {
  border-left-color: var(--color-warning);
}

.toast.error {
  border-left-color: var(--color-error);
}

.toast.info {
  border-left-color: var(--color-info);
}

.toast .title {
  font-weight: var(--fw-semibold);
  color: var(--foreground);
}

.toast .msg {
  color: var(--muted);
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.destination-hero, .blog-hero, .contact-hero {
  color: #fff;
  align-items: flex-end;
  min-height: 54vh;
  display: flex;
  position: relative;
}

.destination-hero:before, .blog-hero:before, .contact-hero:before {
  content: "";
  background: linear-gradient(#0000 40%, #1a300dd9 100%);
  position: absolute;
  inset: 0;
}

.destination-hero > *, .blog-hero > *, .contact-hero > * {
  z-index: 1;
  position: relative;
}

.highlight-list {
  gap: var(--space-3);
  display: grid;
}

.highlight-list li {
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
  display: flex;
}

.highlight-list li:before {
  content: "✓";
  color: var(--brand-700);
  font-weight: var(--fw-bold);
}

.blog-grid {
  gap: var(--space-6);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card .category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--brand-700);
  margin-bottom: var(--space-2);
  display: inline-block;
}

.blog-card time {
  font-size: var(--fs-xs);
  color: var(--muted);
}

.contact-page .form-card {
  max-width: 640px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

pre, code {
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 900px) {
  .hero, .home-hero, .page-hero {
    min-height: 60vh;
  }

  .form-card, .inquiry-form, .contact-form {
    padding: var(--space-6);
  }
}

@media print {
  .site-header, .site-footer, .toast-container {
    display: none !important;
  }
}

.home-editorial-grid, .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  display: grid;
}

@media (max-width: 980px) {
  .home-editorial-grid, .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-editorial-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  flex-direction: column;
  min-height: 460px;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s cubic-bezier(.16, 1, .3, 1), border-color .15s;
  display: flex;
  overflow: hidden;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg, 0 12px 28px #0000001f);
  border-color: var(--brand-200, #cbe0b5);
  transform: translateY(-4px);
}

.blog-card__cover, .blog-card__placeholder {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  flex-shrink: 0;
  width: 100%;
  display: block;
}

.blog-card__placeholder {
  color: #fff;
  background: linear-gradient(135deg, #1a300de0 0%, #2d5016c7 50%, #4a7f2ab3 100%), radial-gradient(1200px 400px at 10% 10%, #ffffff2e, #0000 60%);
  align-items: flex-end;
  padding: 20px;
  display: flex;
  position: relative;
}

.blog-card__placeholder:after {
  content: "⚓";
  opacity: .35;
  font-size: 28px;
  position: absolute;
  top: 14px;
  right: 16px;
}

.blog-card__placeholder-title {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  color: #fff;
  text-shadow: 0 2px 12px #00000040;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 4.5em;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  display: -webkit-box;
  overflow: hidden;
}

.blog-card__body {
  flex-direction: column;
  flex: auto;
  gap: 10px;
  padding: 20px 22px 22px;
  display: flex;
}

.blog-card__body h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
}

.blog-card__body h3 a {
  color: inherit;
}

.blog-card__body h3 a:hover {
  color: var(--brand-700, #2d5016);
}

.blog-card__body p {
  color: var(--muted);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
}

.blog-card__category {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-700, #2d5016);
  font-size: .7rem;
  font-weight: 700;
}

.blog-card__body > a:last-child {
  margin-top: auto;
}

.boat-highlight-grid {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  display: grid !important;
}

.boat-highlight-card {
  min-width: 0;
  overflow: hidden;
  min-height: auto !important;
  padding: 18px !important;
}

.boat-highlight-card h3 {
  word-wrap: break-word;
  overflow-wrap: anywhere;
  font-size: 1.15rem !important;
  line-height: 1.2 !important;
}

.boat-highlight-card p {
  font-size: .9rem !important;
  line-height: 1.55 !important;
}

.boat-highlight-card span {
  letter-spacing: .08em;
  font-size: .68rem !important;
}

@media (max-width: 1024px) {
  .boat-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}

@media (max-width: 520px) {
  .boat-highlight-grid {
    grid-template-columns: 1fr !important;
  }
}

.mobile-nav-toggle {
  cursor: pointer;
  z-index: 60;
  background: none;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: none;
  position: relative;
}

.mobile-nav-toggle span {
  background: var(--foreground, #18211f);
  border-radius: 2px;
  width: 22px;
  height: 2px;
  transition: transform .25s, opacity .2s, top .25s;
  display: block;
  position: absolute;
  left: 11px;
}

.mobile-nav-toggle span:first-child {
  top: 15px;
}

.mobile-nav-toggle span:nth-child(2) {
  top: 21px;
}

.mobile-nav-toggle span:nth-child(3) {
  top: 27px;
}

.mobile-nav-toggle.is-open span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav-drawer {
  z-index: 100;
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  background: #0f0f0c8c;
  transition: opacity .3s;
  position: fixed;
  inset: 0;
}

.mobile-nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer__panel {
  opacity: 0;
  background: #fff;
  flex-direction: column;
  padding: 72px 28px 32px;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), opacity .3s;
  display: flex;
  position: absolute;
  inset: 0;
  transform: translateY(-16px);
}

.mobile-nav-drawer.is-open .mobile-nav-drawer__panel {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-drawer__close {
  cursor: pointer;
  width: 44px;
  height: 44px;
  color: var(--foreground, #18211f);
  background: none;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  position: absolute;
  top: 16px;
  right: 16px;
}

.mobile-nav-drawer__close:hover {
  background: var(--neutral-100, #f4f4ef);
}

.mobile-nav-drawer__links {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: auto 0;
  display: flex;
}

.mobile-nav-drawer__links a {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  color: var(--foreground, #18211f);
  border-radius: 10px;
  min-height: 48px;
  padding: 14px 20px;
  font-size: 1.5rem;
  font-weight: 600;
  transition: background .15s, color .15s;
  display: block;
}

.mobile-nav-drawer__links a:hover, .mobile-nav-drawer__links a:focus-visible {
  background: var(--brand-50, #f4f8ed);
  color: var(--brand-700, #2d5016);
}

.mobile-nav-drawer__footer {
  border-top: 1px solid var(--line, #e7e7df);
  padding-top: 24px;
}

.mobile-nav-drawer__cta {
  background: var(--brand-700, #2d5016);
  color: #fff;
  letter-spacing: .04em;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
}

.mobile-nav-drawer__cta:hover {
  background: var(--brand-600, #3a6620);
}

@media (max-width: 860px) {
  .mobile-nav-toggle {
    display: inline-flex;
  }

  .site-header .site-nav, .site-header .header-auth {
    display: none !important;
  }

  .site-header {
    grid-template-columns: auto 1fr auto !important;
  }

  .site-header > .brand {
    grid-column: 1;
  }

  .site-header > .mobile-nav-toggle {
    grid-column: 3;
    justify-self: end;
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  :where(a, button), :where(.btn, .button, .primary-cta, .secondary-cta, .header-cta) {
    min-height: 44px;
  }

  h1, h2 {
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  pre, code {
    white-space: pre-wrap;
    word-break: break-word;
  }

  .container, main > section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 375px) {
  h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  h2 {
    font-size: clamp(1.5rem, 7vw, 1.875rem);
  }
}

.mobile-nav-drawer {
  pointer-events: none;
  visibility: hidden;
  overscroll-behavior: contain;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
  overflow-y: auto;
  transform: translateX(100%);
  z-index: 9999 !important;
  -webkit-backdrop-filter: none !important;
  opacity: 1 !important;
  background: #fff !important;
  width: 100vw !important;
  height: 100dvh !important;
  display: flex !important;
  position: fixed !important;
  inset: 0 !important;
}

.mobile-nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
  transform: translateX(0);
}

.mobile-nav-drawer__panel {
  all: unset;
  display: contents;
}

.mobile-nav-drawer__header {
  border-bottom: 1px solid var(--line, #e7e7df);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  display: flex;
}

.mobile-nav-drawer__brand {
  color: var(--foreground, #18211f);
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
}

.mobile-nav-drawer__brand-mark {
  background: var(--brand-700, #2d5016);
  color: #fff;
  letter-spacing: .04em;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
}

.mobile-nav-drawer__close {
  width: 44px;
  height: 44px;
  color: var(--foreground, #18211f);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: static;
  top: auto;
  right: auto;
}

.mobile-nav-drawer__close:hover, .mobile-nav-drawer__close:focus-visible {
  background: var(--neutral-100, #f4f4ef);
}

.mobile-nav-drawer__links {
  text-align: left;
  flex-direction: column;
  flex: auto;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 20px 0;
  display: flex;
  overflow-y: auto;
}

.mobile-nav-drawer__links a {
  min-height: 56px;
  font-size: 24px;
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  color: var(--foreground, #18211f);
  border-bottom: 1px solid var(--line, #e7e7df);
  background: none;
  align-items: center;
  padding: 12px 28px;
  font-weight: 600;
  line-height: 1.2;
  transition: background .15s, color .15s;
  display: flex;
}

.mobile-nav-drawer__links a:first-child {
  border-top: 1px solid var(--line, #e7e7df);
}

.mobile-nav-drawer__links a:hover, .mobile-nav-drawer__links a:focus-visible, .mobile-nav-drawer__links a:active {
  background: var(--brand-50, #f4f8ed);
  color: var(--brand-700, #2d5016);
  outline: none;
}

.mobile-nav-drawer__footer {
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line, #e7e7df);
  background: #fff;
  flex-shrink: 0;
}

.mobile-nav-drawer__cta {
  background: var(--brand-700, #2d5016);
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
  display: flex;
  color: #fff !important;
}

.mobile-nav-drawer__cta:hover, .mobile-nav-drawer__cta:focus-visible {
  background: var(--brand-600, #3a6620);
}

.mobile-nav-toggle {
  z-index: 10000 !important;
}

.mobile-nav-toggle.is-open {
  display: none !important;
}

@media (min-width: 861px) {
  .mobile-nav-drawer {
    display: none !important;
  }
}

body:has(.mobile-nav-drawer.is-open) {
  overflow: hidden !important;
}

.home-editorial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 24px !important;
  display: grid !important;
}

@media (max-width: 980px) {
  .home-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .home-editorial-grid {
    grid-template-columns: 1fr !important;
  }
}

.home-editorial-card__link {
  color: inherit;
  height: 100%;
  text-decoration: none;
  display: block;
}

.home-editorial-card {
  height: 100%;
  min-height: 480px;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s cubic-bezier(.16, 1, .3, 1), border-color .15s;
  border: 1px solid var(--line, #e7e7df) !important;
  background: #fff !important;
  border-radius: 20px !important;
  flex-direction: column !important;
  display: flex !important;
  overflow: hidden !important;
}

.home-editorial-card__link:hover .home-editorial-card, .home-editorial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px #0f0f0c1f;
  border-color: var(--brand-200, #cbe0b5) !important;
}

.home-editorial-card__media {
  background: var(--brand-100, #e8f1dc);
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.home-editorial-card__media img, .home-editorial-card img {
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.home-editorial-card:hover .home-editorial-card__media img, .home-editorial-card:hover img {
  transform: scale(1.04);
}

.home-editorial-card__placeholder {
  color: #fff;
  isolation: isolate;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 220px;
  padding: 20px 22px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-editorial-card__placeholder:before {
  content: "";
  z-index: 0;
  opacity: .5;
  pointer-events: none;
  background-image: radial-gradient(#ffffff2e 1.4px, #0000 1.4px);
  background-size: 18px 18px;
  position: absolute;
  inset: 0;
}

.home-editorial-card__placeholder:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(#0000 55%, #00000059 100%);
  position: absolute;
  inset: 0;
}

.home-editorial-card__placeholder > * {
  z-index: 1;
  position: relative;
}

.home-editorial-card__placeholder--ocean {
  background: linear-gradient(135deg, #0b2a4a 0%, #0f5ea3 50%, #14a3a3 100%);
}

.home-editorial-card__placeholder--sunset {
  background: linear-gradient(135deg, #b8360f 0%, #e86a2b 45%, #ff8c5a 100%);
}

.home-editorial-card__placeholder--forest {
  background: linear-gradient(135deg, #1a300d 0%, #2d5016 50%, #2e8b57 100%);
}

.home-editorial-card__placeholder-title {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  text-shadow: 0 2px 16px #00000059;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-width: 100%;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  overflow: hidden;
  color: #fff !important;
  margin: 0 !important;
}

.home-editorial-card__badge {
  color: var(--brand-700, #2d5016);
  letter-spacing: .08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #fffffff2;
  border-radius: 9999px;
  align-self: flex-start;
  align-items: center;
  padding: 4px 12px;
  font-size: .7rem;
  font-weight: 700;
  display: inline-flex;
}

.home-editorial-card__media .home-editorial-card__badge {
  z-index: 2;
  position: absolute;
  top: 14px;
  left: 14px;
}

.home-editorial-card__body {
  flex: auto;
  gap: 10px;
  flex-direction: column !important;
  padding: 20px 22px 22px !important;
  display: flex !important;
}

.home-editorial-card__body h3, .home-editorial-card h3 {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  color: var(--foreground, #18211f) !important;
  margin: 0 !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.home-editorial-card__body p, .home-editorial-card p {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted, #71715f) !important;
  margin: 0 !important;
  font-size: .9rem !important;
  line-height: 1.55 !important;
}

.home-editorial-card__category {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-700, #2d5016);
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 700;
}

.home-editorial-card__meta {
  color: var(--muted, #71715f);
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: .75rem;
  display: flex;
}

.home-editorial-card__readmore {
  color: var(--brand-700, #2d5016);
  margin-top: auto;
  padding-top: 10px;
  font-size: .875rem;
  font-weight: 600;
}

.schedules-table {
  position: relative;
}

.schedules-bulkbar {
  background: var(--surface-soft, #f4f8ed);
  border: 1px solid var(--brand-200, #cbe0b5);
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 14px;
  font-size: .9rem;
  display: flex;
}

.schedules-bulkbar span {
  color: var(--brand-700, #2d5016);
  font-weight: 600;
}

.schedules-row-actions {
  gap: 6px;
  display: inline-flex;
}

.icon-btn {
  border: 1px solid var(--line, #e7e7df);
  cursor: pointer;
  width: 32px;
  height: 32px;
  color: var(--foreground, #18211f);
  background: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: background .15s, border-color .15s, color .15s;
  display: inline-flex;
}

.icon-btn:hover:not(:disabled) {
  background: var(--surface-soft, #f4f8ed);
  border-color: var(--brand-200, #cbe0b5);
}

.icon-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.icon-btn-danger:hover:not(:disabled) {
  color: #b91c1c;
  background: #fdecea;
  border-color: #e06060;
}

.btn-danger {
  color: #fff;
  cursor: pointer;
  background: #b91c1c;
  border: none;
  border-radius: 9999px;
  padding: 8px 16px;
  font-weight: 600;
  transition: background .15s;
}

.btn-danger:hover:not(:disabled) {
  background: #991414;
}

.btn-danger:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.btn-ghost {
  border: 1px solid var(--line, #e7e7df);
  color: var(--foreground, #18211f);
  cursor: pointer;
  background: none;
  border-radius: 9999px;
  padding: 8px 16px;
  font-weight: 600;
}

.btn-ghost:hover:not(:disabled) {
  background: var(--neutral-100, #f4f4ef);
}

.btn-primary {
  background: var(--brand-700, #2d5016);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 9999px;
  padding: 8px 18px;
  font-weight: 600;
}

.btn-primary:hover:not(:disabled) {
  background: var(--brand-600, #3a6620);
}

.btn-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.schedules-modal-backdrop {
  z-index: 9998;
  background: #0f0f0c8c;
  justify-content: center;
  align-items: center;
  padding: 16px;
  display: flex;
  position: fixed;
  inset: 0;
}

.schedules-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 460px;
  padding: 24px;
  box-shadow: 0 20px 60px #00000040;
}

.schedules-modal h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.schedules-modal p {
  color: var(--muted, #71715f);
  margin: 0 0 16px;
}

.schedules-modal-actions {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  display: flex;
}

.schedules-edit-form {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.schedules-edit-form label {
  color: var(--foreground, #18211f);
  flex-direction: column;
  gap: 4px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
}

.schedules-edit-form input, .schedules-edit-form select {
  border: 1px solid var(--line, #e7e7df);
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: .95rem;
}

.schedules-edit-form input:focus, .schedules-edit-form select:focus {
  border-color: var(--brand-600, #3a6620);
  outline: none;
  box-shadow: 0 0 0 3px #2d501626;
}

.schedules-toast {
  z-index: 10000;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: .9rem;
  font-weight: 500;
  animation: .25s schedules-toast-in;
  position: fixed;
  bottom: 24px;
  right: 24px;
  box-shadow: 0 10px 30px #0000002e;
}

.schedules-toast--ok {
  color: #fff;
  background: #065f46;
}

.schedules-toast--err {
  color: #fff;
  background: #b91c1c;
}

@keyframes schedules-toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.settings-list {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.settings-row {
  border: 1px solid var(--line, #e7e7df);
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
}

.settings-row-head {
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
  display: flex;
}

.settings-row-head label {
  color: var(--foreground, #18211f);
  font-size: .95rem;
  font-weight: 600;
}

.settings-status {
  letter-spacing: .04em;
  font-size: .78rem;
  font-weight: 600;
}

.settings-status.is-set {
  color: var(--brand-700, #2d5016);
}

.settings-status.is-empty {
  color: var(--muted, #71715f);
}

.settings-row-body {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  display: grid;
}

@media (max-width: 720px) {
  .settings-row-body {
    grid-template-columns: 1fr;
  }
}

.settings-input-wrap {
  position: relative;
}

.settings-input-wrap input {
  border: 1px solid var(--line, #e7e7df);
  border-radius: 10px;
  width: 100%;
  padding: 10px 90px 10px 14px;
  font-family: inherit;
  font-size: .95rem;
}

.settings-input-wrap input:focus {
  border-color: var(--brand-600, #3a6620);
  outline: none;
  box-shadow: 0 0 0 3px #2d501626;
}

.settings-toggle {
  color: var(--brand-700, #2d5016);
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 600;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.settings-row-actions {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.schedule-sync-panel {
  border: 1px solid var(--line, #e7e7df);
  background: #fafaf6;
  border-radius: 12px;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  display: flex;
}

.schedule-sync-panel__row label {
  flex-direction: column;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
}

.schedule-sync-panel__row input {
  border: 1px solid var(--line, #e7e7df);
  border-radius: 8px;
  width: 100%;
  padding: 10px 12px;
  font-size: .9rem;
}

.schedule-sync-panel__actions {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.schedule-sync-panel__actions button {
  border: 1px solid var(--line, #e7e7df);
  cursor: pointer;
  background: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .85rem;
  font-weight: 600;
}

.schedule-sync-panel__actions button.primary {
  background: var(--brand-700, #2d5016);
  color: #fff;
  border-color: var(--brand-700, #2d5016);
}

.schedule-sync-panel__actions button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.schedule-sync-panel__meta {
  color: var(--muted, #71715f);
  font-size: .8rem;
}

.schedule-sync-panel__error {
  color: #b8360f;
  font-size: .85rem;
}

.schedule-sync-panel__message {
  color: var(--brand-700, #2d5016);
  font-size: .85rem;
}

.schedule-sync-panel__preview {
  border: 1px solid var(--line, #e7e7df);
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  font-size: .85rem;
}

.schedule-sync-panel__preview ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

.schedule-sync-panel__warnings li {
  color: #b8360f;
}

.new-boat-importer {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.importer-tabs {
  border-bottom: 1px solid var(--line, #e7e7df);
  gap: 8px;
  display: flex;
}

.importer-tabs button {
  cursor: pointer;
  color: var(--muted, #71715f);
  background: none;
  border: none;
  border-bottom: 2px solid #0000;
  padding: 10px 16px;
  font-weight: 600;
}

.importer-tabs button.active {
  color: var(--brand-700, #2d5016);
  border-bottom-color: var(--brand-700, #2d5016);
}

.importer-panel {
  background: #fafaf6;
  border-radius: 12px;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  display: flex;
}

.importer-panel input, .importer-panel textarea, .importer-draft input, .importer-draft textarea {
  border: 1px solid var(--line, #e7e7df);
  border-radius: 8px;
  width: 100%;
  padding: 10px 12px;
  font-size: .9rem;
}

.importer-panel button, .importer-draft button {
  border: 1px solid var(--brand-700, #2d5016);
  background: var(--brand-700, #2d5016);
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
}

.importer-panel button.secondary, .importer-draft button.secondary {
  color: var(--brand-700, #2d5016);
  background: #fff;
}

.importer-panel button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.importer-draft {
  border: 1px solid var(--line, #e7e7df);
  background: #fff;
  border-radius: 12px;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  display: flex;
}

.importer-draft label {
  flex-direction: column;
  gap: 4px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
}

.cabin-draft {
  border: 1px solid var(--line, #e7e7df);
  border-radius: 10px;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  align-items: end;
  gap: 8px;
  padding: 12px;
  display: grid;
}

@media (max-width: 720px) {
  .cabin-draft {
    grid-template-columns: 1fr 1fr;
  }
}

.home-boat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  display: grid;
}

@media (max-width: 1000px) {
  .home-boat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-boat-grid {
    grid-template-columns: 1fr;
  }
}

.home-boat-grid__footer {
  justify-content: center;
  margin-top: 28px;
  display: flex;
}

.home-boat-card {
  border: 1px solid var(--line, #e7e7df);
  background: #fff;
  border-radius: 20px;
  flex-direction: column;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  overflow: hidden;
}

.home-boat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px #0f0f0c1f;
}

.home-boat-card__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1a300d, #2d5016 60%, #4a7a2a);
  display: block;
  position: relative;
  overflow: hidden;
}

.home-boat-card__media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  display: block;
}

.home-boat-card:hover .home-boat-card__media img {
  transform: scale(1.04);
}

.home-boat-card__placeholder {
  color: #fff6;
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  font-weight: 700;
  display: flex;
  position: absolute;
  inset: 0;
}

.home-boat-card__badge {
  color: var(--brand-700, #2d5016);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #fffffff2;
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: .7rem;
  font-weight: 700;
  position: absolute;
  top: 14px;
  left: 14px;
}

.home-boat-card__body {
  flex-direction: column;
  flex: 1;
  gap: 10px;
  min-width: 0;
  padding: 20px 22px 22px;
  display: flex;
}

.home-boat-card__body > * {
  min-width: 0;
}

.home-boat-card__body h3, .home-boat-card__body h3 a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-boat-card__meta {
  color: var(--muted, #71715f);
  text-transform: uppercase;
  letter-spacing: .06em;
  gap: 6px;
  font-size: .78rem;
  display: flex;
}

.home-boat-card__body h3 {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.home-boat-card__body h3 a {
  color: var(--foreground, #18211f);
  text-decoration: none;
}

.home-boat-card__body h3 a:hover {
  color: var(--brand-700, #2d5016);
}

.home-boat-card__tagline {
  color: var(--muted, #71715f);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

.home-boat-card__pills {
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.home-boat-card__pills li {
  color: var(--brand-700, #2d5016);
  background: var(--brand-50, #f4f8ed);
  border-radius: 9999px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 600;
}

.home-boat-card__footer {
  border-top: 1px solid var(--line, #e7e7df);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px 14px;
  margin-top: auto;
  padding-top: 14px;
  display: flex;
}

.home-boat-card__footer > div {
  overflow-wrap: anywhere;
  flex: auto;
  min-width: 0;
}

.home-boat-card__footer > div strong {
  overflow-wrap: anywhere;
  display: block;
}

.home-boat-card__price-label {
  color: var(--muted, #71715f);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .72rem;
  display: block;
}

.home-boat-card__footer strong {
  color: var(--foreground, #18211f);
  font-size: 1.15rem;
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
}

.home-boat-card__price-unit {
  color: var(--muted, #71715f);
  margin-left: 4px;
  font-size: .78rem;
}

.home-boat-card__cta {
  color: var(--brand-700, #2d5016);
  flex-shrink: 0;
  align-items: center;
  min-height: 44px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.inquiry-form {
  border: 1px solid var(--line, #e7e7df);
  background: #fff;
  border-radius: 20px;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto;
  padding: 28px;
  display: flex;
  position: relative;
}

.inquiry-form__row {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  display: grid;
}

@media (max-width: 640px) {
  .inquiry-form__row {
    grid-template-columns: 1fr;
  }
}

.inquiry-form label {
  color: var(--foreground, #18211f);
  flex-direction: column;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
}

.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  border: 1px solid var(--line, #e7e7df);
  background: #fafaf6;
  border-radius: 10px;
  min-height: 44px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .15s, background .15s;
}

.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus {
  border-color: var(--brand-700, #2d5016);
  background: #fff;
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 110px;
}

.inquiry-form__actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  display: flex;
}

.inquiry-form__actions button {
  background: var(--brand-700, #2d5016);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 9999px;
  min-height: 48px;
  padding: 0 28px;
  font-size: .95rem;
  font-weight: 700;
  transition: background .15s;
}

.inquiry-form__actions button:hover:not(:disabled) {
  background: #3a6620;
}

.inquiry-form__actions button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.inquiry-form__hint {
  color: var(--muted, #71715f);
  font-size: .82rem;
}

.inquiry-form__error {
  color: #b8360f;
  margin: 0;
  font-size: .88rem;
}

.inquiry-form__success {
  text-align: center;
  background: #f4f8ed;
  border: 1px solid #cbe0b5;
  border-radius: 20px;
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
}

.inquiry-form__success strong {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  color: var(--brand-700, #2d5016);
  margin-bottom: 8px;
  font-size: 1.4rem;
  display: block;
}

.home-testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  display: grid;
}

@media (max-width: 900px) {
  .home-testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  border: 1px solid var(--line, #e7e7df);
  background: #fff;
  border-radius: 20px;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s cubic-bezier(.16, 1, .3, 1);
  display: flex;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px #0f0f0c14;
}

.testimonial-card__stars {
  letter-spacing: 2px;
  color: #d9d4c7;
  gap: 2px;
  font-size: 1.1rem;
  display: flex;
}

.testimonial-card__stars .is-filled {
  color: #d4a017;
}

.testimonial-card__quote {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  color: var(--foreground, #18211f);
  flex: 1;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.testimonial-card__author {
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  display: flex;
}

.testimonial-card__avatar {
  object-fit: cover;
  background: var(--brand-50, #f4f8ed);
  width: 44px;
  height: 44px;
  color: var(--brand-700, #2d5016);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: .95rem;
  font-weight: 700;
  display: inline-flex;
}

.testimonial-card__avatar--fallback {
  background: linear-gradient(135deg, var(--brand-700, #2d5016), #3a6620);
  color: #fff;
  letter-spacing: .02em;
}

.testimonial-card__author strong {
  color: var(--foreground, #18211f);
  font-size: .95rem;
  display: block;
}

.testimonial-card__author span {
  color: var(--muted, #71715f);
  font-size: .8rem;
  display: block;
}

.home-footer {
  color: #cfd4c9;
  background: #18211f;
  padding: 56px 6vw 24px;
  display: block;
}

.home-footer__grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
}

@media (max-width: 900px) {
  .home-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .home-footer__grid {
    grid-template-columns: 1fr;
  }
}

.home-footer__brand strong {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.35rem;
  display: block;
}

.home-footer__brand p {
  color: #9aa095;
  max-width: 420px;
  margin: 0 0 18px;
  font-size: .92rem;
  line-height: 1.5;
}

.home-footer__socials {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.home-footer__socials a {
  color: #cfd4c9;
  border: 1px solid #2d3a36;
  border-radius: 9999px;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
  display: inline-flex;
}

.home-footer__socials a:hover {
  color: #fff;
  background: #2d3a36;
  border-color: #4a5a54;
}

.home-footer__col h4 {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
  font-size: .75rem;
  font-weight: 700;
}

.home-footer__col a, .home-footer__col span {
  color: #cfd4c9;
  min-height: 44px;
  padding: 8px 0;
  font-size: .9rem;
  line-height: 1.4;
  text-decoration: none;
  display: block;
}

.home-footer__col a:hover {
  color: #fff;
  text-decoration: underline;
}

.home-footer__bottom {
  text-align: center;
  color: #7c8378;
  border-top: 1px solid #2d3a36;
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 20px;
  font-size: .8rem;
}

.boat-gallery {
  aspect-ratio: 16 / 9;
  background: #18211f;
  border-radius: 20px;
  grid-template-columns: 3fr 2fr;
  gap: 8px;
  max-height: 560px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.boat-gallery__thumbs {
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  display: grid;
}

.boat-gallery__tile {
  cursor: pointer;
  background: #18211f;
  border: 0;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.boat-gallery__tile img, .boat-gallery__tile video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
  display: block;
}

.boat-gallery__tile:hover img, .boat-gallery__tile:hover video {
  transform: scale(1.03);
}

.boat-gallery__play {
  color: #fff;
  pointer-events: none;
  background: #00000040;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  display: flex;
  position: absolute;
  inset: 0;
}

.boat-gallery__more {
  color: #fff;
  letter-spacing: .02em;
  pointer-events: none;
  background: #0f0f0c8c;
  justify-content: center;
  align-items: center;
  font-size: .95rem;
  font-weight: 600;
  display: flex;
  position: absolute;
  inset: 0;
}

.boat-gallery__view-all {
  color: #18211f;
  cursor: pointer;
  background: #fffffff2;
  border: 0;
  border-radius: 9999px;
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 600;
  position: absolute;
  bottom: 16px;
  right: 16px;
  box-shadow: 0 4px 14px #00000026;
}

.boat-gallery__view-all:hover {
  background: #fff;
}

@media (max-width: 800px) {
  .boat-gallery {
    aspect-ratio: 4 / 3;
    grid-template-columns: 1fr;
  }

  .boat-gallery__thumbs {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .boat-gallery__thumbs .boat-gallery__tile:nth-child(n+3) {
    display: none;
  }

  .boat-gallery__thumbs .boat-gallery__tile:nth-child(2) .boat-gallery__more {
    display: flex;
  }
}

.boat-lightbox {
  z-index: 9999;
  touch-action: pan-y;
  background: #0a0a08f0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.boat-lightbox__stage {
  justify-content: center;
  align-items: center;
  max-width: 92vw;
  max-height: 86vh;
  display: flex;
}

.boat-lightbox__stage img, .boat-lightbox__stage video {
  object-fit: contain;
  border-radius: 8px;
  max-width: 92vw;
  max-height: 86vh;
}

.boat-lightbox__stage iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  width: min(92vw, 1280px);
  height: min(86vh, 720px);
}

.boat-lightbox__close, .boat-lightbox__nav {
  color: #fff;
  cursor: pointer;
  background: #ffffff1f;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  line-height: 1;
  transition: background .15s;
  display: flex;
  position: absolute;
}

.boat-lightbox__close:hover, .boat-lightbox__nav:hover {
  background: #ffffff40;
}

.boat-lightbox__close {
  top: 20px;
  right: 20px;
}

.boat-lightbox__nav--prev {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.boat-lightbox__nav--next {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.boat-lightbox__counter {
  color: #fff;
  background: #0006;
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: .9rem;
  font-weight: 500;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 640px) {
  .boat-lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .boat-lightbox__nav--prev {
    left: 8px;
  }

  .boat-lightbox__nav--next {
    right: 8px;
  }
}

/*# sourceMappingURL=apps_web_app_globals_0xyo3ls.css.map*/