/* ==========================================================================
   AA IMPACT - Concept B "Gulf Modern" - sections.css
   Per-section layout. Bright editorial, asymmetric grid, ruled spec-sheet
   cards, wide margins, one full-bleed navy band. Crisp architectural motion.
   ========================================================================== */

/* ---------- Shared: subtle bone texture / tonal shifts (no flat solids) --- */
.bg-bone {
  background:
    radial-gradient(120% 80% at 85% -10%, rgba(201,164,92,0.06) 0%, transparent 55%),
    radial-gradient(90% 60% at 0% 110%, rgba(12,30,62,0.04) 0%, transparent 60%),
    var(--bone);
}
.bg-bone-panel {
  background:
    linear-gradient(180deg, var(--bone) 0%, var(--bone-panel) 100%);
}
.grain::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Section index tag (editorial "01 / South Florida" corner marker) */
.sec-index {
  font-family: var(--font-label);
  font-size: var(--text-micro);
  letter-spacing: var(--ls-label-2);
  text-transform: uppercase;
  color: var(--cool-gray);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sec-index b { color: var(--gold); font-weight: 600; }

/* ==========================================================================
   S-001  HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(245, 241, 232, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-mid) var(--ease-crisp),
              background-color var(--dur-mid) var(--ease-crisp),
              box-shadow var(--dur-mid) var(--ease-crisp);
}
.site-header.is-stuck {
  border-bottom-color: var(--gold-line);
  box-shadow: 0 12px 30px -24px rgba(10,18,32,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 84px;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Wordmark (refined monochrome navy lockup) */
.wordmark { display: inline-flex; align-items: center; gap: 0.85rem; }
.wordmark__mark {
  width: 34px; height: 34px; flex: none;
  border: 1.5px solid var(--navy);
  border-radius: 3px;
  position: relative;
  display: grid;
  place-items: center;
}
.wordmark__mark::before {
  content: "";
  position: absolute; inset: 6px;
  background:
    repeating-linear-gradient(180deg, var(--navy) 0 2px, transparent 2px 6px);
  opacity: 0.9;
}
.wordmark__mark::after {
  content: "";
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--gold);
}
.wordmark__text { display: flex; flex-direction: column; line-height: 1; }
.wordmark__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.wordmark__name .amp { color: var(--gold); }
.wordmark__sub {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cool-gray);
  margin-top: 4px;
  padding-left: 2px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav__list { display: flex; align-items: center; gap: 2.1rem; }
.nav__item { position: relative; }
.nav__link {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  padding: 0.4rem 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-crisp);
}
.nav__link:hover::after, .nav__item.is-open > .nav__link::after { transform: scaleX(1); }
.nav__caret { width: 9px; height: 9px; stroke: currentColor; }

/* Dropdown (Dealers) */
.nav__drop {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-mid) var(--ease-crisp), transform var(--dur-mid) var(--ease-crisp);
}
.nav__item:hover .nav__drop, .nav__item.is-open .nav__drop {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__drop a {
  display: block;
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem;
  color: var(--navy);
  border-radius: var(--r-sm);
  transition: background-color var(--dur-fast) var(--ease-crisp), color var(--dur-fast) var(--ease-crisp);
}
.nav__drop a:hover { background: var(--bone); color: var(--navy); }
.nav__drop a small { display:block; color: var(--cool-gray); font-size: 0.72rem; letter-spacing: 0.02em; }

.header-actions { display: flex; align-items: center; gap: 1.4rem; }
.header-login {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.header-login svg { width: 15px; height: 15px; stroke: var(--gold); }

/* Hamburger */
.hamburger { display: none; width: 44px; height: 44px; position: relative; }
.hamburger span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--navy);
  transition: transform var(--dur-mid) var(--ease-crisp), opacity var(--dur-fast) var(--ease-crisp);
}
.hamburger span:nth-child(1){ top: 15px; }
.hamburger span:nth-child(2){ top: 21px; }
.hamburger span:nth-child(3){ top: 27px; }
.hamburger.is-active span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger.is-active span:nth-child(2){ opacity: 0; }
.hamburger.is-active span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 84px 0 0 0;
  background: var(--bone);
  z-index: 90;
  padding: 2rem var(--gutter) 3rem;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-crisp);
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--navy);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gold-line);
}
.mobile-menu .btn { margin-top: 1.6rem; }

/* ==========================================================================
   S-002  HERO  (editorial asymmetric)
   ========================================================================== */
