/* ==========================================================================
   Universal Corporate Wear
   Design system + components
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Fonts (self-hosted: no third-party request, no layout shift)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --ink-900: #06080d;
  --ink-850: #090c13;
  --ink-800: #0d111a;
  --ink-700: #131826;
  --ink-600: #1a2030;
  --ink-500: #232a3c;

  /* Lines */
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --line-3: rgba(255, 255, 255, 0.22);

  /* Type */
  --text: #f3f5f9;
  --text-2: #b2bacb;
  --text-3: #838d9f;

  /* Brand */
  --red: #d8001a;
  --red-2: #ff2f42;
  --blue: #1830b4;
  --blue-2: #3f5cff;
  --navy: #030a2e;
  --orange: #ff6600;      /* The Swag Shack sub-brand */
  --orange-2: #ff8b33;
  --ss-bg: #0b0f18;       /* must match the flattened trailer artwork */

  /* Fonts */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;

  /* Layout */
  --wrap: 1280px;
  --wrap-narrow: 900px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 10px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 92px;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-2);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--red); color: #fff; }

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

/* Film grain, adds depth to the flat dark surfaces */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.75rem, 7.4vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.75rem); line-height: 1.04; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); line-height: 1.18; letter-spacing: -0.02em; }
h4 { font-size: 1.0625rem; letter-spacing: -0.01em; line-height: 1.3; }

p { text-wrap: pretty; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  flex: none;
}

.eyebrow-plain::before { display: none; }

.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  line-height: 1.62;
  color: var(--text-2);
}

.muted { color: var(--text-3); }
.text-red { color: var(--red-2); }

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

.wrap-narrow { max-width: var(--wrap-narrow); }

.section {
  padding-block: clamp(72px, 10vw, 148px);
  position: relative;
  overflow: hidden;
  overflow: clip;
}
.section-tight { padding-block: clamp(56px, 6vw, 90px); }
.section-alt { background: var(--ink-850); }
.section-line { border-top: 1px solid var(--line); }

.section-head {
  display: grid;
  gap: 22px;
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section-head.center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}

/* Form page: wide form column beside a narrow contact rail */
.split-form {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 56px);
  align-items: start;
}

@media (max-width: 900px) {
  .split-form { grid-template-columns: 1fr; }
  .split-form .rush-strip { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--line-2); border-radius: 14px; background: rgba(216, 0, 26, 0.1); color: var(--text); font-weight: 600; font-size: 0.9375rem; }
  .split-form .rush-strip svg { width: 18px; height: 18px; color: var(--red-2); flex: none; }
  .split > .media-frame { order: -1; }
}

.stack { display: grid; gap: 22px; align-content: start; }
.stack-sm { display: grid; gap: 12px; align-content: start; }

/* Ambient glows */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.glow-red { background: rgba(216, 0, 26, 0.2); }
.glow-blue { background: rgba(24, 48, 180, 0.22); }

.section > .wrap { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--red-2), var(--blue-2));
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px rgba(216, 0, 26, 0.7);
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(0); }

.btn svg { width: 17px; height: 17px; flex: none; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line-2);
  backdrop-filter: blur(8px);
}
.btn-ghost::before { background: rgba(255, 255, 255, 0.08); }
.btn-ghost:hover { box-shadow: none; border-color: var(--line-3); }

.btn-light {
  --btn-bg: #fff;
  --btn-fg: var(--ink-900);
}
.btn-light::before { background: #fff; }
.btn-light:hover { box-shadow: 0 14px 34px -14px rgba(255, 255, 255, 0.5); }

.btn-sm { padding: 11px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 34px; font-size: 1rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Arrow text link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-2);
  transition: border-color 0.35s var(--ease), gap 0.35s var(--ease), color 0.35s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow:hover { border-color: var(--red); color: #fff; gap: 14px; }

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), backdrop-filter 0.45s var(--ease), height 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-stuck {
  height: 74px;
  background: rgba(6, 8, 13, 0.78);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--line);
}

.nav-inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-logo img {
  height: 58px;
  width: auto;
  transition: height 0.45s var(--ease);
}
.nav.is-stuck .nav-logo img { height: 46px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  position: relative;
  padding: 9px 15px;
  font-size: 0.9063rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 999px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--text); }

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

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9063rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.3s var(--ease);
}
.nav-phone svg { width: 15px; height: 15px; }
.nav-phone:hover { color: var(--text); }

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  position: relative;
}

