/* ============================================================
   FINESSE YACHT CHARTERS — Shared Stylesheet
   Matches React site design system exactly.
   Brand palette: #009b96 teal · #ffd000 yellow · #141414 dark
   Typography: Raleway (headings/UI) · Lato (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&family=Lato:ital,wght@0,300;0,400;0,700;1,300&display=swap');

/* ── CSS Variables (exact match to React index.css) ──────── */
:root {
  --brand-teal:         #009b96;
  --brand-teal-hover:   #00aca7;
  --brand-teal-light:   #e6f7f6;
  --brand-teal-deep:    #1d4d4a;
  --brand-yellow:       #ffd000;
  --brand-yellow-hover: #e6bb00;
  --brand-dark:         #141414;
  --brand-text:         #1a2e2d;
  --brand-muted:        #5e7e7c;
  --brand-ivory:        #f9f7f4;
  --brand-ivory-warm:   #f2ede6;
  --border:             #d4eceb;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background-color: var(--brand-ivory);
  color: var(--brand-text);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-text);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; max-width: 1280px; }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-book {
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 0.65rem 1.5rem;
  border-radius: 0.375rem;
  transition: background-color 180ms cubic-bezier(0.23,1,0.32,1), transform 160ms cubic-bezier(0.23,1,0.32,1);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-book:hover { background-color: var(--brand-yellow-hover); }
.btn-book:active { transform: scale(0.97); }

.btn-teal {
  background-color: var(--brand-teal);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 0.65rem 1.5rem;
  border-radius: 0.375rem;
  transition: background-color 180ms cubic-bezier(0.23,1,0.32,1), transform 160ms cubic-bezier(0.23,1,0.32,1);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-teal:hover { background-color: var(--brand-teal-hover); }
.btn-teal:active { transform: scale(0.97); }

.btn-outline-teal {
  background-color: transparent;
  color: var(--brand-teal);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 0.6rem 1.4rem;
  border-radius: 0.375rem;
  border: 2px solid var(--brand-teal);
  transition: all 180ms cubic-bezier(0.23,1,0.32,1);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  cursor: pointer;
}
.btn-outline-teal:hover { background-color: var(--brand-teal); color: #fff; }
.btn-outline-teal:active { transform: scale(0.97); }

/* ── Tag Pills ──────────────────────────────────────────── */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--brand-teal-light);
  color: var(--brand-teal-deep);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}
.tag-pill.yellow {
  background: #fff8cc;
  color: #7a6000;
}

/* ── Section utilities ──────────────────────────────────── */
.section-teal-light { background-color: var(--brand-teal-light); }
.section-dark {
  background-color: var(--brand-teal-deep);
  color: rgba(230,250,248,0.92);
}
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 {
  color: rgba(245,250,250,0.97);
}

/* ── Cards ──────────────────────────────────────────────── */
.offer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 200ms cubic-bezier(0.23,1,0.32,1), transform 200ms cubic-bezier(0.23,1,0.32,1);
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  box-shadow: 0 8px 32px rgba(0,155,150,0.15);
  transform: translateY(-3px);
}
.premium-card {
  background: #fdfcfa;
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  overflow: hidden;
  transition: box-shadow 250ms cubic-bezier(0.23,1,0.32,1), transform 250ms cubic-bezier(0.23,1,0.32,1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.premium-card:hover {
  box-shadow: 0 12px 40px rgba(29,77,74,0.14);
  transform: translateY(-4px);
}
.review-card {
  background: #fdfcfa;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

/* ── Nautical coord decoration ──────────────────────────── */
.nautical-coord {
  font-family: 'Lato', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--brand-teal);
  opacity: 0.6;
  text-transform: uppercase;
}
.nautical-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.nautical-row .nline {
  height: 1px;
  width: 32px;
  background: linear-gradient(90deg, var(--brand-teal) 0%, var(--brand-yellow) 100%);
}
.nautical-row .nline-rev {
  height: 1px;
  width: 32px;
  background: linear-gradient(90deg, var(--brand-yellow) 0%, var(--brand-teal) 100%);
}

/* ── Mobile CTA bar ─────────────────────────────────────── */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--brand-yellow);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
}
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }
.mobile-cta-spacer { height: 3.5rem; }
@media (min-width: 768px) { .mobile-cta-spacer { display: none; } }
.mobile-cta-bar a {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--brand-dark);
  text-decoration: none;
}

