/* ══════════════════════════════════════════════════
   MALARKY CHARTERS · COASTAL EDITORIAL
   main.css — shared across all pages
   ══════════════════════════════════════════════════ */

/* Fonts are now loaded via <link> in each page's <head> for non-render-blocking delivery — no more @import here. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-deep:  #1d5663;
  --teal:       #2d6e7d;
  --teal-mid:   #4a8a96;
  --teal-soft:  #b8d4d9;
  --cream:      #f7f1e3;
  --cream-2:    #efe7d2;
  --paper:      #fcfaf3;
  --ink:        #0e2a36;
  --ink-2:      #2a4651;
  --ink-3:      #6f8590;
  --line:       #d8cdb4;
  --brass:      #c9a663;
  --brass-dark: #a8853f;
  --white:      #ffffff;
  --ff-display: 'Montserrat', system-ui, sans-serif;
  --ff:         'Cabin', system-ui, sans-serif;
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 9000;
  background: rgba(247,241,227,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
}
.nav-logo {
  display: flex; align-items: center;
  line-height: 0;
}
.nav-logo img {
  height: 42px; width: auto;
  display: block;
}
.nav-logo-mark {
  display: inline-block;
  width: 22px; height: 22px;
  background: var(--teal-deep);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M12 2 L20 18 L12 14 L4 18 Z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M12 2 L20 18 L12 14 L4 18 Z'/></svg>") center / contain no-repeat;
}
.nav-links { display: flex; gap: 22px; align-items: center; flex-wrap: nowrap; }
.nav-links a {
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--teal-deep); }
.btn-book {
  font-family: var(--ff-display);
  background: var(--teal-deep); color: #fff;
  padding: 11px 18px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.25s, transform 0.25s;
  display: inline-block;
  white-space: nowrap;
}
.btn-book:link, .btn-book:visited, .btn-book:hover, .btn-book:active { color: #fff; }

/* Charter Types dropdown (mega-menu) */
.nav-dropdown { position: relative; padding-bottom: 12px; margin-bottom: -12px; }
.nav-dropdown-trigger {
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2);
  background: none; border: none; cursor: pointer;
  padding: 0; transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.nav-dropdown-caret { font-size: 9px; transition: transform 0.25s; line-height: 1; }
.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown[data-open="true"] .nav-dropdown-trigger { color: var(--teal-deep); }
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown[data-open="true"] .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 2px solid var(--teal-deep);
  padding: 22px 28px;
  display: none; grid-template-columns: 1fr 1fr;
  gap: 12px 36px;
  min-width: 360px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  z-index: 1000;
}
/* Invisible bridge that fills the 18px gap between the trigger and the menu
   so the hover region stays continuous (otherwise the menu closes when the
   cursor crosses the gap on its way down to the menu items). */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px; left: -40px; right: -40px;
  height: 20px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown[data-open="true"] .nav-dropdown-menu { display: grid; }
