/* ==========================================================================
   Golden Logistics — base styles
   Direction B: flat navy/gold/orange blocks, condensed Archivo caps.
   ========================================================================== */

:root {
  --navy:        #0B1F3A;
  --navy-soft:   rgba(11, 31, 58, .72);
  --navy-faint:  rgba(11, 31, 58, .22);
  --gold:        #C79A38;
  --gold-dark:   #9C7724;
  --orange:      #F58220;
  --bone:        #F4F1EA;
  --bone-soft:   rgba(244, 241, 234, .78);
  --bone-faint:  rgba(244, 241, 234, .16);
  --danger:      #B3261E;

  --gutter: 56px;
  --font: Archivo, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--bone);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

/* height:auto keeps the width/height attributes acting as an aspect-ratio
   hint only. Without it, a rule that sets just the width leaves the
   attribute height in force and the image renders stretched. */
img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--orange); }

h1, h2, h3 {
  margin: 0;
  font-weight: 900;
  font-stretch: 68%;
  letter-spacing: -.015em;
  line-height: .92;
  text-transform: uppercase;
}

p { margin: 0; }

.h2 { font-size: clamp(34px, 4vw, 52px); }
.gold { color: var(--gold); }

.eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow--gold { color: var(--gold); }

.section { padding: 88px var(--gutter) 84px; }

/* Skip link — first stop for keyboard and screen readers. */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: var(--navy);
  padding: 14px 22px;
  font-weight: 900;
  z-index: 100;
}
.skip:focus { left: 0; }

/* Visible focus everywhere, since the palette is high-contrast flat colour. */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ── buttons ─────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 20px 34px;
  border: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .28s cubic-bezier(.16, .84, .24, 1), box-shadow .28s ease, opacity .2s ease;
}
.btn--orange { background: var(--orange); color: var(--navy); }
.btn--orange:hover { color: var(--navy); transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--navy); }
.btn--navy { background: var(--navy); color: var(--bone); }
.btn--navy:hover { color: var(--bone); transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--gold); }
.btn--ghost {
  background: transparent;
  border: 2px solid rgba(244, 241, 234, .3);
  color: var(--bone);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.btn--ghost:hover { color: var(--bone); border-color: var(--gold); }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; box-shadow: none; }

/* ── header ──────────────────────────────────────────────────────────────── */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  background: var(--navy);
  border-bottom: 2px solid var(--bone-faint);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header__logo { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--bone);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--gold); }
.nav .btn { padding: 14px 24px; font-size: 13px; }

/* ── hero ────────────────────────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 690px;
  background: var(--navy);
}
.hero__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 74px 44px 74px var(--gutter);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin-bottom: 28px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--navy);
}
.hero__title { font-size: clamp(52px, 7vw, 100px); margin-bottom: 24px; }
.hero__rule { height: 8px; width: 200px; background: var(--orange); margin-bottom: 28px; }
.hero__lede {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(244, 241, 234, .8);
  max-width: 510px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__media { position: relative; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(11, 31, 58, .3) 34%, rgba(11, 31, 58, .08) 100%);
}
.hero__wedge {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 130px;
  background: var(--navy);
  transform: skewX(-9deg) translateX(-64px);
  z-index: 1;
}

/* ── section shells ──────────────────────────────────────────────────────── */

.section--bone { background: var(--bone); color: var(--navy); }
.section--navy { background: var(--navy); }
.section--fleet { background: var(--navy); }

/* The header is sticky, so an anchor that lands flush at the top of the
   viewport lands *under* it. Push every jump target clear of the bar. */
section[id] { scroll-margin-top: 96px; }

.eyebrow--gold-dark { color: var(--gold-dark); }

.icon { display: block; flex-shrink: 0; }

/* Flat block grid: cells separated by 3px of the border colour showing
   through the gap. Used by every "hairline grid" module in the design. */
.blocks {
  display: grid;
  gap: 3px;
  background: var(--navy);
  border: 3px solid var(--navy);
}
.blocks--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.blocks--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.blocks--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.blocks--faint { background: var(--bone-faint); border-color: var(--bone-faint); }

