/* ═══════════════════════════════════════════════════════════
   EXPLORE MILOS — Complete Static Stylesheet
   Matches the live React/Tailwind site exactly
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --background:  oklch(0.983 0.007 80);
  --foreground:  oklch(0.115 0 0);
  --card:        oklch(0.965 0.01 78);
  --card-fg:     oklch(0.115 0 0);
  --primary:     oklch(0.86 0.05 83);
  --primary-fg:  oklch(0.115 0 0);
  --secondary:   oklch(0.935 0.015 78);
  --muted:       oklch(0.94 0.012 78);
  --muted-fg:    oklch(0.52 0.01 78);
  --accent:      oklch(0.895 0.022 78);
  --border:      oklch(0.885 0.014 78);
  --radius:      0.125rem;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', ui-sans-serif, system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  text-shadow: 0 1px 6px rgba(0,0,0,0.13);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Layout helpers ─────────────────────────────────────── */
.container { max-width: 1152px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* ── Typography helpers ─────────────────────────────────── */
.label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}
.gold-divider {
  width: 3rem; height: 1px;
  background: var(--primary);
  margin: 1.5rem auto;
}
.gold-divider-left {
  width: 3rem; height: 1px;
  background: var(--primary);
  margin: 1.5rem 0;
}
.italic-primary { font-style: italic; color: var(--primary); }

/* ── FadeIn animation ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Hero entrance animations (homepage) ────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}
.hero-anim { opacity: 0; animation: heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-anim-1 { animation-delay: 0.2s; }
.hero-anim-2 { animation-delay: 0.4s; animation-duration: 0.9s; }
.hero-anim-3 { animation-delay: 0.7s; }
.hero-anim-4 { animation-delay: 0.95s; animation-name: heroFadeIn; animation-duration: 0.6s; }
.hero-anim-5 { animation-delay: 1.1s; }
.hero-anim-6 { animation-delay: 1.6s; animation-name: heroFadeIn; animation-duration: 0.6s; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: var(--foreground); color: var(--background); }
.btn-dark { background: var(--foreground); color: var(--background); }
.btn-dark:hover { background: var(--primary); color: var(--primary-fg); }
.btn-outline { border: 1px solid var(--foreground); color: var(--foreground); display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1.25rem; font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; transition: all 0.3s; }
.btn-outline:hover { background: var(--foreground); color: var(--background); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.8); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--foreground); }
.btn-outline-white { border: 1px solid #fff; color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--foreground); }
.btn-sm { padding: 0.625rem 1.25rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-wa-dark { border: 1px solid rgba(255,255,255,0.8); color: #fff; }
.btn-wa-dark:hover { background: #fff; color: var(--foreground); }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 0.75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
  transition: all 0.3s;
}
.navbar.scrolled {
  padding: 0.5rem 1.5rem;
  background: rgba(26,21,16,0.97);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.navbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.navbar-logo img { height: clamp(6.8rem, 18vw, 8.2rem); width: auto; max-width: min(78vw, 520px); object-fit: contain; filter: invert(1); mix-blend-mode: screen; }
@media (min-width: 768px) { .navbar-logo img { height: clamp(8.2rem, 10vw, 9.25rem); max-width: 560px; } }
.navbar-nav { display: flex; align-items: center; gap: 2rem; }
.navbar-nav a {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: 'Jost', sans-serif; color: rgba(255,255,255,0.8); transition: color 0.2s;
}
.navbar-nav a:hover { color: #fff; }
.navbar-cta {
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-family: 'Jost', sans-serif; font-weight: 400;
  background: var(--primary); color: var(--primary-fg); transition: all 0.3s;
}
.navbar-cta:hover { background: #fff; color: var(--foreground); }
.hamburger { display: none; flex-direction: column; gap: 6px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: #fff; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 40;
  background: rgba(26,21,16,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.875rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-family: 'Jost', sans-serif; color: rgba(255,255,255,0.8); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--primary); }
@media (max-width: 767px) {
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
}

/* ── Homepage Hero (full height) ───────────────────────── */
.hero-full { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-full .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.30), rgba(0,0,0,0.55)); }
.hero-inner { position: relative; z-index: 10; text-align: center; color: #fff; padding: 0 1.5rem; max-width: 56rem; margin: 0 auto; }
.hero-eyebrow { font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.hero-h1 { font-family: 'Jost', sans-serif; font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem; text-shadow: 0 3px 24px rgba(0,0,0,0.75); }
.hero-sub { font-family: 'Jost', sans-serif; font-size: 1rem; color: rgba(255,255,255,0.8); letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.hero-price { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: var(--primary); font-weight: 500; letter-spacing: 0.05em; }
.hero-price-sub { font-family: 'Jost', sans-serif; font-size: 0.75rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.hero-cta-row { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .hero-cta-row { flex-direction: row; justify-content: center; } }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); }
.scroll-line { width: 1px; height: 3rem; background: rgba(255,255,255,0.3); animation: scrollBounce 1.8s ease-in-out infinite; }

/* ── Page hero (inner pages) ───────────────────────────── */
.page-hero {
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero--tall { height: 65vh; min-height: 480px; }
.page-hero--exp  { height: 70vh; min-height: 520px; }
.page-hero--short { height: 55vh; min-height: 400px; }
.page-hero .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-overlay { position: absolute; inset: 0; }
.page-hero .hero-overlay--default { background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.55) 100%); }
.page-hero .hero-overlay--blog { background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.75) 100%); }
.page-hero .hero-overlay--contact { background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.75) 100%); }
.page-hero .hero-overlay--exp { background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.8) 100%); }
.page-hero .hero-content {
  position: relative; z-index: 10;
  width: 100%; max-width: 1152px; margin: 0 auto; padding: 0 1.5rem 4rem;
}
.page-hero--exp .hero-content { padding-bottom: 5rem; }
.page-hero .hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase;
  font-family: 'Jost', sans-serif; color: var(--primary); margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300; color: #fff; line-height: 1.15;
  text-shadow: 0 3px 24px rgba(0,0,0,0.7);
}

