/* ============================================================
   Balboa Island — shared brand stylesheet
   Red + ink over cream, harbor navy for depth, brass gold as
   hardware. Editorial, chart-inspired layout language: numbered
   section heads, dot-leader menus, plotted routes, tide tables.
   ============================================================ */

:root {
  /* the whole palette: five colors + white.
     every other shade is one of these at reduced opacity. */
  --red: #c73834; /* sampled from BALBOA MENU SIGN.ai */
  --ink: #16161a;
  --navy: #1c2b3a;
  --cream: #faf6ef;
  --gold: #b98e4a;
  --white: #ffffff;
  --line: rgba(22, 22, 26, 0.15);
  --display: "Jost", "Futura", "Century Gothic", sans-serif; /* Jost = free stand-in for the original site's Futura */
  --body: "Lora", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

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

a { color: var(--red); }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
header.site {
  background: var(--cream);
}
.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 26px;
  text-align: center;
}
.mast-left { text-align: left; justify-self: start; }
.mast-right { text-align: right; justify-self: end; }
.ms-top {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14.5px;
  letter-spacing: 0.14em;
  line-height: 1.5;
  color: var(--ink);
  max-width: 220px;
}
.mast-right .ms-top { margin-left: auto; }
.ms-sub {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-top: 7px;
}
a.ms-phone {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 27px;
  letter-spacing: 0.04em;
  color: var(--red);
  text-decoration: none;
  line-height: 1;
}
a.ms-phone:hover { color: var(--ink); }
.wordmark {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* real BALBOA ISLAND artwork, extracted from BALBOA MENU SIGN.ai */
.wordmark .lockup {
  width: clamp(250px, 34vw, 360px);
  height: auto;
}
.wordmark .catering {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(19px, 3vw, 26px);
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  margin-top: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
/* the illustrated anchor from BALBOA MENU SIGN.ai */
.anchor-mark { height: 32px; width: auto; }

/* dark-water texture carried over from the original site's nav strip */
nav.main {
  background:
    linear-gradient(rgba(12, 13, 17, 0.45), rgba(12, 13, 17, 0.45)),
    url(../img/dark-water.jpg) center 60% / cover no-repeat,
    var(--ink);
}
nav.main ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
nav.main a {
  /* fixed-height flex centering so the caps sit dead-center in the bar;
     the active underline is decoration and never shifts the text */
  display: flex;
  align-items: center;
  height: 46px;
  padding: 2px 20px 0; /* +2px optically centers uppercase caps in the em box */
  line-height: 1;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
nav.main a:hover { background: var(--red); color: var(--white); }
/* current page: red underline, like the original site's nav */
nav.main a.active {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
nav.main a.active:hover { background: var(--red); color: var(--white); text-decoration: none; }

/* ---------- coordinates motif ---------- */
.coords {
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.coords.on-light { color: var(--red); }

/* ---------- hero (navy, chart grid) ---------- */
.hero {
  background:
    linear-gradient(rgba(250, 246, 239, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 246, 239, 0.045) 1px, transparent 1px),
    var(--navy);
  background-size: 64px 64px, 64px 64px, auto;
  color: var(--cream);
  padding: 104px 0 116px;
  position: relative;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 6.6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin-top: 20px;
  max-width: 900px;
}
.hero h1 .outline {
  /* fill matches the ground and paints over the stroke, hiding the
     glyphs' internal contour seams — never use a transparent fill */
  color: var(--navy);
  -webkit-text-stroke: 3.5px var(--cream);
  paint-order: stroke fill;
}
.hero p.lede {
  max-width: 520px;
  margin-top: 26px;
  font-size: 18.5px;
  color: rgba(250, 246, 239, 0.8);
}
.hero .cta-row { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }

/* hero with a photograph behind the chart grid */
.hero.has-photo {
  background:
    linear-gradient(rgba(250, 246, 239, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 246, 239, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(20, 33, 49, 0.9), rgba(20, 33, 49, 0.82)),
    url(../img/photos/sailboat-pavilion.jpg),
    var(--navy);
  background-size: 64px 64px, 64px 64px, auto, cover, auto;
  background-position: 0 0, 0 0, 0 0, center 42%, 0 0;
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat;
}

.hero .anchor-wm {
  position: absolute;
  right: -30px;
  bottom: -90px;
  width: 360px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
}

/* ---------- hero (cream, market) ---------- */
.hero-light {
  background: var(--cream);
  padding: 88px 0 84px;
}
.hero-light h1 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(38px, 6.2vw, 74px);
  line-height: 1.0;
  margin-top: 18px;
  max-width: 860px;
}
.hero-light h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-light p.lede {
  max-width: 540px;
  margin-top: 24px;
  font-size: 18.5px;
  color: rgba(22, 22, 26, 0.75);
}
.hero-light .cta-row { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- sections & headers ---------- */
section.block { padding: 88px 0; }
section.block.alt { background: var(--white); }

.sec-head {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.sec-head .no {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--red);
  white-space: nowrap;
}
.sec-head h2 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.sec-head .rule {
  flex: 1 1 60px;
  height: 3px;
  background: var(--ink);
  position: relative;
  min-width: 60px;
}
.sec-head .rule::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 11px;
  height: 11px;
  background: var(--red);
  transform: rotate(45deg);
}
.sec-sub { color: rgba(22, 22, 26, 0.75); max-width: 640px; margin: 0 0 48px; }

/* centered variants (kept for panels & secondary pages) */
.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.26em;
  text-indent: 0.26em;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
}
h2.title {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(30px, 4.4vw, 44px);
  letter-spacing: 0.03em;
  text-align: center;
  margin: 10px 0 14px;
}
p.sub { max-width: 640px; margin: 0 auto 48px; text-align: center; color: rgba(22, 22, 26, 0.75); }

/* ---------- buttons (sign-painted: hard offset shadow) ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 14px;
  padding: 15px 32px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-red:hover { background: var(--ink); transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-dark {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 4px 4px 0 rgba(22, 22, 26, 0.25);
}
.btn-dark:hover { background: var(--red); transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(22, 22, 26, 0.25); }
.btn-ghost { border-color: var(--cream); color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--navy); }
.btn-ghost.on-light { border-color: var(--ink); color: var(--ink); }
.btn-ghost.on-light:hover { background: var(--ink); color: var(--cream); }

/* ---------- ledger (numbered editorial rows) ---------- */
.ledger { border-top: 3px solid var(--ink); }
.led {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 34px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.led .n {
  font-family: var(--display);
  font-weight: 700;
  font-size: 68px;
  line-height: 0.9;
  color: var(--cream);
  -webkit-text-stroke: 2px rgba(22, 22, 26, 0.22);
  paint-order: stroke fill;
}
.led h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 22px;
  margin-bottom: 8px;
}
.led p { font-size: 16px; color: rgba(22, 22, 26, 0.75); max-width: 680px; }

/* ---------- menu list (dot leaders) ---------- */
.menu-list { max-width: 780px; }
.menu-list.centered { margin: 0 auto; }
.mi { padding: 24px 0; border-bottom: 1px solid var(--line); }
.mi:last-child { border-bottom: none; }
.mi-top { display: flex; align-items: baseline; gap: 12px; }
.mi-top .nm {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 20px;
}
.mi-top .flag {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 9px;
  align-self: center;
  white-space: nowrap;
}
.mi-top .dots { flex: 1; border-bottom: 2px dotted rgba(22, 22, 26, 0.28); position: relative; top: -4px; min-width: 30px; }
.mi-top .pr {
  font-family: var(--display);
  font-weight: 700;
  font-size: 23px;
  color: var(--red);
  white-space: nowrap;
}
.mi-top .pr small { font-size: 14px; font-weight: 500; }
.mi .meta { font-style: italic; font-size: 14px; color: rgba(22, 22, 26, 0.58); margin-top: 3px; }
.mi .desc { font-size: 15.5px; color: rgba(22, 22, 26, 0.75); margin-top: 8px; max-width: 640px; }
.mi .rsv {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}
.mi .rsv:hover { color: var(--red); }

/* small grouped menus (add-ons) */
.mini-menus { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.mini-menu h4 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 15px;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 10px;
  margin-bottom: 6px;
}
.mini-menu .ci { display: flex; align-items: baseline; gap: 10px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.mini-menu .ci:last-child { border-bottom: none; }
.mini-menu .ci .dots { flex: 1; border-bottom: 2px dotted rgba(22, 22, 26, 0.28); position: relative; top: -4px; min-width: 16px; }
.mini-menu .ci .pr { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--red); white-space: nowrap; }
.mini-menu .note { font-style: italic; font-size: 13.5px; color: rgba(22, 22, 26, 0.58); margin-top: 10px; }

/* ---------- feature band (navy, e.g. grazing table) ---------- */
.feature-band {
  background: var(--navy);
  color: var(--cream);
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 44px;
  align-items: center;
  margin-top: 46px;
}
.feature-band h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 28px;
}
.feature-band .meta { font-style: italic; color: rgba(250, 246, 239, 0.65); margin-top: 4px; font-size: 15px; }
.feature-band p.desc { color: rgba(250, 246, 239, 0.8); margin-top: 14px; font-size: 16px; }
.feature-band .fb-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 46px;
  color: var(--cream);
  line-height: 1;
}
.feature-band .fb-side { text-align: center; }
.feature-band .fb-side .btn { margin-top: 22px; }

/* ---------- route (plotted course) ---------- */
.route {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 26px;
}
.route::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 16.6%;
  right: 16.6%;
  border-top: 2px dashed rgba(22, 22, 26, 0.32);
}
.wp { text-align: center; position: relative; padding-top: 46px; }
.wp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 5px var(--cream);
  z-index: 1;
}
.route.on-alt .wp::before { box-shadow: 0 0 0 5px var(--white); }
.wp h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 19px;
  margin-bottom: 10px;
}
.wp p { font-size: 15.5px; color: rgba(22, 22, 26, 0.75); max-width: 300px; margin: 0 auto; }

