/* Tree Tech of Louisiana — DESIGN.md tokens. Barlow display + Literata body. */
:root {
  --ink: #000000;
  --forest: #0D4900;
  --sap: #1C8500;
  --lime: #31CC00;
  --paper: #FFFFFF;
  --wash: #F2F2F0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1180px;
  --dock-h: 0px;
  --shadow: 0 16px 36px rgba(0, 0, 0, .08);
  --shadow-lift: 0 22px 44px rgba(0, 0, 0, .14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  font-family: "Literata", Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.66;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  background: url("assets/grain.png");
  opacity: .045;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--sap); }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }

h1, h2, h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--ink);
}
h1 { font-size: clamp(2.7rem, 5.6vw, 5.75rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); line-height: 1.1; }

.eyebrow {
  font-family: "Barlow", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sap);
  margin-bottom: 16px;
}
.eyebrow--lime { color: var(--lime); }
.subhead { max-width: 46rem; margin-top: 16px; color: var(--ink); }
.section-head { margin-bottom: 48px; }
section[id] { scroll-margin-top: 88px; }

.skip {
  position: absolute; left: 12px; top: -48px; z-index: 90;
  background: var(--sap); color: var(--paper);
  padding: 10px 16px; min-height: 44px;
}
.skip:focus { top: 12px; }

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

.cap {
  display: block;
  width: 6px;
  flex-shrink: 0;
  background: var(--sap);
}
.cap--lime { background: var(--lime); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 13px 26px;
  font-family: "Barlow", sans-serif;
  font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border: 0; border-radius: 6px; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.btn .arr { transition: transform .18s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--sap { background: var(--sap); color: var(--paper); }
.btn--sap:hover { background: var(--forest); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .45);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--paper); transform: translateY(-2px); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0, 0, 0, .94);
}
.header__bar {
  display: flex; align-items: center; gap: 24px; min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand__mark { width: 168px; height: auto; }
.brand__name { display: none; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 8px 12px;
  font-family: "Barlow", sans-serif;
  font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--paper); text-decoration: none;
}
.nav a:hover { color: var(--lime); }
.header__call { min-height: 48px; padding: 11px 18px; }

.m-nav { display: none; position: relative; margin-left: auto; }
.m-nav summary {
  list-style: none; display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; cursor: pointer;
}
.m-nav summary::-webkit-details-marker { display: none; }
.m-nav summary span { display: block; height: 2px; background: var(--paper); }
.m-nav[open] summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.m-nav[open] summary span:nth-child(2) { opacity: 0; }
.m-nav[open] summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.m-nav summary span { transition: transform .2s var(--ease), opacity .2s var(--ease); }
.m-nav__panel {
  position: absolute; right: 0; top: calc(100% + 10px); width: min(300px, 82vw);
  display: flex; flex-direction: column; gap: 2px;
  background: var(--ink); box-shadow: var(--shadow-lift);
  padding: 14px;
}
.m-nav__panel a {
  display: flex; align-items: center; min-height: 48px; padding: 10px 14px;
  font-family: "Barlow", sans-serif;
  font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--paper); text-decoration: none;
}
.m-nav__panel a:hover { color: var(--lime); }
.m-nav__panel .btn { margin-top: 8px; justify-content: center; }

/* Hero: left spec rail + right flush company-rig still */
.fold {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.18fr);
  min-height: min(92vh, 900px);
  background: var(--ink);
}
.rail {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
}
.rail::before {
  content: "";
  position: absolute; inset: 0;
  background: url("assets/grain.png");
  opacity: .12;
  pointer-events: none;
}
.rail__inner {
  position: relative;
  width: min(560px, calc(100% - 64px));
  margin: 72px 32px 72px auto;
}
.rail .eyebrow { color: var(--lime); }
.rail h1 { color: var(--paper); }

