/* ==========================================================================
   Ascend Painting Solutions — landing page
   ========================================================================== */

/* --------------------------------------------------------------- TOKENS -- */
:root {
  --navy:        #174c7a;
  --navy-deep:   #123c61;
  --navy-ink:    #0e3050;
  --gold:        #daa541;
  --gold-dark:   #c08f2e;
  --gold-soft:   #e7c078;
  --page:        #fdfcfa;
  --cream:       #f5f3ee;
  --card:        #ffffff;
  --line:        #e6e1d7;
  --line-soft:   #ece8e0;
  --text:        #5d6874;
  --text-soft:   #8a929c;
  --wa-green:    #25d366;

  --container: 1280px;
  --gutter: 32px;

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;

  --shadow-card: 0 1px 2px rgba(23, 42, 68, .04);
  --shadow-img:  0 10px 30px rgba(23, 42, 68, .10);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Exo 2", "Helvetica Neue", Arial, sans-serif;
  color: var(--navy);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.005em;
}

p  { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, textarea {
  font: inherit;
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ------------------------------------------------------------- EYEBROWS -- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  font-family: "Exo 2", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow-mark { width: 17px; height: 10px; flex: none; fill: var(--gold); }
.eyebrow-mark.on-navy { fill: #fff; }
.eyebrow-mark.on-gold { fill: var(--navy); }

/* --------------------------------------------------------------- BUTTONS -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease),
              box-shadow .22s var(--ease);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold  { background: var(--gold); color: #fff; box-shadow: 0 2px 10px rgba(216,155,51,.24); }
.btn-gold:hover  { background: var(--gold-dark); box-shadow: 0 6px 18px rgba(216,155,51,.32); }

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

.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-card); }
.btn-ghost:hover { border-color: #cfc8ba; }

.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #fbf8f2; }

.btn-block { width: 100%; }

.arrow { width: 17px; height: 10px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ico-wa { width: 17px; height: 17px; flex: none; fill: currentColor; }
.wa-green { color: var(--wa-green); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 78px;
}

/* ------ logo ------ */
.logo {
  display: block;
  flex: none;
  line-height: 0;
}

.logo-mark {
  width: 214px;
  height: auto;
}

/* The footer uses the stacked 3:1 lockup, which needs less width. */
.logo--light .logo-mark { width: 168px; }

/* ------ nav ------ */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  font-family: "Exo 2", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color .2s var(--ease);
}

.primary-nav > ul a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}

.primary-nav > ul a:hover { color: var(--gold); }
.primary-nav > ul a:hover::after { transform: scaleX(1); }

.primary-nav a.is-active { color: var(--gold); }
.primary-nav a.is-active::after { transform: scaleX(1); }

.caret { width: 9px; height: 6px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.primary-nav .nav-cta {
  padding: 12px 21px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: .02em;
  text-transform: none;
  color: #fff;
  white-space: nowrap;
}
.primary-nav .nav-cta:hover { color: #fff; }
.primary-nav .nav-cta::after { display: none; }

/* ------ mobile toggle ------ */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px 9px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(18, 43, 74, .45);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/hero.jpg") 70% 20% / cover no-repeat;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(253, 252, 250, .55)  0%,
    rgba(253, 252, 250, .40) 40%,
    rgba(253, 252, 250, .20) 58%,
    rgba(253, 252, 250, .06) 72%,
    rgba(253, 252, 250, 0)   86%
  );
}

.hero-inner {
  display: flex;
  min-height: 640px;
  padding-top: 62px;
  padding-bottom: 46px;
}

.hero-copy {
  position: relative;
  max-width: 640px;
  align-self: center;
}

/* The wash below is a percentage of the viewport, so as the window narrows it
   slides off the text and the copy ends up on the photograph. This scrim is
   anchored to the copy block itself, so the text always has its own ground. */
.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  /* Full height: a scrim only as tall as the copy leaves visible horizontal
     seams above and below it. .hero clips the overflow. */
  inset: -100vh -360px -100vh -50vw;
  /* A two-stop ramp reads as a hard band. These stops approximate an ease so
     the wash dissolves into the photograph instead of ending. */
  background: linear-gradient(
    90deg,
    var(--page)                calc(100% - 340px),
    rgba(253, 252, 250, .985)  calc(100% - 296px),
    rgba(253, 252, 250, .94)   calc(100% - 252px),
    rgba(253, 252, 250, .86)   calc(100% - 208px),
    rgba(253, 252, 250, .72)   calc(100% - 164px),
    rgba(253, 252, 250, .55)   calc(100% - 124px),
    rgba(253, 252, 250, .37)   calc(100% -  88px),
    rgba(253, 252, 250, .20)   calc(100% -  54px),
    rgba(253, 252, 250, .08)   calc(100% -  26px),
    rgba(253, 252, 250, 0)     100%
  );
}