/* ── Navigation ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color 300ms ease, box-shadow 300ms ease;
}
.site-header.scrolled,
.site-header.opaque {
  background-color: rgba(253,252,250,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}
.site-header.transparent { background-color: transparent; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 1024px) { .nav-inner { height: 5rem; } }
.nav-logo img { height: 2.5rem; width: auto; }
@media (min-width: 1024px) { .nav-logo img { height: 3rem; } }

/* Desktop nav links */
.nav-links {
  display: none;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  transition: color 150ms ease;
}
.site-header.scrolled .nav-links a,
.site-header.opaque .nav-links a { color: var(--brand-text); }
.site-header.scrolled .nav-links a:hover,
.site-header.opaque .nav-links a:hover { color: var(--brand-teal); }
.site-header.transparent .nav-links a { color: white; }
.site-header.transparent .nav-links a:hover { color: var(--brand-yellow); }
.nav-links a.active { color: var(--brand-teal) !important; }

/* Desktop CTA */
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: flex; align-items: center; gap: 0.75rem; } }

/* Mobile controls */
.nav-mobile-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .nav-mobile-controls { display: none; } }
.nav-phone-btn, .nav-hamburger {
  padding: 0.5rem;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 150ms ease;
}
.site-header.transparent .nav-phone-btn { color: white; }
.site-header.transparent .nav-hamburger { color: white; }
.site-header.scrolled .nav-phone-btn,
.site-header.opaque .nav-phone-btn { color: var(--brand-teal); }
.site-header.scrolled .nav-hamburger,
.site-header.opaque .nav-hamburger { color: var(--brand-text); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu .container { padding-top: 1rem; padding-bottom: 1rem; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu ul a {
  display: block;
  padding: 0.75rem 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.375rem;
  color: var(--brand-text);
  transition: color 150ms ease, background-color 150ms ease;
}
.mobile-menu ul a:hover,
.mobile-menu ul a.active {
  color: var(--brand-teal);
  background-color: var(--brand-teal-light);
}
.mobile-menu-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.mobile-menu-cta .btn-book { width: 100%; justify-content: center; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background-color: var(--brand-teal-deep);
  color: rgba(230,250,248,0.92);
}
.footer-main { padding: 3.5rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand img {
  height: 3rem; width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-brand p { font-size: 0.875rem; line-height: 1.6; opacity: 0.8; max-width: 18rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: rgba(80,140,135,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 180ms ease;
  color: rgba(230,250,248,0.92);
}
.footer-social a:hover { background-color: var(--brand-teal); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-social img { width: 16px; height: 16px; object-fit: contain; object-position: center; }
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 150ms ease, color 150ms ease;
}
.footer-col ul a:hover { opacity: 1; color: white; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 0.15rem; opacity: 0.7; width: 15px; height: 15px; }
.footer-contact-item a { transition: color 150ms ease; }
.footer-contact-item a:hover { color: white; opacity: 1; }
.footer-seo { padding-bottom: 2rem; }
.footer-seo p { font-size: 0.75rem; opacity: 0.5; line-height: 1.6; max-width: 48rem; }
.footer-bottom { border-top: 1px solid rgba(80,140,135,0.3); padding: 1rem 0; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.6;
}
@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}
.footer-bottom-inner a:hover { opacity: 1; }

/* ── Grids ──────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* ── Detail page layout ─────────────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .detail-grid { grid-template-columns: 2fr 1fr; } }

/* Quick facts row */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.quick-fact {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: var(--brand-teal-light);
}
.quick-fact .qf-icon { margin: 0 auto 0.5rem; color: var(--brand-teal); display: flex; justify-content: center; }
.quick-fact .qf-label { font-size: 0.75rem; color: var(--brand-muted); margin-bottom: 0.125rem; }
.quick-fact .qf-value { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.875rem; }

/* Booking sidebar */
.booking-sidebar {
  position: sticky;
  top: 6rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.booking-sidebar .price-big {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--brand-teal);
}
.booking-sidebar .price-unit {
  font-size: 0.875rem;
  color: var(--brand-muted);
  margin-left: 0.25rem;
}
.booking-sidebar .book-btn-full {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
}
.booking-sidebar .secure-note {
  font-size: 0.75rem;
  text-align: center;
  color: var(--brand-muted);
  margin-bottom: 1.25rem;
}
.booking-sidebar .meta-list { display: flex; flex-direction: column; gap: 0.5rem; }
.booking-sidebar .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--brand-muted);
}
.booking-sidebar .meta-item svg { color: var(--brand-teal); flex-shrink: 0; width: 14px; height: 14px; }
.sidebar-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  text-align: center;
  color: var(--brand-muted);
}
.sidebar-footer a { color: var(--brand-teal); }
.sidebar-footer a:hover { text-decoration: underline; }

/* Included / add-ons lists */
.included-list, .addons-list { display: flex; flex-direction: column; gap: 0.5rem; }
.included-item, .addon-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.included-item svg { color: var(--brand-teal); flex-shrink: 0; width: 16px; height: 16px; }
.addon-item svg { color: var(--brand-yellow); flex-shrink: 0; width: 16px; height: 16px; }

/* Section headings */
.detail-section-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ── Hero sections ──────────────────────────────────────── */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-page {
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
  background-size: cover;
  background-position: center 40%;
}
.hero-detail {
  padding-top: 7rem;
  padding-bottom: 3.5rem;
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero-overlay-dark { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.hero-overlay-teal {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(29,77,74,0.75) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.72) 100%);
}
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.30) 60%, transparent 100%);
}
.hero-content { position: relative; z-index: 10; }

