﻿:root {
  --bg: #000000;
  --panel: #050505;
  --panel-2: #0a0a0a;
  --text: #f4efe7;
  --muted: rgba(244, 239, 231, .64);
  --faint: rgba(244, 239, 231, .36);
  --line: rgba(244, 239, 231, .13);
  --line-strong: rgba(244, 239, 231, .26);
  --gold: #ff0006;
  --gold-deep: #9b0005;
  --red: #ff0006;
  --red-deep: #9b0005;
  --ink: #000000;
  --serif: "Segoe UI", Arial, sans-serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #fff, var(--red));
  box-shadow: 0 0 22px rgba(255, 0, 6, .78);
}

.cursor-dot,
.cursor-ring,
.spotlight {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 90;
}
.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 0, 6, .9);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 0, 6, .72);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s ease, background .25s ease;
}
.cursor-ring.active {
  width: 72px;
  height: 72px;
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 0, 6, .12);
}
.spotlight {
  inset: auto;
  width: 34vw;
  height: 34vw;
  min-width: 340px;
  min-height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 6, .16), transparent 64%);
  filter: blur(4px);
  opacity: .72;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .48;
  background-image: radial-gradient(rgba(244,239,231,.04) 1px, transparent 1px);
  background-size: 3px 3px;
  animation: grainShift 7s steps(6) infinite;
}

#mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .7;
}
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-1%, 1%); }
  40% { transform: translate(1%, -1%); }
  60% { transform: translate(-1%, -1%); }
  80% { transform: translate(1%, 1%); }
}

.wrap {
  width: min(1220px, calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 98px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(22px, 4vw, 58px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s var(--ease), box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(16px);
  border-color: var(--line);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .38);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex: none;
}
.brand-logo {
  width: 220px;
  height: 132px;
  object-fit: contain;
  flex: none;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .45));
  transition: transform .45s var(--ease), filter .45s ease;
}
.brand:hover .brand-logo {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 0 22px rgba(255, 0, 6, .55));
}
.brand strong {
  display: block;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}
.nav a {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
  transition: color .25s ease, transform .25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
  box-shadow: 0 0 12px rgba(255, 0, 6, .8);
}
.nav a:hover,
.nav a.active {
  color: var(--text);
  transform: translateY(-2px);
}
.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav .nav-cta {
  color: var(--text);
  border: 1px solid var(--line-strong);
  padding: 11px 18px;
  overflow: hidden;
}
.nav .nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateY(100%);
  transition: transform .35s var(--ease);
  z-index: -1;
}
.nav .nav-cta:hover::before { transform: translateY(0); }

.menu-btn {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
  place-items: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}
.menu-btn:hover {
  border-color: var(--red);
  box-shadow: 0 0 26px rgba(255, 0, 6, .25);
  transform: translateY(-2px);
}
.menu-btn span {
  width: 19px;
  height: 1px;
  background: var(--text);
  transition: transform .35s var(--ease), opacity .25s ease, background .25s ease;
  display: block;
}
body.menu-open .menu-btn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -10vw;
  bottom: -22vh;
  width: min(58vw, 760px);
  height: 78vh;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  transform: skewX(-18deg);
  opacity: .82;
  mix-blend-mode: multiply;
  animation: diagonalDrift 8s var(--ease) infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.68) 48%, rgba(0,0,0,.38) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 26%);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.95) contrast(1.08);
  opacity: .82;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease), filter 1.2s ease;
}
.hero:hover .hero-media img { transform: scale(1.08); filter: saturate(1.1) contrast(1.12); }
@keyframes diagonalDrift {
  from { transform: skewX(-18deg) translateX(-2vw); }
  to { transform: skewX(-18deg) translateX(3vw); }
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  gap: clamp(36px, 6vw, 92px);
  align-items: end;
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 0, 6, .45);
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.04;
  margin: 0;
  letter-spacing: 0;
}
h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  text-shadow: 0 14px 46px rgba(0, 0, 0, .72);
}
h1 span { display: inline; }
h1 span {
  background: linear-gradient(90deg, #fff, #f4efe7 50%, rgba(255, 0, 6, .88));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleSheen 6s ease-in-out infinite;
}
@keyframes titleSheen {
  0%, 100% { background-position: 0 50%; }
  50% { background-position: 100% 50%; }
}
.lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s var(--ease), border-color .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn::before {
  content: "";
  position: absolute;
  inset: -20% -40%;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,.5) 48%, transparent 58% 100%);
  transform: translateX(-100%);
  transition: transform .65s var(--ease);
  z-index: -1;
}
.btn:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(255, 0, 6, .22);
}
.btn:hover::before { transform: translateX(100%); }
.btn.gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  text-shadow: 0 1px 8px rgba(0,0,0,.34);
}
.btn.ghost { background: rgba(244,239,231,.04); }