.hero h1 {
  max-width: 580px;
  margin: 0 0 22px;
  font-size: 58px;
  line-height: .99;
  letter-spacing: -0.012em;
  color: var(--navy);
}

.hero-lede {
  max-width: 435px;
  margin-bottom: 30px;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

/* ------ trust bar ------ */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 22px;
}

.trust-bar li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-bar li + li {
  padding-left: 22px;
  border-left: 1px solid rgba(29, 61, 104, .16);
}

.trust-ico {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-bar span {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 11px;
  line-height: 1.35;
  white-space: nowrap;
  color: var(--text-soft);
}

.trust-bar strong {
  font-family: "Exo 2", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  background: var(--cream);
  padding: 76px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .445fr) minmax(0, .555fr);
  gap: 58px;
  align-items: center;
}

.about-media { margin: 0; }

.about-media img {
  width: 100%;
  aspect-ratio: 1.46 / 1;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-img);
}

.about h2 {
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.18;
}

.about-text {
  max-width: 640px;
  margin-bottom: 34px;
  font-size: 15px;
  line-height: 1.78;
}

/* ------ stats ------ */
.stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.stats li {
  padding: 2px 20px;
  border-left: 1px solid rgba(29, 61, 104, .16);
}
.stats li:first-child { padding-left: 0; border-left: 0; }

.stat-num {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: "Exo 2", sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.stat-num--sm { font-size: 20px; letter-spacing: -0.005em; white-space: nowrap; }

.stat-star { width: 21px; height: 21px; fill: var(--gold); }

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--text-soft);
}

/* ==========================================================================
   SHARED CARD
   ========================================================================== */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { padding: 72px 0 8px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 22px 32px;
  text-align: center;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}

.service-card:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 10px 26px rgba(23, 42, 68, .08);
  transform: translateY(-3px);
}

.svc-ico {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: var(--gold);
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-ico .fill { fill: var(--gold); stroke: none; }
.svc-ico .thin { stroke-width: 2; }
.svc-ico.dots { stroke: none; }

.service-card h3 {
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.3;
  letter-spacing: .045em;
  font-weight: 700;
}

.service-card p {
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--text);
}

/* ==========================================================================
   FEATURED PROJECTS
   ========================================================================== */
.projects { padding: 66px 0 10px; }

.project-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.project-track::-webkit-scrollbar { display: none; }

.project { scroll-snap-align: start; }

.project img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-bottom: 15px;
  transition: transform .4s var(--ease), box-shadow .3s var(--ease);
}

.project:hover img {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(23, 42, 68, .14);
}

.project h3 {
  margin-bottom: 5px;
  font-size: 14px;
  letter-spacing: .05em;
  font-weight: 700;
}

.project p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}
.project p span { color: var(--text-soft); }

/* ------ dots ------ */
.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
}

.dots[hidden] { display: none; }

.dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: #d8d3ca;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width .28s var(--ease), background-color .28s var(--ease);
}

.dots button[aria-selected="true"] {
  width: 26px;
  background: var(--gold);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { padding: 62px 0 8px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  border-radius: var(--r-md);
  transition: transform .4s var(--ease), box-shadow .3s var(--ease);
}

.gallery-grid li { overflow: hidden; border-radius: var(--r-md); }
.gallery-grid img:hover { transform: scale(1.04); }

.more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 34px;
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--navy);
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.more-link:hover { color: var(--gold); gap: 14px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { padding: 68px 0 0; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 26px 24px;
  background: #fbfaf7;
}

.qmark { width: 23px; height: 17px; fill: var(--gold); flex: none; }

.testimonial blockquote {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.68;
  color: var(--text);
}

.testimonial footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.testimonial cite {
  display: block;
  font-family: "Exo 2", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  font-style: normal;
  color: var(--navy);
}

.testimonial footer span {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--text-soft);
}

.stars { display: flex; gap: 2px; }
.stars svg { width: 13px; height: 13px; fill: var(--gold); }

