/* ============================================================
   HANDYMAN CORP — dark premium marketing site
   Aesthetic: warm near-black, large grotesque type, mono labels,
   amber accent, 3D structure, odometer counters, scroll reveals.
   ============================================================ */

:root {
  --bg:      #221d15;
  --bg-2:    #2c2619;
  --surface: #383022;
  --surface-2: #443c2c;
  --text:    #f8f3ea;
  --muted:   #c3bcae;
  --faint:   #8c8576;
  --line:    rgba(246, 241, 232, 0.12);
  --line-strong: rgba(246, 241, 232, 0.22);

  --accent:  oklch(0.71 0.185 48);     /* warm safety orange */
  --accent-hi: oklch(0.80 0.165 62);   /* brighter amber */
  --accent-dim: oklch(0.71 0.185 48 / 0.14);

  --font-display: "Mulish", sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;
  --font-body: "Mulish", sans-serif;
  --font-mono: "Space Mono", monospace;

  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* grain + vignette overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.035;
  mix-blend-mode: screen;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% -10%, transparent 50%, rgba(0,0,0,0.28) 100%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}
.eyebrow.no-tick::before { display: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.accent { color: var(--accent); }
.serif-em { font-style: italic; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 21px;
}
.brand .mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: #1a0f06;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--accent) 60%, white) inset;
}
.brand .mark::after { content: "H"; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 17.5px;
  color: var(--muted);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 100px;
  background: var(--text);
  color: #0c0b0a;
  font-weight: 600;
  font-size: 17px;
  font-family: var(--font-display);
  transition: transform 0.25s var(--ease), background 0.25s;
}
.nav-cta:hover { transform: translateY(-2px); background: #fff; }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-phone {
  font-family: var(--font-mono);
  font-size: 16.5px;
  color: var(--text);
}
.nav-phone span { color: var(--accent); }
.burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding: 150px var(--gutter) 80px;
  max-width: var(--maxw);
  margin-inline: auto;
}
.hero-copy { position: relative; z-index: 3; }
.hero h1 {
  font-size: clamp(40px, 6.6vw, 92px);
  margin: 26px 0 0;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}
.hero.in h1 .line > span { transform: translateY(0); }
.hero h1 .line:nth-child(2) > span { transition-delay: 0.08s; }
.hero h1 .line:nth-child(3) > span { transition-delay: 0.16s; }

.hero-sub {
  margin-top: 28px;
  max-width: 30em;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--muted);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease) 0.4s, transform 0.9s var(--ease) 0.4s;
}
.hero.in .hero-sub { opacity: 1; transform: none; }

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease) 0.55s, transform 0.9s var(--ease) 0.55s;
}
.hero.in .hero-actions { opacity: 1; transform: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
}
.btn-primary { background: var(--accent); color: #1a0f06; }
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-hi); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--text); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--text); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }

/* 3D scene */
.hero-scene {
  position: relative;
  z-index: 2;
  height: 460px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}
.structure {
  position: relative;
  width: 220px;
  height: 220px;
  transform-style: preserve-3d;
  transform: rotateX(-22deg) rotateY(35deg);
  will-change: transform;
}
.structure .face {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid var(--accent);
  background:
    repeating-linear-gradient(0deg, transparent 0 43px, color-mix(in oklab, var(--accent) 22%, transparent) 43px 44px),
    repeating-linear-gradient(90deg, transparent 0 43px, color-mix(in oklab, var(--accent) 22%, transparent) 43px 44px),
    color-mix(in oklab, var(--accent) 8%, transparent);
  box-shadow: 0 0 30px -10px color-mix(in oklab, var(--accent) 55%, transparent) inset;
}
/* centered cube, half = 110 */
.f-front  { transform: translateZ(110px); }
.f-back   { transform: rotateY(180deg) translateZ(110px); }
.f-right  { transform: rotateY(90deg) translateZ(110px); }
.f-left   { transform: rotateY(-90deg) translateZ(110px); }
.f-top    { transform: rotateX(90deg) translateZ(110px); background: color-mix(in oklab, var(--accent) 16%, transparent); }
.f-bottom { transform: rotateX(-90deg) translateZ(110px); }
.glow-floor {
  position: absolute;
  bottom: -70px; left: 50%;
  width: 320px; height: 80px;
  transform: translateX(-50%) rotateX(78deg);
  background: radial-gradient(ellipse at center, color-mix(in oklab, var(--accent) 55%, transparent), transparent 70%);
  filter: blur(14px);
  opacity: 0.6;
}
.scene-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--faint);
  text-transform: uppercase;
}
.scene-tags span {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
}
.scene-tags span::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.tag-1 { top: 12%; left: 4%; }
.tag-2 { top: 46%; right: 2%; }
.tag-3 { bottom: 12%; left: 10%; }

