:root {
  --navy: #000B2A;
  --navy-2: #0a1628;
  --ink: #000B2A;
  --slate: #2a3548;
  --blue: #0056b3;
  --royal: #1a4db3;
  --cyan: #00b8c8;
  --cyan-bright: #00d2ff;
  --teal: #0097a7;
  --cream: #F3EEE3;
  --cream-2: #FAF9F6;
  --sand: #E8E2D6;
  --paper: #FAF9F6;
  --white: #ffffff;
  --line: rgba(0, 11, 42, 0.14);
  --shadow: 0 18px 50px rgba(0, 11, 42, 0.10);
  --radius: 18px;
  --max: 1160px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --focus: #0056b3;
  --on-navy: #ffffff;
  --accent-ink: #0056b3;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-ink);
  margin: 0 0 12px;
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 14px;
  color: var(--navy);
}
h1 { font-size: clamp(2.35rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.7rem); }
h3 { font-size: 1.32rem; line-height: 1.25; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 16px; color: var(--slate); }
.lead { font-size: 1.12rem; max-width: 62ch; line-height: 1.7; }

/* Focus */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.btn:focus-visible, .nav-cta:focus-visible, .menu-btn:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

/* Header — navy bar matches dark logo asset */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #000B2A;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 210, 255, 0.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 14px; position: relative;
  padding: 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: #ffffff; flex-shrink: 0;
}
.logo:hover { color: #ffffff; opacity: 0.95; }
.logo img, .logo-img {
  display: block; height: 58px; width: auto; max-width: min(340px, 40vw);
  border-radius: 0; object-fit: contain; object-position: left center;
  background: transparent;
}
.footer-logo {
  display: block; height: 52px; width: auto; max-width: 240px;
  border-radius: 0; object-fit: contain; margin: 0 0 14px;
}
.logo-mark, .logo-sub { display: none; }
.nav {
  display: flex; align-items: center; flex-wrap: nowrap; gap: 14px;
  flex: 1 1 auto; justify-content: flex-end; min-width: 0;
}
.nav a {
  text-decoration: none; font-size: 0.88rem; color: rgba(255,255,255,0.92); font-weight: 600;
  white-space: nowrap; flex-shrink: 0; line-height: 1;
}
.nav a:hover, .nav a.active { color: var(--cyan-bright); }
.nav .nav-cta, .site-header .nav-cta {
  white-space: nowrap; flex-shrink: 0;
  padding: 10px 16px; font-size: 0.86rem;
}
.menu-btn { color: #ffffff !important; }

/* Header CTA: cyan on navy bar for visibility */
.site-header .nav-cta {
  background: #007a96 !important;
  color: #ffffff !important;
  border: 2px solid #007a96 !important;
}
.site-header .nav-cta:hover {
  background: #00b8c8 !important;
  color: #000B2A !important;
  border-color: #00b8c8 !important;
}

.nav-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border: 0; cursor: pointer;
  background: var(--navy); color: #ffffff;
  padding: 12px 20px; border-radius: 999px;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 600;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  line-height: 1.2; min-height: 44px;
}
.btn:hover, .nav-cta:hover {
  background: var(--royal); color: #ffffff; transform: translateY(-1px);
}
/* Alias: btn-gold → solid cyan CTA with WHITE text (high contrast) */
.btn-gold {
  background: var(--teal); color: #ffffff;
  background-image: none;
}
.btn-gold:hover {
  background: var(--cyan); color: #ffffff;
}
.btn-ghost {
  background: transparent; color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.92);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
  color: #ffffff;
}
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy); color: #ffffff; border-color: var(--navy);
}
/* On navy bands: outline stays readable */
.band .btn-outline, .site-footer .btn-outline, .hero .btn-outline {
  color: #ffffff; border-color: #ffffff;
}
.band .btn-outline:hover, .hero .btn-outline:hover {
  background: #ffffff; color: var(--navy); border-color: #ffffff;
}
.band .btn, .hero .btn:not(.btn-ghost):not(.btn-outline) {
  color: #ffffff;
}
.band .btn-gold, .hero .btn-gold {
  background: var(--teal); color: #ffffff;
}
.band .btn-gold:hover, .hero .btn-gold:hover {
  background: #ffffff; color: #000B2A;
}
.btn-row {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px;
  align-items: center;
}
.menu-btn {
  display: none; background: none; border: 0; font-size: 1.4rem;
  color: #ffffff; cursor: pointer; padding: 8px; min-width: 44px; min-height: 44px;
}

