/* Waconia Marine — Loonworks Sites preview.
   Nautical-chart boatyard: chart-paper whites, deep-water navy, hull-bottom
   red. Barlow Condensed caps as chart labels; Lora italic for water names
   (the cartographic convention). Signature: the depth-contour course chart
   in the hero, plotting Lake Minnetonka → the shop. */

:root {
  /* Ken, 2026-08-28: "too white" — ground and cards both came off
     printer-white. Page ground drops a step, cards move to warm stock. */
  --paper: #e9efee;
  --card: #fbf9f4;
  --shallow: #d5e6e8;
  --water: #a8c9ce;
  --ink: #14293a;
  --slate: #4e6572;
  --hull: #b23a29;
  --hull-deep: #8c2c1f;
  --line: #c3d5d6;

  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --water-face: "Lora", Georgia, serif;
  --body: "Source Sans 3", "Helvetica Neue", sans-serif;
  --shell: 68rem;

  /* Ken, 2026-08-28: corners read too sharp. One scale, three steps. */
  --r: 14px;      /* cards, frames, callouts */
  --r-sm: 9px;    /* inner images, chips, map furniture */
  --r-pill: 999px;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img, svg { max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration-color: var(--water); text-underline-offset: 3px; }
a:hover { color: var(--hull); text-decoration-color: var(--hull); }

.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--paper); padding: .5rem 1rem; z-index: 99; }
.skip:focus { left: 0; }
:focus-visible { outline: 2px solid var(--hull); outline-offset: 3px; }

.shell { max-width: var(--shell); margin-inline: auto; padding-inline: 1.4rem; }

/* ---------- type ---------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--hull);
  margin-bottom: .5rem;
}
.eyebrow .coord { color: var(--slate); letter-spacing: .12em; }

.lede { font-size: 1.16rem; color: var(--slate); max-width: 56ch; }
.small { font-size: .9rem; color: var(--slate); }

.water-name { font-family: var(--water-face); font-style: italic; }
em { font-family: var(--water-face); font-style: italic; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block; text-decoration: none;
  font-family: var(--display); font-weight: 600; font-size: 1.15rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); border: 2px solid var(--ink); border-radius: var(--r-pill);
  padding: .5rem 1.4rem; background: transparent;
  transition: background .15s ease, color .15s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); }

.btn-call {
  background: var(--hull); border-color: var(--hull); color: #fff;
  font-size: 1.3rem; line-height: 1.15; padding: .5rem 1.3rem;
  text-align: center;
}
.btn-call:hover { background: var(--hull-deep); border-color: var(--hull-deep); color: #fff; }
.btn-call-label {
  display: block; font-size: .68rem; letter-spacing: .26em; font-weight: 600;
  opacity: .85;
}

/* ---------- hail strip (the marquee, retired with honor) ---------- */