.nav-dropdown-col { display: flex; flex-direction: column; gap: 12px; }
.nav-dropdown-col a {
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-dropdown-col a:hover { color: var(--teal-deep); }
.btn-book:hover { background: var(--ink); transform: translateY(-1px); }
.nav-mobile { display: none; }
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  width: 22px; height: 2px; background: var(--ink); display: block;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu .btn-book {
  align-self: center;
  text-align: center;
  padding: 14px 36px;
  margin-top: 14px !important;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 14px;
  border-top: 1px solid var(--line);
  background: rgba(247,241,227,0.98);
}
.mobile-menu.open { display: flex; }
.mobile-menu > a {
  font-family: var(--ff-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-2);
  padding: 4px 0;
}

/* Mobile Charter Types accordion */
.mobile-accordion { display: flex; flex-direction: column; }
.mobile-accordion-trigger {
  font-family: var(--ff-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-2);
  background: none; border: none;
  padding: 4px 0; cursor: pointer; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
}
.mobile-accordion-caret { transition: transform 0.25s; font-size: 11px; }
.mobile-accordion[data-open="true"] .mobile-accordion-caret { transform: rotate(180deg); }
.mobile-accordion-panel {
  display: none;
  flex-direction: column;
  padding: 10px 0 6px 14px;
  gap: 10px;
  border-left: 1px solid var(--line);
  margin-top: 6px;
  margin-left: 2px;
}
.mobile-accordion[data-open="true"] .mobile-accordion-panel { display: flex; }
.mobile-accordion-panel a {
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
  padding: 2px 0;
}
.mobile-menu-divider {
  border-top: 1px solid var(--line);
  margin: 6px 0 2px 0;
}
.mobile-menu .mobile-menu-meta {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  padding: 2px 0;
  opacity: 0.7;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 720px;
  background: var(--ink);
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  /* Brand navy overlay (#00304D) — directional gradient. Heavier on the left where
     the H1 / subhead / CTAs live (gives them a clean dark canvas, even over a bright
     sail in the photo). Lighter on the right where the boat does the visual work. */
  background: linear-gradient(90deg,
    rgba(0, 48, 77, 0.78) 0%,
    rgba(0, 48, 77, 0.68) 35%,
    rgba(0, 48, 77, 0.45) 75%,
    rgba(0, 48, 77, 0.30) 100%);
}
/* Mobile: H1 wraps across the full viewport width, so the directional gradient
   leaves part of the headline over the lighter side. Switch to a uniform overlay
   strong enough to keep contrast ≥4.5:1 (WCAG AA) regardless of horizontal position. */
@media (max-width: 768px) {
  .hero-bg::after {
    background: rgba(0, 48, 77, 0.72);
  }
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  width: 100%; padding: var(--s-6) 32px var(--s-9) 32px;
}
.hero-eyebrow {
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--s-5);
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--brass); }
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 6.5vw, 80px);
  font-weight: 300; line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin-bottom: var(--s-5);
  /* WCAG safety net — invisible over the navy overlay, kicks in only where
     the photo punches through (bright sail). Keeps contrast ≥4.5:1 site-wide. */
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.hero-title strong { font-weight: 700; }
.hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 400; line-height: 1.55;
  color: var(--cream);
  max-width: 48ch;
  margin-bottom: var(--s-7);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}
.hero-ctas { display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap; }
.btn-primary {
  font-family: var(--ff-display);
  background: var(--cream); color: var(--ink);
  padding: 16px 32px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.25s;
  display: inline-block;
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); }
.btn-ghost {
  font-family: var(--ff-display);
  color: var(--cream);
  padding: 16px 6px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-bottom: 1px solid rgba(247,241,227,0.4);
  transition: border-color 0.25s;
}
.btn-ghost:hover { border-bottom-color: var(--brass); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 12px 32px;
  position: relative; z-index: 1;
}
.breadcrumb-inner {
  max-width: 1280px; margin: 0 auto;
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--teal); transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--teal-deep); }
.breadcrumb-sep { opacity: 0.4; }

/* ── SECTION SCAFFOLDING ── */
.sec { padding: var(--s-9) 32px; }
.sec-narrow { max-width: 1080px; margin: 0 auto; }
.sec-wide { max-width: 1280px; margin: 0 auto; }

.kicker {
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--s-4);
  display: flex; align-items: center; gap: 12px;
}
.kicker::before { content: ''; width: 28px; height: 1px; background: var(--brass); }
.sec-title {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300; line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: var(--s-5);
}
.sec-title strong { font-weight: 700; }
.sec-lede {
  font-size: clamp(17px, 1.3vw, 18px);
  font-weight: 400; line-height: 1.6;
  color: var(--ink-2);
  max-width: 54ch;
  margin-bottom: var(--s-7);
}