/* ── Section spacing ────────────────────────────────────── */
.section { padding: 7rem 0; }
.section-sm { padding: 5rem 0; }
.section--bg-card { background: var(--card); }
.section--bg-dark { background: var(--foreground); color: var(--background); }

/* ── Section header ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header h2 { font-family: 'Jost', sans-serif; font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 300; color: var(--foreground); line-height: 1.2; }
.section-header p { font-family: 'Jost', sans-serif; font-size: 0.9375rem; color: var(--muted-fg); max-width: 42rem; margin: 0 auto; line-height: 1.7; }

/* ── Trust bar ──────────────────────────────────────────── */
.trust-bar { background: var(--foreground); color: var(--background); padding: 1.25rem 1.5rem; }
.trust-bar-inner {
  max-width: 1152px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem;
}
@media (min-width: 768px) { .trust-bar-inner { gap: 3rem; } }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; }
.trust-item .icon { color: var(--primary); }
.trust-item .text { color: rgba(250,248,244,0.8); }

/* ── Experience cards grid ──────────────────────────────── */
.exp-grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .exp-grid { grid-template-columns: 1fr 1fr; } }
.exp-card { display: flex; flex-direction: column; background: var(--background); overflow: hidden; transition: box-shadow 0.3s; }
.exp-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.exp-card-img { position: relative; overflow: hidden; height: 18rem; }
.exp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.exp-card:hover .exp-card-img img { transform: scale(1.05); }
.exp-card-img .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65), transparent); }
.exp-card-img .meta { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; }
.exp-card-img .badge { display: inline-block; font-size: 0.5625rem; letter-spacing: 0.25em; text-transform: uppercase; background: var(--primary); color: var(--primary-fg); padding: 0.25rem 0.625rem; margin-bottom: 0.5rem; font-family: 'Jost', sans-serif; }
.exp-card-img .card-title-row { display: flex; align-items: flex-end; justify-content: space-between; }
.exp-card-img .card-title { font-family: 'Jost', sans-serif; font-size: 1.25rem; color: #fff; font-weight: 300; }
.exp-card-img .duration { font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); }
.exp-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.exp-card-body .tagline { font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.05em; color: var(--primary); margin-bottom: 0.75rem; }
.exp-card-body .desc { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; flex: 1; margin-bottom: 1.5rem; }
.exp-card-footer { display: flex; align-items: center; justify-content: space-between; }
.exp-card-footer .price { font-family: 'Jost', sans-serif; font-size: 1.25rem; font-weight: 500; color: var(--foreground); }
.exp-card-footer .price-sub { font-size: 0.75rem; color: var(--muted-fg); margin-left: 0.25rem; }