.hero-scroll {
  position: absolute;
  bottom: 30px; left: var(--gutter);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll .bar { width: 40px; height: 1px; background: var(--line-strong); position: relative; overflow: hidden; }
.hero-scroll .bar::after {
  content: ""; position: absolute; inset: 0; width: 40%;
  background: var(--accent);
  animation: slide 2.4s var(--ease) infinite;
}
@keyframes slide { 0% { transform: translateX(-100%);} 100% { transform: translateX(250%);} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--muted);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track b { color: var(--text); font-weight: 500; }
.marquee-track .dot { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section { position: relative; z-index: 2; }
.section { padding: clamp(80px, 11vw, 150px) 0; }
.section.alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 58px);
}
.section-head p {
  color: var(--muted);
  max-width: 34em;
  font-size: 20px;
}

/* reveal util */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }

/* ============================================================
   STATS / ODOMETER
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--bg);
  padding: 40px 32px;
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
}
.odo {
  display: inline-flex;
  height: 1em;
  overflow: hidden;
}
.odo .col {
  height: 1em;
  overflow: hidden;
  display: inline-block;
}
.odo .col .strip {
  display: flex;
  flex-direction: column;
  transition: transform 1.6s var(--ease);
}
.odo .col .strip i { height: 1em; font-style: normal; display: block; }
.stat .suffix { color: var(--accent); }
.stat .label {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.svc:hover { transform: translateY(-6px); border-color: var(--line-strong); background: var(--surface-2); }
.svc .idx {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.svc h3 {
  margin-top: 26px;
  font-size: 27px;
  font-weight: 500;
}
.svc p { margin-top: 14px; color: var(--muted); font-size: 18.5px; }
.svc .tags {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc .tags em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.svc .glow {
  position: absolute;
  top: -40%; right: -30%;
  width: 70%; height: 80%;
  background: radial-gradient(circle, var(--accent-dim), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.svc:hover .glow { opacity: 1; }

/* image service cards (links to landings) */
.svc-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  min-height: 384px;
  border: 1px solid var(--line);
  isolation: isolate;
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.svc-bg {
  position: absolute; inset: -20px; z-index: -2;
  background-color: var(--surface);
  background-image:
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(243,238,228,0.03) 16px 17px);
  background-size: cover;
  background-position: center;
  filter: blur(3px) saturate(1.08) brightness(0.97);
  transform: scale(1.03);
  transition: transform 0.7s var(--ease);
}
.svc-card:hover .svc-bg { transform: scale(1.09); }
.svc-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,15,10,0.22) 0%, rgba(18,15,10,0.46) 46%, rgba(18,15,10,0.84) 100%);
  transition: background 0.45s;
}
.svc-card:hover .svc-overlay {
  background: linear-gradient(180deg, rgba(18,15,10,0.10) 0%, rgba(18,15,10,0.36) 46%, rgba(18,15,10,0.80) 100%);
}
.svc-card h3, .svc-card p { text-shadow: 0 1px 14px rgba(0,0,0,0.55); }
.svc-icon { filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55)); }
.svc-inner {
  position: relative;
  height: 100%;
  min-height: 384px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.svc-icon { line-height: 1; }
.svc-icon svg { width: 32px; height: 32px; stroke: var(--accent); }
.svc-card h3 { margin-top: auto; font-size: clamp(26px, 2.8vw, 32px); font-weight: 600; color: var(--text); }
.svc-card p { margin-top: 12px; color: var(--muted); font-size: 19.5px; max-width: 24em; }
.svc-foot {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.svc-view {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--text);
  font-size: 18px;
  transition: background 0.35s, color 0.35s, border-color 0.35s, transform 0.35s var(--ease);
}
.svc-card:hover .svc-arrow {
  background: var(--accent);
  color: #1a0f06;
  border-color: var(--accent);
  transform: translate(3px, -3px);
}

/* ============================================================
   WHY / BENEFITS (01 02 03)
   ============================================================ */
.benefit {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: clamp(50px, 7vw, 90px) 0;
  border-top: 1px solid var(--line);
}
.benefit:first-of-type { border-top: none; }
.benefit .b-text .b-num {
  font-family: var(--font-mono);
  font-size: 14.5px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.benefit .b-text h3 {
  font-size: clamp(28px, 3.6vw, 48px);
  margin-top: 18px;
}
.benefit .b-text p { margin-top: 22px; color: var(--muted); max-width: 32em; }
.benefit .b-text ul {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.benefit .b-text li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 18.5px;
}
.benefit .b-text li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--font-mono);
}
.media {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(243,238,228,0.025) 14px 15px),
    var(--surface);
  background-size: cover;
  background-position: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.media[data-photo] .ph { display: none; }