/* Full-bleed weather-video hero. Large headline overlaid ON the footage; a
   bone gradient scrim on the left keeps the navy type legible as the clip
   cycles sunny -> storm -> hail (background luminance swings hard). */
.hero { position: relative; overflow: hidden; min-height: 92vh; display: flex; }
.hero__media { position: absolute; inset: 0; z-index: 0; background: var(--navy-midnight); }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 64% center;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(245,241,232,0.60) 0%, rgba(245,241,232,0) 15%),
    linear-gradient(101deg,
      rgba(245,241,232,0.97) 0%,
      rgba(245,241,232,0.90) 28%,
      rgba(245,241,232,0.52) 48%,
      rgba(245,241,232,0.10) 66%,
      rgba(245,241,232,0) 78%);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%;
  display: flex; align-items: flex-end;
  padding-block: clamp(6rem, 11vh, 9.5rem) clamp(3rem, 6vh, 5.5rem);
}
.hero__content { position: relative; max-width: 42rem; }
.hero__index { margin-bottom: 1.5rem; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  /* Large and overlaid — 3 short phrases, one per line. */
  font-size: clamp(2.4rem, 1.35rem + 3.1vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero__title .lg, .hero__title .accent { display: block; white-space: nowrap; }
.hero__title .accent { color: var(--gold); }
.hero__rule { width: 72px; height: 2px; background: var(--gold); margin: 0 0 1.5rem; }
.hero__lede {
  max-width: 42ch; color: var(--graphite);
  font-size: clamp(1rem, 0.94rem + 0.28vw, 1.18rem);
  line-height: 1.55; margin-bottom: 2.2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.3rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--gold-line);
  max-width: 44ch;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 0.35rem; max-width: 20ch; }
.hero__meta-item .k {
  font-family: var(--font-label); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}
.hero__meta-item .v { font-size: 0.9rem; color: var(--graphite); line-height: 1.4; }

@keyframes pulse { 0%,100%{ opacity: 1; } 50%{ opacity: 0.35; } }

/* ==========================================================================
   S-003  PROOF BAND (ruled spec-badge row)
   ========================================================================== */
.proof { padding-block: clamp(3.5rem, 5vw, 5.5rem); position: relative; overflow: hidden; }
.proof__head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem; }
.proof__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--navy-line);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0));
  overflow: hidden;
}
.proof__cell {
  padding: 2.2rem 1.9rem;
  border-right: 1px solid var(--navy-line);
  position: relative;
}
.proof__cell:last-child { border-right: 0; }
.proof__cell .num {
  font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.24em;
  color: var(--gold); font-weight: 600; margin-bottom: 1.4rem; display: block;
}
.proof__icon { width: 34px; height: 34px; stroke: var(--navy); stroke-width: 1.4; fill: none; margin-bottom: 1.1rem; }
.proof__cell h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.12rem;
  color: var(--navy); letter-spacing: -0.01em; margin-bottom: 0.6rem; line-height: 1.2;
}
.proof__cell p { font-size: 0.9rem; color: var(--graphite); line-height: 1.55; }

/* ==========================================================================
   S-004  COLLECTIONS (photo-led spec-sheet cards)
   ========================================================================== */
.collections__head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: end;
  margin-bottom: 3.4rem;
}
.collections__head p { color: var(--graphite); max-width: 46ch; }
.collections__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.col-card {
  background: var(--white);
  border: 1px solid var(--navy-line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--dur-mid) var(--ease-crisp),
              box-shadow var(--dur-mid) var(--ease-crisp),
              border-color var(--dur-mid) var(--ease-crisp);
}
.col-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: var(--gold-line-2); }
.col-card__media { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; background: var(--bone-deep); }
.col-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-crisp); }
.col-card:hover .col-card__media img { transform: scale(1.05); }
.col-card__media--contain { display: grid; place-items: center; padding: 1.75rem; background: linear-gradient(158deg, #e9edf2 0%, #d3dae3 100%); }
.col-card__media--contain::after {
  content: ""; position: absolute; left: 12%; right: 12%; bottom: 12%; height: 10%;
  background: radial-gradient(50% 100% at 50% 0%, rgba(12,30,62,0.18), transparent 70%);
  filter: blur(3px); z-index: 0;
}
.col-card__media--contain img { position: relative; z-index: 1; }
.col-card__media--contain img { width: auto; height: auto; max-height: 100%; object-fit: contain; }
.col-card__num {
  position: absolute; top: 14px; left: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--white); letter-spacing: 0.02em; z-index: 2;
  text-shadow: 0 2px 12px rgba(10,18,32,0.5);
}
.col-card__flag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: 0.32rem 0.6rem; border-radius: var(--r-chip); font-weight: 600;
}
.col-card__body { padding: 1.9rem 1.8rem 2rem; display: flex; flex-direction: column; flex: 1; }
.col-card__series {
  font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem;
}
.col-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 0.7rem; }
.col-card__desc { font-size: 0.94rem; color: var(--graphite); line-height: 1.55; margin-bottom: 1.4rem; }
.col-card__specs { list-style: none; margin: 0 0 1.7rem; padding: 1.2rem 0 0; border-top: 1px solid var(--navy-line); display: grid; gap: 0.55rem; }
.col-card__specs li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.82rem; }
.col-card__specs .sk { color: var(--cool-gray); letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.68rem; font-family: var(--font-label); font-weight: 500; }
.col-card__specs .sv { color: var(--navy); font-weight: 500; text-align: right; }
.col-card__cta { margin-top: auto; }