/* ==========================================================================
   QUOTE + WHATSAPP
   ========================================================================== */
.quote-cta { padding: 68px 0 0; }

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* ------ navy form panel ------ */
.quote-panel {
  padding: 30px 32px 32px;
  background: var(--navy);
  border-radius: var(--r-md);
}

.quote-panel h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
  font-size: 21px;
  letter-spacing: .035em;
  color: #fff;
}

.quote-sub {
  margin-bottom: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
}

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

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #d9d4ca;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--navy);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.quote-form textarea { resize: vertical; min-height: 84px; line-height: 1.55; }

.quote-form ::placeholder { color: #9aa1a9; opacity: 1; }

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 155, 51, .25);
}

.quote-form .btn { margin-top: 2px; }

.form-note {
  min-height: 18px;
  font-size: 12.5px;
  color: var(--gold-soft);
}

/* ------ gold whatsapp panel ------ */
.wa-panel {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gold);
  border-radius: var(--r-md);
}

.wa-copy {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 34px 32px;
  max-width: 62%;
}

.wa-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: "Exo 2", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
}

.wa-badge {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  background: #fff;
  border-radius: 999px;
  color: var(--gold);
}
.wa-badge .ico-wa { width: 18px; height: 18px; }

.wa-phone {
  display: block;
  margin-bottom: 18px;
  font-family: "Exo 2", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #fff;
}

.wa-panel .btn-white { box-shadow: 0 3px 12px rgba(120, 80, 10, .18); }

.wa-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .88);
}

.wa-photo {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 40%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
}

/* ==========================================================================
   GET IN TOUCH
   ========================================================================== */
.touch { padding: 60px 0 62px; }

.touch-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.touch-list {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.45fr) minmax(0, .8fr) minmax(0, 1.1fr);
  align-items: start;
  flex: 1;
  min-width: 0;
}

.touch-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 22px;
  border-left: 1px solid var(--line);
}
.touch-list li:first-child { padding-left: 0; border-left: 0; }

.touch-ico {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.touch-list span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--text-soft);
}

/* customerservice@ascendelectrostaticpainting.com is long — allow a break
   instead of pushing the row wider than the container. */
.touch-list a { overflow-wrap: break-word; }

.touch-list strong {
  font-family: "Exo 2", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.touch-list a { transition: color .2s var(--ease); }
.touch-list a:hover { color: var(--gold); }

.follow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.follow > span {
  font-family: "Exo 2", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.social { display: flex; gap: 8px; }

.social a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--navy);
  border-radius: 999px;
  color: #fff;
  transition: background-color .22s var(--ease), transform .22s var(--ease);
}
.social a:hover { background: var(--gold); transform: translateY(-2px); }
.social svg { width: 15px; height: 15px; fill: currentColor; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .72);
}

/* ------ sister company referral ------ */
.sister {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sister-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  padding-block: 22px;
}

.sister-copy {
  max-width: 640px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
}

.sister-copy strong {
  display: block;
  margin-bottom: 2px;
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--navy);
}

.sister-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  padding: 11px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-card);
  font-family: "Exo 2", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--navy);
  white-space: nowrap;
  transition: border-color .22s var(--ease), transform .22s var(--ease),
              box-shadow .22s var(--ease);
}

.sister-link:hover {
  border-color: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(23, 42, 68, .10);
}