.hail { background: var(--ink); color: var(--shallow); }
.hail p { font-size: .85rem; padding-block: .38rem; letter-spacing: .02em; }
.hail strong { color: #fff; }

/* ---------- masthead + chart rule ---------- */

/* Ken, 2026-08-28: the logo file carries an opaque white background, so on the
   warm card stock it reads as a pale rectangle sitting on the header. The two
   surfaces the logo appears on are pure white; every other card stays warm.
   (The real fix is a transparent PNG from Ken — ask when the barn photo comes.) */
.masthead { background: #fff; }

/* A grid, not a wrapping flex row. With the bigger logo the row overflowed at
   about 1000px and dropped the phone button onto a line of its own, leaving a
   band of empty header above it. Explicit areas mean the only thing that ever
   moves is the nav, and it moves to a row of its own rather than the CTA. */
.masthead-row {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
  grid-template-areas: "brand nav call";
  align-items: center; gap: .5rem 1.5rem;
  padding-block: .8rem; max-width: 78rem;
}
.brand { grid-area: brand; }
.masthead .nav { grid-area: nav; }
.masthead .btn-call { grid-area: call; }
.brand { text-decoration: none; color: var(--ink); line-height: 1.1; display: flex; flex-direction: column; gap: .3rem; }
.brand-lockup { height: 4.9rem; width: auto; align-self: flex-start; }
.brand-sub { display: block; font-size: .78rem; letter-spacing: .06em; color: var(--slate); padding-left: .2rem; }
.nav { display: flex; gap: .5rem 1.15rem; flex-wrap: wrap; justify-content: flex-end; }
.nav a {
  text-decoration: none; color: var(--ink);
  font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding-block: .2rem; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--hull); color: var(--ink); }

/* chart border: solid rule with hanging survey ticks */
.chart-rule {
  height: 8px;
  border-top: 2px solid var(--ink);
  background-image: repeating-linear-gradient(90deg, var(--ink) 0 1px, transparent 1px 22px);
  background-size: 100% 6px;
  background-repeat: no-repeat;
}
.chart-rule-flip { transform: scaleY(-1); }

/* ---------- hero ---------- */

/* Ken's water, full-bleed behind the hero. The lead block floats on it as a
   chart-paper card; the map frame floats on it as-is. */
.hero { position: relative; overflow: hidden; background: var(--water); }
.hero-water {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 2.5rem; align-items: center; padding-block: 3rem 3.4rem;
}
.hero-lead {
  background: #fff; border: 2px solid var(--ink); border-radius: var(--r);
  padding: 1.7rem 2rem 1.6rem; box-shadow: 0 10px 30px rgba(20, 41, 58, .18);
}
/* The logo IS the headline: their mark, at the size the sign on the gable
   earns. (450px source — ask Ken for the original file for a crisper 2x.) */
.hero-logo { display: block; width: 100%; max-width: 27rem; height: auto; margin-block: .5rem 1.1rem; } /* opaque-white source on a white card — no blend needed */
.hero .trust {
  font-family: var(--water-face); font-style: italic; font-weight: 500;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem); color: var(--ink);
  max-width: 30ch; margin-bottom: 1.4rem;
}
.hero-ctas { display: flex; gap: .9rem; align-items: center; flex-wrap: wrap; }
.hero .rates-note { margin-top: .8rem; }

/* map: the shop low-left of frame, Lake Minnetonka in view, pushed to the
   shell's right edge, titled underneath */
.map-fig { justify-self: end; width: 100%; max-width: 27rem; box-shadow: 0 10px 30px rgba(20, 41, 58, .18); }
.map-view { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-sm); }
/* Ken, 2026-08-28: don't dead-centre the pin, and zoom in. The shop sits at
   (0.4817, 0.4778) of the tile grid — recovered from the original centred crop,
   which is the ground truth for where the building actually is. To re-aim:
     left = pin_x% - 0.4817 * width%
     top  = pin_y% - 0.4778 * (width% * 4/6 / 0.75)
   and keep left+width >= 100 and top+height >= 100 so no gap shows. At 185%
   the shop lands lower-left with Lake Waconia above it and Minnetonka's west
   arm still in the top-right corner. .map-pin in index.njk must use the same
   pin_x / pin_y. */
.map-view .map-grid { position: absolute; width: 185%; left: -63.11%; top: -5.56%; }
.map-link { display: block; text-decoration: none; color: inherit; }
.map-link:hover .map-view, .map-link:focus-visible .map-view { outline: 2px solid var(--hull); outline-offset: -2px; }
.map-open {
  position: absolute; right: .55rem; bottom: .55rem; z-index: 2;
  font-family: var(--display); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--ink); padding: .3rem .6rem .28rem .7rem; border-radius: var(--r-sm);
  box-shadow: 0 1px 4px rgba(20, 41, 58, .35); transition: background .15s ease;
}
.map-link:hover .map-open { background: var(--hull); }
.map-open-arrow { display: inline-block; margin-left: .15rem; }
.map-title { text-align: left !important; padding: .7rem .35rem .2rem !important; }
.map-title h1 { font-size: clamp(1.45rem, 2.4vw, 1.8rem); font-weight: 700; color: var(--ink); letter-spacing: .02em; margin-bottom: .3rem; }
.map-where { display: block; font-size: .78rem; letter-spacing: .12em; }

@media (prefers-reduced-motion: reduce) {
  .hero-water { display: none; }
  .hero { background: var(--water) url("/assets/water-still.jpg") center / cover; }
}

/* ---------- promo band ---------- */