/* ── FACTS BAND ── */
.facts-band {
  background: var(--cream);
  padding: var(--s-7) 32px;
  border-bottom: 1px solid var(--line);
}
.facts-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-7);
}
.fact { text-align: center; padding: 0 var(--s-3); }
.fact-num {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300; line-height: 1; color: var(--teal-deep);
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
}
.fact-num strong { font-weight: 700; }
.fact-label {
  font-family: var(--ff-display);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ── ABOUT / SPLIT LAYOUT ── */
.about { background: var(--paper); }
.about-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.about-text { padding-right: var(--s-5); }
.about-text p { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin-bottom: var(--s-4); }
.pull-quote {
  margin-top: var(--s-7);
  padding: var(--s-5) 0 var(--s-5) var(--s-5);
  border-left: 2px solid var(--brass);
}
.pull-quote-text {
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 300; line-height: 1.4;
  color: var(--ink); font-style: italic;
  letter-spacing: -0.005em;
  margin-bottom: var(--s-4);
}
.pull-quote-attr {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3);
}
.pull-quote-attr strong { color: var(--ink-2); }
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-photo-caption {
  position: absolute; bottom: -32px; left: -32px;
  background: var(--cream); color: var(--ink-2);
  padding: 14px 22px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-left: 2px solid var(--brass);
}

/* ── YACHT SPECS ── */
.yacht-section { background: var(--cream); }
.yacht-intro { max-width: 1080px; margin: 0 auto var(--s-9); text-align: center; }
.yacht-intro .kicker { justify-content: center; }
.yacht-intro .sec-title { max-width: 24ch; margin-left: auto; margin-right: auto; }
.yacht-intro .sec-lede { margin-left: auto; margin-right: auto; text-align: center; }
.yacht-spec-row {
  max-width: 1280px; margin: 0 auto var(--s-9);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.yacht-spec { background: var(--cream); padding: var(--s-6) var(--s-5); text-align: center; }
.yacht-spec-label {
  font-family: var(--ff-display);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: var(--s-3);
}
.yacht-spec-val {
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.01em;
}

/* ── PHOTO GALLERY ── */
.photo-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px;
  gap: var(--s-3);
}
.photo-grid-item { overflow: hidden; }
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.photo-grid-item:hover img { transform: scale(1.04); }

/* ── SPACES ── */
.spaces { background: var(--paper); }
.spaces-header { max-width: 1080px; margin: 0 auto var(--s-9); }
.spaces-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7);
}
.space-card { display: flex; flex-direction: column; }
.space-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; margin-bottom: var(--s-5); }
.space-num {
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; color: var(--brass);
  margin-bottom: var(--s-3);
}
.space-title {
  font-family: var(--ff-display);
  font-size: 24px; font-weight: 600;
  color: var(--ink); margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}
.space-text { font-size: 17px; line-height: 1.7; color: var(--ink-2); max-width: 38ch; }

/* ── ADD-ONS ── */
.addons { background: var(--cream); }
.addons-header { max-width: 1080px; margin: 0 auto var(--s-9); text-align: center; }
.addons-header .kicker { justify-content: center; }
.addons-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.addon-card {
  background: var(--paper);
  display: flex; flex-direction: column;
  transition: transform 0.3s;
}
.addon-card:hover { transform: translateY(-4px); }
.addon-body {
  padding: var(--s-5) var(--s-5) var(--s-6);
  border-bottom: 2px solid var(--brass);
}
.addon-name {
  font-family: var(--ff-display);
  font-size: 18px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--ink);
  margin-bottom: var(--s-2);
}
.addon-desc { font-size: 17px; line-height: 1.6; color: var(--ink-2); }

/* ── REVIEWS ── */
.reviews {
  background: var(--ink);
  color: var(--cream);
  position: relative; overflow: hidden;
}
.reviews::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,138,150,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.reviews-header {
  max-width: 1080px; margin: 0 auto var(--s-9);
  text-align: center; position: relative; z-index: 1;
}
.reviews-header .kicker { justify-content: center; color: var(--brass); }
.reviews-header .kicker::before { background: var(--brass); }
.reviews-header .sec-title { color: var(--cream); }
.reviews-header .sec-title strong { color: var(--brass); }
.reviews-grid {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-7) var(--s-9);
}
.review { display: flex; flex-direction: column; }
.review-stars { color: var(--brass); font-size: 14px; letter-spacing: 4px; margin-bottom: var(--s-4); }
.review-text {
  font-size: 17px; font-weight: 300; line-height: 1.65;
  font-style: italic; color: rgba(247,241,227,0.9);
  margin-bottom: var(--s-5); max-width: 50ch;
}
.review-text::before { content: '\201C'; color: var(--brass); margin-right: 2px; }
.review-text::after { content: '\201D'; color: var(--brass); margin-left: 2px; }
.review-meta {
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--brass);
  display: flex; align-items: center; gap: 10px;
}
.review-meta::before { content: ''; width: 24px; height: 1px; background: var(--brass); }