/* Nautical grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, white 0px, white 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(90deg, white 0px, white 1px, transparent 1px, transparent 80px);
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: white;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}
.breadcrumb a:hover { opacity: 1; }
.breadcrumb-sep { font-size: 0.75rem; opacity: 0.6; }

/* ── Scroll indicator ───────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}
.scroll-indicator .si-line {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.5);
  animation: siPulse 2s infinite;
}
.scroll-indicator span {
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}
@keyframes siPulse { 0%,100%{opacity:0.5} 50%{opacity:1} }

/* ── Stars ──────────────────────────────────────────────── */
.stars { display: flex; gap: 0.15rem; }
.stars svg { width: 13px; height: 13px; fill: var(--brand-yellow); }
.stars-sm svg { width: 11px; height: 11px; }

/* ── FAQ accordion ──────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brand-text);
}
.faq-question svg {
  flex-shrink: 0;
  color: var(--brand-teal);
  transition: transform 200ms ease;
  width: 16px; height: 16px;
}
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--brand-muted);
  line-height: 1.6;
}
.faq-answer.open { display: block; }

/* ── Gallery ────────────────────────────────────────────── */
.gallery-grid { columns: 1; gap: 1rem; }
@media (min-width: 640px) { .gallery-grid { columns: 2; } }
@media (min-width: 1024px) { .gallery-grid { columns: 3; } }
.gallery-item {
  break-inside: avoid;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
  cursor: pointer;
}
.gallery-item img { width: 100%; object-fit: cover; display: block; transition: transform 500ms ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: flex-end;
  transition: background 300ms ease;
}
.gallery-item:hover .gallery-caption { background: rgba(0,0,0,0.3); }
.gallery-caption p {
  color: white;
  font-size: 0.875rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform 300ms ease;
}
.gallery-item:hover .gallery-caption p { transform: translateY(0); }

/* ── Privacy prose ──────────────────────────────────────── */
.prose h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--brand-teal-deep); }
.prose p { line-height: 1.7; margin-bottom: 0; }
.prose ul { margin-top: 0.75rem; padding-left: 1.25rem; list-style: disc; }
.prose ul li { margin-bottom: 0.25rem; font-size: 0.875rem; }
.prose section { margin-bottom: 2rem; }