.ico-fb { width: 16px; height: 16px; flex: none; fill: #1877f2; }

@media (max-width: 620px) {
  .sister-inner { gap: 16px; padding-block: 20px; }
  .sister-link { width: 100%; justify-content: center; }
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 36px;
  padding-top: 46px;
  padding-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 13px;
  line-height: 1.62;
  color: rgba(255, 255, 255, .68);
}

.footer-col h4 {
  margin-bottom: 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col a,
.footer-col span {
  overflow-wrap: break-word;
  font-size: 13px;
  color: rgba(255, 255, 255, .68);
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--gold-soft); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  flex: none;
  fill: none;
  stroke: rgba(255, 255, 255, .68);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 15px 0;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .56);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .hero h1 { font-size: 54px; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .project-track { grid-auto-columns: calc((100% - 40px) / 3); }
  .primary-nav > ul { gap: 22px; }
  .primary-nav { gap: 24px; }
}

@media (max-width: 1024px) {
  :root { --gutter: 24px; }

  .hero-copy::before,
  .page-head .container::before { display: none; }

  .nav-toggle { display: block; }

  .primary-nav {
    position: fixed;
    inset: 78px 0 auto;
    z-index: 55;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px var(--gutter) 26px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(23, 42, 68, .12);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav > ul li { border-bottom: 1px solid var(--line-soft); }
  .primary-nav > ul a { padding: 13px 0; font-size: 13.5px; }
  .primary-nav > ul a::after { display: none; }
  .primary-nav .nav-cta { margin-top: 16px; align-self: flex-start; }

  .hero-inner { min-height: 0; padding-top: 54px; padding-bottom: 54px; }
  .hero-media { background-position: 72% center; }
  .hero-media::after {
    background: linear-gradient(
      100deg,
      rgba(253, 252, 250, .99) 0%,
      rgba(253, 252, 250, .97) 52%,
      rgba(253, 252, 250, .74) 72%,
      rgba(253, 252, 250, .32) 90%,
      rgba(253, 252, 250, .12) 100%
    );
  }

  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-media img { aspect-ratio: 16 / 9; }


  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: 1fr; }

  .quote-grid { grid-template-columns: 1fr; }
  .wa-copy { max-width: 66%; }
}

@media (max-width: 860px) {
  .hero h1 { font-size: 46px; }
  .hero-lede { font-size: 15px; }

  .trust-bar { flex-wrap: wrap; gap: 14px 18px; }
  .trust-bar li + li { padding-left: 18px; }

  .stats { gap: 20px 0; }
  .stats li { flex: 0 0 50%; }
  .stats li:nth-child(odd) { padding-left: 0; border-left: 0; }

  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-track { grid-auto-columns: calc((100% - 20px) / 2); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .touch-bar { flex-direction: column; align-items: flex-start; gap: 24px; }
  .touch-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
  }
  .touch-list li:nth-child(odd) { padding-left: 0; border-left: 0; }

  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }

  .touch-list { grid-template-columns: 1fr; gap: 18px; }
  .touch-list li { padding: 0; border-left: 0; }

  .hero-media::after {
    background: linear-gradient(
      170deg,
      rgba(253, 252, 250, .97) 0%,
      rgba(253, 252, 250, .94) 62%,
      rgba(253, 252, 250, .82) 100%
    );
  }

  .page-head::after {
    background: linear-gradient(
      170deg,
      rgba(245, 243, 238, .97) 0%,
      rgba(245, 243, 238, .94) 62%,
      rgba(245, 243, 238, .84) 100%
    );
  }

  .header-inner { height: 68px; }
  .primary-nav { inset-block-start: 68px; }

  .hero h1 { font-size: 34px; }
  .hero-actions .btn { flex: 1 1 100%; }

  .trust-bar li { flex: 1 1 100%; }
  .trust-bar li + li { padding-left: 0; border-left: 0; }

  .about h2 { font-size: 27px; }
  .stats li { flex: 0 0 100%; padding-left: 0; border-left: 0; }

  .service-grid { grid-template-columns: 1fr; }
  .project-track { grid-auto-columns: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

  .field-row { grid-template-columns: 1fr; }
  .quote-panel { padding: 26px 22px 28px; }

  .wa-copy { max-width: 100%; padding: 28px 22px; }
  .wa-phone { font-size: 33px; }
  .wa-photo {
    width: 60%;
    opacity: .28;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
  }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 30px; }
  .wa-phone { font-size: 29px; }
  .gallery-grid { gap: 10px; }
}


/* ==========================================================================
   SUB-PAGE: WHAT WE COAT
   ========================================================================== */
.page-head {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--cream);
  padding: 40px 0 62px;
  border-bottom: 1px solid var(--line);
}

/* Each sub-page carries its own photograph behind the heading, washed out on
   the left so the type keeps its contrast. */
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-head .container { position: relative; }
.page-head { overflow: hidden; }

/* Anchored scrim, for the same reason as the home hero. */
.page-head .container::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -100vh;
  bottom: -100vh;
  left: -50vw;
  width: calc(50vw + 980px);
  background: linear-gradient(
    90deg,
    var(--cream)              calc(100% - 340px),
    rgba(245, 243, 238, .985) calc(100% - 296px),
    rgba(245, 243, 238, .94)  calc(100% - 252px),
    rgba(245, 243, 238, .86)  calc(100% - 208px),
    rgba(245, 243, 238, .72)  calc(100% - 164px),
    rgba(245, 243, 238, .55)  calc(100% - 124px),
    rgba(245, 243, 238, .37)  calc(100% -  88px),
    rgba(245, 243, 238, .20)  calc(100% -  54px),
    rgba(245, 243, 238, .08)  calc(100% -  26px),
    rgba(245, 243, 238, 0)    100%
  );
}

