/* Richmond Kitchen Remodeling - Site Concept
   Design language: #7 Industrial Edge (type, spacing, composition, motion ONLY)
   Palette: prospect's real brand colors - slate teal #4c6971 (logo), red #df0b2f (site accent) */

:root {
  /* Dark bands: their logo teal, deepened within family */
  --ink:        #1c2b30;
  --ink-2:      #24363d;
  --teal:       #4c6971;
  --teal-soft:  #5f7f88;

  /* Light bands: concrete neutrals from the language, warmed to their photography */
  --concrete:   #e9e6e1;
  --steel:      #f4f2ef;

  /* Accent: their site red, plus a deepened variant for small text on light */
  --red:        #df0b2f;
  --red-deep:   #a80823;
  --red-on-dark:#f04a63;

  /* Text */
  --text-dark:  #161c1f;
  --text-body:  #45525a;
  --text-muted: #5f6d75;
  --text-light: #f4f2ef;
  --text-light-muted: rgba(244,242,239,0.62);

  /* Type (Industrial Edge) */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Layout */
  --wrap:       min(92%, 1180px);
  --nav-h:      76px;

  /* Motion (Industrial Edge: quick, mechanical) */
  --ease-mech:  cubic-bezier(0.4, 0, 0.6, 1);
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--steel);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: var(--wrap); margin-inline: auto; }

/* ============ EYEBROW / HEADINGS ============ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red-deep);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-dark .eyebrow { color: var(--red-on-dark); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.h-display {
  font-size: clamp(3.4rem, 8.5vw, 7.2rem);
}
.h-section {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
}
.h-sub {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--text-body);
  max-width: 56ch;
}
.section-dark .lede { color: var(--text-light-muted); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 1.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease-mech), color 0.35s var(--ease-mech), border-color 0.35s var(--ease-mech), transform 0.35s var(--ease-mech);
}
.btn .btn-arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease-mech);
}
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn--red {
  background: var(--red);
  color: #fff;
}
.btn--red:hover { background: var(--red-deep); }

.btn--ghost-light {
  border-color: rgba(244,242,239,0.4);
  color: var(--text-light);
  background: transparent;
}
.btn--ghost-light:hover { border-color: var(--text-light); background: rgba(244,242,239,0.08); }

.btn--ghost-dark {
  border-color: rgba(22,28,31,0.35);
  color: var(--text-dark);
  background: transparent;
}
.btn--ghost-dark:hover { border-color: var(--text-dark); background: rgba(22,28,31,0.05); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-mech), box-shadow 0.4s var(--ease-mech);
}
.nav.scrolled {
  background: var(--ink);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}
.nav-inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nav-logo img {
  height: 44px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  transition: color 0.3s var(--ease-mech);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.35s var(--ease-mech);
}
.nav-links a:hover { color: var(--text-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  transition: background 0.3s var(--ease-mech);
}
.nav-cta:hover { background: var(--red-deep); }

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 400;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-light);
  margin: 6px auto;
  transition: transform 0.35s var(--ease-mech), opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 8vw 3rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-mech);
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu a.mmlink {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 4rem);
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.15;
  border-bottom: 1px solid rgba(244,242,239,0.12);
  padding: 0.55rem 0;
  transition: color 0.3s, padding-left 0.3s var(--ease-mech);
}
.mobile-menu a.mmlink:hover { color: var(--red-on-dark); padding-left: 0.6rem; }
.mobile-menu .mm-contact {
  margin-top: 2rem;
  color: var(--text-light-muted);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}
.mobile-menu .mm-contact a {
  color: var(--text-light);
  display: block;
  padding-block: 0.65rem;
  min-height: 44px;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--ink);
  color: var(--text-light);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: stretch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vw, 6rem) max(calc((100vw - 1180px) / 2), 4vw);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-on-dark);
  margin-bottom: 1.6rem;
}
.hero-tag::before { content: ""; width: 30px; height: 2px; background: var(--red); }
.hero h1 {
  font-size: clamp(3.2rem, 6.2vw, 5.6rem);
  margin-bottom: 1.6rem;
}
.hero h1 .accent { color: var(--red-on-dark); }
.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-light-muted);
  max-width: 46ch;
  margin-bottom: 2.4rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-cred {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(244,242,239,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}
.hero-cred .cred {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.hero-cred .cred svg { flex-shrink: 0; }

.hero-media {
  position: relative;
  min-height: 420px;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(28,43,48,0.55) 22%, rgba(28,43,48,0) 52%);
  z-index: 1;
}
.hero-badge {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  max-width: 100%;
  background: var(--red);
  color: #fff;
  padding: 0.9rem 1.3rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}
.hero-badge small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  opacity: 0.85;
  margin-top: 0.25rem;
}

/* ============ CRED STRIP ============ */
.credstrip {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  padding: 0.85rem 0;
}
.credstrip-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.credstrip-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.credstrip-track span::after {
  content: "";
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.55);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ INTRO ============ */
.intro {
  background: var(--steel);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.intro h2 { margin-bottom: 1.4rem; }
.intro h2 .accent { color: var(--red-deep); }
.intro-facts {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(22,28,31,0.14);
  border: 1px solid rgba(22,28,31,0.14);
}
.intro-facts .fact {
  background: var(--steel);
  padding: 1.4rem 1.5rem;
}
.intro-facts .fact b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.intro-facts .fact span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.intro-copy p + p { margin-top: 1.2rem; }
.intro-copy .sig {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 2px solid var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.intro-copy .sig b { color: var(--text-dark); letter-spacing: 0.12em; text-transform: uppercase; }

/* ============ SERVICES LEDGER ============ */
.services {
  background: var(--ink);
  color: var(--text-light);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.services-head p { max-width: 40ch; color: var(--text-light-muted); font-size: 0.98rem; }
.ledger {
  border-top: 1px solid rgba(244,242,239,0.16);
}
.ledger-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.1fr) minmax(0, 1fr) 60px;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid rgba(244,242,239,0.16);
  position: relative;
}
.ledger-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--teal-soft);
  line-height: 1;
}
.ledger-row h3 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  transition: color 0.3s var(--ease-mech);
}
.ledger-row:hover h3 { color: var(--red-on-dark); }
.ledger-row p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  max-width: 52ch;
}
.ledger-arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(244,242,239,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease-mech), border-color 0.3s;
  justify-self: end;
}
.ledger-row:hover .ledger-arrow { background: var(--red); border-color: var(--red); }
.ledger-arrow svg { stroke: var(--text-light); }

