/* ============================================================
   PLYLER SUPPLY CO. Design System, final
   Palette: Warm near-black / Oxblood crimson / PSC gold #d9a752
   Type: Frank Ruhl Libre (display) / Inter (body) / IBM Plex Mono (labels)
   ============================================================ */

:root {
  --ink:          #1c1a17;
  --iron:         #262320;
  --steel:        #3a342c;
  --oxblood:      #7d2230;
  --oxblood-deep: #5a1622;
  --oxblood-glow: #b0424f;
  --brass:        #d9a752;   /* sampled from PSC logo */
  --white:        #f7f4ee;
  --mist:         #cdc6bb;

  --font-display: "Frank Ruhl Libre", serif;
  --font-body:    "Inter", sans-serif;
  --font-spec:    "IBM Plex Mono", monospace;

  --measure: 64ch;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4rem, 8vw, 6.5rem);
}

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

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

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--oxblood); color: var(--white); }

/* ---------- Scrollbar: black track, PSC gold ---------- */
html { scrollbar-color: var(--brass) #121110; scrollbar-width: thin; }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #121110; }
::-webkit-scrollbar-thumb { background: var(--brass); border: 3px solid #121110; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #e6b968; }

/* ---------- Type ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.7rem, 6vw, 4.7rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

.eyebrow {
  font-family: var(--font-spec);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 1.3rem;
}

.spec {
  font-family: var(--font-spec);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.lede { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--mist); max-width: var(--measure); font-weight: 300; }

/* ---------- Signature: the takeoff rule ---------- */

.takeoff {
  position: relative;
  height: 10px;
  background:
    repeating-linear-gradient(to right,
      color-mix(in srgb, var(--brass) 70%, transparent) 0 1px, transparent 1px 80px) bottom / 100% 10px no-repeat;
  opacity: 0.5;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.takeoff::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: color-mix(in srgb, var(--brass) 60%, transparent);
}
.takeoff.in { clip-path: inset(0 0 0 0); }

/* ---------- Layout ---------- */

.wrap { max-width: 1200px; margin-inline: auto; padding-inline: var(--pad); }
section { padding-block: var(--section); }

/* ---------- Nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--steel);
}
.nav-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 2rem; padding-block: 0.9rem;
  transition: padding 0.25s ease;
}
.nav.scrolled .nav-inner { padding-block: 0.55rem; }
.nav-side { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-side.left { justify-content: flex-end; }
.nav-side.right { justify-content: flex-start; }

.logo { text-decoration: none; display: block; }
.logo img {
  height: 62px; width: auto; display: block;
  transition: height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.nav.scrolled .logo img { height: 42px; }
footer .logo img { height: 54px; filter: none; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  position: relative; white-space: nowrap;
  text-decoration: none; font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist);
  transition: color 0.2s;
  padding-block: 0.3rem;
}
.nav-links > li > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -0.2rem;
  height: 1px; background: var(--brass);
  transition: right 0.25s ease;
}
.nav-links > li > a:hover::after, .nav-links > li > a:focus-visible::after { right: 0; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--white); }

.btn {
  display: inline-block;
  font-family: var(--font-body); font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: var(--white);
  background: var(--oxblood);
  padding: 0.8rem 1.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover, .btn:focus-visible { background: var(--oxblood-deep); }
.btn.ghost { background: transparent; border-color: var(--steel); color: var(--white); }
.btn.ghost:hover, .btn.ghost:focus-visible { border-color: var(--brass); color: var(--brass); background: transparent; }

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

/* Products dropdown */
.has-drop { position: relative; }
.drop {
  visibility: hidden; opacity: 0; transform: translateY(6px);
  position: absolute; top: calc(100% + 0.9rem); left: 50%; translate: -50% 0;
  min-width: 440px;
  background: var(--iron); border: 1px solid var(--steel);
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 0.6rem;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.has-drop:hover .drop, .has-drop:focus-within .drop {
  visibility: visible; opacity: 1; transform: translateY(0);
}
.drop a {
  display: flex; align-items: baseline; gap: 0.7rem;
  padding: 0.7rem 0.9rem; text-transform: none; letter-spacing: 0.02em;
  font-size: 0.88rem; color: var(--white);
}
.drop a::after { display: none; }
.drop a:hover, .drop a:focus-visible { background: var(--ink); color: var(--brass); }
.drop .spec { font-size: 0.55rem; }

.nav-toggle { display: none; }
.mobile-drop { display: none; }

@media (max-width: 960px) {
  .nav-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
  .logo img { height: 46px; }
  .nav-side { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 46px; height: 42px;
    background: none; border: 1px solid var(--steel); border-radius: 6px;
    cursor: pointer; transition: border-color 0.25s;
  }
  .nav.open .nav-toggle { border-color: var(--brass); }
  .burger-line {
    display: block; width: 20px; height: 2px; background: var(--white);
    border-radius: 2px;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, background 0.25s;
  }
  .nav.open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--brass); }
  .nav.open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
  .nav.open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--brass); }

  @keyframes menuDrop {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes menuItem {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: none; }
  }
  .nav.open .mobile-drop {
    display: flex; flex-direction: column; gap: 1.15rem;
    border-top: 1px solid var(--steel);
    padding: 1.5rem var(--pad) 1.8rem;
    max-height: calc(100vh - 80px); overflow-y: auto;
    animation: menuDrop 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav.open .mobile-drop a { opacity: 0; animation: menuItem 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
  .nav.open .mobile-drop a:nth-child(1)  { animation-delay: 0.03s; }
  .nav.open .mobile-drop a:nth-child(2)  { animation-delay: 0.06s; }
  .nav.open .mobile-drop a:nth-child(3)  { animation-delay: 0.09s; }
  .nav.open .mobile-drop a:nth-child(4)  { animation-delay: 0.12s; }
  .nav.open .mobile-drop a:nth-child(5)  { animation-delay: 0.15s; }
  .nav.open .mobile-drop a:nth-child(6)  { animation-delay: 0.18s; }
  .nav.open .mobile-drop a:nth-child(7)  { animation-delay: 0.21s; }
  .nav.open .mobile-drop a:nth-child(8)  { animation-delay: 0.24s; }
  .nav.open .mobile-drop a:nth-child(9)  { animation-delay: 0.27s; }
  .nav.open .mobile-drop a:nth-child(10) { animation-delay: 0.30s; }
  .nav.open .mobile-drop a:nth-child(11) { animation-delay: 0.33s; }
  .nav.open .mobile-drop a:nth-child(12) { animation-delay: 0.36s; }
  .mobile-drop a {
    text-decoration: none; color: var(--white);
    font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .mobile-drop a.sub { color: var(--mist); padding-left: 1rem; font-size: 0.82rem; text-transform: none; letter-spacing: 0.03em; }
}
@media (min-width: 961px) { .mobile-drop { display: none !important; } }

/* ---------- Page header (interior pages) ---------- */

.page-head {
  padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3rem);
  background: radial-gradient(900px 400px at 85% -12%, color-mix(in srgb, var(--oxblood) 18%, transparent), transparent 70%);
}
.page-head .lede { margin-top: 1.2rem; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-block: clamp(5rem, 11vw, 8.5rem) clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
  background: radial-gradient(1000px 460px at 85% -12%, color-mix(in srgb, var(--oxblood) 20%, transparent), transparent 70%);
}
.hero h1 { max-width: 20ch; }
.hero h1 em { font-style: normal; color: var(--oxblood-glow); }
.hero .lede { margin-top: 1.6rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; }
.hero .takeoff { margin-top: clamp(2.5rem, 6vw, 4rem); }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero .anim, .page-head .anim { opacity: 0; animation: riseIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: var(--d, 0s); }

/* ---------- Trust bar ---------- */

.trust { border-block: 1px solid var(--steel); background: var(--iron); padding-block: 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-cell { padding: 1.8rem 1.4rem; border-left: 1px solid var(--steel); }
.trust-cell:first-child { border-left: 0; }
.trust-cell b {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 1.9rem; line-height: 1.1; color: var(--white);
}
.trust-cell span { font-family: var(--font-spec); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); }
@media (max-width: 760px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-cell:nth-child(3) { border-left: 0; }
  .trust-cell { border-top: 1px solid var(--steel); }
  .trust-cell:nth-child(-n+2) { border-top: 0; }
}

/* ---------- Brand marquee ---------- */

.marquee-band {
  overflow: hidden; padding-block: 1.2rem; margin-top: 2.2rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee { display: flex; width: max-content; animation: drift 42s linear infinite; }
.marquee-band:hover .marquee { animation-play-state: paused; }
.marquee ul { display: flex; align-items: center; list-style: none; gap: 3.5rem; padding-right: 3.5rem; }
.marquee li {
  font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
  color: var(--mist); white-space: nowrap; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 3.5rem;
}
.marquee li::after { content: "◆"; font-size: 0.42rem; color: var(--brass); }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; flex-wrap: wrap; width: auto; } }

