/* IronCore Supply — v2 (Patterson-inspired industrial)
   Red Hat Display headlines / Oswald buttons / Golos Text body
   Deep-red accent #C41E1F, alternating dark/light sections */

:root {
  /* Palette */
  --bg-dark: #0a0a0b;
  --bg-dark-2: #111114;
  --bg-dark-3: #17171d;
  --bg-warm: #14100e;
  --bg-light: #ffffff;
  --bg-light-2: #f6f5f2;
  --bg-light-3: #eeece7;

  --fg-dark: #f4efe8;
  --fg-dark-2: #b8b3aa;
  --fg-dark-3: #7d7871;
  --fg-light: #17171d;
  --fg-light-2: #54595f;
  --fg-light-3: #8b8f95;

  --line-dark: #22222a;
  --line-dark-strong: #33333c;
  --line-light: #e6e3dc;
  --line-light-strong: #c8c3b8;

  --red: #ff5a1f;
  --red-2: #ff7a3d;
  --red-3: #d94517;
  --red-glow: rgba(255, 90, 31, 0.38);
  --red-deep: #b8340a;

  /* Type */
  --font-display: 'Red Hat Display', 'Inter', system-ui, sans-serif;
  --font-cond: 'Oswald', 'Anton', 'Impact', sans-serif;
  --font-sans: 'Golos Text', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);

  /* Radii */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;

  /* Motion */
  --e-out: cubic-bezier(0.16, 1, 0.3, 1);
  --e-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; }

html {
  background: var(--bg-dark);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-light);
  color: var(--fg-light-2);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

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

/* Typography */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: currentColor;
  margin: 0;
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 6.6vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.display-md {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.eyebrow {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: currentColor;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

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

.lead {
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  max-width: 60ch;
}

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.hl { color: var(--red); }

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

.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

/* Theme surfaces */
.surface-dark {
  background: var(--bg-dark);
  color: var(--fg-dark);
}
.surface-dark p { color: var(--fg-dark-2); }
.surface-dark .fg-muted { color: var(--fg-dark-3); }

.surface-light {
  background: var(--bg-light);
  color: var(--fg-light);
}
.surface-light p { color: var(--fg-light-2); }
.surface-light .fg-muted { color: var(--fg-light-3); }

.surface-warm {
  background: var(--bg-light-2);
  color: var(--fg-light);
}
.surface-warm p { color: var(--fg-light-2); }

/* Circuit / rivet backdrop (dark) */
.bg-circuit {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(1200px 700px at 78% 8%, rgba(255, 90, 31, 0.28), transparent 55%),
    radial-gradient(900px 500px at 10% 90%, rgba(255, 90, 31, 0.12), transparent 60%);
}

.bg-circuit::before,
.bg-circuit::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Steel-plate rivet grid */
.bg-circuit::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 30%, transparent 80%);
}

/* Circuit trace lines evoking industrial routing */
.bg-circuit::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'><g fill='none' stroke='%23ff5a1f' stroke-width='1' opacity='0.5'><path d='M0 80h140l30 30v60l40 40h80'/><circle cx='140' cy='80' r='3' fill='%23ff5a1f'/><circle cx='290' cy='210' r='3' fill='%23ff5a1f'/><path d='M400 200h-80l-40-40v-40l-30-30H100'/><path d='M0 320h100l40-40h160l40 40h60'/><circle cx='300' cy='280' r='3' fill='%23ff5a1f'/><path d='M200 400v-60l40-40h100'/><circle cx='240' cy='300' r='3' fill='%23ff5a1f'/></g></svg>");
  background-size: 400px 400px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 85%);
}

/* Faint world/map style on light sections */
.bg-mapfade {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(1200px 500px at 50% 0%, rgba(255, 90, 31, 0.06), transparent 60%);
}

.bg-mapfade::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(23, 23, 29, 0.06) 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(23, 23, 29, 0.06) 1px, transparent 1.5px);
  background-size: 32px 32px, 32px 32px;
  background-position: 0 0, 16px 16px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 90%);
  opacity: 0.7;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 300ms var(--e-out), border-color 300ms var(--e-out), backdrop-filter 300ms, box-shadow 300ms;
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.6);
}