/* ── FAQ ── */
.faq { background: var(--paper); }
.faq-header { max-width: 1080px; margin: 0 auto var(--s-9); text-align: center; }
.faq-header .kicker { justify-content: center; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  font-family: var(--ff-display);
  width: 100%; text-align: left;
  padding: var(--s-6) 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 17px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.005em;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--teal-deep); }
.faq-q-icon {
  flex-shrink: 0; width: 18px; height: 18px;
  position: relative; margin-left: var(--s-4);
}
.faq-q-icon::before, .faq-q-icon::after {
  content: ''; position: absolute; background: var(--teal-deep); transition: transform 0.3s;
}
.faq-q-icon::before { top: 8px; left: 0; width: 18px; height: 1px; }
.faq-q-icon::after { top: 0; left: 8px; width: 1px; height: 18px; }
.faq-item.open .faq-q-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 0 var(--s-6) 0;
  font-size: 17px; line-height: 1.7;
  color: var(--ink-2); max-width: 60ch;
}
.faq-a-inner strong { color: var(--ink); }
.faq-a-inner a { color: var(--teal-deep); border-bottom: 1px solid currentColor; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--teal-deep);
  color: var(--cream);
  padding: var(--s-9) 32px;
  text-align: center;
}
.cta-band .kicker { color: var(--brass); justify-content: center; }
.cta-band .kicker::before { background: var(--brass); }
.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300; line-height: 1.05;
  color: var(--cream); letter-spacing: -0.01em;
  margin-bottom: var(--s-5);
  max-width: 22ch; margin-left: auto; margin-right: auto;
}
.cta-title strong { font-weight: 700; }
.cta-sub {
  font-size: 17px; line-height: 1.6;
  color: rgba(247,241,227,0.78);
  max-width: 52ch; margin: 0 auto var(--s-7) auto;
}
.cta-band .btn-primary { background: var(--brass); color: var(--ink); }
.cta-band .btn-primary:hover { background: #d8b878; }

/* ── CONTENT PAGES (service pages) ── */
.content-hero {
  background: var(--teal-deep);
  padding: var(--s-9) 32px var(--s-8);
  color: var(--cream);
}
.content-hero-inner { max-width: 1080px; margin: 0 auto; }
.content-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300; line-height: 1.05;
  color: var(--cream); letter-spacing: -0.01em;
  margin-bottom: var(--s-5);
  max-width: 20ch;
}
.content-hero h1 strong { font-weight: 700; }
.content-hero-sub {
  font-size: clamp(17px, 1.3vw, 18px);
  color: rgba(247,241,227,0.82);
  max-width: 52ch; line-height: 1.6;
  margin-bottom: var(--s-7);
}
.content-hero-ctas { display: flex; gap: var(--s-5); flex-wrap: wrap; }

/* Inline hero variant with image */
.hero-split {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.hero-split-text {
  padding: var(--s-9) 40px var(--s-9) 40px;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--cream);
}
.hero-split-text h1 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 300; line-height: 1.05;
  margin-bottom: var(--s-5);
  max-width: 18ch;
}
.hero-split-text h1 strong { font-weight: 700; }
.hero-split-text p {
  font-size: 17px; line-height: 1.6;
  color: rgba(247,241,227,0.82);
  max-width: 46ch; margin-bottom: var(--s-7);
}
.hero-split-img { overflow: hidden; }
.hero-split-img img { width: 100%; height: 100%; object-fit: cover; }

/* Content body */
.content-body { background: var(--paper); }
.content-body-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 340px; gap: var(--s-9);
  align-items: start;
}
.prose h2 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600; line-height: 1.1;
  color: var(--ink); margin: var(--s-7) 0 var(--s-4) 0;
  letter-spacing: -0.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin-bottom: var(--s-4); }