.nav-burger span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.4s var(--ease), opacity 0.25s var(--ease);
}
.nav-burger span:nth-child(1) { top: 17px; }
.nav-burger span:nth-child(2) { top: 22px; }
.nav-burger span:nth-child(3) { top: 27px; }

.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink-900);
  padding: calc(var(--nav-h) + 30px) var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.6s var(--ease), visibility 0.6s;
  overflow-y: auto;
}

.nav-drawer.is-open { transform: translateY(0); visibility: visible; }

.nav-drawer a.drawer-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.nav-drawer.is-open a.drawer-link { opacity: 1; transform: none; }
.nav-drawer a.drawer-link:hover { color: var(--red-2); }
.nav-drawer a.drawer-link span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-3);
}

.drawer-foot {
  margin-top: auto;
  padding-top: 32px;
  display: grid;
  gap: 6px;
  font-size: 0.9375rem;
}
.drawer-foot strong { color: var(--text); font-weight: 600; }
.drawer-phone { display: inline-flex; align-items: center; gap: 10px; min-height: 48px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.drawer-phone svg { width: 18px; height: 18px; color: var(--red-2); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: clamp(48px, 6vw, 84px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.08);
  animation: heroZoom 16s var(--ease-out) forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 13, 0.72) 0%, rgba(6, 8, 13, 0.16) 32%, rgba(6, 8, 13, 0.74) 74%, var(--ink-900) 100%),
    linear-gradient(96deg, rgba(6, 8, 13, 0.92) 0%, rgba(6, 8, 13, 0.5) 46%, rgba(6, 8, 13, 0.08) 72%, rgba(24, 48, 180, 0.16) 100%);
}

.hero-inner { width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 0 4px rgba(255, 47, 66, 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 47, 66, 0.28); }
  50% { box-shadow: 0 0 0 8px rgba(255, 47, 66, 0); }
}

.hero h1 {
  max-width: 15ch;
  margin-bottom: 26px;
}

.hero h1 .serif { color: #fff; }

.hero-copy {
  max-width: 52ch;
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  line-height: 1.6;
  color: rgba(243, 245, 249, 0.8);
  margin-bottom: 36px;
}

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
}

.hero-fact { display: grid; gap: 2px; }
.hero-fact b {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.hero-fact span {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

.scroll-hint {
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
}
.scroll-hint i {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--red), rgba(216, 0, 26, 0));
  animation: drop 2s ease-in-out infinite;
}
@keyframes drop {
  0%, 100% { transform: scaleY(1); opacity: 1; transform-origin: top; }
  50% { transform: scaleY(0.35); opacity: 0.5; transform-origin: top; }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(64px, 9vw, 130px));
  padding-bottom: clamp(52px, 7vw, 96px);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 13, 0.88) 0%, rgba(6, 8, 13, 0.78) 45%, var(--ink-900) 100%),
    linear-gradient(100deg, rgba(6, 8, 13, 0.94) 20%, rgba(24, 48, 180, 0.2) 100%);
}

.page-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); max-width: 17ch; }
.page-hero h1.wide { max-width: 32ch; }
.page-hero .lead a, .lead a { color: var(--text); text-decoration: underline; text-decoration-color: var(--red-2); text-underline-offset: 4px; }
a[href^="tel:"] { white-space: nowrap; }
.page-hero .lead { max-width: 58ch; }
.page-hero .stack { gap: 24px; }

/* Breadcrumb */
.crumb {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 6px;
}
.crumb a:hover { color: var(--text); }
.crumb span { opacity: 0.45; }

/* --------------------------------------------------------------------------
   8. Marquee
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 26px;
  border-block: 1px solid var(--line);
  background: var(--ink-850);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: slide 52s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

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

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-3);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
  display: flex;
  align-items: center;
  gap: 56px;
}
.marquee-item::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.5;
}
.marquee-item:hover { color: var(--text); }

/* --------------------------------------------------------------------------
   9. Service list (hover image reveal)
   -------------------------------------------------------------------------- */
.svc-list { border-top: 1px solid var(--line); position: relative; }

.svc-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.05fr) 40px;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  padding-block: clamp(24px, 3vw, 38px);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.5s var(--ease);
}