/* ---------- Product grid ---------- */

.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--steel); border: 1px solid var(--steel);
  margin-top: 3rem;
}
.prod-card {
  position: relative; background: var(--ink);
  padding: 1.9rem 1.6rem 1.7rem;
  text-decoration: none; color: var(--white);
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background 0.25s;
}
.prod-card:hover, .prod-card:focus-visible { background: var(--iron); }
.prod-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--oxblood);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.prod-card:hover::after, .prod-card:focus-visible::after { transform: scaleX(1); }
.prod-card .num { font-family: var(--font-spec); font-size: 0.58rem; letter-spacing: 0.24em; color: var(--mist); }
.prod-card h3 { margin-top: 2rem; }
.prod-card p { color: var(--mist); font-size: 0.88rem; font-weight: 300; margin-top: 0.5rem; }
.prod-card .go {
  margin-top: 0.8rem; font-family: var(--font-spec); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass);
}
@media (max-width: 980px) { .prod-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .prod-grid { grid-template-columns: 1fr; } }

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

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.svc-list { list-style: none; margin-top: 2rem; border-top: 1px solid var(--steel); }
.svc-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem;
  padding: 1.15rem 0; border-bottom: 1px solid var(--steel);
  align-items: baseline;
}
.svc-list b { font-weight: 500; display: block; color: var(--white); }
.svc-list p { color: var(--mist); font-size: 0.92rem; margin-top: 0.2rem; font-weight: 300; }