/* ── Reviews ────────────────────────────────────────────── */
.reviews-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .reviews-grid { gap: 2rem; } }
.review-card { background: var(--card); border: 1px solid var(--border); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; transition: box-shadow 0.3s; }
.review-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.stars span { color: var(--primary); font-size: 1rem; }
.review-text { font-family: 'Jost', sans-serif; font-size: 0.9375rem; color: rgba(26,21,16,0.8); line-height: 1.7; font-style: italic; }
.review-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.5rem; border-top: 1px solid var(--border); }
.review-author { font-family: 'Jost', sans-serif; font-size: 0.875rem; font-weight: 500; }
.review-date { display: flex; align-items: center; gap: 0.375rem; font-family: 'Jost', sans-serif; font-size: 0.625rem; color: var(--muted-fg); }
.google-icon { width: 1rem; height: 1rem; }

/* ── Why us grid ────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(5,1fr); } }
.why-item { background: var(--card); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; transition: background 0.3s; }
.why-item:hover { background: var(--background); }
.why-icon { color: var(--primary); font-size: 1.5rem; }
.why-title { font-family: 'Jost', sans-serif; font-size: 1.125rem; font-weight: 300; }
.why-desc { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

/* ── Boat cards (homepage) ─────────────────────────────── */
.boats-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .boats-grid { grid-template-columns: repeat(3,1fr); } }
.boat-card { background: var(--card); overflow: hidden; transition: box-shadow 0.3s; }
.boat-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.boat-card-img { position: relative; overflow: hidden; height: 14rem; }
.boat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.boat-card:hover .boat-card-img img { transform: scale(1.05); }
.boat-card-body { padding: 1.5rem; }
.boat-type { font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.25rem; }
.boat-name { font-family: 'Jost', sans-serif; font-size: 1.5rem; font-weight: 300; margin-bottom: 0.25rem; }
.boat-capacity { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1.25rem; }

/* ── CTA section (with background image) ───────────────── */
.cta-section { position: relative; padding: 9rem 0; overflow: hidden; }
.cta-section .cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.cta-content { position: relative; z-index: 10; text-align: center; color: #fff; padding: 0 1.5rem; max-width: 48rem; margin: 0 auto; }
.cta-content h2 { font-family: 'Jost', sans-serif; font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 300; margin-bottom: 1.5rem; line-height: 1.2; text-shadow: 0 3px 24px rgba(0,0,0,0.75); }
.cta-content p { font-family: 'Jost', sans-serif; font-size: 0.9375rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-btn-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }

/* ── Footer ─────────────────────────────────────────────── */
footer { background: var(--foreground); color: var(--background); padding: 4rem 0; }
.footer-grid { display: grid; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3,1fr); } }
.footer-logo img { height: 7rem; width: auto; filter: invert(1); mix-blend-mode: screen; margin-bottom: 1.25rem; }
.footer-desc { font-family: 'Jost', sans-serif; font-size: 0.75rem; color: rgba(250,248,244,0.5); line-height: 1.7; max-width: 16rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-btn { width: 2.25rem; height: 2.25rem; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(250,248,244,0.2); color: rgba(250,248,244,0.5); transition: all 0.3s; }
.social-btn:hover { border-color: var(--primary); color: var(--primary); }
.footer-heading { font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--primary); margin-bottom: 1.25rem; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list li { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: rgba(250,248,244,0.7); }
.footer-contact-list .lbl { font-size: 0.75rem; color: rgba(250,248,244,0.4); margin-right: 0.5rem; }
.footer-contact-list a:hover { color: var(--primary); }
.footer-book-desc { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: rgba(250,248,244,0.6); margin-bottom: 1.25rem; line-height: 1.6; }
.footer-book-btns { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-book-btns .btn { justify-content: center; }
.footer-book-btns .btn-wa { border: 1px solid var(--primary); color: var(--primary); display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.25rem; font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; transition: all 0.3s; }
.footer-book-btns .btn-wa:hover { background: var(--primary); color: var(--background); }
.footer-bottom { border-top: 1px solid rgba(250,248,244,0.1); padding: 1.25rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-family: 'Jost', sans-serif; font-size: 0.75rem; color: rgba(250,248,244,0.3); letter-spacing: 0.05em; }
.footer-bottom .vat { font-size: 0.6875rem; color: rgba(250,248,244,0.4); font-style: italic; }
.footer-bottom .heart { color: var(--primary); }

/* ── Blog ───────────────────────────────────────────────── */
.featured-post { display: grid; overflow: hidden; background: var(--card); transition: box-shadow 0.3s; margin-bottom: 3rem; }
@media (min-width: 768px) { .featured-post { grid-template-columns: 1fr 1fr; } }
.featured-post:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.featured-post-img { position: relative; overflow: hidden; height: 18rem; }
@media (min-width: 768px) { .featured-post-img { height: auto; } }
.featured-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.featured-post:hover .featured-post-img img { transform: scale(1.05); }
.featured-post-body { padding: 2.5rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 767px) { .featured-post-body { padding: 2rem; } }
.article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.article-cat { font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--primary); }
.article-dot { color: rgba(133,126,117,0.4); }
.article-read-time { font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.05em; color: var(--muted-fg); }
.article-title-featured { font-family: 'Jost', sans-serif; font-size: 1.75rem; font-weight: 300; line-height: 1.3; margin-bottom: 1rem; }
@media (min-width: 768px) { .article-title-featured { font-size: 2rem; } }
.article-divider { width: 2rem; height: 1px; background: var(--primary); margin-bottom: 1.25rem; }
.article-excerpt { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; margin-bottom: 1.5rem; }
.article-footer { display: flex; align-items: center; gap: 1.25rem; }
.article-date { font-family: 'Jost', sans-serif; font-size: 0.75rem; color: var(--muted-fg); }
.blog-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
.blog-card { background: var(--card); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s; }
.blog-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.blog-card-img { position: relative; overflow: hidden; height: 13rem; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img .grad { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,0.3),transparent); }
.blog-card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-title { font-family: 'Jost', sans-serif; font-size: 1.125rem; font-weight: 300; line-height: 1.4; margin-bottom: 0.75rem; }
.blog-card-excerpt { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.read-more { font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); transition: color 0.2s; }
.read-more:hover { color: var(--foreground); }

