/* ==========================================================================
   Carolina Beach Charter Fishing — Batson Charter Boats
   Design system + site styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Brand palette — deep Atlantic navy, ocean teal, sunrise gold */
  --navy-950: #06121d;
  --navy-900: #0a1b2a;
  --navy-800: #0f2739;
  --navy-700: #16374e;
  --navy-600: #1f4c69;

  --teal-600: #10707f;
  --teal-500: #1a8b9c;
  --teal-400: #34a7b7;

  --gold-600: #c9822a;
  --gold-500: #e8a33d;
  --gold-400: #f2bc66;

  --sand-100: #faf7f1;
  --sand-200: #f2ece0;
  --sand-300: #e3d9c6;

  --ink: #17222c;
  --ink-soft: #4a5a68;
  --ink-faint: #7c8b98;
  --line: #dfe5ea;

  --white: #ffffff;

  /* Typography */
  --font-display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* Layout */
  --wrap: 1200px;
  --wrap-narrow: 780px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 3px rgba(6, 18, 29, 0.08);
  --shadow-md: 0 6px 20px rgba(6, 18, 29, 0.1);
  --shadow-lg: 0 18px 48px rgba(6, 18, 29, 0.18);

  --header-h: 76px;
  --topbar-h: 38px;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--sp-4));
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-600);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 var(--sp-4);
  letter-spacing: 0.01em;
  color: var(--navy-900);
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  text-transform: uppercase;
}

h4 {
  font-size: 1.05rem;
  text-transform: uppercase;
}

p {
  margin: 0 0 var(--sp-4);
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 var(--sp-4);
  padding-left: 1.25rem;
}

li + li {
  margin-top: var(--sp-2);
}

strong {
  font-weight: 650;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: var(--sp-6) 0;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: var(--sp-3) var(--sp-5);
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2.5rem, var(--wrap-narrow));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--sand {
  background: var(--sand-100);
}

.section--navy {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.82);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.grid {
  display: grid;
  gap: var(--sp-6);
}

@media (min-width: 720px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 620px) and (max-width: 979px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Section heading block */
.section-head {
  max-width: 720px;
  margin-bottom: var(--sp-7);
}

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

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal-600);
  margin: 0 0 var(--sp-3);
  display: block;
}

.section--navy .eyebrow {
  color: var(--gold-500);
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.section--navy .lede {
  color: rgba(255, 255, 255, 0.78);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease,
    border-color 0.15s ease, color 0.15s ease;
  text-align: center;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--gold-500);
  color: var(--navy-900);
}

.btn--primary:hover {
  background: var(--gold-400);
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn--dark {
  background: var(--navy-800);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy-700);
}

.btn--ghost {
  border-color: var(--navy-800);
  color: var(--navy-800);
}

.btn--ghost:hover {
  background: var(--navy-800);
  color: var(--white);
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.topbar__note {
  display: none;
  letter-spacing: 0.04em;
}

@media (min-width: 780px) {
  .topbar__note {
    display: block;
  }
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-left: auto;
}

.topbar a {
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar a:hover {
  color: var(--gold-500);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 27, 42, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  height: 46px;
  width: auto;
}

.brand__text {
  display: none;
  line-height: 1.15;
}

@media (min-width: 1080px) {
  .brand__text {
    display: block;
  }
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  font-weight: 600;
}

.brand__sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-500);
}

.nav {
  margin-left: auto;
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: block;
  }
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin: 0;
  padding: 0;
}

.nav li {
  margin: 0;
}

.nav a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  padding: var(--sp-2) 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: var(--white);
  text-decoration: none;
  border-bottom-color: var(--gold-500);
}

.nav a[aria-current="page"] {
  color: var(--gold-500);
  border-bottom-color: var(--gold-500);
}

.header-cta {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
  }
}

.nav-toggle {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--navy-950);
  padding: var(--sp-6) var(--sp-5) var(--sp-8);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  visibility: hidden;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
}

.mobile-nav__close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
  margin: 0 0 var(--sp-6);
  padding: 0;
}

.mobile-nav li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav a {
  display: block;
  padding: var(--sp-4) 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.15rem;
  color: var(--white);
}

.mobile-nav a[aria-current="page"] {
  color: var(--gold-500);
}