.promo { background: var(--ink); color: var(--shallow); border-bottom: 3px solid var(--hull); }
.promo-row { display: flex; align-items: center; gap: 1.4rem 2rem; padding-block: 1.1rem; flex-wrap: wrap; }
.promo-flag {
  font-family: var(--display); font-weight: 700; font-size: .8rem; letter-spacing: .24em; text-transform: uppercase;
  background: var(--hull); color: #fff; padding: .35rem .7rem .3rem .8rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - .6rem) 50%, 100% 100%, 0 100%);
  padding-right: 1.2rem; flex: 0 0 auto;
}
.promo-tier { flex: 1 1 20rem; }
.promo-head { font-family: var(--display); font-weight: 600; font-size: clamp(1.35rem, 2.6vw, 1.8rem); text-transform: uppercase; letter-spacing: .03em; line-height: 1.1; color: #fff; }
.promo-price {
  color: #fff; font-weight: 700; padding: 0 .35rem; background: var(--hull); border-radius: var(--r-sm); margin-left: .15rem;
  position: relative; display: inline-block; overflow: hidden;
  animation: promo-beat 3.2s ease-in-out infinite;
}
/* the 90s <blink>, grown up: a halo that breathes and a sheen that sweeps
   the price once a beat; the pennant brightens on the off-beat. ~0.3 Hz,
   nowhere near a flash; prefers-reduced-motion switches it all off. */
.promo-price::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .55) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: promo-sheen 3.2s ease-in-out infinite;
}
.promo-flag { animation: promo-flag 3.2s ease-in-out infinite; }
@keyframes promo-beat {
  0%, 100% { box-shadow: 0 0 0 0 rgba(178, 58, 41, 0); }
  45%      { box-shadow: 0 0 0 .38rem rgba(178, 58, 41, .38); }
}
@keyframes promo-sheen {
  0%, 55% { transform: translateX(-130%); }
  85%, 100% { transform: translateX(130%); }
}
@keyframes promo-flag {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.28); }
}
.promo-note { font-size: .95rem; margin-top: .2rem; }
.promo-note strong { color: #fff; }
.promo .btn-call { border-width: 0; flex: 0 0 auto; }

.map-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); border-radius: var(--r-sm); overflow: hidden; }
.map-grid-6 { grid-template-columns: repeat(6, 1fr); }
.map-grid img { display: block; width: 100%; height: auto; }
.map-pin { position: absolute; }
.pin-diamond {
  position: absolute; left: 0; top: 0; width: .9rem; height: .9rem;
  background: var(--hull); border: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 1px 4px rgba(20, 41, 58, .45);
}
.pin-label {
  position: absolute; top: .75rem; left: 0; transform: translateX(-50%);
  white-space: nowrap; font-family: var(--display); font-weight: 700; font-size: .92rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  background: rgba(255, 255, 255, .88); padding: .05rem .5rem; border-radius: var(--r-sm);
  box-shadow: 0 1px 2px rgba(20, 41, 58, .18);
}
.map-attr { display: block; font-size: .62rem; letter-spacing: .08em; opacity: .7; margin-top: .2rem; }

/* ---------- sections ---------- */

.section { padding-block: 3.4rem; }
.section-head { margin-bottom: 1.8rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.section-tint { background: var(--shallow); }

/* ---------- service doors ---------- */

.door-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.1rem; }
.door {
  display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  border: 2px solid var(--ink); border-radius: var(--r); background: var(--card);
  padding: 1.2rem 1.25rem 1.35rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.door:hover { color: var(--ink); transform: translateY(-3px); box-shadow: 0 6px 0 var(--water); }
.door .door-label {
  display: block; font-family: var(--display); font-weight: 600; font-size: 1.35rem;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: .35rem;
}
.door .door-label::after { content: ""; display: block; width: 2.2rem; height: 3px; background: var(--hull); margin-top: .45rem; }
.door p { font-size: .95rem; color: var(--slate); flex: 1 1 auto; }
/* Ken, 2026-08-28: the cards didn't read as clickable. They get a button. */
.door-cta {
  align-self: flex-start; margin-top: 1.1rem;
  font-family: var(--display); font-weight: 600; font-size: .95rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--hull); border-radius: var(--r-pill);
  padding: .35rem 1.05rem .3rem;
  transition: background .15s ease;
}
.door:hover .door-cta, .door:focus-visible .door-cta { background: var(--hull-deep); }

/* ---------- the boating year ---------- */

.year-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 1.1rem; }
.year-card { border-left: 3px solid var(--hull); background: var(--card); padding: 1.1rem 1.3rem; border-radius: 0 var(--r) var(--r) 0; }
.year-card.spring { border-left-color: var(--water); }
.year-card h3 { font-size: 1.3rem; margin-bottom: .3rem; }
.year-card p { font-size: .97rem; color: var(--slate); }
.year-card .season-tag { font-family: var(--display); letter-spacing: .2em; text-transform: uppercase; font-size: .8rem; color: var(--hull); }
.year-card.spring .season-tag { color: var(--slate); }

