/* ==========================================================================
   Jeorgy's Landscape Construction
   Editorial Craftsman — v2
   ========================================================================== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Spectral:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Teko:wght@500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  /* Colour — restraint: neutrals dominant, green + gold as punctuation */
  --ink: #141414;             /* Text only */
  --ink-soft: #2B2B2B;
  --ink-charcoal: #232b2b;    /* Non-text: bgs, button fills, borders */
  --paper: #F2EEE8;
  --paper-warm: #EAE4DA;
  --rule: #1C1C1C;
  --muted: #6D6A64;
  --green: #1E4D28;
  --green-deep: #1c352d;
  --gold: #C79849;            /* Buttons + text accents on LIGHT bg */
  --gold-warm: #B8873A;       /* Button shadow/hover companion */
  --gold-bright: #D5B038;     /* Text accents on DARK bg (better contrast) */

  /* Type */
  --font-display: 'Teko', 'Inter', sans-serif;
  --font-serif: 'Spectral', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Text scale — 1.25 (Major Third) */
  --t-xs: 0.75rem;    /* 12px */
  --t-sm: 0.875rem;   /* 14px */
  --t-base: 1rem;     /* 16px */
  --t-lg: 1.25rem;    /* 20px */
  --t-xl: 1.5rem;     /* 24px */
  --t-2xl: 2rem;      /* 32px */

  /* Display scale — 4 levels, applied consistently across all headings */
  --d-1: clamp(3rem, 9vw, 6.5rem);       /* 48–104px — hero H1 only */
  --d-2: clamp(2.25rem, 5vw, 4rem);      /* 36–64px — major section headings */
  --d-3: clamp(1.5rem, 2.4vw, 2rem);     /* 24–32px — service titles, step titles */
  --d-4: 1.25rem;                        /* 20px — labels, stat values */

  /* Spacing — 8pt grid */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;
  --s-10: 192px;

  --wrap: 1360px;
  --gutter: 32px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.55, 0, 0.65, 0);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: var(--ink-charcoal); color: var(--paper); }

/* --- Type Primitives --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
}

.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
}

.section-number {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: var(--t-lg);
  color: var(--gold);
  letter-spacing: 0;
}

/* --- Layout --- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap--narrow {
  max-width: 960px;
}

section {
  padding: var(--s-8) 0;
}

/* Section header (eyebrow + number) */
.s-head {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid rgba(35, 43, 43, 0.15);
}

.s-head .section-number {
  flex-shrink: 0;
}

.s-head .eyebrow {
  margin-left: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-base);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 2px solid var(--ink-charcoal);
  background: var(--ink-charcoal);
  color: var(--paper);
  cursor: pointer;
  border-radius: 0;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 52px;
  text-align: center;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
  z-index: -1;
}

.btn:hover::after { transform: translateY(0); }
.btn:hover { background: transparent; color: var(--ink); border-color: var(--ink-charcoal); }

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 0 0 var(--gold-warm);
}
.btn--gold:hover { background: #000; color: #fff; border-color: #000; box-shadow: 0 4px 0 0 #000; }
.btn--gold:hover::after { transform: translateY(101%); }

/* Ghost = strong outlined CTA — NOT dead text */
.btn--ghost {
  background: rgba(242, 238, 232, 0.08);
  border: 2px solid var(--paper);
  color: var(--paper);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn--ghost::after { background: var(--paper); }
.btn--ghost:hover { color: var(--ink); border-color: var(--paper); }

.btn--inverse {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.btn--inverse::after { background: var(--gold); }

/* Small button variant for the header */
.btn--sm {
  padding: 12px 20px;
  letter-spacing: 0.15em;
  min-height: 44px;
  border-width: 2px;
}

/* Header Call CTA — gold, with phone icon + number */
.btn--call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-base);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  border-radius: 0;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  min-height: 44px;
  box-shadow: 0 3px 0 0 var(--gold-warm);
  white-space: nowrap;
  text-align: center;
}

.btn--call::after { background: var(--ink-charcoal); }
.btn--call:hover {
  color: var(--paper);
  border-color: var(--ink-charcoal);
  box-shadow: 0 3px 0 0 var(--ink-charcoal);
}

.btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn__phone {
  font-family: var(--font-display);
  font-size: var(--t-base);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding-left: var(--s-2);
  border-left: 1px solid rgba(35, 43, 43, 0.25);
  margin-left: 2px;
  transition: border-color 0.35s var(--ease);
}

.btn--call:hover .btn__phone {
  border-left-color: rgba(199, 152, 73, 0.4);
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: var(--s-3) 0;
  background: var(--paper);
  border-bottom: 1px solid rgba(35, 43, 43, 0.1);
  transition: padding 0.4s var(--ease), box-shadow 0.5s var(--ease);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 1px 20px rgba(35, 43, 43, 0.06);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  flex-shrink: 0;
  min-width: 0;
}

.logo img {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
  max-width: none;
  transition: height 0.4s var(--ease);
  mix-blend-mode: multiply; /* knocks out the white JPG bg on paper */
}

.header.scrolled .logo img {
  height: 44px;
}

.nav {
  display: flex;
  gap: var(--s-5);
}

.nav a {
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav a::after {
  content: '';
  position: absolute;
  inset: auto 0 -2px 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.btn--call .btn__phone {
  display: none; /* hidden on desktop — shown on mobile via the mobile override */
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-base);
  letter-spacing: 0.01em;
  margin-left: 4px;
  text-transform: none;
}

.btn--call .btn__icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 2px;
}

/* (Hamburger removed — 1-page site) */

/* ==========================================================================
   HERO — Editorial nameplate
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-10) 0 var(--s-7);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: translate3d(0, var(--parallax, 0), 0);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,20,20,0.72) 0%, rgba(20,20,20,0.45) 35%, rgba(20,20,20,0.88) 100%);
  z-index: 1;
}

/* Subtle noise texture */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  z-index: 2;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
}