/* Numbered process steps */
.steps { list-style: none; margin-top: 2.5rem; border-top: 1px solid var(--steel); counter-reset: step; }
.steps li {
  display: grid; grid-template-columns: 3rem 1fr; gap: 1.2rem;
  padding: 1.4rem 0; border-bottom: 1px solid var(--steel);
}
.steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-spec); font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--brass); padding-top: 0.25rem;
}
.steps b { font-weight: 500; display: block; color: var(--white); font-size: 1.05rem; }
.steps p { color: var(--mist); font-size: 0.94rem; margin-top: 0.3rem; font-weight: 300; max-width: 60ch; }

/* Gold dot steps (directions) */
.steps.dots li::before {
  counter-increment: none; content: "";
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--brass); margin-top: 0.55rem; justify-self: center;
}
.steps.dots li { grid-template-columns: 2rem 1fr; }

/* ---------- Image slot ---------- */

.slot {
  position: relative; border: 1px solid var(--steel); background: var(--iron);
  aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.slot::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 260px at 30% 20%, color-mix(in srgb, var(--steel) 60%, transparent), transparent 70%);
}
.slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Family of brands: lighter charcoal band ---------- */

.light { background: #2b2723; border-block: 1px solid #443d33; }
.brand-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.brand-card {
  border: 1px solid #443d33; background: #322d28;
  padding: 2.2rem 1.9rem; text-decoration: none; color: var(--white);
  transition: border-color 0.25s;
}
.brand-card:hover, .brand-card:focus-visible { border-color: var(--brass); }
.brand-card .spec { display: block; margin-bottom: 1.2rem; }
.brand-card p { color: var(--mist); font-size: 0.92rem; margin-top: 0.8rem; font-weight: 300; }
.brand-card .go { display: inline-block; margin-top: 1.4rem; font-family: var(--font-spec); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); }
@media (max-width: 880px) { .brand-row { grid-template-columns: 1fr; } }

/* ---------- Quote ---------- */

.quote blockquote {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.3; max-width: 30ch;
}
.quote blockquote em { font-style: normal; color: var(--oxblood-glow); }
.quote cite { display: block; margin-top: 1.6rem; font-style: normal; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(760px 340px at 15% 120%, color-mix(in srgb, var(--oxblood) 22%, transparent), transparent 70%),
    var(--iron);
  border-block: 1px solid var(--steel);
}
.hours { margin-top: 1.6rem; font-family: var(--font-spec); font-size: 0.72rem; letter-spacing: 0.14em; color: var(--mist); line-height: 2.1; }

/* ---------- Team ---------- */

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.member {
  border: 1px solid var(--steel); background: var(--iron); padding: 1.9rem 1.7rem;
  transition: border-color 0.25s, transform 0.25s;
}
.member:hover { border-color: var(--brass); transform: translateY(-2px); }
.member h3 { font-size: 1.25rem; }
.member .role { display: block; margin-top: 0.4rem; margin-bottom: 1.1rem; }
.member .contacts { font-family: var(--font-spec); font-size: 0.76rem; letter-spacing: 0.04em; line-height: 2; color: var(--mist); overflow-wrap: anywhere; }
.member .contacts a { color: var(--mist); text-decoration: none; display: block; transition: color 0.2s; overflow-wrap: anywhere; }
.member .contacts a:hover, .member .contacts a:focus-visible { color: var(--brass); }
@media (max-width: 980px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) {
  .team-grid { grid-template-columns: 1fr; gap: 1rem; }
  .member { padding: 1.5rem 1.4rem; }
  .member .contacts { font-size: 0.8rem; }
}