/* Check lists ─ shared by servicios, almacenaje and yarda. */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px 30px; }
.checks--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.check { display: flex; align-items: center; gap: 11px; font-size: 16px; font-weight: 600; }
.check .icon { color: var(--orange); }

/* ── ticker ──────────────────────────────────────────────────────────────── */

.ticker {
  overflow: hidden;
  padding: 15px 0;
  background: var(--gold);
  color: var(--navy);
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
}
/* Two identical rows scroll one row-width and reset, so the loop is seamless. */
.ticker__track { display: flex; width: max-content; animation: ticker 34s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker__row {
  display: flex;
  gap: 40px;
  padding-right: 40px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── nosotros ────────────────────────────────────────────────────────────── */

.about__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 52px;
}
.about__title { font-size: clamp(38px, 4.6vw, 62px); margin-top: 18px; }
.about__lede { font-size: 19px; line-height: 1.65; color: var(--navy-soft); padding-top: 40px; }
.mv { padding: 44px 40px 48px; background: var(--navy); color: var(--bone); }
.mv__text { font-size: 20px; line-height: 1.55; margin-top: 20px; }

/* ── certificaciones ─────────────────────────────────────────────────────── */

.certs { position: relative; padding: 74px var(--gutter); background: var(--navy); overflow: hidden; }
.certs__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.certs::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 20%, rgba(11, 31, 58, .55) 100%);
}
.certs__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.certs__title { margin: 18px 0 20px; }
.certs__lede { font-size: 18px; line-height: 1.6; color: var(--bone-soft); max-width: 520px; }
.certs__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.cert {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 26px;
  border: 2px solid rgba(199, 154, 56, .5);
}
.cert__icon { color: var(--gold); }
.cert__name {
  font-size: 26px;
  font-weight: 900;
  font-stretch: 68%;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.cert__desc { font-size: 14px; line-height: 1.5; color: rgba(244, 241, 234, .65); }

/* ── servicios ───────────────────────────────────────────────────────────── */

.services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 44px;
}
.services__title { font-size: clamp(40px, 5.2vw, 68px); max-width: 700px; }
.services__lede {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(11, 31, 58, .68);
  max-width: 380px;
  margin-bottom: 10px;
}

.tile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 38px 32px 42px;
  background: var(--bone);
  color: var(--navy);
  transition: background .3s ease, color .3s ease, transform .3s cubic-bezier(.16, .84, .24, 1);
}
.tile__top { display: flex; align-items: center; justify-content: space-between; }
.tile__icon { color: var(--gold); }
.tile__num { font-size: 13px; font-weight: 900; letter-spacing: .14em; color: rgba(11, 31, 58, .42); }
.tile__name { font-size: clamp(24px, 2.2vw, 31px); }
.tile__desc { font-size: 15px; line-height: 1.7; color: rgba(11, 31, 58, .68); }
.tile:hover { background: var(--gold); transform: translate(-4px, -4px); }
.tile:hover .tile__icon { color: var(--navy); }
.tile:hover .tile__num { color: rgba(11, 31, 58, .55); }
.tile:hover .tile__desc { color: rgba(11, 31, 58, .75); }

/* Sits flush under the tile grid: the shared edge must stay one 3px line. */
.blocks--extras { grid-template-columns: 1fr 1.35fr; border-top: none; }
.extras__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 40px 34px;
  background: var(--navy);
  color: var(--bone);
}
.extras__title { font-size: clamp(26px, 3vw, 36px); }
.extras__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 40px 34px;
  background: var(--bone);
  color: var(--navy);
}

/* ── flota ───────────────────────────────────────────────────────────────── */

.fleet__head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 40px;
}
.fleet__title { font-size: clamp(36px, 4.4vw, 56px); margin-top: 18px; }
.fleet__lede { font-size: 17px; line-height: 1.65; color: rgba(244, 241, 234, .75); }