.hero-panel {
  align-self: center;
  border: 1px solid var(--line);
  background: rgba(20, 17, 14, .72);
  backdrop-filter: blur(18px);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .45s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.hero-panel::before,
.service-card::before,
.trust-list article::before,
.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 0, 6, .22), transparent 42%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.hero-panel:hover,
.service-card:hover,
.trust-list article:hover,
.step:hover {
  border-color: rgba(255, 0, 6, .5);
  box-shadow: 0 26px 70px rgba(255, 0, 6, .14), inset 0 0 0 1px rgba(255,255,255,.04);
}
.hero-panel:hover::before,
.service-card:hover::before,
.trust-list article:hover::before,
.step:hover::before { opacity: 1; }
.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  margin-bottom: 28px;
}
.panel-top span, .service-card span, .step span, .trust-list span, .work-item span {
  font-family: var(--serif);
  color: var(--gold);
}
.panel-top p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: right;
}
.metric strong {
  display: block;
  font-family: var(--serif);
  color: var(--text);
  font-size: 6.5rem;
  line-height: .86;
  font-weight: 800;
}
.metric span {
  display: block;
  color: var(--muted);
  margin-top: 18px;
}
.signal-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.signal-list p {
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.scroll-note {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: clamp(22px, 4vw, 58px);
  color: var(--faint);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  background: rgba(0,0,0,.84);
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 16vw;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
}
.marquee span {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  padding: 0 26px;
  color: var(--muted);
  font-family: var(--serif);
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
}
.marquee span::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
@keyframes marquee { to { transform: translateX(-50%); } }

.section {
  position: relative;
  z-index: 2;
  padding: clamp(86px, 10vw, 145px) 0;
}
.two-col, .process-grid, .trust-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(36px, 6vw, 84px);
}
.section-head h2 {
  font-size: clamp(2.25rem, 5.2vw, 4.7rem);
  letter-spacing: 0;
  text-transform: uppercase;
}
.section-head p:not(.eyebrow), .body-copy p, .sticky-copy p, .work-item p, .trust-list p {
  color: var(--muted);
}
.narrow { max-width: 760px; }
.quote {
  margin-top: 30px;
  padding-left: 28px;
  border-left: 1px solid var(--gold);
  color: var(--text) !important;
  font-family: var(--sans);
  font-style: italic;
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
}

.stats {
  margin-top: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stats article {
  padding: 36px 24px 0 0;
  border-right: 1px solid var(--line);
  transition: transform .35s var(--ease), background .35s ease;
}
.stats article:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(255,0,6,.12), transparent);
}
.stats article:last-child { border-right: 0; }
.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--gold);
}
.stats span {
  display: block;
  color: var(--muted);
  max-width: 220px;
}

.services { background: linear-gradient(180deg, transparent, rgba(244,239,231,.025), transparent); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: translateX(-100%);
  transition: transform .55s var(--ease);
}
.service-card:hover {
  transform: translateY(-10px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  border-color: rgba(255,0,6,.52);
  background: linear-gradient(145deg, rgba(255,0,6,.12), var(--panel) 46%);
}
.service-card:hover::after { transform: translateX(100%); }
.service-card h3 {
  margin-top: 42px;
  font-size: 1.35rem;
}
.service-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 14px;
}

.process { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sticky-copy {
  position: sticky;
  top: 118px;
  align-self: start;
}
.sticky-copy h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
.sticky-copy img {
  margin-top: 34px;
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(.8) contrast(1.04);
  transition: transform .6s var(--ease), filter .6s ease, box-shadow .35s ease;
}
.sticky-copy img:hover {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.08);
  box-shadow: 0 24px 60px rgba(255, 0, 6, .18);
}
.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 26px;
  padding: 28px 0;
  border-radius: 2px;
  transition: transform .35s var(--ease), background .35s ease;
  overflow: hidden;
}
.step:hover {
  transform: translateX(8px);
  background: rgba(255,0,6,.045);
}
.step span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--bg);
  border: 1px solid var(--line);
  z-index: 1;
  grid-row: 1 / span 2;
}
.step h3 {
  grid-column: 2;
  margin-bottom: 10px;
  font-size: 1.55rem;
}
.step p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  text-align: justify;
  text-justify: inter-word;
}
.sticky-copy > p:not(.eyebrow) {
  text-align: justify;
  text-justify: inter-word;
}