.rated {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 18px;
}
.rated__stars { color: var(--lime); font-size: 1rem; letter-spacing: .12em; }
.rated__score {
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--paper);
  line-height: 1;
}
.rated__count {
  font-family: "Barlow", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wash);
  opacity: .78;
}
.lede {
  margin-top: 20px;
  font-size: 1.08rem;
  line-height: 1.58;
  color: var(--wash);
  max-width: 36rem;
}
.rail__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.spec {
  margin-top: 36px;
  display: grid;
  gap: 0;
}
.spec__pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 16px;
  padding: 12px 0 12px 14px;
  position: relative;
}
.spec__pair::before {
  content: "";
  position: absolute; left: 0; top: 10px; bottom: 10px;
  width: 6px;
  background: var(--sap);
}
.spec__pair dt {
  font-family: "Barlow", sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
  align-self: center;
}
.spec__pair dd {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--paper);
  align-self: center;
}

.rig {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  margin: 0;
}
.rig picture, .rig img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.rig img {
  object-fit: cover;
  object-position: 52% 58%;
  max-width: none;
}
.rig .cap {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  z-index: 2;
}

/* Trust */
.trust { background: var(--paper); padding: 0; }
.trust__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 36px 0 8px;
}
.trust__cell {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 6px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 22px 20px 22px 0;
}
.trust__cell .cap { grid-row: 1 / span 2; }
.trust__cell b {
  font-family: "Barlow", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.trust__cell span:last-child { font-size: .92rem; }

/* Services — horizontal spec rows */
.services { padding: 100px 0; background: var(--paper); }
.rows { display: grid; gap: 14px; }
.row {
  display: grid;
  grid-template-columns: 6px minmax(0, 15rem) 4.2rem minmax(0, 1fr) auto;
  align-items: stretch;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 0;
  min-width: 0;
  min-height: 11.5rem;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.row:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.row__shot {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
}
.row__shot picture, .row__shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.row__shot img {
  object-fit: cover;
  object-position: 50% 52%;
  max-width: none;
  transition: transform .5s var(--ease);
}
.row:hover .row__shot img { transform: scale(1.04); }
.row__shot--trim img { object-position: 58% 46%; }
.row__shot--removal img { object-position: 38% 50%; }
.row__shot--grind img { object-position: 42% 60%; }
.row__idx {
  align-self: center;
  padding-left: 26px;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--sap);
}
.row__body { min-width: 0; align-self: center; padding: 26px 0; }
.row__body p { margin-top: 8px; font-size: .98rem; }
.row__link {
  align-self: center;
  padding: 0 28px 0 24px;
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  font-family: "Barlow", sans-serif;
  font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sap); text-decoration: none; white-space: nowrap;
}
.row__link .arr { transition: transform .18s var(--ease); }
.row__link:hover .arr { transform: translateX(4px); }

/* About */
.about {
  padding: 100px 0;
  background: var(--forest);
  color: var(--wash);
  position: relative;
}
.about::before {
  content: "";
  position: absolute; inset: 0;
  background: url("assets/grain.png");
  opacity: .12;
  pointer-events: none;
}
.about h2, .about a { color: var(--paper); }
.about__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 56px;
  align-items: start;
}
.about__copy p + p { margin-top: 16px; }
.about__copy h2 { margin-bottom: 20px; }
.about__still { margin: 0; overflow: hidden; position: relative; }
.about__still::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: var(--lime); z-index: 1;
}
.about__still img { width: 100%; height: 100%; min-height: 28rem; object-fit: cover; object-position: 40% 20%; max-width: none; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; list-style: none; }
.chips li {
  padding: 8px 16px; min-height: 40px;
  display: inline-flex; align-items: center;
  background: rgba(255, 255, 255, .08);
  border-radius: 99px;
  font-family: "Barlow", sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--paper);
}

/* Gallery — spec stills with 6px end-cap, not a flush-tile dump */
.gallery { padding: 100px 0; background: var(--paper); }
.stills {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}
.still {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  box-shadow: var(--shadow);
}
.still::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: var(--sap); z-index: 1;
}
.still img {
  width: 100%; height: 100%; object-fit: cover; max-width: none;
  aspect-ratio: 4 / 3;
}
.still--lead { grid-row: span 2; }
.still--lead img { aspect-ratio: 3 / 4; min-height: 100%; }

