/* =========================================================
   Cruise Jacksonville — Global Stylesheet
   Bright coastal / nautical. Navy accent. Fraunces + Plus Jakarta Sans.
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Color — bright coastal */
  --white: #ffffff;
  --paper: #fbfaf7;          /* warm off-white page bg */
  --sand: #f4efe6;           /* warm sandy neutral */
  --sand-deep: #ece4d6;
  --mist: #eef3f6;           /* palest sky/water tint */
  --sky: #cfe0ea;            /* soft sky blue */
  --water: #6f96ad;          /* muted river blue */
  --navy: #1a3a5c;           /* deep nautical navy (accent / brand) */
  --navy-deep: #122a44;
  --navy-700: #244a70;
  --ink: #1c2733;            /* body text near-black with blue cast */
  --ink-soft: #50616f;       /* secondary text */
  --line: #e4ddd0;           /* hairline on warm bg */
  --line-cool: #dde6ec;      /* hairline on cool bg */
  --gold: #b8925a;           /* used sparingly for tiny flourishes only */

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: 1.0625rem;    /* 17px body */
  --text-lg: 1.25rem;
  --text-xl: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem);
  --text-2xl: clamp(2.1rem, 1.5rem + 2.8vw, 3.2rem);
  --text-3xl: clamp(2.6rem, 1.7rem + 4.5vw, 4.6rem);

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --maxw: 1200px;
  --maxw-narrow: 760px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 3px rgba(18, 42, 68, .06), 0 1px 2px rgba(18, 42, 68, .04);
  --shadow-md: 0 10px 30px rgba(18, 42, 68, .08), 0 4px 10px rgba(18, 42, 68, .05);
  --shadow-lg: 0 24px 60px rgba(18, 42, 68, .14);
  --header-h: 84px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; color: var(--navy); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.wrap-narrow { max-width: var(--maxw-narrow); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-paper { background: var(--paper); }
.bg-white { background: var(--white); }
.bg-sand  { background: var(--sand); }
.bg-mist  { background: var(--mist); }
.bg-navy  { background: var(--navy); color: #eaf1f6; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }

.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* Eyebrow / kicker */
.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--water);
  margin-bottom: var(--space-4);
}
.bg-navy .kicker { color: var(--sky); }
.kicker--gold { color: var(--gold); }

.lead { font-size: var(--text-lg); line-height: 1.6; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }

/* Decorative wave divider */
.wave-rule { display: flex; align-items: center; gap: .5rem; }
.wave-rule svg { width: 56px; height: auto; color: var(--water); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  letter-spacing: .02em;
  padding: .95rem 1.7rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-deep); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--sand); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline-light:hover { background: #fff; color: var(--navy); border-color:#fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
  background: transparent;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); width: 100%; }
.brand { display: flex; align-items: center; gap: .65rem; }
.brand img { height: 52px; width: auto; transition: height .35s var(--ease); }
.brand .brand-text { display: none; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav a {
  font-size: var(--text-sm); font-weight: 500; letter-spacing: .01em;
  color: #fff; position: relative; padding-block: .35rem;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: currentColor; transition: width .28s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.nav a.is-active { font-weight: 600; }

.header-cta { margin-left: var(--space-2); }
.header-cta .btn { padding: .7rem 1.25rem; }

/* Scrolled / solid state (also used on interior pages by default) */
.site-header.is-solid {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-cool), 0 6px 24px rgba(18,42,68,.06);
  height: 72px;
}
.site-header.is-solid .nav a { color: var(--ink); }
.site-header.is-solid .nav a:hover { color: var(--navy); }
.site-header.is-solid .nav a.is-active { color: var(--navy); }
.site-header.is-solid .brand img { height: 44px; }
.site-header.is-solid .btn--outline-light { color: var(--navy); border-color: var(--navy); }
.site-header.is-solid .btn--outline-light:hover { background: var(--navy); color:#fff; }
.site-header.is-solid .hamburger span { background: var(--navy); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: 0; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; gap: 6px; padding: 0;
}
.hamburger span { display: block; height: 2px; width: 26px; background: #fff; margin-inline: auto; transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s; }
.is-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.is-open .hamburger span:nth-child(2) { opacity: 0; }
.is-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
  background: var(--white); z-index: 110;
  transform: translateX(100%); transition: transform .4s var(--ease);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; padding: 5.5rem 2rem 2rem;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); padding: .7rem 0; border-bottom: 1px solid var(--line); }
.mobile-nav a.is-active { color: var(--water); }
.mobile-nav .btn { margin-top: 1.5rem; }
.mobile-nav a.btn--primary { color: #fff; border-bottom: 0; }
.mobile-nav a.btn--primary:hover { color: #fff; }
.mobile-nav .mob-contact { margin-top: auto; padding-top: 2rem; font-size: var(--text-sm); color: var(--ink-soft); }
.mobile-close { position: absolute; top: 1.2rem; right: 1.2rem; background: none; border: 0; font-size: 2rem; line-height: 1; color: var(--navy); }
.scrim { position: fixed; inset: 0; background: rgba(18,42,68,.4); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 105; }
.scrim.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,42,68,.55) 0%, rgba(18,42,68,.25) 35%, rgba(18,42,68,.45) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-top: var(--header-h); max-width: 760px; }
.hero h1 { color: #fff; font-size: var(--text-3xl); font-weight: 400; letter-spacing: -.02em; }
.hero .hero-sub { font-size: var(--text-lg); max-width: 40ch; margin: 1.4rem 0 2rem; color: rgba(255,255,255,.92); }
.hero .btn-row { margin-top: var(--space-6); }

/* page hero (interior, shorter) */
.page-hero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(18,42,68,.35) 0%, rgba(18,42,68,.15) 40%, rgba(18,42,68,.7) 100%); }
.page-hero__inner { position: relative; z-index: 2; padding-bottom: clamp(2.5rem,6vw,4.5rem); padding-top: calc(var(--header-h) + 2rem); max-width: 760px; }
.page-hero h1 { color: #fff; font-size: var(--text-2xl); font-weight: 400; }
.page-hero .page-hero-sub { font-size: var(--text-lg); color: rgba(255,255,255,.92); margin-top: .9rem; max-width: 50ch; }
.page-hero .kicker { color: var(--sky); }

/* Simple top spacer hero for pages with no big image */
.slim-hero { padding-top: calc(var(--header-h) + clamp(3rem,7vw,5.5rem)); padding-bottom: clamp(2rem,5vw,3.5rem); }
.slim-hero h1 { font-size: var(--text-2xl); font-weight: 400; }

/* ---------- Section heading ---------- */
.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: var(--text-xl); font-weight: 500; }
.section-head .lead { margin-top: 1rem; }
.section-head--lg h2 { font-size: var(--text-2xl); font-weight: 400; }