/* ---------- tide table (hours) ---------- */
.tide { max-width: 680px; margin: 0 auto; border: 2px solid var(--ink); background: var(--white); }
.tide-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--cream);
  padding: 13px 22px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tide-head .coords { font-size: 11px; }
.tide-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 15px 22px;
  border-bottom: 1px dashed var(--line);
  font-size: 15.5px;
}
.tide-row:last-child { border-bottom: none; }
.tide-row .tl {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
}
.tide-row .tdots { flex: 1; border-bottom: 2px dotted rgba(22, 22, 26, 0.28); position: relative; top: -4px; }
.tide-row .tv { font-family: var(--display); font-weight: 500; font-size: 15px; white-space: nowrap; }

/* ---------- pull quote ---------- */
.pullquote { max-width: 880px; margin: 0 auto; position: relative; padding-left: 96px; }
.pullquote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -26px;
  font-family: var(--body);
  font-size: 150px;
  line-height: 1;
  color: var(--red);
}
.pullquote blockquote {
  font-size: clamp(19px, 2.3vw, 24px);
  font-style: italic;
  line-height: 1.55;
  color: rgba(22, 22, 26, 0.78);
}
.pullquote .attr {
  margin-top: 20px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ---------- cards (kept for informational groupings) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  padding: 34px 30px;
}
.card .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.3em;
}
.card h3 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 22px;
  margin: 8px 0 12px;
}
.card p { font-size: 16px; color: rgba(22, 22, 26, 0.75); }