.nav__inner { display: flex; align-items: center; gap: 32px; height: 76px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--red);
  border-radius: 6px;
  box-shadow: 0 0 24px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
}

.brand__mark svg { width: 22px; height: 22px; color: #fff; }

.brand small {
  display: block;
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-top: 2px;
}

.nav__links { display: flex; gap: 30px; margin-left: auto; align-items: center; }

.nav__link {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding-block: 6px;
  transition: color 200ms var(--e-out);
}

.nav__link:hover, .nav__link[aria-current='page'] { color: #fff; }

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--e-out);
}

.nav__link:hover::after, .nav__link[aria-current='page']::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 22px;
  background: var(--red);
  border-radius: 999px;
  transition: background 200ms, transform 200ms, box-shadow 300ms;
  box-shadow: 0 8px 24px -8px var(--red-glow);
}

.nav__cta:hover { background: var(--red-2); box-shadow: 0 12px 32px -8px var(--red-glow); transform: translateY(-1px); }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  align-items: center;
  justify-content: center;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
}
.nav__toggle span::before, .nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }

@media (max-width: 900px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 11, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px var(--gutter) 24px;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav__links[data-open='true'] { display: flex; }
  .nav__link {
    width: 100%;
    padding-block: 16px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 14px;
  }
  .nav__link:last-of-type { border-bottom: none; }
  .nav__cta {
    align-self: stretch;
    justify-content: center;
    margin-top: 12px;
  }
  .nav__toggle { display: inline-flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 30px;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 200ms var(--e-out), box-shadow 300ms, background 200ms, color 200ms, border-color 200ms;
  border: 1.5px solid transparent;
  white-space: nowrap;
  min-height: 56px;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 32px -10px var(--red-glow);
}

.btn--primary:hover {
  background: var(--red-2);
  box-shadow: 0 16px 40px -12px var(--red-glow);
  transform: translateY(-1px);
}

.btn--outline-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}
.btn--outline-dark:hover { border-color: #fff; background: rgba(255, 255, 255, 0.05); }

.btn--outline-light {
  color: var(--fg-light);
  border-color: var(--line-light-strong);
  background: transparent;
}
.btn--outline-light:hover { border-color: var(--red); color: var(--red); }

.btn--lg { padding: 22px 36px; font-size: 15px; min-height: 62px; }

.btn__arrow { width: 16px; height: 16px; transition: transform 300ms var(--e-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Hero */
.hero {
  position: relative;
  padding-top: clamp(140px, 20vh, 200px);
  padding-bottom: clamp(80px, 12vw, 140px);
  overflow: hidden;
  isolation: isolate;
  color: var(--fg-dark);
}

.hero .container { position: relative; z-index: 2; }

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #fff;
  max-width: 18ch;
}

.hero__title .hl { color: var(--red); }

.hero__lead {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 54ch;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
  align-items: stretch;
  max-width: 380px;
}

@media (min-width: 640px) {
  .hero__actions { flex-direction: row; align-items: center; max-width: none; }
}

.hero__hairline {
  height: 2px;
  width: 80px;
  background: var(--red);
  margin: 32px 0 0;
}

/* Ember ambient blob for hero */
.hero__ember {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  will-change: transform;
}

.hero__ember--1 {
  top: -20vmax;
  right: -20vmax;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.4) 0%, transparent 60%);
}

.hero__ember--2 {
  bottom: -30vmax;
  left: -25vmax;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.15) 0%, transparent 60%);
}

/* Stats grid — big prominent cards */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.stat-card {
  border: 1.5px solid var(--line-light-strong);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  transition: border-color 300ms var(--e-out), transform 300ms var(--e-out), box-shadow 300ms;
}

.stat-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(255, 90, 31, 0.25);
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 40px;
  background: var(--red);
  transition: width 400ms var(--e-out);
}

.stat-card:hover::after { width: 100%; }