/* ==========================================================================
   S-005  CONFIGURATOR TEASER (bordered spec-sheet card + CSS door)
   ========================================================================== */
.configurator { position: relative; overflow: hidden; }
.config-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  background: var(--white);
  border: 1px solid var(--navy-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
/* Left: door stage */
.config-stage {
  position: relative;
  padding: clamp(1.4rem, 2.4vw, 2.4rem);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(201,164,92,0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--bone) 0%, var(--bone-deep) 100%);
  display: grid;
  place-items: center;
  border-right: 1px solid var(--navy-line);
}
.config-stage__label {
  position: absolute; top: 20px; left: 22px;
  font-family: var(--font-label); font-size: 0.66rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--cool-gray);
}
.config-stage__floor {
  position: absolute; left: 0; right: 0; bottom: 0; height: 34%;
  background: linear-gradient(180deg, transparent, rgba(12,30,62,0.06));
}

/* The CSS-rendered full-view door */
.door-wrap { position: relative; width: min(100%, 660px); }
.door-wrap::after { /* grounding contact shadow */
  content: ""; position: absolute; left: 5%; right: 5%; bottom: -8%;
  height: 13%; z-index: -1;
  background: radial-gradient(50% 100% at 50% 0%, rgba(10,18,32,0.40), transparent 72%);
  filter: blur(9px);
}
.door {
  --frame: #1A1C1E;
  --frame-hi: rgba(255,255,255,0.16);
  --frame-lo: rgba(0,0,0,0.35);
  --glass: rgba(47, 93, 79, 0.60);
  --glass-2: rgba(47, 93, 79, 0.34);
  --glass-base: #11231d; /* OPAQUE dark-glass backdrop so the frame never shows through */
  position: relative;
  aspect-ratio: 16 / 9.4;
  border-radius: 5px;
  padding: 11px;
  background:
    linear-gradient(180deg, var(--frame-hi), transparent 20%),
    var(--frame);
  box-shadow: var(--sh-lg), inset 0 0 0 1px rgba(0,0,0,0.25);
  display: grid;
  gap: 9px;
  transition: background-color var(--dur-mid) var(--ease-crisp);
}
.door::after { /* subtle frame sheen */
  content: ""; position: absolute; inset: 0; border-radius: 5px;
  background: linear-gradient(115deg, rgba(255,255,255,0.12) 0%, transparent 22%, transparent 78%, rgba(255,255,255,0.06) 100%);
  pointer-events: none;
}
.door__panel {
  position: relative;
  border-radius: 2px;
  /* Bottom layer is an OPAQUE base — the tint gradients sit on top of it, so the
     door frame (incl. the wood grain) can never bleed through the glass. */
  background:
    linear-gradient(120deg, rgba(255,255,255,0.30) 0%, transparent 32%, transparent 66%, rgba(255,255,255,0.10) 100%),
    linear-gradient(180deg, var(--glass) 0%, var(--glass-2) 100%),
    var(--glass-base);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -2px 6px rgba(0,0,0,0.22);
  overflow: hidden;
  transition: background-color var(--dur-mid) var(--ease-crisp);
}
.door__panel::before { /* reflection streak */
  content: ""; position: absolute; top: -20%; left: -30%;
  width: 55%; height: 150%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: rotate(8deg);
}
/* Style variants -------------------------------------------------------- */
/* Full-view: four tall unbroken lites. */
.door[data-style="fullview"] { grid-template-rows: repeat(4, 1fr); }

/* Grid: four rows PLUS vertical mullions inside each lite => a real divided
   grid of small panes (4 cols x 4 rows). Mullions are frame-colored, so they
   read as true dividers and clearly differ from Full-view. */