/* Hero */
.hero {
  position: relative; min-height: 0;
  display: grid; align-items: start;
  color: var(--cream);
  background: var(--navy) center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,11,42,.40) 0%, rgba(0,11,42,.82) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 36px 0 64px; }
.hero h1 { color: #ffffff; }
.hero p { max-width: 58ch; font-size: 1.12rem; color: rgba(255, 255, 255, 0.95); }
.hero .eyebrow { color: var(--cyan-bright); letter-spacing: 0.14em; }
.page-hero { min-height: 0; }
.page-hero .hero-inner { padding: 36px 0 52px; }

/* Sections */
section { padding: 80px 0; }
.band { background: var(--navy); color: #ffffff; }
.band h2, .band h3 { color: #ffffff; }
.band p { color: rgba(255, 255, 255, 0.92); }
.band .eyebrow { color: var(--cyan-bright); }
.band a:not(.btn):not(.nav-cta) { color: var(--cyan-bright); }
.band a:not(.btn):not(.nav-cta):hover { color: #ffffff; }
.sand { background: var(--sand); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); min-height: 360px;
}
.grid-3, .grid-4, .grid-2 { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.card:hover {
  border-color: rgba(11, 28, 44, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(11, 28, 44, 0.1);
}
.card h3 { margin-bottom: 10px; }
.card > a, .card p a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 86, 179, 0.35);
}
.card > a:hover, .card p a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.num {
  font-family: var(--serif); color: var(--blue);
  font-size: 1.55rem; display: block; margin-bottom: 10px; font-weight: 500;
}
.list { list-style: none; padding: 0; margin: 0; }
.list li {
  padding: 10px 0 10px 22px; position: relative; color: var(--slate);
}
.list li::before {
  content: ""; position: absolute; left: 0; top: 17px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
}
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; }
.pill {
  border: 1.5px solid var(--navy); border-radius: 999px; padding: 7px 14px;
  font-size: 0.84rem; font-weight: 600; background: var(--white); color: var(--navy);
  text-decoration: none; display: inline-flex; align-items: center;
}
a.pill:hover { background: var(--navy); color: #ffffff; }

/* Form */
.form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  background: var(--white); padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.form .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.84rem; margin-bottom: 6px; color: var(--ink); font-weight: 500; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; font: inherit; background: var(--cream); color: var(--ink);
  transition: border-color .15s ease;
}
input:hover, select:hover, textarea:hover { border-color: rgba(11, 28, 44, 0.22); }
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(30, 77, 107, 0.35);
  outline-offset: 1px;
  border-color: var(--blue);
}
input::placeholder, textarea::placeholder {
  color: #5a6a78;
  opacity: 1;
}
textarea { min-height: 120px; resize: vertical; }
.check-row { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.check-row label { display: flex; gap: 8px; align-items: center; font-weight: 400; color: var(--slate); }
.check-row input { width: auto; }
.form .btn { min-width: 160px; }
.quote-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}

/* Footer */
.site-footer { background: var(--navy); color: #ffffff; padding: 56px 0 24px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.site-footer h4 { color: #ffffff; font-size: 1.05rem; margin-bottom: 12px; }
.site-footer p { color: rgba(255, 255, 255, 0.92); }
.site-footer a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  font-weight: 500;
}
.site-footer a:hover { color: var(--cyan-bright); border-bottom-color: rgba(0, 210, 255, 0.55); }
.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 18px; font-size: 0.84rem;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.88);
}