.hero__meta-top {
  position: absolute;
  top: calc(-1 * var(--s-10) + 120px);
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s-4);
  font-family: var(--font-body);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 238, 232, 0.7);
}

.hero__meta-top > span {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.hero__meta-top .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero__eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--d-3);
  color: var(--gold-bright);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}

.hero__title {
  font-size: var(--d-1);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: var(--s-5);
  text-transform: uppercase;
  max-width: 14ch;
}

.hero__title .line {
  display: block;
  overflow: hidden;
}

.hero__title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s var(--ease-out) forwards;
}

.hero__title .line:nth-child(1) span { animation-delay: 0.2s; }
.hero__title .line:nth-child(2) span { animation-delay: 0.35s; }
.hero__title .line:nth-child(3) span { animation-delay: 0.5s; }

@keyframes rise {
  to { transform: translateY(0); }
}

.hero__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(242, 238, 232, 0.2);
}

.hero__services-line {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--t-base);
  letter-spacing: 0.05em;
  color: rgba(242, 238, 232, 0.85);
  line-height: 1.5;
  max-width: 30ch;
  opacity: 0;
  animation: fade 0.8s var(--ease-out) 1s forwards;
}

.hero__services-line em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
}

.hero__ctas {
  display: flex;
  gap: var(--s-3);
  opacity: 0;
  animation: fade 0.8s var(--ease-out) 1.1s forwards;
}

@keyframes fade {
  to { opacity: 1; }
}

.hero__scroll {
  position: absolute;
  top: calc(-1 * var(--s-10) + 120px + 28px); /* sits directly below .hero__meta-top */
  right: var(--gutter);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  color: rgba(242, 238, 232, 0.6);
  font-family: var(--font-body);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fade 0.8s var(--ease-out) 1.4s forwards;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: var(--gold);
  animation: scrollPulse 2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   CRED BAR — thin line of stats (not a card grid)
   ========================================================================== */

.cred {
  background: var(--ink-charcoal);
  color: var(--paper);
  padding: var(--s-5) 0;
  overflow: hidden;
}

.cred__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  flex-wrap: wrap;
}

.cred__item {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
}

.cred__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--d-3);
  letter-spacing: -0.01em;
  color: var(--gold-bright);
  line-height: 1;
}

.cred__label {
  font-family: var(--font-body);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 238, 232, 0.75);
}

/* ==========================================================================
   SERVICES — editorial list (not cards)
   ========================================================================== */

.services { background: var(--paper); }

.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-7);
}

.services__h {
  font-size: var(--d-2);
  line-height: 0.95;
  max-width: 14ch;
}

.services__h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.02em;
  text-transform: none;
}

.services__intro {
  font-size: var(--t-lg);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 44ch;
  font-weight: 400;
}

.svc-list {
  border-top: 1px solid var(--ink-charcoal);
}

.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 60px;
  gap: var(--s-5);
  align-items: center;
  padding: var(--s-5) var(--s-4);
  border-bottom: 1px solid var(--ink-charcoal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition: color 0.4s var(--ease);
}