.media[data-photo]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.04) 32%, rgba(0,0,0,0.30) 100%);
}
.media .badge, .media .corner { z-index: 2; }
.media.tall { aspect-ratio: 3 / 4; }
.media .ph {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: center;
  padding: 0 24px;
}
.media .corner {
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--line-strong);
}
.media .c-tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.media .c-tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.media .c-bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.media .c-br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.media .badge {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  background: var(--bg);
  padding: 36px 28px 44px;
  position: relative;
}
.section.alt .step { background: var(--bg-2); }
.step .s-num {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.16em;
}
.step h3 { margin-top: 30px; font-size: 23px; font-weight: 500; }
.step p { margin-top: 12px; color: var(--muted); font-size: 18px; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects { display: grid; gap: 22px; }
.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 36px);
}
.project:nth-child(even) .media { order: -1; }
.project .p-eyebrow {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.project h3 { margin-top: 16px; font-size: clamp(24px, 3vw, 36px); }
.project p { margin-top: 16px; color: var(--muted); }
.project .p-meta {
  margin-top: 26px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.project .p-meta div .k { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.project .p-meta div .v { font-family: var(--font-display); font-size: 24px; margin-top: 4px; }

/* ============================================================
   QUOTE
   ============================================================ */
.quote-wrap { text-align: center; max-width: 22em; margin-inline: auto; }
.quote-wrap blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.quote-wrap .q-mark { color: var(--accent); }
.quote-wrap .q-author {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.quote-wrap .stars { color: var(--accent); letter-spacing: 4px; font-size: 21px; margin-bottom: 22px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.contact h2 { font-size: clamp(34px, 5vw, 68px); }
.contact .c-lead { margin-top: 26px; color: var(--muted); max-width: 26em; }
.contact .c-list { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.contact .c-list li { list-style: none; display: flex; gap: 12px; align-items: center; }
.contact .c-list li::before { content: "✓"; color: var(--accent); font-family: var(--font-mono); }
.contact .c-phone {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.contact .c-phone .k { font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.contact .c-phone a { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 40px); display: block; margin-top: 8px; }
.contact .c-phone a:hover { color: var(--accent); }

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 19.5px;
  padding: 14px 16px;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 96px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a0f06;
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form button[type="submit"] {
  margin-top: 6px;
  padding: 16px 24px;
  border: none;
  border-radius: 100px;
  background: var(--accent);
  color: #1a0f06;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19.5px;
  transition: background 0.25s, transform 0.25s var(--ease);
}
.form button[type="submit"]:hover { background: var(--accent-hi); transform: translateY(-2px); }
.form .note { font-family: var(--font-mono); font-size: 14px; color: var(--faint); letter-spacing: 0.04em; }
.form.sent { align-items: center; justify-content: center; text-align: center; min-height: 360px; }
.form-success { display: none; }
.form.sent .form-inner { display: none; }
.form.sent .form-success { display: block; }
.form-success .check {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid var(--accent);
  display: grid; place-items: center;
  margin: 0 auto 22px;
  color: var(--accent);
  font-size: 26px;
}
.form-success h3 { font-size: 28px; }
.form-success p { color: var(--muted); margin-top: 12px; }

/* ============================================================
   CLOSER + FOOTER
   ============================================================ */
.closer {
  text-align: center;
  padding: clamp(90px, 14vw, 180px) var(--gutter);
}
.closer h2 {
  font-size: clamp(40px, 8vw, 116px);
  letter-spacing: -0.03em;
}
.closer .btn { margin-top: 40px; }

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 64px var(--gutter) 40px;
  position: relative;
  z-index: 2;
}
.footer-top {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); font-weight: 400; }
.footer ul { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { color: var(--muted); font-size: 18px; transition: color 0.2s; }
.footer ul a:hover { color: var(--text); }
.footer .f-brand p { color: var(--muted); margin-top: 18px; max-width: 24em; font-size: 18px; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--faint);
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 130px; }
  .hero-scene { height: 360px; order: -1; }
  .hero-scroll { display: none; }
  .section-head { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .benefit, .project, .contact, .footer-top { grid-template-columns: 1fr; }
  .project:nth-child(even) .media { order: 0; }
  .project .media, .benefit .media { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 19.5px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 8px;
  }
  .burger span { width: 24px; height: 2px; background: var(--text); display: block; transition: 0.3s; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .marquee-track { animation-duration: 22s; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .hero h1 .line > span, .hero-sub, .hero-actions, .reveal { opacity: 1 !important; transform: none !important; }
}