body.nav-open {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(84vh, 780px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-900);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 1.2s ease;
}

.hero__media img.is-active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      100deg,
      rgba(6, 18, 29, 0.9) 0%,
      rgba(6, 18, 29, 0.72) 45%,
      rgba(6, 18, 29, 0.35) 100%
    ),
    linear-gradient(to top, rgba(6, 18, 29, 0.8), transparent 45%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: var(--sp-9) 0;
  max-width: 720px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--gold-500);
  margin-bottom: var(--sp-5);
}

.hero__eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold-500);
}

.hero__text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--sp-6);
  max-width: 560px;
}

.hero__strip {
  position: relative;
  z-index: 2;
  background: rgba(6, 18, 29, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-strip-outer {
  background: var(--navy-950);
  color: var(--white);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  padding: var(--sp-6) 0;
  text-align: center;
}

@media (min-width: 860px) {
  .hero-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-strip__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--gold-500);
  line-height: 1;
  display: block;
}

.hero-strip__label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--sp-2);
  display: block;
}

/* Interior page banner */
.page-hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 18, 29, 0.92),
    rgba(6, 18, 29, 0.6)
  );
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.12rem;
  margin: 0;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.06em;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb span {
  margin: 0 var(--sp-2);
}

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-800);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.card__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__body h3 {
  margin-bottom: var(--sp-2);
}

.card__meta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-600);
  margin-bottom: var(--sp-3);
  font-weight: 600;
}

.card__price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: var(--sp-3);
}

.card__price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: var(--sp-2);
}

.card__foot {
  margin-top: auto;
  padding-top: var(--sp-4);
}

/* Rate table cards */
.rate-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.rate-card--featured {
  border-color: var(--gold-500);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}

.rate-card__head {
  background: var(--navy-900);
  color: var(--white);
  padding: var(--sp-5);
  position: relative;
}

.rate-card--featured .rate-card__head {
  background: var(--navy-800);
}

.rate-card__head h3 {
  color: var(--white);
  margin: 0 0 var(--sp-1);
}

.rate-card__head p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rate-card__badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: var(--gold-500);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.rate-card__body {
  padding: var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
  border-bottom: 1px dashed var(--line);
}

.rate-row:last-of-type {
  border-bottom: 0;
}

.rate-row__label {
  font-weight: 600;
  color: var(--navy-900);
}

.rate-row__label small {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

.rate-row__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-600);
  white-space: nowrap;
}

/* Feature / icon list */
.feature {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sand-200);
  color: var(--teal-600);
  display: grid;
  place-items: center;
}

.section--navy .feature__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-500);
}

.feature__icon svg {
  width: 24px;
  height: 24px;
}

.feature h3,
.feature h4 {
  margin-bottom: var(--sp-2);
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.section--navy .feature p {
  color: rgba(255, 255, 255, 0.75);
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-3);
}

@media (min-width: 620px) {
  .checklist--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checklist li {
  position: relative;
  padding-left: 1.9rem;
  margin: 0;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 1.1rem;
  height: 0.6rem;
  border-left: 2.5px solid var(--teal-500);
  border-bottom: 2.5px solid var(--teal-500);
  transform: rotate(-45deg);
}

.section--navy .checklist li::before {
  border-color: var(--gold-500);
}

/* Split media + text */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--reverse .split__media {
    order: 2;
  }
}

.split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.split__media--stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.split__media--stack img:first-child {
  grid-column: span 2;
}

/* --------------------------------------------------------------------------
   8. Species strip
   -------------------------------------------------------------------------- */

.species {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  text-align: center;
}