.door[data-style="grid"] { grid-template-rows: repeat(4, 1fr); gap: 7px; }
.door[data-style="grid"] .door__panel {
  background:
    /* vertical mullions at 1/4, 2/4, 3/4 (and the trailing edge) */
    repeating-linear-gradient(90deg,
      transparent 0, transparent calc(25% - 3px),
      var(--frame) calc(25% - 3px), var(--frame) 25%),
    linear-gradient(120deg, rgba(255,255,255,0.30) 0%, transparent 32%, transparent 66%, rgba(255,255,255,0.10) 100%),
    linear-gradient(180deg, var(--glass) 0%, var(--glass-2) 100%),
    var(--glass-base);
}

/* Long panel: three tall horizontal lites — distinct from both other styles. */
.door[data-style="long"] { grid-template-rows: repeat(3, 1fr); gap: 12px; }

/* glass color variants (tint + matching OPAQUE base) */
.door[data-glass="green"] { --glass: rgba(41, 86, 72, 0.62); --glass-2: rgba(41,86,72,0.34); --glass-base: #11231d; }
.door[data-glass="clear"] { --glass: rgba(150, 178, 190, 0.42); --glass-2: rgba(120,150,165,0.24); --glass-base: #2b4350; }
.door[data-glass="white"] { --glass: rgba(224, 226, 224, 0.78); --glass-2: rgba(200,204,203,0.55); --glass-base: #d7d9d4; }
.door[data-glass="grey"]  { --glass: rgba(96, 104, 110, 0.60); --glass-2: rgba(70,78,84,0.36); --glass-base: #313940; }
.door[data-glass="bronze"]{ --glass: rgba(120, 92, 56, 0.55); --glass-2: rgba(96,72,44,0.32); --glass-base: #2e2214; }
/* frame color variants */
.door[data-frame="black"] { --frame: #1A1C1E; }
.door[data-frame="white"] { --frame: #E7E7E4; --frame-hi: rgba(255,255,255,0.6); }
.door[data-frame="bronze"]{ --frame: #6E5836; }
.door[data-frame="wood"]  {
  --frame: #6B4A2B;
  background:
    repeating-linear-gradient(180deg, rgba(0,0,0,0.10) 0 3px, rgba(255,255,255,0.05) 3px 7px),
    linear-gradient(180deg, #7d5733, #5c3f24);
}

/* Right: controls */
.config-controls { padding: clamp(2rem, 3vw, 3.2rem); display: flex; flex-direction: column; }
.config-controls .eyebrow { margin-bottom: 1.1rem; }
.config-controls h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 2.6vw, 2.75rem); color: var(--navy); letter-spacing: -0.015em; line-height: 1.08; margin-bottom: 1rem; }
.config-controls > p { color: var(--graphite); font-size: 0.98rem; margin-bottom: 2rem; max-width: 42ch; }

.config-group { margin-bottom: 1.7rem; }
.config-group__label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cool-gray); margin-bottom: 0.85rem;
}
.config-group__label b { color: var(--navy); font-weight: 600; letter-spacing: 0.06em; }
.swatches { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.swatch {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  border: 1px solid var(--navy-line);
  background-size: cover; background-position: center;
  filter: saturate(0.82) brightness(0.97);
  position: relative; overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-crisp), box-shadow var(--dur-fast) var(--ease-crisp), border-color var(--dur-fast) var(--ease-crisp);
}
.swatch:hover { transform: translateY(-2px); }
.swatch.is-active { border-color: var(--gold); box-shadow: var(--sh-gold), inset 0 0 0 2px var(--white); }
.swatch.is-active::after {
  content: ""; position: absolute; inset: 0; border: 2px solid var(--gold); border-radius: var(--r-sm);
}
.swatch__solid { display: inline-block; }
/* solid swatch tokens (glass style options rendered as chips) */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  font-family: var(--font-label); font-size: 0.74rem; letter-spacing: 0.06em;
  padding: 0.6rem 1.05rem; border-radius: var(--r-sm);
  border: 1px solid var(--navy-line); color: var(--navy);
  background: var(--bone);
  transition: all var(--dur-fast) var(--ease-crisp);
  text-transform: uppercase; font-weight: 500;
}
.chip:hover { border-color: var(--gold-line-2); }
.chip.is-active { background: var(--navy); color: var(--near-white); border-color: var(--navy); }

.config-readout {
  margin-top: auto;
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 0 1.5rem;
  font-family: var(--font-label); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--graphite);
  border-top: 1px solid var(--navy-line);
}
.config-readout b { color: var(--navy); font-weight: 600; }
.config-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.config-note { margin-top: 1.1rem; font-size: 0.76rem; color: var(--cool-gray); letter-spacing: 0.02em; }

/* ==========================================================================
   S-006  GALLERY (large inset moments, wide margins)
   ========================================================================== */
.gallery__head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }

/* Masonry: gap-free CSS multicolumn. Portraits render tall, landscapes wide,
   so orientation is respected without leaving grid gaps. */
.gallery__masonry { column-count: 3; column-gap: var(--grid-gap); }
.gtile {
  position: relative;
  break-inside: avoid;
  margin: 0 0 var(--grid-gap);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--navy-midnight);
}
.gtile > img, .gtile > video { width: 100%; height: 100%; object-fit: cover; display: block; }
.gtile--tall  { aspect-ratio: 3 / 4; }   /* portrait photos */
.gtile--wide  { aspect-ratio: 3 / 2; }   /* landscape photos */
.gtile--video { aspect-ratio: 16 / 10; } /* landscape video moment */
.gtile:not(.gtile--note)::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,18,32,0.04) 40%, rgba(10,18,32,0.5) 100%);
}
/* Editorial text tile (keeps the brand voice inside the mosaic) */
.gtile--note {
  background: linear-gradient(180deg, var(--white), var(--bone));
  border: 1px solid var(--navy-line);
  box-shadow: var(--sh-md);
  padding: 1.9rem 1.7rem;
  display: flex; flex-direction: column; gap: 1.2rem; justify-content: center;
}
.gtile--note p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem); line-height: 1.32;
  color: var(--navy); letter-spacing: -0.01em;
}
.gmoment__cap {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--near-white);
}
.gmoment__cap::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.gmoment__play {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(10,18,32,0.45); border: 1px solid var(--gold-line-2);
  display: grid; place-items: center; backdrop-filter: blur(4px);
}
.gmoment__play svg { width: 15px; height: 15px; fill: var(--gold); margin-left: 2px; }