.work-list {
  display: grid;
  gap: clamp(48px, 7vw, 96px);
  margin-top: 58px;
}
.work-item {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}
.work-item:nth-child(even) {
  grid-template-columns: .72fr 1.28fr;
}
.work-item:nth-child(even) img { order: 2; }
.work-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #070707;
  filter: saturate(.98) contrast(1.08);
  box-shadow: 0 18px 48px rgba(0,0,0,.38);
  transition: transform .75s var(--ease), filter .55s ease, box-shadow .35s ease;
}
.work-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.08);
  box-shadow: 0 26px 70px rgba(255,0,6,.18);
}
.work-item h3 {
  transition: color .25s ease, transform .35s var(--ease);
}
.work-item:hover h3 {
  color: #fff;
  transform: translateX(8px);
}
.work-item h3 {
  margin: 14px 0;
  font-size: clamp(1.9rem, 3.7vw, 3.4rem);
}

.trust { background: var(--panel); }
.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.trust-list article {
  padding: 30px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), background .35s ease;
}
.trust-list article:hover {
  transform: translateY(-6px);
  background: rgba(255,0,6,.08);
}
.trust-list h3 {
  margin: 16px 0 10px;
  font-size: 1.3rem;
}

.final-cta {
  position: relative;
  z-index: 2;
  padding: clamp(84px, 10vw, 150px) 0;
  background:
    linear-gradient(110deg, rgba(255,0,6,.72) 0 28%, transparent 28% 100%),
    linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.92)),
    url("assets/hero-background-clean.jpg") center / cover;
}
.cta-box {
  max-width: 980px;
  text-align: center;
}
.cta-box h2 {
  font-size: clamp(2.2rem, 5.3vw, 5rem);
}
.cta-box > p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--muted);
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  margin-top: 42px;
  text-align: left;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form label > span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.contact-form input, .contact-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,.76);
  color: var(--text);
  padding: 0 14px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease, transform .25s var(--ease);
}
.contact-form input:focus, .contact-form select:focus {
  border-color: var(--gold);
  background: rgba(255,0,6,.08);
  box-shadow: 0 0 0 4px rgba(255,0,6,.12);
  transform: translateY(-2px);
}
.contact-form button {
  align-self: end;
  min-width: 190px;
}
.contact-form button span {
  color: #fff;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 1;
}

footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 42px 0 30px;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(170px, .8fr));
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}
.footer-grid strong {
  color: var(--text);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}
.footer-grid p { margin: 8px 0 0; }
.footer-logo {
  width: 320px;
  max-width: 100%;
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 24px rgba(255,0,6,.26));
}
.footer-block {
  display: grid;
  gap: 10px;
}
.footer-block h4 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.footer-block a,
.footer-block span,
.footer-bottom a {
  color: var(--muted);
  font-size: 14px;
}
.footer-block a,
.footer-bottom a {
  width: fit-content;
  transition: color .25s ease, transform .25s ease, text-shadow .25s ease;
}
.footer-block a:hover,
.footer-bottom a:hover {
  color: var(--text);
  transform: translateX(4px);
  text-shadow: 0 0 18px rgba(255,0,6,.5);
}
.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(42px) scale(.98);
  filter: blur(10px);
  transition: opacity .85s var(--ease), transform .85s var(--ease), filter .85s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.hero .reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (max-width: 1040px) {
  .hero-grid, .two-col, .process-grid, .trust-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 520px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { grid-template-columns: 1fr 1fr; }
  .contact-form button { grid-column: 1 / -1; }
  .sticky-copy { position: static; }
}

@media (max-width: 760px) {
  .site-header { height: 82px; }
  .brand { gap: 12px; }
  .brand-logo {
    width: 138px;
    height: 86px;
  }
  .brand small { display: none; }
  .menu-btn { display: grid; }
  .nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 22px 28px;
    background: rgba(0,0,0,.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform .45s var(--ease);
    box-shadow: 0 30px 70px rgba(0,0,0,.55);
  }
  body.menu-open .nav { transform: translateY(0); }
  .nav a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .nav .nav-cta { text-align: center; margin-top: 10px; }
  .hero { padding-top: 112px; align-items: flex-end; }
  h1 { font-size: clamp(2rem, 8.4vw, 2.4rem); }
  h1 span { display: block; }
  .hero::before {
    left: -36vw;
    bottom: -28vh;
    width: 88vw;
    opacity: .68;
  }
  .hero .eyebrow {
    max-width: 300px;
    font-size: 9.5px;
    letter-spacing: .18em;
    line-height: 1.8;
  }
  .lead { font-size: 15px; }
  .hero-panel { display: none; }
  .stats, .service-grid, .trust-list, .contact-form, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats article { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .work-item, .work-item:nth-child(even) { grid-template-columns: 1fr; }
  .work-item:nth-child(even) img { order: initial; }
  .section { padding: 76px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .grain, .hero::before, h1 span { animation: none; }
  .reveal { transition: none; transform: none; filter: none; }
  .cursor-dot, .cursor-ring, .spotlight { display: none; }
}

@media (hover: none), (max-width: 900px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring, .spotlight { display: none; }
}