.stat-card--dark {
  border-color: var(--line-dark-strong);
  background: var(--bg-dark-2);
  color: var(--fg-dark);
}

.stat-card--dark:hover {
  border-color: var(--red);
  box-shadow: 0 20px 40px -20px rgba(255, 90, 31, 0.4);
}

.stat-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: currentColor;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}

.stat-card__unit {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.4em;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
}

.stat-card__label {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 20px;
  color: var(--fg-light-2);
}

.stat-card--dark .stat-card__label { color: var(--fg-dark-2); }

.stat-card__note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--fg-light-3);
  line-height: 1.55;
}

.stat-card--dark .stat-card__note { color: var(--fg-dark-3); }

/* Section headings */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 780px;
  margin-bottom: 48px;
}

.section-head__note {
  color: currentColor;
  opacity: 0.7;
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 60px;
  max-width: none;
  align-items: end;
}

@media (max-width: 900px) {
  .section-head--split { grid-template-columns: 1fr; gap: 20px; align-items: start; }
}

/* Materials grid — cards on light bg */
.materials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.material {
  padding: 32px 28px;
  background: var(--bg-light);
  border: 1.5px solid var(--line-light);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 300ms, transform 300ms var(--e-out), box-shadow 300ms;
  cursor: pointer;
  min-height: 280px;
  overflow: hidden;
  isolation: isolate;
}

.material:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(255, 90, 31, 0.28);
}

.material::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--e-out);
}

.material:hover::before { transform: scaleX(1); }

.material__icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 400ms var(--e-out);
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
}

.material:hover .material__icon { transform: rotate(-8deg) scale(1.05); }

.material__icon svg { width: 28px; height: 28px; }

.material__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.05;
  color: var(--fg-light);
}

.material__desc {
  color: var(--fg-light-2);
  font-size: 14px;
  line-height: 1.6;
}

.material__specs {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.material__spec {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-light-2);
  padding: 5px 10px;
  border: 1px solid var(--line-light-strong);
  border-radius: 999px;
  background: var(--bg-light-2);
}

.material__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 8px;
}

.material__more svg { width: 14px; height: 14px; transition: transform 300ms var(--e-out); }
.material:hover .material__more svg { transform: translateX(4px); }

/* Capabilities — dark side */
.capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.cap {
  padding: 32px 28px;
  border: 1.5px solid var(--line-dark-strong);
  background: var(--bg-dark-2);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 300ms, transform 300ms var(--e-out), background 300ms;
}

.cap:hover { border-color: var(--red); transform: translateY(-4px); background: var(--bg-dark-3); }

.cap__icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--red);
  background: rgba(255, 90, 31, 0.1);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  color: var(--red);
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
}

.cap__icon svg { width: 26px; height: 26px; }

.cap__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: var(--fg-dark);
}

.cap__desc { color: var(--fg-dark-2); font-size: 14px; line-height: 1.6; }

/* Delivery highlight — big prominent block */
.delivery {
  position: relative;
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 72px);
  background: linear-gradient(135deg, #1a0d0d 0%, #0a0a0b 60%);
  border: 1px solid var(--line-dark-strong);
  overflow: hidden;
  isolation: isolate;
}

.delivery::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 350px at 90% 20%, rgba(255, 90, 31, 0.28), transparent 60%),
    radial-gradient(400px 250px at 10% 80%, rgba(255, 90, 31, 0.12), transparent 70%);
}

.delivery__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .delivery__inner { grid-template-columns: 1fr; gap: 32px; }
}

.delivery__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
}

.delivery__lead {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 45ch;
  line-height: 1.65;
}

.delivery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.delivery__item {
  padding: 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 300ms, background 300ms;
}

.delivery__item:hover { border-color: var(--red); background: rgba(255, 90, 31, 0.06); }

.delivery__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.delivery__num small {
  font-size: 0.4em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-cond);
  font-weight: 500;
}

.delivery__label {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
}

/* Process ladder */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line-light-strong);
  border-left: 1px solid var(--line-light-strong);
}