.prose ul { padding-left: var(--s-5); margin-bottom: var(--s-4); }
.prose li { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin-bottom: var(--s-2); }
.prose strong { color: var(--ink); }
.prose a { color: var(--teal-deep); border-bottom: 1px solid currentColor; }

/* Contact page two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

/* Sidebar card */
.sidebar-card {
  background: var(--teal-deep);
  color: var(--cream);
  padding: var(--s-6);
  position: sticky; top: 80px;
}
.sidebar-card-title {
  font-family: var(--ff-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass); margin-bottom: var(--s-5);
}
.sidebar-card p { font-size: 17px; line-height: 1.65; color: rgba(247,241,227,0.85); margin-bottom: var(--s-4); }
.sidebar-card .btn-primary { width: 100%; text-align: center; margin-bottom: var(--s-4); }
.sidebar-card-contact { display: flex; flex-direction: column; gap: var(--s-3); }
.sidebar-card-contact a {
  font-family: var(--ff-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--cream);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.sidebar-card-contact a:hover { color: var(--brass); }

/* ── PRICING TABLE ── */
.pricing-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.pricing-card {
  background: var(--paper);
  padding: var(--s-6);
  border-top: 3px solid var(--line);
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover { border-top-color: var(--brass); transform: translateY(-3px); }
.pricing-card.featured { border-top-color: var(--teal-deep); background: var(--cream); }
.pricing-card-name {
  font-family: var(--ff-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: var(--s-4);
}
.pricing-card.featured .pricing-card-name { color: var(--teal-deep); }
.pricing-price {
  font-family: var(--ff-display);
  font-size: 38px; font-weight: 300;
  color: var(--ink); letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}
.pricing-price strong { font-weight: 700; }
.pricing-period { font-size: 13px; color: var(--ink-3); margin-bottom: var(--s-5); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 17px; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ── RELATED PAGES LINKS ── */
.related-pages { background: var(--cream); }
.related-pages-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.related-card {
  background: var(--paper);
  overflow: hidden;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.related-card:hover { border-bottom-color: var(--brass); transform: translateY(-3px); }
.related-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.related-card-body { padding: var(--s-5); }
.related-card-title {
  font-family: var(--ff-display);
  font-size: 16px; font-weight: 700;
  color: var(--ink); margin-bottom: var(--s-2);
}
.related-card-link {
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal-deep);
  border-bottom: 1px solid var(--teal-deep);
  padding-bottom: 2px;
  display: inline-block;
  margin-top: var(--s-3);
}

/* ── HOMEPAGE — HERO LEDE ── */
.hero-lede { background: var(--paper); padding: var(--s-9) 32px; }
.hero-lede-inner { max-width: 880px; margin: 0 auto; }
.hero-lede-inner p {
  font-size: clamp(17px, 1.35vw, 18px);
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: var(--s-5);
}
.hero-lede-inner p:last-child { margin-bottom: 0; }
.hero-lede-inner strong { color: var(--ink); }

/* ── HERO TRUST STRIP (subpage variant) ── */
.trust-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
  margin-top: var(--s-5);
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(247,241,227,0.85);
}
.trust-strip .trust-sep { color: var(--brass); opacity: 0.6; }
.trust-strip .trust-check { color: var(--brass); font-weight: 700; margin-right: 4px; }

/* ── HOMEPAGE — INCLUDED LIST ── */
.included-wrap { max-width: 1080px; margin: 0 auto; }
.included-wrap > p {
  max-width: 70ch; margin: 0 auto var(--s-7);
  font-size: clamp(17px, 1.3vw, 18px);
  line-height: 1.7; color: var(--ink-2);
  text-align: center;
}
.included-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s-4) var(--s-7);
}
.included-list li {
  font-size: 17px; line-height: 1.6;
  color: var(--ink-2);
  display: flex; gap: 12px;
  align-items: flex-start;
}
.included-list li::before {
  content: '\2713'; color: var(--teal-deep); font-weight: 700;
  flex-shrink: 0;
}
.included-list strong { color: var(--ink); }
.included-callout {
  margin-top: var(--s-7);
  max-width: 70ch; margin-left: auto; margin-right: auto;
  padding: var(--s-5) var(--s-6);
  border-left: 3px solid var(--brass);
  background: var(--cream);
  font-size: clamp(17px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--ink-2);
}
.included-callout strong { color: var(--ink); }

/* ── HOMEPAGE — EXPERIENCE / CATERING / PRICING / DEPARTURE PROSE ── */
.prose-wide {
  max-width: 880px; margin: 0 auto;
  font-size: clamp(17px, 1.3vw, 18px);
  line-height: 1.7; color: var(--ink-2);
}
.prose-wide p { margin-bottom: var(--s-5); }
.prose-wide p:last-child { margin-bottom: 0; }
.prose-wide > *:last-child { margin-bottom: 0; }
.prose-wide > *:first-child { margin-top: 0; }
.prose-wide a { color: var(--teal-deep); border-bottom: 1px solid var(--teal-deep); }
.prose-wide strong { color: var(--ink); }

/* ── PROSE IMAGE PAIR ── always 2 images side-by-side with brass border */
.image-pair {
  max-width: 880px;
  margin: var(--s-5) auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.image-pair:last-child { margin-bottom: 0; }
.image-pair:first-child { margin-top: 0; }
.image-pair img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  box-shadow: 0 2px 6px rgba(14, 42, 54, 0.12);
}
@media (max-width: 640px) {
  .image-pair { grid-template-columns: 1fr; gap: var(--s-3); }
}

/* ── CLASSY BRASS BULLET LIST ── echoes the kicker's brass dash */
.list-brass {
  list-style: none;
  padding: 0;
  margin: var(--s-4) auto var(--s-5);
  max-width: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
}
.list-brass li {
  justify-self: stretch;
  position: relative;
  padding-left: 32px;
  font-size: clamp(15px, 1.15vw, 16px);
  line-height: 1.5;
  color: var(--ink-2);
  text-align: left;
}
.list-brass li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 1px;
  background: var(--brass);
}
.list-brass li strong { color: var(--ink); }
@media (max-width: 640px) {
  .list-brass { grid-template-columns: 1fr; gap: 12px; max-width: 360px; }
}