/* ==========================================================================
   S-007  WHY AA IMPACT (editorial pull-quote + engineering detail)
   ========================================================================== */
.why { position: relative; overflow: hidden; }
.why__grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: clamp(2.5rem, 5vw, 6rem); align-items: center; }
.why__body .section-title { margin-bottom: 1.8rem; }
.why__body p { color: var(--graphite); margin-bottom: 1.2rem; max-width: 52ch; }
.why__quote {
  position: relative;
  margin: 2.4rem 0;
  padding: 0 0 0 2rem;
  border-left: 2px solid var(--gold);
}
.why__quote svg { position: absolute; top: -6px; left: -6px; width: 40px; height: 40px; fill: var(--gold-line-2); z-index: 0; }
.why__quote p {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.28;
  color: var(--navy); letter-spacing: -0.01em; position: relative; margin: 0; max-width: 30ch;
}
.why__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid var(--navy-line); }
.why__stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3vw, 2.8rem); color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.why__stat .l { display: block; margin-top: 0.6rem; font-size: 0.82rem; color: var(--graphite); line-height: 1.4; }

/* Engineering detail card */
.why__detail {
  position: relative;
  border: 1px solid var(--navy-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(12,30,62,0.05), transparent 60%),
    linear-gradient(180deg, var(--white), var(--bone));
  box-shadow: var(--sh-md);
}
.why__detail-media { aspect-ratio: 4 / 4.6; display: grid; place-items: center; padding: 1.5rem; }
.why__detail-media img { max-height: 100%; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.why__detail-cap {
  padding: 1.3rem 1.6rem;
  border-top: 1px solid var(--navy-line);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.why__detail-cap .t { font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); font-weight: 600; }
.why__detail-cap .s { font-size: 0.78rem; color: var(--cool-gray); }
.why__crosshair { position: absolute; z-index: 2; width: 44px; height: 44px; }
.why__crosshair::before, .why__crosshair::after { content:""; position:absolute; background: var(--gold); }
.why__crosshair::before { left: 50%; top:0; bottom:0; width:1px; transform: translateX(-0.5px); }
.why__crosshair::after { top: 50%; left:0; right:0; height:1px; transform: translateY(-0.5px); }
.why__crosshair.c1 { top: 24%; left: 30%; }

/* ==========================================================================
   S-008  DEALER BAND (THE full-bleed navy band)
   ========================================================================== */
.dealer { position: relative; overflow: hidden; background: var(--navy-midnight); color: var(--near-white); }
.dealer::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(80% 120% at 88% 0%, rgba(201,164,92,0.16) 0%, transparent 46%),
    radial-gradient(70% 90% at 6% 100%, rgba(20,35,63,0.9) 0%, transparent 55%),
    linear-gradient(180deg, #0B1526 0%, var(--navy-midnight) 100%);
}
.dealer .container { position: relative; z-index: 2; }
.dealer__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.dealer__eyebrow { color: var(--gold); margin-bottom: 1.6rem; }
.dealer__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 4vw, 4rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--near-white); text-wrap: balance; margin-bottom: 1.6rem; }
.dealer__title em { font-style: normal; color: var(--gold); }
.dealer__body { color: var(--ink-soft); max-width: 46ch; font-size: 1.05rem; margin-bottom: 1rem; }
.dealer__points { display: grid; gap: 0.9rem; margin: 2rem 0 2.6rem; }
.dealer__point { display: flex; align-items: flex-start; gap: 0.9rem; color: var(--near-white); font-size: 0.98rem; }
.dealer__point svg { flex: none; width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.6; fill: none; margin-top: 2px; }
.dealer__cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: var(--space-cta-above); }
/* framed real photo inset */
.dealer__media { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gold-line-2); box-shadow: var(--sh-xl); aspect-ratio: 4 / 4.4; }
.dealer__media img { width: 100%; height: 100%; object-fit: cover; }
.dealer__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,18,32,0.1), rgba(10,18,32,0.4)); }
.dealer__media-tag { position: absolute; left: 18px; bottom: 16px; z-index: 2; font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--near-white); display: flex; align-items: center; gap: 0.5rem; }
.dealer__media-tag::before { content:""; width: 20px; height: 1px; background: var(--gold); }