.svc-row::before {
  content: "";
  position: absolute;
  inset: 0 -24px;
  background: linear-gradient(90deg, rgba(216, 0, 26, 0.09), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
  border-radius: 8px;
}
.svc-row:hover::before { opacity: 1; }
.svc-row:hover { padding-left: 16px; }

.svc-num {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-3);
  transition: color 0.4s var(--ease);
}
.svc-row:hover .svc-num { color: var(--red-2); }

.svc-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1.05;
}

.svc-desc { font-size: 0.9688rem; line-height: 1.6; color: var(--text-3); }

.svc-go {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-2);
  transition: transform 0.45s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.svc-go svg { width: 15px; height: 15px; }
.svc-row:hover .svc-go {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(-45deg);
}

/* Floating preview that follows the cursor */
.svc-peek {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 210px;
  border-radius: 14px;
  overflow: hidden;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  box-shadow: 0 30px 70px -22px rgba(0, 0, 0, 0.85);
  border: 1px solid var(--line-2);
}
.svc-peek img { width: 100%; height: 100%; object-fit: cover; }
.svc-peek.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* --------------------------------------------------------------------------
   10. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--ink-800), var(--ink-850));
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 0%), rgba(216, 0, 26, 0.13), transparent 62%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.card:hover::before { opacity: 1; }

.card > * { position: relative; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--red-2);
  margin-bottom: 22px;
  transition: background 0.45s var(--ease), color 0.45s var(--ease), transform 0.45s var(--ease);
}
.card-icon svg { width: 22px; height: 22px; }
.card:hover .card-icon { background: var(--red); color: #fff; transform: scale(1.06); }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.9688rem; line-height: 1.65; color: var(--text-3); }

.card-num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.045);
  line-height: 1;
}

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: start; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }

/* --------------------------------------------------------------------------
   11. Stats
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--ink-800), var(--ink-850));
}

.stat {
  padding: clamp(28px, 3.5vw, 44px);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 8px;
  position: relative;
}
.stat:last-child { border-right: 0; }

.stat b {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1;
  background: linear-gradient(160deg, #fff 30%, #93a0ba);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat > span {
  font-size: 0.6875rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--text-3);
}
/* The animated counters live in a span inside the <b>; keep them at the big number size. */
.stat b span {
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
  color: inherit;
}

/* --------------------------------------------------------------------------
   12. Feature split with image
   -------------------------------------------------------------------------- */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-800);
}
.media-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-frame.tall img { aspect-ratio: 3 / 4; }
.media-frame.wide img { aspect-ratio: 16 / 9; }
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 8, 13, 0.55));
  pointer-events: none;
}

.media-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(6, 8, 13, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  max-width: calc(100% - 36px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.media-frame img[src$="gallery-dynamic.webp"] { object-position: 50% 35%; }
.media-frame img[src$="gallery-dynamic.webp"] ~ .media-tag { bottom: auto; top: 18px; }

.checks { display: grid; gap: 14px; }
.checks li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 0.9688rem;
  color: var(--text-2);
}
.checks svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(216, 0, 26, 0.16);
  color: var(--red-2);
}

/* --------------------------------------------------------------------------
   13. Portfolio tiles
   -------------------------------------------------------------------------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(262px, 1fr));
  gap: 16px;
}

/* Homepage preview keeps a tidy three-across rhythm */
.tiles-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) { .tiles-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .tiles-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } .tiles-3 .tile-info b { font-size: 0.9375rem; } }

.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-800);
  cursor: pointer;
  display: grid;
  grid-template-rows: auto auto;
  width: 100%;
  padding: 0;
  text-align: left;
}

.tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.7s var(--ease);
  filter: saturate(0.92) contrast(1.02);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0) 42%, rgba(6, 8, 13, 0.72) 72%, rgba(6, 8, 13, 0.97) 100%);
  opacity: 0.9;
  display: none;
  transition: opacity 0.5s var(--ease);
}

.tile:hover img { transform: scale(1.06); filter: saturate(1.05) contrast(1.04); }
.tile:hover::after { opacity: 0.95; }