/* ── HOMEPAGE — OCCASIONS GRID ── */
.occasions-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7) var(--s-6);
}
/* 4-card grids balance to 2x2 instead of orphan 3+1 */
.occasions-grid:has(> .occasion-card:nth-child(4):last-child) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 960px;
}
.occasion-card { display: flex; flex-direction: column; gap: 10px; }
.occasion-card h3 {
  font-family: var(--ff-display);
  font-size: 19px; font-weight: 700; line-height: 1.3;
  color: var(--ink); margin: 0;
}
.occasion-card p {
  font-size: 17px; line-height: 1.65;
  color: var(--ink-2); margin: 0;
}
.occasion-card p a {
  color: var(--teal-deep);
  border-bottom: 1px solid var(--teal-deep);
  padding-bottom: 1px;
}

/* ── SECTION HEADER — centered by default ── */
.section-header { text-align: center; }
.section-header .kicker { justify-content: center; }
.section-header .sec-title { text-align: center; max-width: 32ch; margin-left: auto; margin-right: auto; }
.section-header .sec-lede { max-width: 62ch; margin-left: auto; margin-right: auto; }

/* ── HOMEPAGE — MEET MALARKY GALLERY SLIDER ── */
.gallery-section { padding: var(--s-9) 0 var(--s-6) 0; background: var(--paper); overflow: hidden; }
.gallery-section .section-header { padding: 0 32px; }
/* When gallery is directly followed by hero-lede, tighten the gap — both share
   the --paper background, so a 192px stack of nothing reads as dead air. */