/* ---------- Intro / statement ---------- */
.statement { font-family: var(--font-display); font-size: clamp(1.4rem, 1rem + 2vw, 2.1rem); font-weight: 400; line-height: 1.35; color: var(--navy); letter-spacing: -.01em; }
.statement em { font-style: italic; }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: var(--space-8); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--space-8);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .feature-num { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--water); margin-bottom: .6rem; }
.feature h3 { font-size: var(--text-lg); font-family: var(--font-display); font-weight: 500; margin-bottom: .6rem; }
.feature p { font-size: var(--text-base); color: var(--ink-soft); margin-bottom: 1rem; }
.feature .tags { list-style: none; }
.feature .tags li { position: relative; padding-left: 1.4rem; font-size: var(--text-sm); color: var(--ink-soft); margin-bottom: .4rem; }
.feature .tags li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--sky); border: 1.5px solid var(--water); }

/* ---------- Editorial split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.split__body h2 { font-size: var(--text-xl); margin-bottom: 1rem; }
.split__body h3 { font-size: var(--text-lg); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem 2rem; }
.checklist li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--mist); border: 1.5px solid var(--water);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a3a5c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}

/* ---------- Pricing cards ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); align-items: stretch; }
.price-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line-cool); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.is-featured { border-color: var(--navy); box-shadow: var(--shadow-md); }
.price-card__top { padding: var(--space-8) var(--space-8) var(--space-6); border-bottom: 1px solid var(--line-cool); position: relative; }
.price-card.is-featured .price-card__top { background: var(--navy); color: #eaf1f6; border-bottom-color: var(--navy); }
.price-card.is-featured .price-card__top h3, .price-card.is-featured .price { color: #fff; }
.price-card.is-featured .price-card__meta { color: var(--sky); }
.price-badge { position: absolute; top: 1rem; right: 1rem; font-size: var(--text-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); background: var(--sky); padding: .3rem .7rem; border-radius: 100px; }
.price-card__top h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 500; margin-bottom: .35rem; }
.price-card__meta { font-size: var(--text-sm); color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.price { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 2.8rem); font-weight: 400; line-height: 1; margin: 1rem 0 .25rem; color: var(--navy); }
.price-card__body { padding: var(--space-6) var(--space-8); flex: 1; }
.price-card__body p.desc { font-size: var(--text-base); color: var(--ink-soft); margin-bottom: 1.2rem; }
.incl { list-style: none; }
.incl li { position: relative; padding-left: 1.5rem; font-size: var(--text-sm); margin-bottom: .55rem; color: var(--ink); }
.incl li::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--water); }
.incl li em { color: var(--ink-soft); font-size: var(--text-xs); }
.price-card__foot { padding: 0 var(--space-8) var(--space-8); }
.price-card__foot .btn { width: 100%; }

/* ---------- Menu (restaurant style) ---------- */
.menu-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 3rem); box-shadow: var(--shadow-sm); }
.menu-card.is-premium { border-color: var(--navy); }
.menu-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem 1rem; padding-bottom: 1rem; border-bottom: 2px solid var(--navy); margin-bottom: 1.5rem; }
.menu-head h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; }
.menu-head .menu-price { font-family: var(--font-display); font-size: var(--text-lg); color: var(--water); white-space: nowrap; }
.menu-head .menu-sub { width: 100%; font-size: var(--text-sm); color: var(--ink-soft); letter-spacing: .04em; }
.menu-section { margin-bottom: 1.4rem; }
.menu-section h4 { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--navy); margin-bottom: .5rem; }
.menu-section .choose { font-size: var(--text-xs); color: var(--gold); font-weight: 600; letter-spacing: .04em; text-transform: none; margin-left: .4rem; }
.menu-items { list-style: none; columns: 2; column-gap: 2.5rem; }
.menu-items li { font-size: var(--text-base); color: var(--ink); margin-bottom: .35rem; break-inside: avoid; }
.menu-items.one-col { columns: 1; }
.menu-foot { margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px dashed var(--line); font-size: var(--text-sm); color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-8); box-shadow: var(--shadow-sm); }
.quote-card .mark { font-family: var(--font-display); font-size: 3rem; line-height: .6; color: var(--sky); display: block; margin-bottom: .4rem; }
.quote-card blockquote { margin: 0 0 1.2rem; font-family: var(--font-display); font-size: var(--text-lg); font-weight: 400; font-style: italic; line-height: 1.45; color: var(--navy); }
.quote-card cite { font-style: normal; font-size: var(--text-sm); font-weight: 600; color: var(--ink-soft); letter-spacing: .04em; }