.tile-info {
  position: static;
  z-index: 2;
  display: grid;
  gap: 3px;
  padding: 12px 16px 14px;
  border-top: 1px solid var(--line);
  background: var(--ink-850);
  transform: none;
  opacity: 1;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.tile:hover .tile-info { transform: translateY(0); opacity: 1; }

.tile-info b {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.tile-info span {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
}

/* Mobile phone button + sticky action bar */
.nav-phone-sm { display: none; }
.sticky-cta { display: none; }
@media (max-width: 860px) {
  .nav-phone-sm { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--text); background: rgba(255, 255, 255, 0.03); }
  .nav-phone-sm svg { width: 18px; height: 18px; }
}
@media (max-width: 900px) {
  .sticky-cta { display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(6, 8, 13, 0.94); backdrop-filter: blur(14px); border-top: 1px solid var(--line); }
  .sticky-cta .btn { flex: 1 1 0; width: auto; justify-content: center; padding: 13px 12px; font-size: 0.9375rem; white-space: nowrap; }
  .sticky-cta .btn svg { width: 16px; height: 16px; }
  body { padding-bottom: 78px; }
  .typing .sticky-cta, .drawer-open .sticky-cta { display: none; }
}

/* Who we work with */
.who-section { padding-top: 0; }
.who-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.who-card { position: relative; display: grid; gap: 6px; align-content: start; padding: 18px 44px 18px 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--ink-850); color: var(--text-2); transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.who-card b { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.who-card span { font-size: 0.875rem; line-height: 1.5; color: var(--text-3); }
.who-card svg { position: absolute; top: 18px; right: 16px; width: 16px; height: 16px; color: var(--red-2); }
.who-card:hover { border-color: var(--line-3); transform: translateY(-2px); }
.where { margin-top: 18px; font-size: 0.9375rem; color: var(--text-3); }
@media (max-width: 900px) { .who-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.marquee-label { text-align: center; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.19em; text-transform: uppercase; color: var(--text-3); padding: 22px 16px 0; }
.hero-call { font-size: 0.9375rem; color: var(--text-3); }
.hero-call a, .ss-note a { color: var(--text); text-decoration: underline; text-underline-offset: 4px; }
.hero-call a { text-decoration-color: var(--red-2); }
.ss-note { margin-top: 8px; font-size: 0.9063rem; line-height: 1.55; color: var(--text-3); max-width: 62ch; }
.ss-note a { text-decoration-color: var(--orange); }

/* Services jump strip */
.method-strip { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 1100px) { .method-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.method-link { display: grid; gap: 4px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--ink-850); color: var(--text-2); transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.method-link b { font-family: var(--font-display); font-size: 0.9688rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.method-link span { font-size: 0.8125rem; line-height: 1.45; color: var(--text-3); }
.method-link:hover { border-color: var(--line-3); transform: translateY(-2px); }

/* About brand groups */
.brand-groups { display: grid; gap: 26px; }
.brand-group h3 { font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.19em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.brands { display: flex; flex-wrap: wrap; gap: 8px; }
.brand { padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 0.875rem; color: var(--text-2); background: var(--ink-850); }

/* Filter pills */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.filter {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-3);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--line-2); }
.filter.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 6, 10, 0.94);
  backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  padding: clamp(20px, 5vw, 60px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure {
  max-width: min(1000px, 100%);
  max-height: 100%;
  display: grid;
  gap: 16px;
  transform: scale(0.95);
  transition: transform 0.5s var(--ease);
}
.lightbox.is-open figure { transform: scale(1); }
.lightbox img {
  max-height: 76vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
}
.lightbox figcaption { text-align: center; font-size: 0.9375rem; color: var(--text-2); }
.lightbox figcaption b { display: block; color: var(--text); font-family: var(--font-display); font-size: 1.25rem; letter-spacing: -0.02em; }
.lightbox-close {
  position: absolute;
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s, transform 0.3s;
}
.lightbox-close:hover { background: var(--red); transform: rotate(90deg); }
.lightbox-close svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   14. Process steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step {
  padding: clamp(26px, 3vw, 40px);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 12px;
  align-content: start;
  position: relative;
  background: linear-gradient(170deg, var(--ink-800), var(--ink-850));
  transition: background 0.5s var(--ease);
}
.step:last-child { border-right: 0; }
.step:hover { background: linear-gradient(170deg, var(--ink-700), var(--ink-800)); }

.step-n {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(216, 0, 26, 0.14);
  border: 1px solid rgba(216, 0, 26, 0.35);
  color: var(--red-2);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step h4 { font-family: var(--font-display); font-size: 1.1875rem; font-weight: 700; }
.step p { font-size: 0.9375rem; line-height: 1.6; color: var(--text-3); }

/* --------------------------------------------------------------------------
   15. Testimonials
   -------------------------------------------------------------------------- */
.quote-card {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--ink-800), var(--ink-850));
  display: grid;
  gap: 22px;
  align-content: start;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.quote-card:hover { transform: translateY(-4px); border-color: var(--line-2); }

.stars { display: flex; gap: 3px; color: var(--red-2); }
.stars svg { width: 15px; height: 15px; }

.quote-card blockquote {
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--text);
  font-weight: 400;
}
.quote-card blockquote::before { content: "\201C"; }
.quote-card blockquote::after { content: "\201D"; }

.quote-by { display: flex; align-items: center; gap: 13px; }
.quote-by .quote-av { color: var(--red-2); }
.quote-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink-700);
  border: 1px solid var(--line-2);
  color: var(--red-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  flex: none;
}
.quote-by b { display: block; color: var(--text); font-size: 0.9375rem; font-weight: 600; }
.quote-by span { font-size: 0.8125rem; color: var(--text-3); }

/* --------------------------------------------------------------------------
   16. Stores block
   -------------------------------------------------------------------------- */
.store-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(140deg, #0c1230 0%, var(--ink-800) 45%, var(--ink-850) 100%);
  padding: clamp(32px, 5vw, 72px);
}

.store-panel::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 48, 180, 0.45), transparent 68%);
  pointer-events: none;
}
.store-panel::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 0, 26, 0.28), transparent 68%);
  pointer-events: none;
}
.store-panel > * { position: relative; z-index: 1; }