/* CTA */
.cta {
  padding: 80px 0;
  background: var(--forest);
  color: var(--wash);
  position: relative;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: url("assets/grain.png");
  opacity: .12;
  pointer-events: none;
}
.cta h2 { color: var(--paper); }
.cta a { color: var(--paper); }
.cta .btn--sap {
  background: var(--paper);
  color: var(--forest);
}
.cta .btn--sap:hover { background: var(--wash); color: var(--ink); }
.cta__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Areas */
.areas { padding: 100px 0; background: var(--paper); }
.areas__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.areas__list li {
  display: flex; align-items: center; gap: 14px;
  min-height: 64px;
  padding: 16px 20px 16px 0;
  background: var(--paper);
  box-shadow: var(--shadow);
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
}
.areas__list .cap { align-self: stretch; width: 6px; }

/* FAQ */
.faq { padding: 100px 0; background: var(--paper); }
.faq__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.faq__item {
  background: var(--paper);
  box-shadow: var(--shadow);
  padding-left: 0;
}
.faq__item summary {
  list-style: none; cursor: pointer; position: relative;
  display: flex; align-items: center; min-height: 56px;
  padding: 20px 56px 20px 22px;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before {
  content: "";
  position: absolute; left: 0; top: 14px; bottom: 14px;
  width: 6px; background: var(--sap);
}
.faq__item summary::after {
  content: "+";
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem; font-weight: 400; color: var(--sap);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 56px 22px 22px; max-width: 44rem; }

/* Contact */
.contact {
  padding: 100px 0 110px;
  background: var(--ink);
  color: var(--wash);
  position: relative;
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background: url("assets/grain.png");
  opacity: .12;
  pointer-events: none;
}
.contact h2 { color: var(--paper); }
.contact a { color: var(--paper); }
.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 64px;
  align-items: start;
}
.contact__phone {
  display: inline-block;
  margin-top: 18px;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  line-height: 1;
  color: var(--paper);
  text-decoration: none;
}
.contact__phone:hover { color: var(--lime); }
.contact__hours { margin-top: 16px; }
.contact__nap {
  font-style: normal;
  margin-top: 22px;
  line-height: 1.6;
}
.contact__extra { list-style: none; margin-top: 16px; display: grid; gap: 6px; }
.contact__trust { list-style: none; margin-top: 28px; display: grid; gap: 10px; }
.contact__trust li {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  color: var(--paper);
  padding-left: 14px;
  position: relative;
}
.contact__trust li::before {
  content: "";
  position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 6px; background: var(--sap);
}
.contact__close { margin-top: 28px; max-width: 36rem; }

.form {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-lift);
  display: grid;
  gap: 16px;
}
.form .cap--form {
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
}
.form__title { color: var(--ink); }
.form__field { display: grid; gap: 7px; }
.form__field span {
  font-family: "Barlow", sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sap);
}
.form__field input, .form__field select, .form__field textarea {
  font: inherit; font-size: 16px; color: var(--ink);
  padding: 13px 16px; min-height: 50px;
  background: var(--wash);
  border: 0;
  border-radius: 2px;
}
.form__field textarea { resize: vertical; min-height: 110px; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: 3px solid var(--sap);
  outline-offset: 2px;
}
.form__submit { width: 100%; }
.form__note { font-size: .88rem; }
.form__note a { color: var(--sap); }

/* Footer */
.site-footer { padding: 56px 0 0; background: var(--ink); color: var(--wash); }
.footer__grid {
  display: grid; gap: 40px;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  padding-bottom: 48px;
}
.footer__mark { width: 168px; height: auto; margin-bottom: 16px; }
.footer__name {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  color: var(--paper);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.footer__head {
  font-family: "Barlow", sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 14px;
}
.footer__col a {
  display: flex; align-items: center; min-height: 44px;
  color: var(--wash); text-decoration: none;
}
.footer__col a:hover { color: var(--lime); }
.footer__phone {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--paper) !important;
}
.footer__text { margin-bottom: 12px; }
.footer__text a { color: var(--paper); }
.footer__base {
  padding: 22px 0 calc(22px + var(--dock-h));
  font-size: .82rem;
  color: var(--wash);
}