/* ---------- Bio cards ---------- */
.bio { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-8); }
.bio h3 { font-family: var(--font-display); font-size: var(--text-lg); margin-bottom: .25rem; }
.bio .bio-role { font-size: var(--text-sm); color: var(--water); font-weight: 600; letter-spacing: .04em; margin-bottom: 1rem; }
.bio .creds { list-style: none; margin: 1rem 0; }
.bio .creds li { font-size: var(--text-sm); padding-left: 1.3rem; position: relative; margin-bottom: .4rem; }
.bio .creds li::before { content: "⚓"; position: absolute; left: 0; font-size: .8rem; color: var(--water); }

/* badge pills */
.pill-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill { font-size: var(--text-sm); background: var(--white); border: 1px solid var(--line-cool); color: var(--navy); padding: .5rem 1rem; border-radius: 100px; }

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: none; border: 0; padding: 1.4rem 0; text-align: left; font-family: var(--font-display); font-size: var(--text-lg); font-weight: 500; color: var(--navy); }
.faq-q .ico { flex: none; width: 26px; height: 26px; border: 1.5px solid var(--water); border-radius: 50%; position: relative; transition: background .25s; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--navy); top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform .3s var(--ease), background .25s; }
.faq-q .ico::before { width: 11px; height: 1.6px; }
.faq-q .ico::after { width: 1.6px; height: 11px; }
.faq-item.is-open .faq-q .ico { background: var(--navy); }
.faq-item.is-open .faq-q .ico::before, .faq-item.is-open .faq-q .ico::after { background: #fff; }
.faq-item.is-open .faq-q .ico::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a > div { padding: 0 0 1.4rem; color: var(--ink-soft); max-width: 70ch; }

/* ---------- Contact form ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 3rem); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.5rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: var(--text-sm); font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: var(--text-base); color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line-cool); border-radius: var(--radius);
  background: var(--paper); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--water); box-shadow: 0 0 0 3px rgba(111,150,173,.18); }
.field textarea { resize: vertical; min-height: 130px; }

/* contact two-column layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-grid > * { min-width: 0; }

/* contact info list */
.info-list { list-style: none; }
.info-list li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.info-list .info-ico { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--mist); display: grid; place-items: center; color: var(--navy); }
.info-list .info-ico svg { width: 19px; height: 19px; }
.info-list .info-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); font-weight: 600; }
.info-list .info-val { font-size: var(--text-lg); font-family: var(--font-display); color: var(--navy); }
.info-list a.info-val:hover { color: var(--water); }
.info-list .info-val { overflow-wrap: anywhere; word-break: break-word; }
.info-list li > div { min-width: 0; }

/* ---------- Photo strip / gallery ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.photo-strip img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.full-bleed-img { width: 100%; height: clamp(280px, 45vh, 520px); object-fit: cover; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: #fff; text-align: center; }
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,42,68,.78), rgba(18,42,68,.86)); }
.cta-band__inner { position: relative; z-index: 2; padding-block: clamp(4rem, 9vw, 7rem); }
.cta-band h2 { color: #fff; font-size: var(--text-2xl); font-weight: 400; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 56ch; margin: 1.2rem auto 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #c5d4e0; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-8); padding-bottom: var(--space-10); border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand img { height: 64px; width: auto; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 1rem; }
.footer-brand p { font-size: var(--text-sm); color: #9fb4c6; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-body); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .16em; color: #fff; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .65rem; font-size: var(--text-sm); }
.footer-col a { color: #c5d4e0; }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: var(--text-xs); color: #8aa0b3; }
.footer-meta .fineprint { color: #7790a4; }
.social-link { display: inline-flex; align-items: center; gap: .5rem; }
.social-link svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-items { columns: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  :root { --header-h: 72px; }
  .site-header { height: var(--header-h); }
}
@media (max-width: 620px) {
  .grid-4 { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { min-height: 88vh; }
}