.svc-row > * {
  position: relative;
  z-index: 1;
}

.svc-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-deep);
  transform: translateY(101%);
  transition: transform 0.6s var(--ease);
  z-index: 0;
}

.svc-row:hover {
  color: var(--paper);
}

.svc-row:hover::before {
  transform: translateY(0);
}

.svc-row:hover .svc-row__num,
.svc-row:hover .svc-row__arrow { color: var(--gold-bright); }

.svc-row__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-xl);
  color: var(--gold);
  transition: color 0.4s var(--ease);
}

.svc-row__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--d-3);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}

.svc-row__desc {
  font-size: var(--t-base);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  transition: color 0.4s var(--ease);
  max-width: 48ch;
}

.svc-row:hover .svc-row__desc { color: rgba(242, 238, 232, 0.85); }

.svc-row__arrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-xl);
  color: var(--ink);
  transition: color 0.4s var(--ease), transform 0.5s var(--ease);
  justify-self: end;
}

.svc-row:hover .svc-row__arrow { transform: translateX(6px); }

/* ==========================================================================
   PROCESS — massive numbered steps
   ========================================================================== */

.process {
  background: var(--paper-warm);
  position: relative;
}

.process__head {
  max-width: 900px;
  margin-bottom: var(--s-7);
}

.process__h {
  font-size: var(--d-2);
  line-height: 0.95;
  margin-bottom: var(--s-3);
}

.process__h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
  letter-spacing: -0.02em;
}

.process__intro {
  font-size: var(--t-lg);
  color: var(--ink-soft);
  max-width: 52ch;
  font-weight: 400;
  line-height: 1.5;
}

.process__list {
  display: grid;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s-6);
  padding: var(--s-6) 0;
  border-top: 1px solid rgba(35, 43, 43, 0.2);
  align-items: start;
}

.process-step:last-child {
  border-bottom: 1px solid rgba(35, 43, 43, 0.2);
}

.process-step__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.85;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}

.process-step__body h3 {
  font-size: var(--d-3);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}

.process-step__body p {
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  font-weight: 400;
}

/* ==========================================================================
   PORTFOLIO — masonry-ish editorial grid
   ========================================================================== */

.work { background: var(--paper); }

.work__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
}

.work__h {
  font-size: var(--d-2);
  line-height: 0.95;
}

.work__h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
  letter-spacing: -0.02em;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-4);
}

.work__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper-warm);
}

.work__item:nth-child(1) { grid-column: span 8; }   /* Hamilton driveway — hero */
.work__item:nth-child(2) { grid-column: span 4; }   /* Walkway B&A — portrait */
.work__item:nth-child(3) { grid-column: span 4; }
.work__item:nth-child(4) { grid-column: span 4; }
.work__item:nth-child(5) { grid-column: span 4; }
.work__item:nth-child(6) { grid-column: span 6; }
.work__item:nth-child(7) { grid-column: span 6; }
.work__item:nth-child(8) { grid-column: span 12; }  /* Paver install — full-width detail shot */

.work__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.82) saturate(0.92);
}

.work__item:hover img {
  transform: scale(1.04);
  filter: brightness(0.9) saturate(1.05);
}

.work__item--lg { aspect-ratio: 3/2; }
.work__item--sm { aspect-ratio: 4/5; }
.work__item--md { aspect-ratio: 1/1; }

.work__item:nth-child(1) { aspect-ratio: 16/9; }
.work__item:nth-child(2) { aspect-ratio: 4/5; }
.work__item:nth-child(3),
.work__item:nth-child(4),
.work__item:nth-child(5) { aspect-ratio: 1/1; }
.work__item:nth-child(6),
.work__item:nth-child(7) { aspect-ratio: 3/2; }
.work__item:nth-child(8) { aspect-ratio: 21/9; }  /* Wide detail shot */

.work__item__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--s-4);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-3);
  background: linear-gradient(0deg, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.6) 40%, rgba(20,20,20,0) 100%);
  color: var(--paper);
  transform: translateY(0);
  transition: transform 0.5s var(--ease);
}

.work__item__caption h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-lg);
  letter-spacing: 0.01em;
  color: var(--paper);
  margin-bottom: 2px;
}

.work__item__caption .loc {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-lg);
  color: var(--gold-bright);
}

.work__item__caption .plus {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-2xl);
  color: var(--gold-bright);
  line-height: 1;
  transition: transform 0.5s var(--ease);
}