.gallery-section + .hero-lede { padding-top: var(--s-6); }
@media (max-width: 768px) {
  .gallery-section { padding-bottom: var(--s-5); }
  .gallery-section + .hero-lede { padding-top: var(--s-5); }
}
.gallery-slider {
  position: relative;
  margin-top: var(--s-7);
}
.gallery-track {
  display: flex;
  gap: var(--s-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* Symmetric padding so the first and last slide can center themselves */
  padding: 8px max(32px, calc(50vw - 620px));
  scrollbar-width: none;
  -ms-overflow-style: none;
  outline: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 auto;
  /* Desktop: 3 tiles visible inside a 1280px content band (16px gaps).
     Per-tile: (1280 - 2*16) / 3 ≈ 416px. Capped at 420px, shrinks with viewport. */
  width: min(420px, calc((100vw - 96px) / 3));
  scroll-snap-align: start;
  margin: 0;
  position: relative;
}
.gallery-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 14px 40px rgba(0,0,0,0.16);
  border: 1px solid var(--line);
}
.gallery-slide figcaption {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
  margin-top: var(--s-3);
  letter-spacing: 0.01em;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.18s ease, background 0.18s ease;
}
.gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.gallery-arrow:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.gallery-prev { left: max(8px, calc(50vw - 680px)); }
.gallery-next { right: max(8px, calc(50vw - 680px)); }
/* Mini-galleries (embedded inside narrower section containers) use container-relative arrow positions instead of viewport-relative */
.gallery-mini .gallery-prev { left: 8px; }
.gallery-mini .gallery-next { right: 8px; }
.gallery-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: var(--s-5);
}
.gallery-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 48, 77, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.18s ease, transform 0.18s ease;
}
.gallery-dot:hover { background: rgba(0, 48, 77, 0.4); }
.gallery-dot.active { background: var(--brand); transform: scale(1.3); }
.gallery-dot:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

@media (max-width: 900px) {
  .gallery-slide { width: 240px; }        /* tablet — ~2.5 tiles visible */
}
@media (max-width: 768px) {
  .gallery-arrow { display: none; }       /* mobile uses native swipe */
  .gallery-slide { width: 72vw; }         /* mobile — 1 main + peek of next */
  .gallery-track { padding: 8px 6vw; }
}

/* ── HOMEPAGE — MATTERPORT EMBED ── */
.matterport-embed {
  max-width: 1280px; margin: var(--s-6) auto 0;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border: 1px solid var(--line);
}
.matterport-embed iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

/* ── HOMEPAGE — DEPARTURE MAP ── */
.departure-map {
  max-width: 1080px;
  /* Match the section's bottom padding so the map sits centered in the
     breathing room — equal gap to body text above and to next section below. */
  margin: var(--s-9) auto 0;
}
.departure-map iframe {
  width: 100%; height: 380px; border: 0; display: block;
}

/* ── HOMEPAGE — GUEST REVIEWS (light) ── */
.guest-reviews { background: var(--paper); }
.guest-reviews-header { text-align: center; max-width: 880px; margin: 0 auto var(--s-7); }
.guest-reviews-header .kicker { justify-content: center; }
.guest-reviews-headline {
  font-family: var(--ff-display);
  font-size: clamp(18px, 1.8vw, 22px); font-weight: 600;
  color: var(--ink-2);
  margin-top: var(--s-5);
  display: inline-flex; align-items: center; gap: 12px;
}
.guest-reviews-headline .stars { color: var(--brass); letter-spacing: 3px; font-size: 18px; }
.guest-reviews-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.guest-review {
  background: var(--cream); padding: var(--s-6);
  border-bottom: 2px solid var(--brass);
  display: flex; flex-direction: column; gap: 12px;
}
.guest-review-stars {
  color: var(--brass); font-size: 14px; letter-spacing: 4px;
}
.guest-review-body {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-2);
  font-style: italic;
  margin: 0;
}
.guest-review-body::before { content: '\201C'; color: var(--brass); margin-right: 2px; }
.guest-review-body::after { content: '\201D'; color: var(--brass); margin-left: 2px; }
.guest-review-meta {
  font-family: var(--ff-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); margin-top: auto;
}
.guest-reviews-cta {
  text-align: center; margin-top: var(--s-7);
}
.guest-reviews-cta a {
  font-family: var(--ff-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal-deep);
  border-bottom: 1px solid var(--teal-deep);
  padding-bottom: 2px;
}