.units { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.unit {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 22px 28px;
  border: 2px solid rgba(244, 241, 234, .2);
  transition: border-color .3s ease, transform .3s cubic-bezier(.16, .84, .24, 1);
}
.unit:hover { border-color: var(--gold); transform: translateY(-4px); }
.unit__icon { color: var(--gold); }
.unit__name {
  font-size: 20px;
  font-weight: 900;
  font-stretch: 68%;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.15;
}

/* ── modalidades ─────────────────────────────────────────────────────────── */

.modes { padding: 0 var(--gutter) 84px; background: var(--navy); }
.mode { position: relative; margin: 0; overflow: hidden; height: 300px; }
.mode img { width: 100%; height: 100%; object-fit: cover; }
.mode::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 31, 58, .94) 8%, rgba(11, 31, 58, .15) 62%);
}
.mode__cap {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mode__title {
  font-size: 24px;
  font-weight: 900;
  font-stretch: 68%;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: .95;
}

/* ── split sections (almacenaje, bodega USA, K9) ─────────────────────────── */

.split {
  display: grid;
  background: var(--bone);
  color: var(--navy);
  border-top: 3px solid var(--navy);
}
.split--wh { grid-template-columns: .82fr 1.18fr; }
.split--usa { grid-template-columns: 1fr 1fr; border-bottom: 3px solid var(--navy); }
.split--k9 { grid-template-columns: 1.1fr .9fr; }

.split__media { position: relative; min-height: 660px; overflow: hidden; background: var(--navy); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__wedge--right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 120px;
  background: var(--bone);
  transform: skewX(-9deg) translateX(58px);
}

.split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px var(--gutter) 84px 40px;
}
.split--usa .split__body,
.split--k9 .split__body { padding: 80px 46px 80px var(--gutter); }
.split__lede { font-size: 18px; line-height: 1.6; color: rgba(11, 31, 58, .7); max-width: 560px; margin-bottom: 36px; }
.split--usa .split__lede { font-size: 17px; line-height: 1.65; max-width: 520px; margin-bottom: 30px; }
.split--k9 .split__lede { font-size: 17px; line-height: 1.65; max-width: 540px; margin-bottom: 32px; }
.split__note { font-size: 15.5px; line-height: 1.6; color: rgba(11, 31, 58, .62); }

.tag { display: inline-flex; align-self: flex-start; padding: 7px 14px; margin-bottom: 24px; }
.tag--orange { background: var(--orange); color: var(--navy); }

.wh__title { font-size: clamp(38px, 5vw, 64px); margin-bottom: 22px; }
.usa__title { margin-bottom: 20px; }
.k9__title { font-size: clamp(34px, 4.4vw, 56px); margin-bottom: 20px; }

.stats { margin-bottom: 30px; }
.stat { padding: 22px 20px; background: var(--bone); }
.stat__num { font-size: clamp(24px, 2.6vw, 32px); font-weight: 900; font-stretch: 68%; color: var(--gold); line-height: 1; }
.stat__label { font-size: 14px; margin-top: 6px; color: rgba(11, 31, 58, .72); }
.stats--usa { margin-bottom: 28px; }
.stats--usa .stat__num { font-size: clamp(21px, 2.4vw, 30px); }

.usa__media {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  background: var(--navy);
  border-left: 3px solid var(--navy);
}
.usa__shot { position: relative; overflow: hidden; min-height: 280px; }
.usa__shot img { width: 100%; height: 100%; object-fit: cover; }

.k9__label { color: var(--navy); margin-bottom: 16px; }
.k9__list { list-style: none; padding: 0; max-width: 620px; }
.k9__item { padding: 18px 20px; background: var(--bone); font-size: 16px; font-weight: 600; }
.k9__item--wide { grid-column: span 2; }
.k9__media { position: relative; overflow: hidden; min-height: 560px; border-left: 3px solid var(--navy); }
.k9__media img { width: 100%; height: 100%; object-fit: cover; }

/* ── layout + horario ────────────────────────────────────────────────────── */

.blocks--plan { grid-template-columns: 1.25fr 1fr; }
.plan { display: flex; flex-direction: column; gap: 22px; padding: 44px 40px; background: var(--navy); }
.plan__row { display: flex; gap: 34px; align-items: center; }
.plan__sheet { background: var(--bone); padding: 16px; flex-shrink: 0; }
.plan__sheet img { width: 210px; }
.plan__notes { display: flex; flex-direction: column; gap: 14px; }
.plan__notes p { font-size: 16px; line-height: 1.6; color: rgba(244, 241, 234, .78); }
.plan__notes .plan__dims {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold);
}