.step {
  padding: 36px 32px;
  border-right: 1px solid var(--line-light-strong);
  border-bottom: 1px solid var(--line-light-strong);
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 300ms;
}

.step:hover { background: var(--bg-light-2); }

.step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.02em;
}

.step__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.05;
  color: var(--fg-light);
}

.step__desc { color: var(--fg-light-2); font-size: 14px; line-height: 1.6; }

/* Testimonial */
.testimonial {
  border-left: 4px solid var(--red);
  padding: 32px 40px;
  background: var(--bg-light);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  box-shadow: 0 24px 48px -32px rgba(0, 0, 0, 0.15);
}

.testimonial__quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  color: var(--fg-light);
  margin: 0;
  letter-spacing: -0.005em;
}

.testimonial__attr {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fg-light-2);
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial__attr strong { color: var(--fg-light); font-weight: 500; }

/* CTA block */
.cta-block {
  position: relative;
  border-radius: var(--r-lg);
  padding: clamp(48px, 8vw, 96px) clamp(32px, 6vw, 72px);
  background: linear-gradient(140deg, #1a0d0d 0%, #0a0a0b 60%);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  border: 1px solid var(--line-dark-strong);
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 350px at 50% 0%, rgba(255, 90, 31, 0.32), transparent 60%),
    radial-gradient(400px 250px at 50% 100%, rgba(255, 90, 31, 0.14), transparent 70%);
}

.cta-block__eyebrow { color: rgba(255, 255, 255, 0.7); justify-content: center; display: inline-flex; margin-bottom: 20px; }

.cta-block__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: #fff;
  max-width: 18ch;
  margin-inline: auto;
}

.cta-block__title .hl { color: var(--red); }

.cta-block__lead {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 52ch;
  margin-inline: auto;
  font-size: 1.05rem;
}

.cta-block__actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 88px 0 40px;
  background: var(--bg-dark);
  color: var(--fg-dark-2);
  border-top: 1px solid var(--line-dark);
}

.footer__top { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 40px; }

@media (max-width: 800px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }

.footer__col h4 {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}

.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 14px; color: rgba(255, 255, 255, 0.65); transition: color 200ms; }
.footer__col a:hover { color: var(--red-2); }

.footer__blurb { font-size: 14px; color: rgba(255, 255, 255, 0.55); max-width: 34ch; margin: 20px 0 24px; line-height: 1.65; }
.footer__phone { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: #fff; letter-spacing: -0.01em; }

.footer__bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  gap: 20px;
  flex-wrap: wrap;
}

/* Page hero (interior) */
.page-hero {
  position: relative;
  padding-top: clamp(140px, 20vh, 200px);
  padding-bottom: clamp(64px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
  color: var(--fg-dark);
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: #fff;
  max-width: 16ch;
  margin-top: 24px;
}

.page-hero__title .hl { color: var(--red); }

.page-hero__lead {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 62ch;
  font-size: 1.1rem;
  line-height: 1.6;
}

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.crumb a:hover { color: #fff; }
.crumb .sep { width: 24px; height: 1px; background: rgba(255, 255, 255, 0.3); }

/* Form */
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 48px;
  align-items: flex-start;
}

@media (max-width: 960px) { .form-shell { grid-template-columns: 1fr; } }

.form {
  background: var(--bg-light);
  border: 1.5px solid var(--line-light-strong);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 36px;
  box-shadow: 0 24px 48px -32px rgba(0, 0, 0, 0.12);
}

.form__step { display: flex; flex-direction: column; gap: 20px; }

.form__step-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--line-light-strong);
}

.form__step-num {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.form__step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1;
  color: var(--fg-light);
  margin: 0;
}

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

@media (max-width: 640px) { .form__row, .form__row--3 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }

.field__label {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.field__label .req { color: var(--red); font-size: 13px; }

.field__input, .field__select, .field__textarea {
  background: var(--bg-light);
  border: 1.5px solid var(--line-light-strong);
  color: var(--fg-light);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  transition: border-color 200ms, box-shadow 200ms;
  width: 100%;
  font-variant-numeric: tabular-nums;
}

.field__input::placeholder, .field__textarea::placeholder { color: var(--fg-light-3); }

.field__input:focus, .field__select:focus, .field__textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.12);
}