/* ── SIBLING OCCASIONS ── */
.sibling-occasions { background: var(--cream); }
.sibling-occasions .kicker { justify-content: center; }
.sibling-occasions .sec-title {
  text-align: center;
  max-width: 32ch;
  margin-left: auto; margin-right: auto;
  margin-bottom: var(--s-7);
}
.sibling-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.sibling-card {
  background: var(--paper);
  padding: var(--s-6);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
  display: flex; flex-direction: column; gap: 12px;
}
.sibling-card:hover { border-bottom-color: var(--brass); transform: translateY(-3px); }
.sibling-card-title {
  font-family: var(--ff-display);
  font-size: 17px; font-weight: 700; line-height: 1.3;
  color: var(--ink);
}
.sibling-card-desc {
  font-size: 17px; line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
}
.sibling-card-link {
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal-deep);
  border-bottom: 1px solid var(--teal-deep);
  padding-bottom: 2px;
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(247,241,227,0.6);
  padding: var(--s-9) 32px var(--s-7) 32px;
}
.foot-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-7);
}
.foot-brand-name {
  display: flex; align-items: center;
  line-height: 0;
  margin-bottom: var(--s-4);
}
.foot-brand-name img {
  height: 36px; width: auto;
  display: block;
  filter: brightness(0) invert(1);  /* render dark navy logo as white on dark footer */
}
.foot-tag { font-size: 14px; line-height: 1.7; color: rgba(247,241,227,0.6); margin-bottom: var(--s-5); max-width: 38ch; }
.foot-col-title {
  font-family: var(--ff-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass); margin-bottom: var(--s-4);
}
.foot-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-list a, .foot-list span {
  font-size: 14px; color: rgba(247,241,227,0.7); transition: color 0.2s;
}
.foot-list a:hover { color: var(--cream); }
.foot-bottom {
  max-width: 1280px; margin: var(--s-7) auto 0 auto;
  padding-top: var(--s-5);
  border-top: 1px solid rgba(247,241,227,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); flex-wrap: wrap;
  font-size: 12px; color: rgba(247,241,227,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { height: 620px; }
  .hero-inner { padding: var(--s-7) 24px var(--s-7) 24px; }
  .sec { padding: var(--s-9) 24px; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
  .about-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .about-photo-caption { left: 0; bottom: -22px; }
  .yacht-spec-row { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 200px; }
  .spaces-grid, .addons-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .reviews-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-img { min-height: 300px; }
  .content-body-inner { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: var(--s-6); }
  .pricing-grid { grid-template-columns: 1fr; }
  .related-pages-grid { grid-template-columns: 1fr; }
  .sibling-grid { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .guest-reviews-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .included-list { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .cta-band, footer { padding-left: 24px; padding-right: 24px; }
  .breadcrumb { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 640px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
}
/* Nav phone CTA — make it visually prominent next to Book Now */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  margin-right: 8px;
  background: transparent;
  color: var(--teal-deep, #0e2a36);
  border: 1.5px solid var(--teal-deep, #0e2a36);
  border-radius: 4px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-call:hover {
  background: var(--teal-deep, #0e2a36);
  color: var(--cream, #f7f1e3);
}
@media (max-width: 900px) {
  .btn-call { display: none; }
}


/* ── #11: bump section eyebrows + titles on mobile for readability ── */
@media (max-width: 768px) {
  .kicker {
    font-size: 13px;
    letter-spacing: 0.24em;
  }
  .sec-title {
    font-size: clamp(32px, 7vw, 44px);
  }
}


/* ── BACK TO TOP BUTTON ── */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--brass); background: var(--cream);
  color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, background .2s, color .2s, transform .2s;
  z-index: 90;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--brass); color: var(--cream); transform: translateY(-2px); }
#back-to-top:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
@media (max-width: 640px) {
  #back-to-top { width: 44px; height: 44px; bottom: 18px; right: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  #back-to-top { transition: opacity .2s; }
  #back-to-top:hover { transform: none; }
}