.hours {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 44px 40px;
  background: var(--navy);
}
.hours__list { margin: 0; }
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--bone-faint);
}
.hours__row:last-child { border-bottom: 1px solid var(--bone-faint); }
.hours__row dt { font-size: 16px; color: rgba(244, 241, 234, .78); }
.hours__row dd { margin: 0; font-size: 21px; font-weight: 900; font-stretch: 68%; }

/* ── galería ─────────────────────────────────────────────────────────────── */

.gallery { padding: 0 var(--gutter) 80px; background: var(--navy); }
.blocks--gallery { grid-template-columns: 1.4fr 1fr 1fr; }
.gallery__item { position: relative; overflow: hidden; height: 280px; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }

/* ── yarda ───────────────────────────────────────────────────────────────── */

.yard { position: relative; padding: 88px var(--gutter) 84px; background: var(--navy); overflow: hidden; }
.yard__media { position: absolute; right: 0; top: 0; bottom: 0; width: 46%; overflow: hidden; }
.yard__media img { width: 100%; height: 100%; object-fit: cover; }
.yard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(11, 31, 58, .55) 45%, rgba(11, 31, 58, .25) 100%);
}
.yard__wedge {
  position: absolute;
  z-index: 1;
  left: 0; top: 0; bottom: 0;
  width: 140px;
  background: var(--navy);
  transform: skewX(-9deg) translateX(-70px);
}
.yard__body { position: relative; max-width: 720px; }
.yard__title { font-size: clamp(40px, 5.4vw, 68px); margin: 18px 0 22px; }
.yard__lede { font-size: 18px; line-height: 1.6; color: var(--bone-soft); max-width: 560px; margin-bottom: 34px; }
.yard__feats { max-width: 560px; margin-bottom: 34px; }
.yard__plan { background: var(--bone); padding: 18px 20px; }

/* ── ubicación ───────────────────────────────────────────────────────────── */

.loc {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--bone);
  color: var(--navy);
  border-top: 3px solid var(--navy);
}
.loc__map { position: relative; min-height: 520px; overflow: hidden; border-right: 3px solid var(--navy); }
.loc__map img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); }
.loc__pin {
  position: absolute;
  left: 36px;
  bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--orange);
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.loc__body { display: flex; flex-direction: column; justify-content: center; padding: 74px var(--gutter); }
.loc__title { margin: 18px 0 20px; }
.loc__lede { font-size: 16px; line-height: 1.7; color: rgba(11, 31, 58, .7); margin-bottom: 32px; }
.loc__items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 24px; }
.locitem { display: flex; gap: 14px; align-items: flex-start; }
.locitem--inline { align-items: center; }
.locitem__icon { color: var(--gold); margin-top: 4px; }
.locitem--inline .locitem__icon { margin-top: 0; }
.locitem__text { font-size: 16px; line-height: 1.6; font-weight: 500; margin-top: 6px; }
.locitem__link { font-size: 16px; font-weight: 700; color: var(--navy); }
.locitem__link--lg { font-size: 18px; font-weight: 800; }
.locitem__link:hover { color: var(--orange); }

/* ── contacto band ───────────────────────────────────────────────────────── */