/* ---------- splits ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split h2 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(26px, 3.6vw, 36px);
  margin: 8px 0 16px;
}
.split .eyebrow { text-align: left; text-indent: 0; }
.split p { margin-bottom: 14px; color: rgba(22, 22, 26, 0.78); }
.harbor-list { list-style: none; margin-top: 8px; columns: 2; }
.harbor-list li {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13.5px;
  padding: 8px 0 8px 24px;
  position: relative;
  break-inside: avoid;
}
.harbor-list li::before {
  content: "⚓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 12px;
}

/* ---------- photography ---------- */
/* framed like a chart plate: navy field behind, brass hairline over the image */
.photo {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(185, 142, 74, 0.45);
  pointer-events: none;
}
.photo.tall { aspect-ratio: 3 / 4; }
.photo.wide { aspect-ratio: 4 / 3; }
.photo.pano { aspect-ratio: 16 / 9; }
.photo.square { aspect-ratio: 1 / 1; }

figure.shot { margin: 0; }
figure.shot figcaption {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: rgba(22, 22, 26, 0.58);
  margin-top: 11px;
}
.band-navy figure.shot figcaption,
.quote-panel figure.shot figcaption { color: rgba(250, 246, 239, 0.6); }

.gallery { display: grid; gap: 22px; }
.gallery.g2 { grid-template-columns: repeat(2, 1fr); }
.gallery.g3 { grid-template-columns: repeat(3, 1fr); }
.gallery.g4 { grid-template-columns: repeat(4, 1fr); }

/* the tuna mark from BALBOA_FISH_HORIZ.ai */
.fish { display: block; width: min(340px, 70%); height: auto; }
.fish-rule {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 0 46px;
}
.fish-rule .ln { flex: 1; height: 2px; background: var(--line); }
.fish-rule img { width: clamp(150px, 26vw, 240px); height: auto; }

/* ---------- chart plate (photo placeholder) ---------- */
.photo-ph {
  background: var(--navy);
  min-height: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 36px;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(250, 246, 239, 0.5);
}
.photo-ph::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(185, 142, 74, 0.45);
  pointer-events: none;
}
.photo-ph::after {
  content: "⚓";
  font-size: 54px;
  line-height: 1;
  color: rgba(185, 142, 74, 0.55);
  order: -1;
}