.store-panel .split {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
  gap: clamp(30px, 3.6vw, 56px);
}
.store-panel h2 { font-size: clamp(1.75rem, 2.7vw, 2.625rem); }

@media (max-width: 900px) {
  .store-panel .split { grid-template-columns: 1fr; }
}

/* Mock store UI */
.mock {
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink-850);
  box-shadow: 0 40px 90px -34px rgba(0, 0, 0, 0.9);
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--ink-700);
}
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-3); }
.mock-bar i:first-child { background: #ff5f57; }
.mock-bar i:nth-child(2) { background: #febc2e; }
.mock-bar i:nth-child(3) { background: #28c840; }
.mock-url {
  margin-left: 8px;
  flex: 1;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.6875rem;
  color: var(--text-3);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-body { padding: 18px; display: grid; gap: 14px; }
.mock-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mock-head b { font-family: var(--font-display); font-size: 0.9375rem; color: var(--text); letter-spacing: -0.02em; }
.mock-chip {
  font-size: 0.625rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(40, 200, 64, 0.14);
  color: #4ade80;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-item { display: grid; gap: 7px; }
.mock-thumb {
  aspect-ratio: 1;
  border-radius: 9px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink-700);
}
.mock-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mock-item small { font-size: 0.625rem; color: var(--text-3); line-height: 1.35; }
.mock-item small b { display: block; color: var(--text-2); font-weight: 600; }

/* --------------------------------------------------------------------------
   16b. The Swag Shack block
   -------------------------------------------------------------------------- */
.ss-panel {
  --ss-pad: clamp(28px, 4.5vw, 64px);
  position: relative;
  padding: var(--ss-pad);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ss-bg);
  overflow: hidden;
  isolation: isolate;
}

.ss-panel::before,
.ss-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.ss-panel::before {
  top: -190px;
  right: -130px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.28), transparent 68%);
}
.ss-panel::after {
  bottom: -210px;
  left: -150px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.14), transparent 70%);
}
.ss-panel > * { position: relative; z-index: 1; }

.ss-head { display: grid; gap: 22px; max-width: 62ch; }
.ss-head h2 { font-size: clamp(1.875rem, 3.6vw, 3rem); }
.ss-head .lead { max-width: 58ch; }

/* Trailer artwork bleeds to the panel edges. Its background is flattened to
   --ss-bg so the join is invisible, no transparency to mis-render. */
.ss-trailer {
  margin-inline: calc(var(--ss-pad) * -1);
  margin-block: clamp(20px, 3vw, 40px);
}
.ss-trailer img { width: 100%; display: block; }

.ss-feats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid var(--line);
}