/* ==========================================================================
   S-009  CREDENTIALS (no fabricated quotes)
   ========================================================================== */
.credentials { position: relative; overflow: hidden; }
.cred__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5.5rem); align-items: center; }
.cred__quote { position: relative; }
.cred__mark { font-family: var(--font-display); font-weight: 800; font-size: 6rem; color: var(--gold-line-2); line-height: 0.6; height: 3rem; display: block; }
.cred__quote blockquote {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem); line-height: 1.18;
  color: var(--navy); letter-spacing: -0.015em; margin: 1rem 0 1.6rem; text-wrap: balance;
}
.cred__attr { display: flex; align-items: center; gap: 0.8rem; font-size: 0.86rem; color: var(--graphite); }
.cred__attr .rule { width: 30px; height: 1px; background: var(--gold); }
.cred__attr b { color: var(--navy); font-family: var(--font-label); letter-spacing: 0.04em; }

.cred__badges { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.cred-badge {
  border: 1px solid var(--navy-line);
  border-radius: var(--r-md);
  padding: 1.6rem 1.5rem;
  background: linear-gradient(180deg, var(--white), var(--bone));
  transition: transform var(--dur-mid) var(--ease-crisp), box-shadow var(--dur-mid) var(--ease-crisp);
}
.cred-badge:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.cred-badge__seal { width: 40px; height: 40px; stroke: var(--gold); stroke-width: 1.4; fill: none; margin-bottom: 1rem; }
.cred-badge h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--navy); margin-bottom: 0.4rem; line-height: 1.2; }
.cred-badge p { font-size: 0.82rem; color: var(--graphite); line-height: 1.5; }
.cred__foot { margin-top: 2.6rem; display: flex; align-items: center; gap: 0.7rem; font-size: 0.82rem; color: var(--cool-gray); font-style: italic; }
.cred__foot svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.6; flex: none; }

/* ==========================================================================
   S-010  QUOTE CTA (styled form, no pricing)
   ========================================================================== */
.quote { position: relative; overflow: hidden; }
.quote__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.quote__intro .section-title { margin-bottom: 1.4rem; }
.quote__intro > p { color: var(--graphite); max-width: 42ch; margin-bottom: 2.2rem; }
.quote__assure { display: grid; gap: 1.1rem; margin-bottom: 2.4rem; }
.quote__assure li { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 0.95rem; color: var(--navy); }
.quote__assure svg { flex: none; width: 22px; height: 22px; stroke: var(--gold); stroke-width: 1.6; fill: none; margin-top: 1px; }
.quote__contact { padding-top: 1.8rem; border-top: 1px solid var(--navy-line); display: grid; gap: 0.7rem; }
.quote__contact a, .quote__contact span { display: flex; align-items: center; gap: 0.7rem; font-size: 0.92rem; color: var(--graphite); }
.quote__contact svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.6; flex: none; }