/* ── Fade-up animation ──────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 500ms cubic-bezier(0.23,1,0.32,1), transform 500ms cubic-bezier(0.23,1,0.32,1);
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
}

/* ── Utility classes ────────────────────────────────────── */
.text-teal { color: var(--brand-teal); }
.text-muted { color: var(--brand-muted); }
.text-yellow { color: var(--brand-yellow); }
.text-white { color: white; }
.text-dark { color: var(--brand-dark); }
.font-raleway { font-family: 'Raleway', sans-serif; }
.font-800 { font-weight: 800; }
.font-700 { font-weight: 700; }
.font-600 { font-weight: 600; }
.font-300 { font-weight: 300; }
.italic { font-style: italic; }
.leading-tight { line-height: 1.2; }
.leading-relaxed { line-height: 1.65; }
.tracking-widest { letter-spacing: 0.2em; }
.uppercase { text-transform: uppercase; }
.opacity-80 { opacity: 0.8; }
.opacity-70 { opacity: 0.7; }
.opacity-65 { opacity: 0.65; }
.opacity-50 { opacity: 0.5; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-14 { gap: 3.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.w-full { width: 100%; }
.w-7 { width: 1.75rem; }
.w-9 { width: 2.25rem; }
.w-12 { width: 3rem; }
.h-7 { height: 1.75rem; }
.h-9 { height: 2.25rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.rounded-full { border-radius: 999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.z-10 { z-index: 10; }
.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.shadow-xl { box-shadow: 0 20px 40px rgba(0,0,0,0.18); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.aspect-16-10 { aspect-ratio: 16/10; }
.aspect-4-3 { aspect-ratio: 4/3; }
.object-cover { object-fit: cover; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1; }
.min-w-0 { min-width: 0; }
.hidden { display: none; }
@media (min-width: 640px) { .sm\:flex { display: flex; } .sm\:hidden { display: none; } }
@media (min-width: 768px) { .md\:hidden { display: none; } }

/* ── Charters section layout ───────────────────────────── */
.charters-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .charters-layout {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Charter row item (home page) ───────────────────────── */
.charter-row-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background-color: rgba(80,140,135,0.25);
  text-decoration: none;
  transition: background-color 180ms ease;
}
.charter-row-item:hover { background-color: rgba(80,140,135,0.35); }
.charter-row-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background-color: rgba(80,140,135,0.4);
}
.charter-row-icon svg { width: 18px; height: 18px; color: var(--brand-yellow); }
.charter-row-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.375rem; }
.charter-row-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
}
.charter-row-desc { font-size: 0.75rem; opacity: 0.75; color: white; font-weight: 300; line-height: 1.5; }
.charter-row-price {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--brand-yellow);
}
.charter-row-chevron { color: rgba(255,255,255,0.5); flex-shrink: 0; }
.charter-row-chevron svg { width: 16px; height: 16px; }

/* ── Why Finesse cards ──────────────────────────────────── */
.why-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: #fdfcfa;
  border: 1px solid var(--border);
}
.why-card .why-icon { font-size: 1.875rem; margin-bottom: 0.75rem; }
.why-card h3 { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.875rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.75rem; color: var(--brand-muted); line-height: 1.5; font-weight: 300; }

/* ── Review avatar ──────────────────────────────────────── */
.review-avatar {
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  background-color: var(--brand-teal);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── Priority banner ────────────────────────────────────── */
.priority-banner {
  background-color: var(--brand-teal-deep);
  color: white;
  padding: 1rem 0;
}
.priority-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 640px) {
  .priority-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ── Contact form ───────────────────────────────────────── */
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brand-text);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: var(--brand-text);
  background: white;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(0,155,150,0.12);
}
.form-textarea { resize: vertical; min-height: 7rem; }

/* ── About page ─────────────────────────────────────────── */
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: #fdfcfa;
  border: 1px solid var(--border);
}
.value-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background-color: var(--brand-teal-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 20px; height: 20px; color: var(--brand-teal); }
.value-card h3 { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.875rem; margin-bottom: 0.25rem; }
.value-card p { font-size: 0.875rem; color: var(--brand-muted); line-height: 1.5; }