/* ── Blog CTA dark band ────────────────────────────────── */
.cta-band { background: var(--foreground); color: var(--background); padding: 5rem 0; }
.cta-band-inner { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.cta-band .label { color: var(--primary); }
.cta-band h2 { font-family: 'Jost', sans-serif; font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 300; margin-bottom: 1.25rem; }
.cta-band p { font-family: 'Jost', sans-serif; font-size: 0.9375rem; color: rgba(250,248,244,0.55); line-height: 1.7; margin-bottom: 2.5rem; max-width: 28rem; margin-left: auto; margin-right: auto; }

/* ── Article page hero ─────────────────────────────────── */
.article-hero { position: relative; height: 70vh; min-height: 480px; display: flex; align-items: flex-end; overflow: hidden; }
.article-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.82) 100%); }
.article-hero-content { position: relative; z-index: 10; width: 100%; max-width: 800px; margin: 0 auto; padding: 0 1.5rem 4rem; }
.article-back { display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; transition: color 0.2s; }
.article-back:hover { color: var(--primary); }
.article-category { display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; }
.article-h1 { font-family: 'Jost', sans-serif; font-size: clamp(1.875rem, 5vw, 3rem); font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 1.25rem; text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.article-hero-meta { display: flex; align-items: center; gap: 0.5rem; font-family: 'Jost', sans-serif; font-size: 0.8125rem; color: rgba(255,255,255,0.55); }
.meta-dot { color: var(--primary); }

/* ── Article body ──────────────────────────────────────── */
.article-body { padding: 5rem 0; }
.article-container { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.article-lead { font-family: 'Jost', sans-serif; font-size: 1.125rem; font-weight: 300; color: color-mix(in oklch, var(--foreground) 80%, transparent); line-height: 1.8; margin-bottom: 2.5rem; font-style: italic; }
@media (min-width: 768px) { .article-lead { font-size: 1.25rem; } }
.article-body p { font-family: 'Jost', sans-serif; font-size: 0.9375rem; color: color-mix(in oklch, var(--foreground) 75%, transparent); line-height: 1.85; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .article-body p { font-size: 1rem; } }
.article-body h2 { font-family: 'Jost', sans-serif; font-size: 1.25rem; font-weight: 300; color: var(--foreground); margin: 2.5rem 0 1rem; }
@media (min-width: 768px) { .article-body h2 { font-size: 1.5rem; } }

/* ── Article CTA block ─────────────────────────────────── */
.article-cta { background: var(--card); padding: 2.5rem 2rem; margin: 3.5rem 0; text-align: center; }
.article-cta .label { color: var(--primary); font-size: 0.625rem; letter-spacing: 0.3em; }
.article-cta h3 { font-family: 'Jost', sans-serif; font-size: 1.5rem; font-weight: 300; margin-bottom: 1.25rem; color: var(--foreground); }
@media (min-width: 768px) { .article-cta h3 { font-size: 1.875rem; } }
.article-cta p { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 2rem; line-height: 1.7; max-width: 24rem; margin-left: auto; margin-right: auto; }

/* ── Related articles ──────────────────────────────────── */
.article-related { margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.article-related h3 { font-family: 'Jost', sans-serif; font-size: 1.25rem; font-weight: 300; margin-bottom: 2rem; }
.related-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .related-grid { grid-template-columns: repeat(2,1fr); } }
.related-card { display: block; background: var(--card); overflow: hidden; transition: transform 0.3s; }
.related-card:hover { transform: translateY(-4px); }
.related-card img { width: 100%; height: 180px; object-fit: cover; }
.related-card-body { padding: 1.25rem; }
.related-title { font-family: 'Jost', sans-serif; font-size: 0.9375rem; font-weight: 300; color: var(--foreground); line-height: 1.5; margin: 0.5rem 0; }
.related-meta { font-family: 'Jost', sans-serif; font-size: 0.75rem; color: var(--muted-fg); }

/* ── Contact methods grid ──────────────────────────────── */
.contact-methods { display: grid; gap: 1px; background: var(--border); }
@media (min-width: 768px) { .contact-methods { grid-template-columns: repeat(3,1fr); } }
.contact-card { background: var(--card); padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; transition: background 0.3s; height: 100%; }
.contact-card:hover { background: var(--background); }
.contact-icon { color: var(--primary); font-size: 1.5rem; }
.contact-label { font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-fg); margin-bottom: 0.25rem; }
.contact-value { font-family: 'Jost', sans-serif; font-size: 1.125rem; font-weight: 300; }
.contact-sub { font-family: 'Jost', sans-serif; font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.25rem; }
.contact-card .btn-outline { margin-top: auto; align-self: flex-start; }

/* ── Contact grid (form + faq) ─────────────────────────── */
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-fg); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
  width: 100%; background: var(--card); border: 1px solid var(--border);
  padding: 0.75rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.875rem;
  color: var(--foreground); outline: none; transition: border-color 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: color-mix(in oklch, var(--muted-fg) 50%, transparent); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: none; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 1px; }