/* ============ PROJECT STRIP (signature) ============ */
.work {
  background: var(--ink-2);
  color: var(--text-light);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4.5rem, 8vw, 7.5rem);
  overflow: hidden;
}
.work-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.work-rail {
  display: flex;
  gap: clamp(1rem, 2vw, 1.6rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 max(calc((100vw - 1180px) / 2), 4vw) 1.5rem;
  scroll-padding-inline: max(calc((100vw - 1180px) / 2), 4vw);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.work-rail::-webkit-scrollbar { display: none; }
.work-card {
  flex: 0 0 min(78vw, 460px);
  scroll-snap-align: start;
  position: relative;
  background: var(--ink);
}
.work-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: saturate(0.92);
  transition: filter 0.4s var(--ease-mech), transform 0.6s var(--ease-out);
}
.work-card:hover img { filter: saturate(1.05); transform: scale(1.03); }
.work-card .wc-media { overflow: hidden; }
.work-card .wc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-top: 3px solid var(--red);
}
.work-card .wc-label b {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}
.work-card .wc-label span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}
.work-hint {
  text-align: center;
  color: var(--text-light-muted);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ============ PROCESS ============ */
.process {
  background: var(--concrete);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(22,28,31,0.16);
  border: 1px solid rgba(22,28,31,0.16);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.process-step {
  background: var(--concrete);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  position: relative;
}
.process-step .pnum {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 1rem;
}
.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}
.process-step p { font-size: 0.92rem; color: var(--text-body); }
.process-step::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-mech);
}
.process-step:hover::after { transform: scaleX(1); }