.field__select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%2354595f' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 40px;
}

.field__textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.field__hint { font-size: 12px; color: var(--fg-light-3); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1.5px solid var(--line-light-strong);
  background: var(--bg-light);
  border-radius: 999px;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-light);
  cursor: pointer;
  transition: border-color 200ms, color 200ms, background 200ms;
  position: relative;
}

.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:hover { border-color: var(--fg-light-2); }

.chip:has(input:checked) {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.form__submit {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 2px solid var(--line-light-strong);
  padding-top: 28px;
}

.form__submit-note {
  color: var(--fg-light-2);
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form__success {
  display: none;
  padding: 24px;
  border-radius: var(--r-md);
  background: rgba(74, 222, 128, 0.08);
  border: 1.5px solid rgba(74, 222, 128, 0.3);
  color: #256b3a;
  font-size: 15px;
}

.form__success[data-visible='true'] { display: block; }

.aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }

.aside__card {
  border: 1.5px solid var(--line-light-strong);
  border-radius: var(--r-lg);
  padding: 28px;
  background: var(--bg-light);
}

.aside__card h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 0 16px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--fg-light);
}

.aside__card p { color: var(--fg-light-2); font-size: 14px; margin: 0; line-height: 1.6; }

.aside__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}

.aside__row:last-child { border-bottom: none; padding-bottom: 0; }
.aside__row:first-of-type { padding-top: 0; }

.aside__icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--red);
  display: grid;
  place-items: center;
  color: #fff;
  flex: 0 0 36px;
}

.aside__icon svg { width: 18px; height: 18px; }

.aside__row strong {
  display: block;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 4px;
}

.aside__row div { color: var(--fg-light-2); font-size: 14px; }

/* About sections */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

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

.about-split__title { position: sticky; top: 100px; }
.about-split__body { display: flex; flex-direction: column; gap: 20px; font-size: 17px; line-height: 1.75; color: var(--fg-light-2); }
.about-split__body p { margin: 0; }
.about-split__body p:first-child::first-letter {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  float: left;
  line-height: 0.9;
  margin: 4px 12px 0 0;
  color: var(--red);
}

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

.info-card {
  border: 1.5px solid var(--line-light-strong);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 300ms, transform 300ms var(--e-out);
}

.info-card:hover { border-color: var(--red); transform: translateY(-4px); }

.info-card__eyebrow {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}

.info-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.05;
  color: var(--fg-light);
}

.info-card__body {
  color: var(--fg-light-2);
  font-size: 15px;
  line-height: 1.65;
  font-variant-numeric: tabular-nums;
}

.info-card__body a {
  color: var(--red);
  border-bottom: 1px dashed rgba(255, 90, 31, 0.4);
  transition: border-color 200ms;
}

.info-card__body a:hover { border-bottom-color: var(--red); }

/* Reveal animations — Patterson-style fade */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--e-out), transform 800ms var(--e-out);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

[data-reveal='left'] { transform: translateX(-30px); }
[data-reveal='left'].in { transform: none; }
[data-reveal='right'] { transform: translateX(30px); }
[data-reveal='right'].in { transform: none; }
[data-reveal='fade'] { transform: none; }

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--e-out), transform 700ms var(--e-out);
}

[data-reveal-stagger].in > * { opacity: 1; transform: none; }

/* Reduced motion */
@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;
  }
  [data-reveal], [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ----------------------------- Brand logo (hexagon + 1C) ----------------------------- */
.nav .brand__mark,
.footer .brand__mark {
  background: transparent;
  clip-path: none;
  box-shadow: none;
  border-radius: 0;
  width: 46px;
  height: 46px;
  overflow: visible;
}

.brand__mark svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 90, 31, 0.25));
}

.brand__word {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
}

.brand__word-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  display: inline-block;
}

.brand__accent { color: var(--red); }

.brand__tag {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}