.faq-item { background: var(--card); }
.faq-btn {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: 'Jost', sans-serif; font-size: 0.875rem; font-weight: 300; color: var(--foreground);
  cursor: pointer; transition: background 0.2s;
}
.faq-btn:hover { background: var(--background); }
.faq-icon { color: var(--primary); font-size: 1.25rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-body { padding: 0 1.5rem 1.25rem; font-family: 'Jost', sans-serif; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; display: none; }
.faq-item.open .faq-body { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── Boats detail page ─────────────────────────────────── */
.boat-detail-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .boat-detail-grid { grid-template-columns: repeat(3,1fr); } }
.boat-detail-card { background: var(--card); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s; }
.boat-detail-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.boat-slider { position: relative; overflow: hidden; height: 20rem; background: var(--card); }
.boat-slider img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s; }
.boat-slider .grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.3), transparent); pointer-events: none; }
.slider-badge { position: absolute; top: 1rem; left: 1rem; background: var(--primary); color: var(--primary-fg); font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.375rem 0.75rem; z-index: 2; }
.slider-arrows { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 0.75rem; opacity: 0; transition: opacity 0.2s; z-index: 2; }
.boat-slider:hover .slider-arrows { opacity: 1; }
.slider-arrow { width: 2.25rem; height: 2.25rem; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.4); color: #fff; transition: background 0.2s; cursor: pointer; font-size: 1.125rem; }
.slider-arrow:hover { background: rgba(0,0,0,0.7); }
.slider-dots { position: absolute; bottom: 0.75rem; left: 0; right: 0; display: flex; justify-content: center; gap: 0.375rem; z-index: 2; }
.slider-dot { height: 0.375rem; border-radius: 999px; background: rgba(255,255,255,0.55); width: 0.375rem; cursor: pointer; transition: all 0.3s; }
.slider-dot.active { background: var(--primary); width: 1.25rem; }
.slider-counter { position: absolute; bottom: 0.75rem; right: 1rem; font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); z-index: 2; }
.boat-detail-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.boat-detail-body .boat-name { font-size: 1.875rem; }
.boat-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 0; margin-bottom: 1.25rem; }
.spec-label { font-family: 'Jost', sans-serif; font-size: 0.5625rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-fg); margin-bottom: 0.125rem; }
.spec-val { font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 500; }
.boat-ideal { font-family: 'Jost', sans-serif; font-size: 0.75rem; color: var(--muted-fg); line-height: 1.7; margin-bottom: 1.75rem; flex: 1; }