/* ---------- navy promo band ---------- */
.band-navy { background: var(--navy); color: var(--cream); padding: 84px 0; }
.band-navy .eyebrow { color: var(--gold); text-align: left; text-indent: 0; }
.band-navy h2 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 8px 0 16px;
}
.band-navy p { color: rgba(250, 246, 239, 0.75); margin-bottom: 14px; }

/* ---------- quote form panel ---------- */
.quote-panel {
  background: var(--navy);
  color: var(--cream);
  padding: 84px 0;
}
.quote-panel .eyebrow { color: var(--gold); }
.quote-panel h2.title { color: var(--cream); }
.quote-panel p.sub { color: rgba(250, 246, 239, 0.75); }
form.quote {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
form.quote label {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11.5px;
  margin-bottom: 7px;
  color: rgba(250, 246, 239, 0.8);
}
form.quote input, form.quote select, form.quote textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(250, 246, 239, 0.25);
  background: rgba(0, 0, 0, 0.22);
  color: var(--cream);
  font-family: var(--body);
  font-size: 15.5px;
}
form.quote input:focus, form.quote select:focus, form.quote textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 0;
}
form.quote .full { grid-column: 1 / -1; }
form.quote textarea { min-height: 120px; resize: vertical; }
form.quote button {
  grid-column: 1 / -1;
  cursor: pointer;
  border: none;
  justify-self: center;
  min-width: 280px;
}
.quote-note { text-align: center; font-size: 14px; color: rgba(250, 246, 239, 0.6); margin-top: 18px; font-style: italic; }
.quote-alt { text-align: center; margin-top: 26px; font-family: var(--display); letter-spacing: 0.12em; text-transform: uppercase; font-size: 13px; }
.quote-alt a { color: var(--gold); }

/* ---------- footer ---------- */
footer.site {
  background: var(--ink);
  color: rgba(250, 246, 239, 0.8);
  padding: 64px 0 40px;
  font-size: 15px;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }
footer.site h4 {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--cream);
  margin-bottom: 16px;
}
footer.site a { color: var(--gold); text-decoration: none; }
footer.site a:hover { text-decoration: underline; }
footer.site ul { list-style: none; }
footer.site li { padding: 4px 0; }
.foot-brand .fm-name {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  color: var(--cream);
  line-height: 1.15;
}
.foot-brand .fm-name span { color: var(--red); }
.foot-brand p { margin-top: 12px; max-width: 300px; }
.legal {
  border-top: 1px solid rgba(250, 246, 239, 0.15);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(250, 246, 239, 0.55);
}
.legal .coords { display: block; margin-bottom: 8px; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .masthead { grid-template-columns: 1fr; gap: 16px; padding: 26px 20px 20px; }
  .mast-left { display: none; }
  .mast-right { text-align: center; justify-self: center; }
  .mast-right .ms-top { margin: 0 auto; }
  a.ms-phone { font-size: 21px; }
}
@media (max-width: 900px) {
  .cards, .mini-menus { grid-template-columns: 1fr; }
  .gallery.g3, .gallery.g4 { grid-template-columns: repeat(2, 1fr); }
  .fish-rule { margin-bottom: 34px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  form.quote { grid-template-columns: 1fr; }
  .feature-band { grid-template-columns: 1fr; padding: 40px 32px; text-align: left; }
  .feature-band .fb-side { text-align: left; }
  .route { grid-template-columns: 1fr; gap: 0; }
  .route::before { left: 6px; top: 8px; bottom: 30px; right: auto; border-top: none; border-left: 2px dashed rgba(22, 22, 26, 0.32); }
  .wp { text-align: left; padding: 0 0 34px 40px; }
  .wp::before { left: 0; top: 4px; transform: none; }
  .wp p { margin: 0; max-width: none; }
  .led { grid-template-columns: 70px 1fr; gap: 22px; }
  .led .n { font-size: 44px; }
  .pullquote { padding-left: 0; padding-top: 54px; }
  .pullquote::before { top: -18px; font-size: 110px; }
}
@media (max-width: 700px) {
  .br-desktop { display: none; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .gallery.g2, .gallery.g3, .gallery.g4 { grid-template-columns: 1fr; }
  nav.main a { height: 42px; padding: 2px 12px 0; letter-spacing: 0.14em; }
  .harbor-list { columns: 1; }
  .mi-top { flex-wrap: wrap; }
  .tide-row .tl { font-size: 12.5px; }
}

/* honeypot field — hidden from people, visible to bots */
.hp { display: none !important; }