.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(245, 243, 238, .50)  0%,
    rgba(245, 243, 238, .34) 42%,
    rgba(245, 243, 238, .16) 60%,
    rgba(245, 243, 238, 0)   80%
  );
}

.page-head--services::before { background-image: url("../img/about.jpg"); }
.page-head--projects::before { background-image: url("../img/fence.jpg"); }
.page-head--process::before  { background-image: url("../img/gallery/process-01.jpg"); }

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  font-family: "Exo 2", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.crumb:hover { color: var(--gold); gap: 13px; }
.arrow--back { width: 17px; }

.page-head h1 {
  max-width: 620px;
  margin: 0 0 22px;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.012em;
}

.page-lede {
  max-width: 610px;
  font-size: 16px;
  line-height: 1.72;
}

.page-note {
  max-width: 610px;
  margin-top: 18px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--text-soft);
}

/* ------ grouped surface grids ------ */
.surfaces { padding: 66px 0 10px; }

.surface-group + .surface-group { margin-top: 58px; }

.surface-head { margin-bottom: 26px; }

.surface-head h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 19px;
  letter-spacing: .04em;
}
.surface-head h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.surface-head p {
  max-width: 640px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-soft);
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.surface-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 28px 18px 24px;
  text-align: center;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease),
              transform .25s var(--ease);
}

.surface-card:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 10px 26px rgba(23, 42, 68, .08);
  transform: translateY(-3px);
}

.surf-ico {
  width: 42px;
  height: 42px;
  flex: none;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.surf-ico .fill { fill: var(--gold); stroke: none; }
.surf-ico .thin { stroke-width: 1.8; }

.surface-card h3 {
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: .045em;
  font-weight: 700;
}

/* ------ limitation callout ------ */
.caveat { padding: 58px 0 0; }

.caveat-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.caveat-ico {
  width: 26px;
  height: 26px;
  flex: none;
  margin-top: 2px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
}
.caveat-ico .fill { fill: var(--gold); stroke: none; }

.caveat-card h3 {
  margin-bottom: 7px;
  font-size: 15px;
  letter-spacing: .04em;
}

.caveat-card p {
  max-width: 820px;
  font-size: 14.5px;
  line-height: 1.7;
}

/* ------ closing CTA ------ */
.page-cta { padding: 58px 0 72px; }

.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 36px 40px;
  background: var(--navy);
  border-radius: var(--r-md);
}

.page-cta h2 {
  margin-bottom: 8px;
  font-size: 25px;
  letter-spacing: .03em;
  color: #fff;
}

.page-cta p {
  max-width: 560px;
  font-size: 14.5px;
  line-height: 1.68;
  color: rgba(255, 255, 255, .76);
}

.page-cta-actions { display: flex; gap: 13px; flex-wrap: wrap; }

/* ------ the "And More" card becomes a link ------ */
.service-card--link { cursor: pointer; }

.service-card--link .svc-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: "Exo 2", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s var(--ease);
}
.service-card--link:hover .svc-more { gap: 13px; }

@media (max-width: 1180px) {
  .surface-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .page-head h1 { font-size: 44px; }
}

@media (max-width: 860px) {
  .surface-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-head h1 { font-size: 38px; }
  .page-cta-inner { padding: 28px 24px; }
}

@media (max-width: 1024px) {
  .page-head::after {
    background: linear-gradient(
      100deg,
      rgba(245, 243, 238, .99) 0%,
      rgba(245, 243, 238, .96) 54%,
      rgba(245, 243, 238, .76) 76%,
      rgba(245, 243, 238, .40) 100%
    );
  }
}

@media (max-width: 620px) {
  .page-head { padding: 30px 0 46px; }
  .page-head h1 { font-size: 31px; }
  .surface-grid { gap: 12px; }
  .surface-card { padding: 22px 12px 20px; gap: 13px; }
  .caveat-card { flex-direction: column; gap: 12px; padding: 22px; }
  .page-cta-actions .btn { flex: 1 1 100%; }
}


/* ==========================================================================
   SUB-PAGE: PROJECT GALLERY
   ========================================================================== */
.gallery-page { padding: 40px 0 10px; }