/* ── Always included ───────────────────────────────────── */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
@media (min-width: 640px) { .included-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .included-grid { grid-template-columns: repeat(6,1fr); } }
.included-item { background: var(--card); padding: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; transition: background 0.3s; }
.included-item:hover { background: var(--background); }
.included-icon { color: var(--primary); font-size: 1.25rem; }
.included-label { font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.05em; }

/* ── How it works ──────────────────────────────────────── */
.steps-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3,1fr); } }
.step { text-align: center; }
.step-num { font-family: 'Jost', sans-serif; font-size: 3.75rem; font-weight: 300; color: rgba(212,184,138,0.2); margin-bottom: 1rem; }
.step-title { font-family: 'Jost', sans-serif; font-size: 1.25rem; font-weight: 300; margin-bottom: 0.75rem; }
.step-desc { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }

/* ── Experiences page — alternating cards ──────────────── */
.exp-alt-grid { display: flex; flex-direction: column; gap: 5rem; }
.exp-alt-item { display: grid; overflow: hidden; }
@media (min-width: 768px) { .exp-alt-item { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .exp-alt-item.reverse { direction: rtl; } .exp-alt-item.reverse > * { direction: ltr; } }
.exp-alt-img { position: relative; overflow: hidden; height: 20rem; }
@media (min-width: 768px) { .exp-alt-img { height: auto; min-height: 500px; } }
.exp-alt-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.exp-alt-item:hover .exp-alt-img img { transform: scale(1.05); }
.exp-alt-img .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.3), transparent); }
.exp-alt-img .badge { position: absolute; top: 1.25rem; left: 1.25rem; background: var(--primary); color: var(--primary-fg); font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 0.375rem 0.75rem; }
.exp-alt-img .duration-pill { position: absolute; bottom: 1.25rem; right: 1.25rem; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); color: #fff; font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.375rem 0.75rem; }
.exp-alt-body { background: var(--card); padding: 2.5rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 767px) { .exp-alt-body { padding: 2rem; } }
.exp-alt-eyebrow { font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; }
.exp-alt-title { font-family: 'Jost', sans-serif; font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 300; line-height: 1.2; margin-bottom: 0.5rem; }
.exp-alt-subtitle { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: rgba(212,184,138,0.8); letter-spacing: 0.05em; margin-bottom: 1.25rem; }
.exp-short-divider { width: 2rem; height: 1px; background: var(--primary); margin-bottom: 1.5rem; }
.exp-alt-desc { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.exp-alt-desc .lead { font-family: 'Jost', sans-serif; font-size: 0.875rem; font-weight: 500; color: rgba(26,21,16,0.9); font-style: italic; line-height: 1.7; }
.exp-alt-desc .body { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }
.exp-includes { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2.25rem; }
.exp-includes li { display: flex; align-items: center; gap: 0.75rem; font-family: 'Jost', sans-serif; font-size: 0.8125rem; color: rgba(26,21,16,0.8); }
.exp-includes .line { width: 1rem; height: 1px; background: var(--primary); flex-shrink: 0; }
.exp-price-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.exp-price { font-family: 'Jost', sans-serif; font-size: 1.5rem; font-weight: 300; }

/* ── Custom experience block ──────────────────────────── */
.custom-exp { background: var(--foreground); overflow: hidden; }
.custom-exp-grid { display: grid; }
@media (min-width: 768px) { .custom-exp-grid { grid-template-columns: 1fr 1fr; } }
.custom-exp-text { padding: 3rem 4rem; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 767px) { .custom-exp-text { padding: 2rem; } }
.custom-exp-text .eyebrow { font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem; display: block; }
.custom-exp-text h3 { font-family: 'Jost', sans-serif; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 300; color: var(--background); margin-bottom: 0.75rem; }
.custom-exp-text .sub-label { font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,248,244,0.4); margin-bottom: 1.5rem; }
.custom-exp-divider { width: 2rem; height: 1px; background: var(--primary); margin-bottom: 1.75rem; }
.custom-exp-desc { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.25rem; }
.custom-exp-desc .lead { font-family: 'Jost', sans-serif; font-size: 0.875rem; font-weight: 500; color: rgba(250,248,244,0.9); font-style: italic; line-height: 1.7; }
.custom-exp-desc .body { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: rgba(250,248,244,0.6); line-height: 1.7; }
.custom-includes { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2.5rem; }
.custom-includes li { display: flex; align-items: center; gap: 0.75rem; font-family: 'Jost', sans-serif; font-size: 0.8125rem; color: rgba(250,248,244,0.75); }
.custom-includes .line { width: 1rem; height: 1px; background: var(--primary); flex-shrink: 0; }
.custom-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.custom-exp-visual { display: none; position: relative; align-items: center; justify-content: center; background: #1a1510; overflow: hidden; min-height: 560px; }
@media (min-width: 768px) { .custom-exp-visual { display: flex; } }
.custom-exp-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transform: scaleX(-1); }
.custom-exp-visual .visual-text { position: relative; z-index: 10; text-align: center; padding: 3rem; }
.custom-exp-visual .star { font-size: 3.75rem; color: var(--primary); opacity: 0.3; margin-bottom: 1rem; }
.custom-exp-visual blockquote { font-family: 'Jost', sans-serif; font-size: 1.125rem; font-weight: 300; color: rgba(250,248,244,0.7); line-height: 1.7; letter-spacing: 0.05em; }
.custom-exp-visual .v-divider { width: 2rem; height: 1px; background: var(--primary); margin: 1.5rem auto; opacity: 0.6; }
.custom-exp-visual .tag { font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(212,184,138,0.6); }