.work__item:hover .work__item__caption .plus { transform: rotate(90deg); }

.work__item--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-5);
  text-align: center;
  cursor: default;
  border: 1px solid rgba(35, 43, 43, 0.2);
  background: var(--paper);
}

.work__item--soon .soon-inner p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-lg);
  color: var(--ink-soft);
  line-height: 1.4;
  margin-bottom: var(--s-2);
}

.work__item--soon .soon-inner small {
  font-family: var(--font-body);
  font-size: var(--t-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.work__item--soon .soon-inner small a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

/* Fade reveal — matches sticky quote button timing */
.work__item.reveal img,
.work__item.reveal .soon-inner {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.4s var(--ease) var(--delay, 0ms),
    transform 0.4s var(--ease) var(--delay, 0ms);
}

.work__item.reveal.in img,
.work__item.reveal.in .soon-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MID-CTA — editorial call
   ========================================================================== */

.midcta {
  background: var(--green-deep);
  color: var(--paper);
  padding: var(--s-8) 0;
  position: relative;
  overflow: hidden;
}

.midcta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-6);
  align-items: center;
}

.midcta__text {
  max-width: 22ch;
}

.midcta__text h2 {
  font-size: var(--d-2);
  line-height: 0.95;
  color: var(--paper);
}

.midcta__text h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  text-transform: none;
}

.midcta__ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

/* ==========================================================================
   ABOUT — editorial portrait + pull quote
   ========================================================================== */

.about {
  background: var(--paper);
}

.about__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--s-7);
  align-items: start;
}

.about__photo {
  position: relative;
}

.about__photo img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about__photo::before {
  content: '';
  position: absolute;
  inset: -16px 0 0 -16px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  width: 80px;
  height: 80px;
  z-index: 2;
}

.about__photo::after {
  content: '';
  position: absolute;
  inset: auto -16px -16px auto;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  width: 80px;
  height: 80px;
  z-index: 2;
}

.about__body .eyebrow { margin-bottom: var(--s-3); }

.about__h {
  font-size: var(--d-2);
  line-height: 0.95;
  margin-bottom: var(--s-4);
  max-width: 16ch;
}

.about__h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
  letter-spacing: -0.02em;
}

.about__body p {
  font-size: var(--t-lg);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: var(--s-3);
  font-weight: 400;
  max-width: 54ch;
}


.pull-quote {
  margin: var(--s-5) 0;
  padding: var(--s-4) 0 var(--s-4) var(--s-4);
  border-left: 2px solid var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, var(--t-2xl));
  line-height: 1.3;
  color: var(--ink);
  max-width: 28ch;
  letter-spacing: -0.01em;
}

.pull-quote cite {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: var(--t-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.about__stats {
  margin-top: var(--s-5);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(35, 43, 43, 0.15);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.about__stat dt {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.about__stat dd {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--d-4);
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   REVIEWS — single pull-quote feature
   ========================================================================== */

.reviews {
  background: var(--ink-charcoal);
  color: var(--paper);
  padding: var(--s-9) 0;
}

.reviews__inner {
  max-width: 960px;
}

.reviews__eyebrow {
  color: var(--gold-bright);
  margin-bottom: var(--s-4);
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
}

.reviews__stars {
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  font-size: var(--t-sm);
}

.reviews__quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: var(--d-2);
  line-height: 1.2;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin-bottom: var(--s-5);
  max-width: 22ch;
}

.reviews__quote::before {
  content: '“';
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--d-1);
  line-height: 0.5;
  color: var(--gold-bright);
  margin-bottom: var(--s-3);
}

.reviews__cite {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242, 238, 232, 0.8);
  margin-bottom: var(--s-6);
}

.reviews__cite span { color: var(--gold-bright); }

.reviews__more {
  display: flex;
  gap: var(--s-5);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(242, 238, 232, 0.15);
  flex-wrap: wrap;
}

.reviews__mini {
  flex: 1 1 260px;
  max-width: 400px;
}

.reviews__mini .stars {
  color: var(--gold-bright);
  font-size: var(--t-xs);
  letter-spacing: 0.25em;
  margin-bottom: var(--s-2);
}

.reviews__mini p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--d-2);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: var(--s-2);
}