/* ---------- Forms ---------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; max-width: 720px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block; font-family: var(--font-spec); font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%; background: var(--iron); border: 1px solid var(--steel);
  color: var(--white); padding: 0.9rem 1rem;
  font-family: var(--font-body); font-size: 0.95rem;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Info cards / map ---------- */

.info-card { border: 1px solid var(--steel); background: var(--iron); padding: 2rem 1.9rem; }
.info-card h3 { margin-bottom: 0.8rem; }
.info-card .contacts { font-family: var(--font-spec); font-size: 0.78rem; letter-spacing: 0.06em; line-height: 2.1; color: var(--mist); }
.info-card .contacts a { color: var(--mist); text-decoration: none; }
.info-card .contacts a:hover { color: var(--brass); }

.map-frame { border: 1px solid var(--steel); background: var(--iron); aspect-ratio: 16 / 10; border-radius: 8px; overflow: hidden; box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.access-card {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start;
  border: 1px solid var(--steel); border-left: 3px solid var(--brass);
  background: var(--iron); padding: 1.8rem; margin-top: 2.5rem; max-width: 760px;
}
.access-card .icon { font-size: 1.6rem; color: var(--brass); }
.access-card p { color: var(--mist); font-size: 0.94rem; font-weight: 300; margin-top: 0.3rem; }

/* ---------- Product hopper (bottom nav on product pages) ---------- */

.hopper { border-top: 1px solid var(--steel); padding-block: 3rem 3.5rem; }
.hopper-links { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.hopper-links a {
  border: 1px solid var(--steel); padding: 0.65rem 1.15rem;
  text-decoration: none; font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mist); white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.hopper-links a:hover, .hopper-links a:focus-visible { border-color: var(--brass); color: var(--white); }
.hopper-links a.active {
  background: var(--oxblood); border-color: var(--oxblood); color: var(--white);
  pointer-events: none;
}

/* ---------- Footer ---------- */

footer { border-top: 1px solid var(--steel); padding: 3.5rem 0 2.5rem; background: var(--ink); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.foot-grid h4 { font-family: var(--font-spec); font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--brass); margin-bottom: 1rem; font-weight: 500; }
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 0.55rem; }
.foot-grid a { color: var(--mist); text-decoration: none; font-size: 0.88rem; font-weight: 300; }
.foot-grid a:hover { color: var(--white); }
.foot-tagline { font-family: var(--font-display); font-weight: 500; color: var(--brass); font-size: 1rem; margin-top: 1.2rem; letter-spacing: 0.03em; }
.foot-legal {
  margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--steel);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  font-family: var(--font-spec); font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mist);
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }


/* ---------- Manufacturer links ---------- */
.mfr-label { margin-top: 2rem; }
.mfr-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.mfr-links a, .mfr-links span {
  border: 1px solid var(--steel); padding: 0.55rem 1rem;
  font-size: 0.82rem; color: var(--mist); text-decoration: none;
  white-space: nowrap; transition: border-color 0.2s, color 0.2s;
}
.mfr-links a::after { content: " ↗"; color: var(--brass); font-size: 0.7em; }
.mfr-links a:hover, .mfr-links a:focus-visible { border-color: var(--brass); color: var(--white); }
.prod-section { padding-block: clamp(3rem, 6vw, 4.5rem); border-top: 1px solid var(--steel); }
.prod-section:first-of-type { border-top: 0; padding-top: 0; }


/* ---------- Parking diagram ---------- */
.diagram-frame {
  border: 1px solid var(--steel); background: var(--iron);
  padding: clamp(1rem, 3vw, 2rem); margin-top: 3rem;
  border-radius: 8px; box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.diagram-frame svg, .diagram-frame img { border-radius: 4px; }
.diagram-frame svg, .diagram-frame img { width: 100%; height: auto; display: block; }


/* ---------- Project photo mosaic ---------- */
.photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--steel); border: 1px solid var(--steel); margin-top: 3rem; }
.photo-row .slot { aspect-ratio: 3 / 2; border: 0; border-radius: 0; box-shadow: none; }
.photo-row { border-radius: 8px; overflow: hidden; box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35); }
@media (max-width: 760px) { .photo-row { grid-template-columns: 1fr; } }





/* ---------- Review cards ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1.6rem; }
.quote-card {
  border: 1px solid var(--steel); background: var(--iron);
  border-radius: 8px; padding: 1.8rem 1.7rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.2rem;
  position: relative;
}
.quote-card::before {
  content: "\201C";
  font-family: var(--font-display); font-size: 3rem; line-height: 1;
  color: var(--brass); opacity: 0.85;
  display: block; margin-bottom: -1.4rem;
}
.quote-card blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.02rem; line-height: 1.55; color: var(--white);
}
@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr; } }