/* ── What's included dark section ────────────────────── */
.included-dark { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(250,248,244,0.1); }
@media (min-width: 640px) { .included-dark { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .included-dark { grid-template-columns: repeat(4,1fr); } }
.included-dark-item { background: var(--foreground); padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; transition: background 0.3s; }
.included-dark-item:hover { background: #2a1f14; }
.included-dark-item .icon { color: var(--primary); font-size: 1.5rem; }
.included-dark-item h3 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 300; color: var(--background); }
.included-dark-item p { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: rgba(250,248,244,0.55); line-height: 1.6; }

/* ── Before you sail ──────────────────────────────────── */
.sail-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .sail-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .sail-grid { grid-template-columns: repeat(3,1fr); gap: 3.5rem; } }
.sail-group { border-top: 1px solid rgba(212,184,138,0.3); padding-top: 1.75rem; }
.sail-heading { font-family: 'Jost', sans-serif; font-size: 0.625rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--primary); margin-bottom: 1.25rem; }
.sail-intro { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: rgba(26,21,16,0.55); font-style: italic; margin-bottom: 1rem; }
.sail-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.sail-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-family: 'Jost', sans-serif; font-size: 0.875rem; color: rgba(26,21,16,0.7); line-height: 1.6; }
.sail-list .line { width: 1rem; height: 1px; background: var(--primary); flex-shrink: 0; margin-top: 10px; }

/* ── Fuel policy ──────────────────────────────────────── */
.fuel-grid { display: grid; gap: 1px; background: var(--border); max-width: 48rem; margin: 0 auto; overflow: hidden; }
@media (min-width: 640px) { .fuel-grid { grid-template-columns: repeat(3,1fr); } }
.fuel-item { background: var(--card); padding: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.fuel-icon { color: var(--primary); font-size: 1.25rem; }
.fuel-title { font-family: 'Jost', sans-serif; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.05em; }
.fuel-desc { font-family: 'Jost', sans-serif; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }

/* ── Responsive extras ─────────────────────────────────── */
@media (min-width: 768px) {
  .section { padding: 9rem 0; }
  .cta-section { padding: 12rem 0; }
}
@media (max-width: 639px) {
  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 3rem; }
  .section-header h2 { font-size: 2.25rem; }
  .cta-section { padding: 6rem 0; }
  .cta-content h2 { font-size: 2.5rem; }
}