@media (min-width: 720px) {
  .species {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1000px) {
  .species {
    grid-template-columns: repeat(9, 1fr);
  }
}

.species figure {
  margin: 0;
}

.species img {
  height: 46px;
  width: auto;
  margin: 0 auto var(--sp-2);
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.species figcaption {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   9. Testimonials
   -------------------------------------------------------------------------- */

.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--gold-500);
  letter-spacing: 0.15em;
  font-size: 1.05rem;
  margin-bottom: var(--sp-3);
}

.quote blockquote {
  margin: 0 0 var(--sp-4);
  font-size: 1.02rem;
  color: var(--ink);
  flex: 1;
}

.quote figcaption {
  border-top: 1px solid var(--line);
  padding-top: var(--sp-3);
  font-size: 0.9rem;
  color: var(--ink-faint);
}

.quote figcaption strong {
  display: block;
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 650;
}

/* --------------------------------------------------------------------------
   10. Gallery
   -------------------------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery button {
  padding: 0;
  border: 0;
  background: var(--navy-800);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  display: block;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.2s ease;
}

.gallery button:hover img {
  transform: scale(1.07);
  opacity: 0.88;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 12, 20, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox__close {
  top: var(--sp-5);
  right: var(--sp-5);
}

.lightbox__prev {
  left: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__count {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   11. FAQ accordion
   -------------------------------------------------------------------------- */

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-5) 3rem var(--sp-5) 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy-900);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: var(--sp-3);
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--teal-600);
  border-bottom: 2.5px solid var(--teal-600);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
}

.faq-item summary:hover {
  color: var(--teal-600);
}

.faq-item__body {
  padding: 0 3rem var(--sp-5) 0;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   12. Forms
   -------------------------------------------------------------------------- */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.field {
  margin-bottom: var(--sp-4);
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
  margin-bottom: var(--sp-2);
}

.field .req {
  color: #b4462f;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(26, 139, 156, 0.15);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field-row {
  display: grid;
  gap: var(--sp-4);
}

@media (min-width: 620px) {
  .field-row--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-note {
  font-size: 0.87rem;
  color: var(--ink-faint);
  margin-top: var(--sp-4);
}

.form-status {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius);
  font-size: 0.95rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status--ok {
  background: #e8f5f0;
  border: 1px solid #9ed3c2;
  color: #14614b;
}

.form-status--err {
  background: #fdecea;
  border: 1px solid #f0b4ab;
  color: #8f2d1d;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

/* --------------------------------------------------------------------------
   13. Contact info blocks
   -------------------------------------------------------------------------- */

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-5);
}

.info-list li {
  margin: 0;
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.info-list__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  display: grid;
  place-items: center;
}

.info-list__icon svg {
  width: 20px;
  height: 20px;
}

.info-list h4 {
  margin: 0 0 var(--sp-1);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}

.info-list a {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy-900);
}

.info-list a:hover {
  color: var(--teal-600);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--sand-200);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* --------------------------------------------------------------------------
   14. CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 18, 29, 0.92),
    rgba(6, 18, 29, 0.55)
  );
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--sp-5);
  align-items: center;
}

@media (min-width: 900px) {
  .cta-band__inner {
    grid-template-columns: 1.6fr 1fr;
  }
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: 1.1rem;
}

.cta-band .btn-row {
  justify-content: flex-start;
}

@media (min-width: 900px) {
  .cta-band .btn-row {
    justify-content: flex-end;
  }
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.68);
  padding: var(--sp-8) 0 var(--sp-5);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: var(--sp-6);
  padding-bottom: var(--sp-7);
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  }
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  margin-bottom: var(--sp-4);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--gold-500);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin: 0 0 var(--sp-2);
}

.footer-brand img {
  height: 62px;
  margin-bottom: var(--sp-4);
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
}

.footer-social a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Sticky mobile call bar */
.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  .call-bar {
    display: none;
  }
}

.call-bar a {
  padding: 0.9rem var(--sp-3);
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.92rem;
  color: var(--white);
}

.call-bar a:hover {
  text-decoration: none;
}

.call-bar a + a {
  background: var(--gold-500);
  color: var(--navy-900);
}

@media (max-width: 1023px) {
  body {
    padding-bottom: 52px;
  }
}

/* --------------------------------------------------------------------------
   16. Utilities
   -------------------------------------------------------------------------- */

.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mb-0 { margin-bottom: 0; }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }

.callout {
  background: var(--sand-100);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-5);
}

.callout h3,
.callout h4 {
  margin-bottom: var(--sp-2);
}

.callout p:last-child {
  margin-bottom: 0;
}

.memorial {
  background: var(--sand-100);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table th {
  width: 42%;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  color: var(--ink-faint);
}

.section--navy .spec-table th,
.section--navy .spec-table td {
  border-color: rgba(255, 255, 255, 0.14);
}

.section--navy .spec-table th {
  color: rgba(255, 255, 255, 0.55);
}

.section--navy .spec-table td {
  color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