/* Form card (spec-sheet) */
.qform {
  background: var(--white);
  border: 1px solid var(--navy-line);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  box-shadow: var(--sh-lg);
}
.qform__toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 1.7rem; border: 1px solid var(--navy-line); border-radius: var(--r-sm); overflow: hidden; }
.qform__toggle input { position: absolute; opacity: 0; pointer-events: none; }
.qform__toggle label {
  text-align: center; padding: 0.85rem 1rem; cursor: pointer;
  font-family: var(--font-label); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cool-gray); font-weight: 600;
  transition: background-color var(--dur-fast) var(--ease-crisp), color var(--dur-fast) var(--ease-crisp);
}
.qform__toggle input:checked + label { background: var(--navy); color: var(--near-white); }
.qform__field { margin-bottom: 1.15rem; }
.qform__field label { display: block; font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cool-gray); font-weight: 600; margin-bottom: 0.5rem; }
.qform__field input, .qform__field textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; color: var(--navy);
  padding: 0.85rem 1rem; border: 1px solid var(--navy-line); border-radius: var(--r-sm);
  background: var(--bone); transition: border-color var(--dur-fast) var(--ease-crisp), box-shadow var(--dur-fast) var(--ease-crisp), background-color var(--dur-fast) var(--ease-crisp);
}
.qform__field input::placeholder, .qform__field textarea::placeholder { color: var(--cool-gray); }
.qform__field input:focus, .qform__field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,164,92,0.14); }
.qform__field textarea { resize: vertical; min-height: 108px; }
.qform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.qform__submit { width: 100%; margin-top: 0.6rem; }
.qform__fine { margin-top: 1rem; font-size: 0.74rem; color: var(--cool-gray); text-align: center; letter-spacing: 0.02em; }
.qform__done { display: none; text-align: center; padding: 2rem 1rem; }
.qform__done svg { width: 52px; height: 52px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin: 0 auto 1.2rem; }
.qform__done h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--navy); margin-bottom: 0.6rem; }
.qform__done p { color: var(--graphite); font-size: 0.92rem; max-width: 34ch; margin: 0 auto; }
.qform.is-done .qform__body { display: none; }
.qform.is-done .qform__done { display: block; }

/* ==========================================================================
   S-011  FOOTER (deep navy)
   ========================================================================== */
.site-footer { background: var(--navy-midnight); color: var(--ink-soft); position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 85% 0%, rgba(201,164,92,0.08), transparent 50%);
}
.footer-inner { position: relative; z-index: 2; padding-block: clamp(4rem, 6vw, 6rem) 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--gold-line); }
.footer-brand .wordmark__name { color: var(--near-white); }
.footer-brand .wordmark__mark { border-color: var(--gold-line-2); }
.footer-brand .wordmark__mark::before { background: repeating-linear-gradient(180deg, var(--near-white) 0 2px, transparent 2px 6px); }
.footer-brand .wordmark__sub { color: var(--cool-gray); }
.footer-brand p { margin-top: 1.4rem; font-size: 0.9rem; color: var(--ink-soft); max-width: 34ch; line-height: 1.6; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.6rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--gold-line-2); border-radius: var(--r-sm); display: grid; place-items: center; transition: all var(--dur-fast) var(--ease-crisp); }
.footer-social a:hover { border-color: var(--gold); background: rgba(201,164,92,0.1); }
.footer-social svg { width: 17px; height: 17px; fill: var(--gold); }
.footer-col h4 { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; font-weight: 600; }
.footer-col ul { display: grid; gap: 0.75rem; }
.footer-col a, .footer-col address {
  font-size: 0.9rem; color: var(--ink-soft); font-style: normal; line-height: 1.5;
  transition: color var(--dur-fast) var(--ease-crisp);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-col .dealer-login { color: var(--near-white); font-weight: 600; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; }
.footer-bottom p, .footer-bottom a { font-size: 0.78rem; color: var(--cool-gray); letter-spacing: 0.02em; }
.footer-bottom nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold); }

/* ==========================================================================
   S-007b  TESTIMONIALS + TRUST  (editorial ruled cards, gold-topped)
   Sample voices for the pitch; real reviews collected during the build.
   The trust row underneath is 100% verified from AA Impact's own specs.
   ========================================================================== */