/* ---------- decontamination callout ---------- */

.decon {
  border: 2px solid var(--ink); border-radius: var(--r); background: var(--card);
  padding: 1.6rem 1.8rem; display: flex; gap: 1.4rem; align-items: flex-start; flex-wrap: wrap;
}
.decon-badge {
  flex: 0 0 auto; width: 4.6rem; height: 4.6rem; border-radius: 50%;
  border: 3px solid var(--ink); background: var(--shallow);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: .72rem;
  letter-spacing: .1em; text-align: center; line-height: 1.25; text-transform: uppercase;
}
.decon-logo { flex: 0 0 auto; width: 4.8rem; height: auto; }

/* Ken, 2026-08-28: storage customers jumping the service line is the biggest
   thing they sell, and it was sitting in a quiet grey box. Now it's the
   loudest block on the page — hull red, white type, its own pennant. */
.decon.priority {
  background: linear-gradient(135deg, var(--hull) 0%, var(--hull-deep) 100%);
  border-color: var(--hull-deep); color: #fff;
  box-shadow: 0 12px 28px rgba(140, 44, 31, .26);
  align-items: center; justify-content: space-between; gap: 1.1rem 1.8rem;
  position: relative; overflow: hidden;
}
/* survey hatching in the far corner — the band is wide and was reading as a
   flat slab of red once the text stopped filling it. */
.decon.priority::after {
  content: ""; position: absolute; right: -3rem; top: -50%; width: 16rem; height: 200%;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .11) 0 5px, transparent 5px 19px);
  pointer-events: none;
}
.decon.priority > * { position: relative; z-index: 1; }
.decon.priority .decon-body { flex: 1 1 24rem; }
.decon.priority h2 { color: #fff; font-size: clamp(1.55rem, 3vw, 2.05rem); }
.decon.priority p { color: rgba(255, 255, 255, .93); }
.decon.priority p strong { color: #fff; }
.decon.priority a:not(.btn) { color: #fff; }
/* the same pennant the promo band flies, inverted — white on the red block */
.priority-flag {
  flex: 0 0 auto; align-self: center;
  font-family: var(--display); font-weight: 700; font-size: .82rem;
  letter-spacing: .22em; text-transform: uppercase; text-align: center;
  color: var(--hull-deep); background: #fff;
  padding: .5rem 1.5rem .45rem .95rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - .55rem) 50%, 100% 100%, 0 100%);
}
.btn-ghost {
  display: inline-block; flex: 0 0 auto; color: #fff; border-color: #fff;
  font-size: 1rem; padding: .45rem 1.3rem;
}
.btn-ghost:hover { background: #fff; color: var(--hull-deep); }
.decon-body { flex: 1 1 22rem; }
.decon h2, .decon h3 { font-size: 1.5rem; margin-bottom: .35rem; }
.decon p { color: var(--slate); font-size: .98rem; }

/* ---------- photos from the shop ---------- */

.photo-frame { margin: 0; background: var(--card); border: 2px solid var(--ink); border-radius: var(--r); padding: .45rem; }
.photo-frame img { display: block; width: 100%; height: auto; border-radius: var(--r-sm); }
.photo-frame figcaption {
  font-family: var(--display); font-size: .82rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--slate); padding: .5rem .2rem .1rem; text-align: center;
}
.who-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem; align-items: start; }
.who-body .photo-frame { max-width: 15rem; }
.who-body p { margin-top: 1.1rem; max-width: 44ch; }
.seq-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 2.4rem; align-items: start; }
.seq-grid .photo-frame { max-width: 24rem; justify-self: end; }

@media (max-width: 760px) {
  .who-grid, .seq-grid { grid-template-columns: 1fr; }
  .seq-grid .photo-frame { justify-self: start; }
}

/* ---------- testimonials ---------- */

.t-grid { display: grid; gap: 1.1rem; }
@media (min-width: 700px) { .t-grid { grid-template-columns: 1fr 1fr; } }
.t-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 1.2rem 1.3rem; }
.t-salute { font-family: var(--water-face); font-style: italic; font-size: 1.1rem; color: var(--hull); margin-bottom: .3rem; }
.t-card blockquote { font-size: .97rem; color: var(--ink); }
.t-card figcaption { margin-top: .6rem; font-family: var(--display); letter-spacing: .14em; text-transform: uppercase; font-size: .82rem; color: var(--slate); }