/* FAQ */
.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq summary {
  cursor: pointer; font-weight: 500; color: var(--navy);
  list-style: none; padding-right: 28px; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  font-size: 1.2rem; color: var(--blue); font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 12px 0 4px; }

/* Closing CTA rhythm */
section .btn-row:first-child { margin-top: 0; }

@media (max-width: 1100px) {
  .split, .grid-3, .grid-4, .foot-grid, .form, .quote-layout { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #000B2A; flex-direction: column; padding: 18px 20px 24px;
    border-bottom: 1px solid rgba(0,210,255,0.2); align-items: stretch;
    gap: 4px; box-shadow: 0 16px 40px rgba(0, 11, 42, 0.45);
    z-index: 60; max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav > a:not(.nav-cta) { color: #ffffff; border-bottom-color: rgba(255,255,255,0.12); }
  .nav.open { display: flex; background: #F3EEE3; }
  .nav.open > a:not(.nav-cta) { color: #000B2A !important; font-weight: 600; }
  .nav.open .nav-cta {
    background: #000B2A !important; color: #ffffff !important;
    border: 2px solid #000B2A !important;
  }
  .nav > a:not(.nav-cta) {
    padding: 12px 4px; width: 100%;
    border-bottom: 1px solid var(--line);
    color: var(--navy); font-weight: 600;
  }
  .nav-cta {
    margin-top: 12px; width: 100%; text-align: center;
  }
  .btn-row {
    justify-content: center;
    text-align: center;
  }
  .btn-row .btn {
    width: 100%;
    max-width: 420px;
  }
  .hero .btn-row { justify-content: center; }
  .hero-inner { padding: 30px 0 48px; text-align: left; }
  .page-hero .hero-inner { padding: 30px 0 44px; }
  .split img { min-height: 280px; }
  section { padding: 64px 0; }
  .site-footer { padding: 48px 0 20px; }
  .foot-grid { gap: 28px; }
  .legal { flex-direction: column; text-align: left; }
}

@media (max-width: 767px) {
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  body { font-size: 16px; }
  .btn-row {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }
  .btn-row .btn {
    width: 100%;
    max-width: none;
  }
  .hero-inner .btn-row,
  .band .btn-row,
  section .btn-row {
    align-items: stretch;
  }
  .form { padding: 22px; }
  .card { padding: 24px; }
  .header-inner { min-height: 64px; padding: 0; }
  .logo img, .logo-img { height: 48px; max-width: min(240px, 62vw); }
  .logo img, .logo-img { height: 48px; max-width: min(240px, 62vw); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .nav-cta, .card { transition: none; }
  .btn:hover, .nav-cta:hover, .card:hover { transform: none; }
}

/* Contrast lock: never let section link styles wash out button labels */
a.btn, a.nav-cta, button.btn {
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
  background-image: none;
}
a.btn.btn-gold, .btn.btn-gold, a.btn-gold {
  background: #007a96 !important;
  color: #ffffff !important;
  border: 2px solid #007a96 !important;
}
a.btn.btn-gold:hover, .btn.btn-gold:hover, a.btn-gold:hover {
  background: #0056b3 !important;
  color: #ffffff !important;
  border-color: #0056b3 !important;
}
a.btn:not(.btn-ghost):not(.btn-outline):not(.btn-gold),
.btn:not(.btn-ghost):not(.btn-outline):not(.btn-gold),
a.nav-cta, .nav-cta {
  background: #000B2A !important;
  color: #ffffff !important;
}
a.btn:not(.btn-ghost):not(.btn-outline):not(.btn-gold):hover,
.btn:not(.btn-ghost):not(.btn-outline):not(.btn-gold):hover,
a.nav-cta:hover, .nav-cta:hover {
  background: #1a4db3 !important;
  color: #ffffff !important;
}
a.btn.btn-ghost, .btn.btn-ghost {
  background: rgba(255,255,255,0.10) !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}
a.btn.btn-ghost:hover, .btn.btn-ghost:hover {
  background: rgba(255,255,255,0.18) !important;
  color: #ffffff !important;
}
a.btn.btn-outline, .btn.btn-outline {
  background: #ffffff !important;
  color: #000B2A !important;
  border: 2px solid #000B2A !important;
}
a.btn.btn-outline:hover, .btn.btn-outline:hover {
  background: #000B2A !important;
  color: #ffffff !important;
}
.hero a.btn.btn-outline, .band a.btn.btn-outline {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}
.hero a.btn.btn-outline:hover, .band a.btn.btn-outline:hover {
  background: #ffffff !important;
  color: #000B2A !important;
}
.hero a.btn.btn-gold, .band a.btn.btn-gold {
  background: #00b8c8 !important;
  color: #000B2A !important;
  border-color: #00b8c8 !important;
  font-weight: 700;
}
.hero a.btn.btn-gold:hover, .band a.btn.btn-gold:hover {
  background: #ffffff !important;
  color: #000B2A !important;
  border-color: #ffffff !important;
}



/* Header nav single-line lock (tablet/PC) */
@media (min-width: 1101px) {
  .nav { flex-wrap: nowrap; gap: 12px; }
  .nav a { white-space: nowrap; font-size: 0.86rem; }
  .logo img, .logo-img { height: 56px; max-width: 300px; }
  .site-header .nav-cta { white-space: nowrap; padding: 10px 14px; }
}
@media (min-width: 1280px) {
  .nav { gap: 16px; }
  .nav a { font-size: 0.9rem; }
  .logo img, .logo-img { height: 58px; max-width: 320px; }
}


/* Honeypot — hidden from people, visible to dumb bots */
.hp{
  position:absolute !important;
  left:-10000px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}


/* Mobile sticky Call / Text / Quote — labels only, no phone numbers */
.sticky-cta {
  display: none;
}
@media (max-width: 900px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
  .sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    background: #000B2A;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -10px 30px rgba(0, 11, 42, 0.28);
  }
  .sticky-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin: 0 4px;
    border-radius: 12px;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #fff !important;
  }
  .sticky-cta__call {
    background: #0056b3;
  }
  .sticky-cta__text {
    background: #0097a7;
  }
  .sticky-cta__quote {
    background: #00b8c8;
    color: #000B2A !important;
  }
  .sticky-cta__btn:active {
    filter: brightness(0.92);
  }
}

/* Center booking-platform pills on mobile */
@media (max-width: 767px) { .pill-row { justify-content: center; } }
.hero-inner > .eyebrow:first-child { margin-top: 0; }
section.hero { padding: 0; }
/* Center hero eyebrow + headline on mobile + tablet */
@media (max-width: 1100px) {
  .hero .eyebrow { display: block; text-align: center; }
  .hero h1 { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-inner { text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero .btn-row { justify-content: center; }
}

/* Trusted partners (home section + partners.html) — added 2026-09-26 */
.partner-card { display: flex; flex-direction: column; }
.partner-head { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.partner-head .eyebrow { margin: 0 0 4px; }
.partner-head h3 { margin: 0; }
.partner-logo { width: 84px; height: 84px; object-fit: contain; border-radius: 12px; flex: 0 0 auto; background: #fff; }
.partner-sub { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin: 10px 0 4px; }
.partner-list li { padding: 6px 0 6px 22px; }
.partner-list li::before { top: 13px; }
.partner-key { font-size: 0.96rem; }
.partner-btns { margin-top: auto; padding-top: 14px; }
.partners-more { font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(0, 86, 179, 0.35); }
.partners-more:hover { border-bottom-color: var(--navy); }
#partners-list { scroll-margin-top: 90px; }
@media (max-width: 900px) {
  .partner-grid, .partners-home .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .partner-logo { width: 68px; height: 68px; }
}

/* Hero eyebrow: brand on line one, region on line two */
.eyebrow-stack span { display: block; }
.eyebrow-stack span + span { margin-top: 4px; }