.reviews__mini cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: var(--t-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.reviews__link {
  margin-top: var(--s-6);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.3s var(--ease);
}

.reviews__link:hover { gap: var(--s-3); }

/* ==========================================================================
   SERVICE AREA — city marquee
   ========================================================================== */

.area {
  background: var(--paper);
  padding: var(--s-7) 0;
  border-top: 1px solid rgba(35, 43, 43, 0.15);
  border-bottom: 1px solid rgba(35, 43, 43, 0.15);
}

.area__head {
  text-align: center;
  margin-bottom: var(--s-5);
}

.area__head .eyebrow { margin-bottom: var(--s-3); }

.area__h {
  font-size: var(--d-3);
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.4;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper) 0%, transparent 100%);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper) 0%, transparent 100%);
}

.marquee__track {
  display: inline-flex;
  gap: var(--s-7);
  animation: marquee 80s linear infinite;
  padding-right: var(--s-7);
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-7);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--d-2);
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.marquee__item::after {
  content: '';
  display: inline-block;
  width: 0.55em;
  height: 0.75em;
  background-color: var(--gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/></svg>") no-repeat center / contain;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact { background: var(--paper-warm); }

.contact__inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--s-7);
  align-items: start;
}

.contact__head {
  margin-bottom: var(--s-5);
}

.contact__h {
  font-size: var(--d-2);
  line-height: 0.95;
  margin-bottom: var(--s-3);
}

.contact__h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
  letter-spacing: -0.02em;
}

.contact__intro {
  font-size: var(--t-lg);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 44ch;
  font-weight: 400;
}

.form-group {
  margin-bottom: var(--s-3);
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(35, 43, 43, 0.3);
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--t-base);
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #A23A2A; }

.form-group textarea { min-height: 100px; resize: vertical; }

.form-error {
  color: #A23A2A;
  font-size: var(--t-xs);
  margin-top: var(--s-1);
  display: none;
  letter-spacing: 0.05em;
}

.form-error.visible { display: block; }

.contact-form .btn {
  margin-top: var(--s-4);
  width: 100%;
  max-width: 320px;
}

.form-success {
  padding: var(--s-6) 0;
  border-top: 1px solid var(--gold);
}

.form-success h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
  font-size: var(--d-3);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}

.form-success p {
  font-size: var(--t-base);
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 40ch;
}

/* Contact aside */
.contact__aside {
  padding: var(--s-6);
  background: var(--ink-charcoal);
  color: var(--paper);
  position: sticky;
  top: var(--s-8);
}

.contact__aside h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  font-size: var(--d-3);
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-4);
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(242, 238, 232, 0.12);
}

.contact__detail:last-of-type { border-bottom: none; }

.contact__detail dt {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242, 238, 232, 0.6);
}

.contact__detail dd {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--d-4);
  color: var(--paper);
  letter-spacing: 0.01em;
}

.contact__detail dd a:hover { color: var(--gold-bright); }

.contact__detail--phone dd { font-size: var(--d-3); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.foot {
  background: var(--ink-charcoal);
  color: var(--paper);
  padding: var(--s-6) 0 var(--s-4);
}

.foot__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(242, 238, 232, 0.12);
}

.foot__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--d-2);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.foot__wordmark em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  text-transform: none;
  letter-spacing: -0.02em;
}

.foot__col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: var(--s-3);
}

.foot__col a {
  display: block;
  padding: 4px 0;
  font-size: var(--t-sm);
  color: rgba(242, 238, 232, 0.75);
  transition: color 0.3s var(--ease);
}

.foot__col a:hover { color: var(--gold-bright); }

.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding-top: var(--s-4);
  font-size: var(--t-xs);
  letter-spacing: 0.05em;
  color: rgba(242, 238, 232, 0.5);
  flex-wrap: wrap;
}

.foot__bottom a {
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(199, 152, 73, 0.4);
  padding-bottom: 1px;
}

.foot__bottom a:hover { border-bottom-color: var(--gold-bright); }

.foot__credit {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-sm);
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(242, 238, 232, 0.65);
  border-bottom: none !important;
  padding-bottom: 0 !important;
  transition: color 0.3s var(--ease);
}

.foot__credit span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-bright);
  transition: color 0.3s var(--ease);
}

.foot__credit:hover {
  color: var(--paper);
}

.foot__credit:hover span {
  color: var(--paper);
}

/* ==========================================================================
   STICKY QUOTE CTA — floats bottom, hides on contact section
   ========================================================================== */