.band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding: 92px var(--gutter);
  background: var(--orange);
  color: var(--navy);
  overflow: hidden;
}
.band__body { max-width: 740px; }
.band__title { font-size: clamp(44px, 6vw, 80px); margin-bottom: 20px; }
.band__lede {
  font-size: 19px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(11, 31, 58, .78);
  margin-bottom: 26px;
}
.band__tags { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.band__tags li {
  padding: 8px 14px;
  background: rgba(11, 31, 58, .12);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.band__actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.band__cta { justify-content: space-between; gap: 14px; padding: 24px 34px; font-size: 17px; white-space: nowrap; }
.band__mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border: 2px solid rgba(11, 31, 58, .35);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.band__mail:hover { color: var(--navy); border-color: var(--navy); }

/* ── quote section ───────────────────────────────────────────────────────── */

.section--quote {
  background: var(--bone);
  color: var(--navy);
  border-top: 3px solid var(--navy);
}

.quote {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 3px;
  background: var(--navy);
  border: 3px solid var(--navy);
}

.quote__aside {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 48px 40px;
  background: var(--navy);
  color: var(--bone);
}
.quote__lede { margin-top: 20px; font-size: 16px; line-height: 1.65; color: rgba(244, 241, 234, .75); }
.quote__aside .h2 { margin-top: 18px; }

.steps { list-style: none; margin: 0; padding: 0; }
.steps__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--bone-faint);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(244, 241, 234, .85);
}
.steps__item:last-child { border-bottom: 1px solid var(--bone-faint); }
.steps__num { font-size: 13px; font-weight: 900; letter-spacing: .1em; color: var(--gold); padding-top: 2px; }

/* margin-top:auto pins the phone block to the bottom without stretching the
   gaps above it — space-between left a dead band in the middle of the rail. */
.quote__call { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.quote__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  font-stretch: 68%;
  color: var(--bone);
}
.quote__phone:hover { color: var(--gold); }
.quote__hours { font-size: 14px; color: rgba(244, 241, 234, .55); }

.quote__form { padding: 48px 44px; background: var(--bone); }

/* ── form controls ───────────────────────────────────────────────────────── */

.form { display: flex; flex-direction: column; gap: 26px; }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--merch { grid-template-columns: 1.3fr 1fr 1fr; }

.fld { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.fld--set { border: 0; margin: 0; padding: 0; }

.lbl {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--navy-soft);
  padding: 0;
}
.req { color: var(--orange); }

.inp {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
  border: 2px solid var(--navy-faint);
  border-radius: 0;
  padding: 14px 16px;
  width: 100%;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.inp::placeholder { color: rgba(11, 31, 58, .38); }
.inp:hover { border-color: rgba(11, 31, 58, .45); }
.inp:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 4px 4px 0 rgba(11, 31, 58, .12);
}
.inp--area { resize: vertical; min-height: 110px; line-height: 1.6; }
.inp--select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230B1F3A' stroke-opacity='.5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9.5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.fld--bad .inp { border-color: var(--danger); }
.fld__err { font-size: 13px; font-weight: 700; color: var(--danger); }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 2px solid var(--navy-faint);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, color .25s ease,
              transform .25s cubic-bezier(.16, .84, .24, 1);
}
.chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.chip__input {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.chip__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(11, 31, 58, .35);
  color: transparent;
  flex-shrink: 0;
}
.chip:has(.chip__input:checked) { background: var(--navy); border-color: var(--navy); color: var(--bone); }
.chip:has(.chip__input:checked) .chip__box { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.chip:has(.chip__input:focus-visible) { outline: 3px solid var(--orange); outline-offset: 2px; }

/* honeypot — off-screen rather than display:none, which some bots skip */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.form__note { font-size: 13px; line-height: 1.5; color: rgba(11, 31, 58, .55); max-width: 340px; }

.alert {
  padding: 16px 20px;
  margin-bottom: 22px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  border-left: 6px solid;
}
.alert--error { background: rgba(179, 38, 30, .08); border-color: var(--danger); color: #7A1A15; }
.alert--ok { background: rgba(199, 154, 56, .14); border-color: var(--gold); color: var(--navy); }
.alert[hidden] { display: none; }

/* ── footer ──────────────────────────────────────────────────────────────── */

.site-footer { padding: 46px var(--gutter) 40px; background: var(--navy); border-top: 3px solid var(--gold); }
.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 16px; max-width: 340px; }
.site-footer__logo { align-self: flex-start; height: 40px; width: auto; }
.site-footer__brand p { font-size: 14px; line-height: 1.6; color: rgba(244, 241, 234, .6); }
.site-footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.site-footer__col { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a,
.site-footer__col span:not(.eyebrow) { font-size: 14px; color: rgba(244, 241, 234, .75); line-height: 1.5; }
.site-footer__col a:hover { color: var(--gold); }
.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 241, 234, .14);
  font-size: 13px;
  color: rgba(244, 241, 234, .5);
}
.site-footer__certs { letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: rgba(244, 241, 234, .4); }