.ss-feat { display: grid; gap: 7px; align-content: start; }
.ss-feat b {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.ss-feat span { font-size: 0.9063rem; line-height: 1.6; color: var(--text-3); }
.ss-feat i {
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 5px;
}

.eyebrow-orange::before { background: var(--orange); }

.btn-orange {
  --btn-bg: var(--orange);
  --btn-fg: #fff;
}
.btn-orange::before { background: linear-gradient(120deg, var(--orange-2), var(--orange)); }
.btn-orange:hover { box-shadow: 0 14px 34px -12px rgba(255, 102, 0, 0.65); }

@media (max-width: 560px) {
  .ss-trailer { margin-inline: calc(var(--ss-pad) * -1); }
}

/* --------------------------------------------------------------------------
   17. Forms
   -------------------------------------------------------------------------- */
.form-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--ink-800), var(--ink-850));
  padding: clamp(26px, 4vw, 48px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.field { display: grid; gap: 8px; align-content: start; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-2);
}
.field label .req { color: var(--red-2); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  appearance: none;
}
.field input[type="date"]:not(.has-value) { color: var(--text-3); }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.75); cursor: pointer; }

.field textarea { min-height: 176px; resize: vertical; line-height: 1.6; }

.field input::placeholder,
.field textarea::placeholder { color: var(--text-3); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(216, 0, 26, 0.16);
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f7889' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 42px;
  cursor: pointer;
}
.field select option { background: var(--ink-700); color: var(--text); }

.field-hint { font-size: 0.75rem; color: var(--text-3); }

/* Chip choice group */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 17px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  user-select: none;
}
.chip span:hover { border-color: var(--line-3); color: var(--text); }
.chip input:checked + span {
  background: rgba(216, 0, 26, 0.14);
  border-color: var(--red);
  color: #fff;
}
.chip input:focus-visible + span { outline: 2px solid var(--red-2); outline-offset: 2px; }
.chip input:checked + span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red-2); flex: none; }
.chips-error { display: none; font-size: 0.8125rem; color: var(--red-2); }
.chips-error.is-on { display: block; }
.rush-strip { display: none; }

/* File drop */
.drop {
  border: 1.5px dashed var(--line-2);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  display: grid;
  gap: 8px;
  justify-items: center;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.drop:hover, .drop.is-over { border-color: var(--red); background: rgba(216, 0, 26, 0.05); }
.drop svg { width: 26px; height: 26px; color: var(--text-3); }
.drop b { color: var(--text); font-size: 0.9375rem; font-weight: 600; }
.drop small { font-size: 0.75rem; color: var(--text-3); }
.drop input[type="file"] { display: none; }
.drop-name { font-size: 0.8125rem; color: var(--red-2); font-weight: 500; }

.form-note {
  font-size: 0.8125rem;
  color: var(--text-3);
  line-height: 1.6;
}

/* Contact info rail */
.info-rail { display: grid; gap: 14px; align-content: start; }
@media (min-width: 901px) { .info-rail { position: sticky; top: calc(var(--nav-h) + 24px); } }

.info-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-850);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.info-item:hover { border-color: var(--line-2); transform: translateX(3px); }
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(216, 0, 26, 0.13);
  color: var(--red-2);
  flex: none;
}
.info-icon svg { width: 18px; height: 18px; }
.info-item div { display: grid; gap: 2px; }
.info-item b {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
}
.info-item p, .info-item a { font-size: 0.9375rem; color: var(--text); line-height: 1.5; }
.info-item a:hover { color: var(--red-2); }