/* ============ TESTIMONIALS ============ */
.reviews {
  background: var(--ink);
  color: var(--text-light);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.reviews-side { position: sticky; top: calc(var(--nav-h) + 2rem); }
.reviews-side h2 { margin-bottom: 1.2rem; }
.reviews-side p { color: var(--text-light-muted); max-width: 38ch; }
.review-list { display: flex; flex-direction: column; gap: 1px; background: rgba(244,242,239,0.14); border: 1px solid rgba(244,242,239,0.14); }
.review {
  background: var(--ink);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.review blockquote {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.review blockquote::before {
  content: "";
  display: block;
  width: 34px; height: 3px;
  background: var(--red);
  margin-bottom: 1.1rem;
}
.review cite {
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-on-dark);
}
.review cite span { color: var(--text-light-muted); font-weight: 400; letter-spacing: 0.12em; text-transform: none; }

/* ============ CTA ============ */
.cta {
  background: var(--teal);
  color: #fff;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(28,43,48,0.85) 0%, rgba(28,43,48,0.35) 55%, rgba(28,43,48,0) 100%);
}
.cta-inner { position: relative; z-index: 1; text-align: left; }
.cta h2 { margin-bottom: 1.2rem; }
.cta p { color: rgba(255,255,255,0.85); max-width: 52ch; margin-bottom: 2.4rem; font-size: clamp(1rem, 1.4vw, 1.15rem); }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.cta .btn--ghost-light { border-color: rgba(255,255,255,0.5); color: #fff; }
.cta .btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--text-light-muted);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244,242,239,0.12);
}
.footer-logo img { height: 52px; width: auto; max-width: 220px; object-fit: contain; margin-bottom: 1.2rem; }
.footer-logo p { font-size: 0.92rem; max-width: 40ch; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: 0.2rem; }
.footer-links a {
  font-size: 0.92rem;
  transition: color 0.3s;
  display: inline-block;
  padding-block: 0.35rem;
}
.footer-links a:hover { color: var(--red-on-dark); }
.footer-contact li { font-size: 0.92rem; margin-bottom: 0.7rem; }
.footer-contact a { color: var(--text-light); }
.footer-contact a:hover { color: var(--red-on-dark); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

/* ============ REVEAL ANIMATIONS ============ */
html.js .reveal { opacity: 0; transform: translateY(34px); }
html.js .reveal.in { opacity: 1; transform: none; transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
html.js .reveal-d1.in { transition-delay: 0.08s; }
html.js .reveal-d2.in { transition-delay: 0.16s; }
html.js .reveal-d3.in { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
  .credstrip-track { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-side { position: static; }
}

@media (max-width: 768px) {
  .hero { min-height: 100svh; height: auto; display: block; padding-top: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy {
    padding: calc(var(--nav-h) + 3rem) 6vw 3rem;
    order: 2;
  }
  .hero-media { min-height: 52svh; order: 1; }
  .hero-media::before {
    background: linear-gradient(180deg, rgba(28,43,48,0.15) 40%, var(--ink) 100%);
  }
  .hero-badge { right: 4vw; bottom: 1.2rem; }
  .intro-grid { grid-template-columns: 1fr; }
  .services-head { flex-direction: column; align-items: flex-start; }
  .ledger-row { grid-template-columns: 56px minmax(0, 1fr) 44px; }
  .ledger-row p { grid-column: 2 / 3; grid-row: 2; margin-top: 0.6rem; }
  .ledger-num { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links a { padding-block: 0.65rem; }
  .footer-contact a { display: inline-block; padding-block: 0.65rem; }
  .work-card { flex-basis: 82vw; }
  .work-card img { height: 260px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .intro-facts { grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-row .btn { width: 100%; justify-content: center; }
}