/* ── thank-you page ──────────────────────────────────────────────────────── */

.thanks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  min-height: 62vh;
  padding: 88px var(--gutter);
  max-width: 780px;
}
.thanks__lede { font-size: 19px; line-height: 1.6; color: var(--bone-soft); }

/* ── responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1080px) {
  :root { --gutter: 32px; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__media { min-height: 320px; order: -1; }
  .hero__wedge { display: none; }

  .quote { grid-template-columns: 1fr; }
  .grid--merch { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .blocks--3,
  .blocks--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blocks--extras,
  .blocks--plan { grid-template-columns: 1fr; }
  .blocks--gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .about__head { grid-template-columns: 1fr; gap: 26px; margin-bottom: 36px; }
  .about__lede { padding-top: 0; }

  .certs__inner { grid-template-columns: 1fr; gap: 36px; }

  .services__head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services__lede { margin-bottom: 0; max-width: none; }

  .fleet__head { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .units { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .split--wh,
  .split--usa,
  .split--k9,
  .loc { grid-template-columns: 1fr; }
  /* Lead with the photograph once the two columns stack. */
  .split__media { order: -1; min-height: 320px; }
  .split__wedge--right { display: none; }
  .split__body,
  .split--usa .split__body,
  .split--k9 .split__body { padding: 56px var(--gutter); }

  .usa__media,
  .k9__media { border-left: 0; border-top: 3px solid var(--navy); }
  .usa__media { grid-template-rows: none; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .k9__media { min-height: 340px; }

  .loc__map { min-height: 320px; border-right: 0; border-bottom: 3px solid var(--navy); }
  .loc__body { padding: 56px var(--gutter); }

  /* The yarda photo is a background bleed on wide screens; stacking it as a
     plain band keeps the copy readable instead of laying it over the image. */
  .yard { padding-top: 0; }
  .yard__media { position: static; width: auto; height: 280px; margin: 0 calc(var(--gutter) * -1) 34px; }
  .yard__media::after { background: linear-gradient(0deg, rgba(11, 31, 58, .92) 4%, rgba(11, 31, 58, .1) 62%); }
  .yard__wedge { display: none; }
  .yard__body { max-width: none; }

  .band { flex-direction: column; align-items: flex-start; gap: 34px; }
  .band__body { max-width: none; }
  .band__actions { width: 100%; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .section { padding: 56px var(--gutter); }
  .site-header { flex-wrap: wrap; gap: 16px; position: static; }
  .nav { gap: 16px; flex-wrap: wrap; }
  .quote__aside, .quote__form { padding: 32px 24px; }
  .grid--2, .grid--3, .grid--merch { grid-template-columns: 1fr; }
  .form__foot { flex-direction: column; align-items: stretch; }
  .form__foot .btn { justify-content: center; }
  .form__note { max-width: none; }
  /* 44px minimum hit target on touch */
  .chip { padding: 13px 16px; }
  .inp { padding: 15px 16px; }

  /* Header is no longer sticky here, so anchors need no offset. */
  section[id] { scroll-margin-top: 0; }

  .blocks--2,
  .blocks--3,
  .blocks--4,
  .blocks--gallery { grid-template-columns: 1fr; }
  .checks--2,
  .extras__list { grid-template-columns: 1fr; }

  .mv,
  .plan,
  .hours,
  .extras__head,
  .extras__list { padding: 32px 24px; }

  .units { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .modes, .gallery { padding-bottom: 56px; }

  .plan__row { flex-direction: column; align-items: flex-start; gap: 22px; }
  .plan__sheet img { width: 100%; max-width: 240px; }

  .usa__media { grid-template-columns: 1fr; }
  .k9__item--wide { grid-column: auto; }

  .loc__pin { left: 20px; bottom: 20px; padding: 12px 16px; font-size: 13px; }

  .yard { padding-bottom: 56px; }
  .band { padding: 56px var(--gutter); }
  .band__cta, .band__mail { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