/* --------------------------------------------------------------------------
   18. FAQ accordion
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--red-2); }
.faq-ic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 0.45s var(--ease), background 0.4s, border-color 0.4s;
}
.faq-ic svg { width: 13px; height: 13px; }
.faq-item.is-open .faq-ic { transform: rotate(45deg); background: var(--red); border-color: var(--red); color: #fff; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding-bottom: 24px; max-width: 74ch; font-size: 0.9688rem; color: var(--text-3); }

/* --------------------------------------------------------------------------
   19. CTA band
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
}

.cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--ink-900) 0%, rgba(6, 8, 13, 0.82) 40%, var(--ink-900) 100%),
    linear-gradient(90deg, rgba(216, 0, 26, 0.2), transparent 55%, rgba(24, 48, 180, 0.22));
}

.cta-inner {
  padding-block: clamp(72px, 10vw, 140px);
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
}
.cta-inner h2 { max-width: 18ch; font-size: clamp(2.25rem, 5.4vw, 4.5rem); }
.cta-inner p { max-width: 56ch; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-850);
  padding-top: clamp(52px, 6vw, 86px);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) minmax(120px, 0.9fr) minmax(170px, 1fr) minmax(120px, 0.9fr) minmax(max-content, 1.2fr);
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.footer-brand { display: grid; gap: 20px; align-content: start; max-width: 360px; }
.footer-brand img { height: 68px; width: auto; }
.footer-brand p { font-size: 0.9375rem; color: var(--text-3); line-height: 1.65; }

.socials { display: flex; gap: 9px; }
.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--text-2);
  transition: all 0.35s var(--ease);
}
.socials svg { width: 17px; height: 17px; }
.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }

.footer-col { display: grid; gap: 13px; align-content: start; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 3px;
}
.footer-col a, .footer-col li {
  font-size: 0.9063rem;
  color: var(--text-2);
  transition: color 0.3s var(--ease);
  line-height: 1.5;
}
.footer-col a:hover { color: var(--red-2); }
.footer-col a { overflow-wrap: anywhere; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-3);
}
.footer-bottom a:hover { color: var(--text-2); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   21. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* Hero line-by-line entrance */
.rise {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
.rise > span {
  display: block;
  transform: translateY(105%);
  animation: rise 1.05s var(--ease-out) forwards;
}
.rise-1 > span { animation-delay: 0.1s; }
.rise-2 > span { animation-delay: 0.22s; }
.rise-3 > span { animation-delay: 0.34s; }
@keyframes rise { to { transform: translateY(0); } }

.fade-up { opacity: 0; animation: fadeUp 1s var(--ease-out) forwards; }
.fade-1 { animation-delay: 0.45s; }
.fade-2 { animation-delay: 0.6s; }
.fade-3 { animation-delay: 0.75s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* Scroll progress bar */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 1001;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--blue-2));
  transition: width 0.1s linear;
}

/* --------------------------------------------------------------------------
   22. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .svc-row { grid-template-columns: 48px minmax(0, 1fr) 40px; }
  .svc-row { grid-template-rows: auto auto; row-gap: 4px; }
  .svc-title { grid-column: 2; }
  .svc-desc { display: block; grid-column: 2; grid-row: 2; font-size: 0.875rem; }
  .svc-num { grid-row: 1 / 3; }
  .svc-go { grid-row: 1 / 3; }
  .tile.wide { grid-column: span 1; aspect-ratio: 4 / 3; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: block; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .svc-peek { display: none; }
  .hero { min-height: 92svh; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .scroll-hint { display: none; }
}

@media (max-width: 640px) {
  :root { --nav-h: 76px; }
  .nav-logo img { height: 46px; }
  .nav.is-stuck { height: 66px; }
  .nav.is-stuck .nav-logo img { height: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: 1 / -1; order: -1; }
  .footer-brand { order: -2; }
  .mock-grid { grid-template-columns: repeat(2, 1fr); }
  .mock-item:nth-child(3) { display: none; }
  .mock-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .mock-chip-x { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .step:nth-child(2n) { border-right: 0; }
  .step:nth-last-child(-n+2) { border-bottom: 0; }
  .hero h1 { font-size: 2.4rem; max-width: none; }
  .page-hero h1.wide { font-size: 2.25rem; }
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .tiles .tile-info b { font-size: 0.9375rem; }
  .tiles .tile-info span { font-size: 0.625rem; letter-spacing: 0.12em; }
  .step { padding: 18px 14px; gap: 8px; }
  .step h4 { font-size: 1.0625rem; }
  .step p { font-size: 0.875rem; }
  .media-frame .media-tag { position: static; display: block; max-width: none; white-space: normal; margin: 0; padding: 10px 14px 12px; border: 0; border-top: 1px solid var(--line); border-radius: 0; background: var(--ink-850); color: var(--text-3); font-size: 0.8125rem; letter-spacing: 0.02em; backdrop-filter: none; }
  .method-strip { display: flex; overflow-x: auto; gap: 10px; padding-bottom: 6px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .method-link { flex: 0 0 220px; scroll-snap-align: start; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; flex: 1 1 auto; }
  .nav .btn { width: auto; flex: none; padding: 10px 16px; font-size: 0.8125rem; }
  .card-num { font-size: 2.5rem; }
  .footer-bottom { justify-content: flex-start; }
}

/* --------------------------------------------------------------------------
   23. Accessibility / print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .rise > span { transform: none; }
  .fade-up { opacity: 1; }
  .hero-media img { transform: none; }
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 3000;
  padding: 14px 22px;
  background: var(--red);
  color: #fff;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media print {
  body { background: #fff; color: #000; }
  .nav, .footer, .cta, .svc-peek, .progress { display: none; }
}