/* ---------- brands & partners ---------- */

.brand-strip { display: flex; flex-wrap: wrap; gap: .8rem; align-items: stretch; }
.brand-card {
  display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: .55rem .9rem; min-height: 3.6rem;
}
.brand-card img { display: block; width: auto; max-height: 2.6rem; }
.partner-row { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; }
.partner-row a { font-size: .97rem; }

/* ---------- service page lists ---------- */

.svc-list { list-style: none; padding: 0; display: grid; gap: .7rem; max-width: 44rem; }
.svc-list li { display: flex; gap: .8rem; align-items: baseline; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: .75rem 1rem; }
.svc-list li::before { content: "•"; color: var(--hull); font-weight: 700; }
.svc-list strong { font-family: var(--display); font-weight: 600; font-size: 1.12rem; letter-spacing: .04em; text-transform: uppercase; }

/* haul → launch sequence (a real sequence, so it gets numbers) */
.seq { list-style: none; counter-reset: leg; padding: 0; display: grid; gap: 1rem; max-width: 44rem; }
.seq li { counter-increment: leg; display: flex; gap: 1rem; align-items: flex-start; }
.seq li::before {
  content: counter(leg, decimal-leading-zero);
  font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--hull);
  border-bottom: 2px solid var(--hull); line-height: 1.3; flex: 0 0 auto;
}
.seq h3 { font-size: 1.2rem; margin-bottom: .15rem; }
.seq p { font-size: .97rem; color: var(--slate); }

/* ---------- call band ---------- */

.call-band { background: var(--ink); color: var(--shallow); }
.call-band .shell { padding-block: 2.6rem; display: flex; gap: 1.6rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.call-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.call-band p { max-width: 46ch; }
.call-band .btn-call { border-width: 0; }

/* ---------- contact page ---------- */

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 1.1rem; }
.contact-card { background: var(--card); border: 2px solid var(--ink); border-radius: var(--r); padding: 1.3rem 1.4rem; }
.contact-card h2 { font-size: 1.4rem; margin-bottom: .5rem; }
.contact-card .big {
  font-family: var(--display); font-weight: 700; font-size: 1.9rem; letter-spacing: .03em;
  display: inline-block; margin-bottom: .2rem; text-decoration: none;
}
.contact-card .big:hover { color: var(--hull); }
.contact-card p { font-size: .97rem; color: var(--slate); }
.contact-card p + p { margin-top: .35rem; }

/* ---------- footer ---------- */

.footer { background: var(--paper); margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1.6rem; padding-block: 2.4rem 1.4rem; }
.footer-brand { font-family: var(--display); font-weight: 700; font-size: 1.35rem; text-transform: uppercase; letter-spacing: .05em; }
.footer-head { font-family: var(--display); font-weight: 600; font-size: .95rem; letter-spacing: .2em; text-transform: uppercase; color: var(--hull); margin-bottom: .4rem; }
.footer p { font-size: .95rem; }
.footer-decon { margin-top: .5rem; }
.seasonal { font-weight: 600; font-size: .85em; letter-spacing: .12em; color: var(--slate); }
.hours-head {
  font-family: var(--display); font-weight: 600; font-size: .95rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  margin-top: .7rem;
}
.barn-frame img { aspect-ratio: 22 / 9; object-fit: cover; }
.footer-legal { border-top: 1px solid var(--line); padding-block: .9rem; }
.footer-legal p { font-size: .85rem; color: var(--slate); }

/* ---------- responsive ---------- */

/* Single row needs roughly 68rem of content in a 78rem shell; below this the
   nav drops to its own line while brand-left / call-right holds. */
@media (max-width: 1200px) {
  .masthead-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand call" "nav nav";
  }
  .masthead .nav { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.8rem; padding-block: 2rem 2.4rem; }
  .map-fig { justify-self: start; max-width: 27rem; }
  .hero-lead { padding: 1.3rem 1.2rem 1.2rem; }
  .hero-logo { max-width: 22rem; }
}

@media (max-width: 700px) {
  .masthead-row {
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "nav" "call";
    gap: .8rem;
  }
  .masthead .nav { gap: .5rem 1rem; }
  .masthead .btn-call { justify-self: stretch; }
  .btn-call { flex: 1 1 100%; }
  .section { padding-block: 2.4rem; }
  .promo-row { gap: .9rem; }
  .promo .btn-call { flex: 1 1 100%; }
}