.tst__head {
  display: grid; grid-template-columns: 1fr auto; align-items: end;
  gap: 1.5rem 2rem; margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
}
.tst__head .section-title { font-size: var(--text-h3); }
.tst__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.tst__card {
  display: flex; flex-direction: column; gap: 1.1rem;
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  background: #fff;
  border: 1px solid var(--navy-line);
  border-top: 3px solid var(--gold);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
}
.tst__stars { color: var(--gold); letter-spacing: 0.22em; font-size: 1rem; line-height: 1; }
.tst__card blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.16rem);
  line-height: 1.55; color: var(--navy); margin: 0;
}
.tst__who {
  display: flex; flex-direction: column; gap: 0.2rem;
  margin-top: auto; padding-top: 0.5rem;
}
.tst__name {
  font-family: var(--font-label); font-weight: 700;
  letter-spacing: 0.01em; color: var(--navy);
}
.tst__role {
  font-family: var(--font-label);
  font-size: 0.78rem; letter-spacing: 0.05em; color: var(--graphite);
  text-transform: uppercase;
}

.tst__trust {
  margin-top: clamp(2.2rem, 4vw, 3.4rem);
  padding-top: clamp(1.8rem, 3vw, 2.4rem);
  border-top: 1px solid var(--navy-line);
}
.tst__trust-lead {
  display: block; font-family: var(--font-label); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.3rem;
}
.tst__trust-row {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.tst__trust-row li {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding-right: 1.1rem; border-right: 1px solid var(--navy-line);
}
.tst__trust-row li:last-child { border-right: 0; }
.tst__trust-row b {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.2rem, 0.9rem + 0.9vw, 1.75rem); color: var(--navy); line-height: 1;
}
.tst__trust-row span { font-size: 0.8rem; color: var(--graphite); line-height: 1.35; }
.tst__trust-fn { margin-top: 1.1rem; font-size: 0.74rem; color: var(--graphite); opacity: 0.82; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .nav { display: none; }
  .header-actions .header-login { display: none; }
  .hamburger { display: block; }
  .header-actions .btn { display: none; }
  .config-card { grid-template-columns: 1fr; }
  .config-stage { border-right: 0; border-bottom: 1px solid var(--navy-line); }
  .why__grid { grid-template-columns: 1fr; }
  .why__detail { max-width: 460px; }
  .dealer__grid { grid-template-columns: 1fr; }
  .dealer__media { max-width: 520px; aspect-ratio: 16/11; }
  .cred__grid { grid-template-columns: 1fr; }
  .quote__grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero { min-height: 84vh; }
  /* Narrow viewports: the headline spans the whole column (and the video is
     desktop-only, so the poster sits behind), so use a strong, near-even bone
     wash — legibility wins over showing the footage on phones. */
  .hero__scrim { background:
      linear-gradient(180deg, rgba(245,241,232,0.90) 0%, rgba(245,241,232,0.82) 48%, rgba(245,241,232,0.93) 100%); }
  .hero__content { max-width: 34rem; }
  .proof__row { grid-template-columns: 1fr 1fr; }
  .proof__cell:nth-child(2) { border-right: 0; }
  .proof__cell:nth-child(1), .proof__cell:nth-child(2) { border-bottom: 1px solid var(--navy-line); }
  .collections__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .collections__head { grid-template-columns: 1fr; }
  .gallery__masonry { column-count: 2; }
  .why__stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .cred__badges { grid-template-columns: 1fr 1fr; }
  .tst__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .tst__trust-row { grid-template-columns: repeat(3, 1fr); gap: 1.2rem 1rem; }
  .tst__trust-row li:nth-child(3n) { border-right: 0; }
}

@media (max-width: 560px) {
  :root { --gutter: 1.35rem; }
  /* At phone widths the wide display face can't hold every phrase on one line;
     allow wrapping so nothing clips off-screen (still large and overlaid). */
  .hero__title { font-size: clamp(2rem, 8.5vw, 2.7rem); }
  .hero__title .lg, .hero__title .accent { white-space: normal; }
  .hero__meta { gap: 1.2rem; }
  .proof__row { grid-template-columns: 1fr; }
  .proof__cell { border-right: 0; border-bottom: 1px solid var(--navy-line); }
  .proof__cell:last-child { border-bottom: 0; }
  .qform__row { grid-template-columns: 1fr; }
  .why__stats { grid-template-columns: 1fr; gap: 1.4rem; }
  .cred__badges { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .gallery__masonry { column-count: 1; }
  .tst__head { grid-template-columns: 1fr; }
  .tst__trust-row { grid-template-columns: 1fr; gap: 0; }
  .tst__trust-row li { border-right: 0; border-bottom: 1px solid var(--navy-line); padding: 0.9rem 0; }
  .tst__trust-row li:last-child { border-bottom: 0; }
}