/* ------ filter chips ------ */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "Exo 2", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--navy);
  cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease),
              color .2s var(--ease);
}

.chip span {
  min-width: 20px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--cream);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-soft);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}

.chip:hover { border-color: var(--gold-soft); }

.chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.chip.is-active span { background: rgba(255, 255, 255, .18); color: #fff; }

/* ------ grouped grids ------ */
.gal-group[hidden] { display: none; }
.gal-group + .gal-group { margin-top: 52px; }

.gal-head { margin-bottom: 20px; }

.gal-head h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
  font-size: 19px;
  letter-spacing: .04em;
}

.gal-count {
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-family: "Exo 2", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-soft);
}

.gal-head p {
  max-width: 680px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-soft);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.shot-btn {
  display: block;
  width: 100%;
  padding: 0;
  background: var(--cream);
  border: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
}

.shot-btn img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.shot-btn:hover img { transform: scale(1.05); }

/* ------ lightbox ------ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 40px 68px;
  background: rgba(8, 20, 34, .93);
}
.lightbox[hidden] { display: none; }

.lb-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.lb-close,
.lb-nav {
  position: absolute;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  cursor: pointer;
  transition: background-color .2s var(--ease);
}
.lb-close:hover,
.lb-nav:hover { background: rgba(255, 255, 255, .22); }

.lb-close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}
.lb-prev { left: 14px; }
.lb-next { right: 14px; }

.lb-count {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Exo 2", sans-serif;
  font-size: 12.5px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .72);
}

@media (max-width: 1180px) {
  .gal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .gal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lightbox { padding: 20px 12px 54px; }
  .lb-nav { width: 40px; height: 40px; font-size: 26px; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
}

@media (max-width: 620px) {
  .gal-grid { gap: 9px; }
  .chips { gap: 7px; margin-bottom: 30px; }
  .chip { padding: 8px 12px; font-size: 12px; }
}


/* ==========================================================================
   SUB-PAGE: OUR PROCESS
   ========================================================================== */
.science { padding: 64px 0 0; }

.science-copy {
  max-width: 780px;
  margin-bottom: 34px;
}

.science-copy h3 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: .02em;
}

.science-copy p {
  font-size: 15px;
  line-height: 1.75;
}
.science-copy p + p { margin-top: 16px; }
.science-copy strong { color: var(--navy); font-weight: 600; }

/* The infographic carries small labels, so it runs the full container width
   rather than sitting in a column where its type would be unreadable. */
.science-figure { margin: 0; }

.science-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.science-figure figcaption {
  max-width: 780px;
  margin-top: 15px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-soft);
}
.science-figure figcaption strong {
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  color: var(--navy);
}

/* ------ video: the source footage is 9:16 phone video, so it is framed
   vertically rather than cropped into a landscape box ------ */
.video-sec { padding: 62px 0 0; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 286px)) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.video-item { margin: 0; }

.video-item video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  background: #0e1a26;
  border-radius: var(--r-md);
  object-fit: cover;
}

.video-item figcaption {
  margin-top: 13px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-soft);
}

.video-item figcaption strong {
  display: block;
  margin-bottom: 3px;
  font-family: "Exo 2", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
}

.video-note {
  padding: 26px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.video-note h3 {
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: .04em;
}

.video-note p {
  font-size: 14.5px;
  line-height: 1.72;
}
.video-note p + p { margin-top: 13px; }

.video-note-meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--text-soft);
}

/* ------ steps ------ */
.steps { padding: 66px 0 0; }

.step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 44px;
  counter-reset: step;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.step-num {
  flex: none;
  font-family: "Exo 2", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--gold);
}

.step h3 {
  margin-bottom: 7px;
  font-size: 15px;
  letter-spacing: .045em;
}

.step p {
  font-size: 14px;
  line-height: 1.68;
}

/* ------ benefits ------ */
.benefits { padding: 62px 0 0; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 28px 20px 26px;
  text-align: center;
}

.benefit h3 { font-size: 14px; letter-spacing: .045em; }
.benefit p { font-size: 13.5px; line-height: 1.62; }

@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-note { grid-column: 1 / -1; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .step-list { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 620px) {
  .science-copy h3 { font-size: 20px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; gap: 22px; }
  .video-item video { max-width: 320px; margin-inline: auto; }
}

/* ------------------------------------------------------- MOTION / PRINT -- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .project-track { scroll-behavior: auto; }
}