.sticky-quote {
  position: fixed;
  right: var(--s-4);
  bottom: var(--s-4);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-base);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 0 0 var(--gold-warm), 0 12px 28px rgba(20, 20, 20, 0.18);
  transition: opacity 0.4s var(--ease),
              transform 0.4s var(--ease),
              background 0.35s var(--ease),
              color 0.35s var(--ease),
              border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  white-space: nowrap;
  min-height: 52px;
}

.sticky-quote.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-quote:hover {
  background: var(--ink-charcoal);
  color: var(--paper);
  border-color: var(--ink-charcoal);
  box-shadow: 0 4px 0 0 var(--ink-charcoal), 0 12px 28px rgba(20, 20, 20, 0.25);
}

@media (max-width: 768px) {
  .sticky-quote {
    left: var(--s-3);
    right: var(--s-3);
    bottom: var(--s-3);
    padding: 14px 20px;
  }
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(35, 43, 43, 0.95);
  align-items: center;
  justify-content: center;
  padding: var(--s-5);
}

.lightbox.active { display: flex; }

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid rgba(242, 238, 232, 0.3);
  color: var(--paper);
  font-size: var(--t-xl);
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s var(--ease);
  z-index: 2;
}

.lightbox__close:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

/* ==========================================================================
   MOTION UTILITIES
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger-child] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

[data-stagger-child].in {
  opacity: 1;
  transform: translateY(0);
}

/* Heading line reveal (overflow mask) */
.line-mask {
  overflow: hidden;
}

.line-mask > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.line-mask.in > span {
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

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

  .services__head { grid-template-columns: 1fr; gap: var(--s-4); }
  .svc-row { grid-template-columns: 60px 1fr 60px; }
  .svc-row__desc { display: none; }

  .work__grid { grid-template-columns: repeat(6, 1fr); }
  .work__item:nth-child(1) { grid-column: span 6; }
  .work__item:nth-child(2) { grid-column: span 3; }
  .work__item:nth-child(3) { grid-column: span 3; }
  .work__item:nth-child(4) { grid-column: span 3; }
  .work__item:nth-child(5) { grid-column: span 3; }
  .work__item:nth-child(6) { grid-column: span 3; }
  .work__item:nth-child(7) { grid-column: span 3; }

  .contact__inner { grid-template-columns: 1fr; }
  .contact__aside { position: static; }

  .process-step { grid-template-columns: 120px 1fr; gap: var(--s-4); }
  .about__inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .about__photo { max-width: 480px; }

  .midcta__inner { grid-template-columns: 1fr; gap: var(--s-5); }

  .cred__line { justify-content: flex-start; gap: var(--s-5); }
  .cred__item { flex: 1 1 200px; }
}

@media (max-width: 768px) {
  section { padding: var(--s-7) 0; }

  .nav { display: none; }
  .header__phone { display: none; }
  .logo img { height: 40px; }
  .header.scrolled .logo img { height: 36px; }

  /* Compact header Call CTA on mobile: icon + phone number only */
  .header__cta { gap: var(--s-2); }
  .btn--call {
    padding: 10px 14px;
    letter-spacing: 0.08em;
    gap: 6px;
  }
  .btn--call .btn__label { display: none; }
  .btn--call .btn__phone {
    display: inline;
    padding-left: 0;
    border-left: none;
    margin-left: 0;
  }

  .hero { padding: var(--s-9) 0 var(--s-7); }
  .hero__row { grid-template-columns: 1fr; align-items: start; }
  .hero__ctas { width: 100%; flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }
  .hero__meta-top { display: none; }

  .svc-row { grid-template-columns: 40px 1fr 40px; gap: var(--s-3); padding: var(--s-4) 0; }
  .svc-row__num { font-size: var(--t-base); }

  .process-step { grid-template-columns: 1fr; gap: var(--s-3); padding: var(--s-5) 0; }

  .work__grid { grid-template-columns: 1fr; }
  .work__item,
  .work__item:nth-child(1),
  .work__item:nth-child(2),
  .work__item:nth-child(3),
  .work__item:nth-child(4),
  .work__item:nth-child(5),
  .work__item:nth-child(6),
  .work__item:nth-child(7),
  .work__item:nth-child(8) {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .foot__top { grid-template-columns: 1fr; }
  .foot__bottom { flex-direction: column; align-items: flex-start; gap: var(--s-2); }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__title .line span,
  .hero__services-line,
  .hero__ctas,
  .hero__scroll { opacity: 1; transform: none; animation: none; }

  [data-reveal],
  [data-stagger-child] { opacity: 1; transform: none; }

  .line-mask > span { transform: none; }

  .marquee__track { animation: none; }
}