.dock { display: none; }

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .rig img { animation: settle .7s var(--ease) both; }
  .fold .rise { opacity: 0; animation: riseIn .56s var(--ease) forwards; }
  .fold .d1 { animation-delay: .08s; }
  .fold .d2 { animation-delay: .16s; }
  .fold .d3 { animation-delay: .24s; }
  .fold .d4 { animation-delay: .32s; }
  .fold .d5 { animation-delay: .4s; }
  .fold .d6 { animation-delay: .48s; }
  .float { animation: capFloat .7s var(--ease) .5s 1 both; }

  @supports (animation-timeline: view()) {
    .reveal { animation: riseIn .56s var(--ease) both; animation-timeline: view(); animation-range: entry 8% entry 38%; }
    .reveal-stagger > * { animation: riseIn .56s var(--ease) both; animation-timeline: view(); animation-range: entry 6% entry 32%; }
  }
}

@keyframes settle { from { transform: scale(1.05); } to { transform: scale(1); } }
@keyframes riseIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes capFloat { from { transform: translateY(0); } to { transform: translateY(-8px); } }

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

/* Reflow */
@media (max-width: 1100px) {
  .brand__name { display: none; }
  .trust__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq__list { grid-template-columns: minmax(0, 1fr); }
  .about__grid, .contact__grid { grid-template-columns: minmax(0, 1fr); }
  .stills { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .still--lead { grid-column: 1 / -1; grid-row: auto; }
  .still--lead img { aspect-ratio: 16 / 9; }
  .cta__bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px) {
  .fold { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .rail__inner { width: min(var(--wrap), calc(100% - 48px)); margin: 48px auto 40px; }
  .rig { min-height: 42vw; height: 320px; }
  .row {
    grid-template-columns: 6px minmax(0, 10.5rem) minmax(0, 1fr);
    grid-template-areas: "cap shot idx" "cap shot body" "cap shot link";
    min-height: 0;
  }
  .row .cap { grid-area: cap; }
  .row__shot { grid-area: shot; }
  .row__idx { grid-area: idx; padding: 22px 20px 0; }
  .row__body { grid-area: body; padding: 6px 20px 0; }
  .row__link { grid-area: link; padding: 4px 20px 20px; }
  .footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 819px) {
  :root { --dock-h: 64px; }
  body { padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom)); }
  .nav, .header__call { display: none; }
  .m-nav { display: block; }
  .brand__mark { width: 128px; }
  .rail__inner { margin: 22px auto 18px; }
  h1 { font-size: clamp(2.35rem, 10vw, 3.1rem); }
  .lede { font-size: 0.98rem; margin-top: 14px; }
  .rail__ctas { margin-top: 18px; }
  .spec { display: none; }
  .rig { height: 260px; min-height: 260px; }
  .rated { margin-bottom: 12px; }
  .services, .about, .gallery, .areas, .faq { padding: 56px 0; }
  .contact { padding: 56px 0 72px; }
  .cta { padding: 56px 0; }
  .areas__list { grid-template-columns: minmax(0, 1fr); }
  .dock {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: flex; gap: 10px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, .96);
  }
  .dock a {
    flex: 1; display: inline-flex; align-items: center; justify-content: center;
    min-height: 50px; border-radius: 6px;
    font-family: "Barlow", sans-serif;
    font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    text-decoration: none;
  }
  .dock__call { background: var(--sap); color: var(--paper); }
  .dock__quote { color: var(--paper); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .4); }
}

@media (max-width: 560px) {
  .wrap { width: min(var(--wrap), calc(100% - 32px)); }
  .trust__track { grid-template-columns: minmax(0, 1fr); }
  .row {
    grid-template-columns: 6px minmax(0, 1fr);
    grid-template-areas: "cap shot" "cap idx" "cap body" "cap link";
    padding: 0;
  }
  .row .cap { grid-area: cap; }
  .row__shot { grid-area: shot; }
  .row__shot picture, .row__shot img { position: static; display: block; }
  .row__shot img { width: 100%; height: auto; aspect-ratio: 16 / 9; }
  .row__idx { grid-area: idx; padding: 20px 18px 0; }
  .row__body { grid-area: body; padding: 6px 18px 0; }
  .row__link { grid-area: link; padding: 4px 18px 20px; }
  .rated__src { display: none; }
  .rail__ctas .btn { flex: 1 1 100%; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .form { padding: 28px 22px; }
  .spec__pair { grid-template-columns: minmax(0, 1fr); gap: 4px; }
}
