:root {
  --ink: #171814;
  --muted: #625f57;
  --paper: #f5f1e9;
  --surface: #ffffff;
  --line: #d8d1c5;
  --brick: #a4362f;
  --brick-dark: #77261f;
  --leaf: #496c53;
  --amber: #d3a13d;
  --steel: #426776;
  --charcoal: #20221d;
  --warm-gray: #e9e3d7;
  --shadow: 0 20px 56px rgba(31, 29, 24, 0.16);
  --shadow-soft: 0 12px 32px rgba(31, 29, 24, 0.09);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 0.65, 0.3, 1);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image: var(--grain);
  font-family: var(--font-body);
  line-height: 1.55;
}

::selection {
  color: #ffffff;
  background: var(--brick);
}

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

a {
  color: inherit;
}

.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;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(245, 241, 233, 0.92);
  border-bottom: 1px solid rgba(222, 216, 206, 0.9);
  backdrop-filter: blur(14px);
  transition: padding 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.site-header.scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 10px 30px rgba(44, 36, 28, 0.12);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand {
  gap: 14px;
}

.brand-mark {
  position: relative;
  width: 58px;
  height: 52px;
  flex: 0 0 auto;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 5px;
  width: 2px;
  height: 30px;
  background: linear-gradient(var(--brick) 0 52%, var(--leaf) 52%);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(31, 29, 24, 0.16));
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 3;
}

.lang-toggle {
  min-width: 44px;
  min-height: 34px;
  padding: 6px 12px;
  color: var(--brick);
  background: transparent;
  border: 2px solid var(--brick);
  border-radius: 6px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  color: #ffffff;
  background: var(--brick);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 9px 12px;
  color: #38332d;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--brick);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brick);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

/* Hero */

.hero {
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 116px clamp(18px, 5vw, 72px) 58px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/warehouse-pallets-hero.jpg");
  background-size: cover;
  background-position: 58% center;
  animation: hero-zoom 26s var(--ease-out) infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(13, 15, 13, 0.45), rgba(13, 15, 13, 0.05) 34%, rgba(13, 15, 13, 0.7)),
    linear-gradient(102deg, rgba(14, 16, 14, 0.92) 6%, rgba(14, 16, 14, 0.73) 48%, rgba(14, 16, 14, 0.28));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 72px 72px;
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: end;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.hero-content {
  width: min(800px, 100%);
}

.hero-content > * {
  animation: rise-in 800ms var(--ease-out) both;
}

.hero-content > :nth-child(2) {
  animation-delay: 120ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 240ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 360ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 480ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 800px;
  font-size: 5.4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions,
.quick-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-emblem {
  position: absolute;
  right: -34px;
  bottom: -112px;
  z-index: 0;
  width: 390px;
  opacity: 0.16;
  pointer-events: none;
  transform: rotate(-7deg);
  filter: saturate(0.75) brightness(1.35);
}

.hero-emblem img {
  width: 100%;
  height: auto;
}

.hero-panel {
  width: 100%;
  padding: 22px;
  color: #ffffff;
  background: rgba(22, 25, 21, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top: 4px solid var(--amber);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  animation: rise-in 900ms 420ms var(--ease-out) both;
}

.panel-topline,
.panel-logo,
.panel-lanes li,
.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-topline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-topline strong {
  position: relative;
  padding-left: 14px;
  color: #d9e8d8;
}

.panel-topline strong::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  background: #76b77d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(118, 183, 125, 0.12);
  transform: translateY(-50%);
}

.panel-logo {
  justify-content: flex-start;
  margin: 22px 0 26px;
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 800;
}

.panel-logo img {
  width: 60px;
  height: 54px;
  padding: 6px;
  object-fit: contain;
  background: #f8f4ec;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.panel-lanes {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-lanes li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-lanes span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.panel-lanes strong {
  text-align: right;
  font-size: 0.92rem;
}

.panel-footer {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}

.panel-footer span {
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 18, 16, 0.28);
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

.button.primary {
  color: #ffffff;
  background: var(--brick);
  box-shadow: 0 12px 28px rgba(119, 38, 31, 0.34);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--brick-dark);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.quick-proof {
  margin: 42px 0 0;
}

.quick-proof div {
  width: min(210px, 100%);
  padding: 0 18px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.quick-proof div:last-child {
  border-right: 0;
}

.quick-proof dt {
  font-weight: 800;
}

.quick-proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

/* Marquee */

.marquee {
  overflow: hidden;
  background: var(--brick);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}

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

.marquee-run {
  margin: 0;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

/* Sections */

.section {
  padding: clamp(68px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro {
  background-color: var(--surface);
  background-image: var(--grain);
  border-bottom: 1px solid var(--line);
}

.intro::before {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, var(--brick) 0 28%, var(--amber) 28% 42%, var(--leaf) 42% 70%, var(--steel) 70%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro-copy {
  padding-left: clamp(20px, 4vw, 48px);
  border-left: 1px solid var(--line);
}

.intro-copy > p {
  margin-top: 0;
  font-size: 1.1rem;
}

.capability-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.capability-strip span {
  padding: 7px 11px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
}

h2 {
  margin: 0;
  font-size: 3.25rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 660px;
}

.section-heading.compact {
  align-items: start;
  flex-direction: column;
  max-width: 850px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.products {
  position: relative;
  background-image:
    linear-gradient(rgba(73, 108, 83, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 108, 83, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.product-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 28px 24px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 22px rgba(44, 36, 28, 0.05);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), border-color 260ms var(--ease-out);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--leaf);
}

.product-card:nth-child(2)::before {
  background: var(--steel);
}

.product-card:nth-child(3)::before {
  background: var(--brick);
}

.product-card:nth-child(4)::before {
  background: var(--amber);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(159, 47, 40, 0.35);
  box-shadow: 0 22px 44px rgba(44, 36, 28, 0.14);
}

.product-index {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: #e6eee8;
  border: 1px solid rgba(73, 108, 83, 0.22);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(31, 29, 24, 0.1);
  overflow: hidden;
}

.product-index img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.product-card:nth-child(2) .product-index {
  background: #e7eef1;
  border-color: rgba(66, 103, 118, 0.22);
}

.product-card:nth-child(3) .product-index {
  background: #f4e5e3;
  border-color: rgba(164, 54, 47, 0.22);
}

.product-card:nth-child(4) .product-index {
  background: #f6edd8;
  border-color: rgba(211, 161, 61, 0.28);
}

.product-card p {
  min-height: 116px;
}

.product-card ul {
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.product-card li {
  padding: 5px 0;
  color: #38332d;
  font-size: 0.94rem;
}

.industries {
  color: #ffffff;
  background-color: var(--charcoal);
  background-image: var(--grain);
}

.industries h2 {
  max-width: 760px;
}

.industries .eyebrow {
  color: var(--amber);
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.industry-list a {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  position: relative;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, color 220ms ease, background 220ms ease;
}

.industry-list a::after {
  content: "↗";
  margin-left: auto;
  color: var(--amber);
  font-size: 1.1rem;
}

.industry-list a:hover,
.industry-list a:focus-visible {
  transform: translateX(4px);
  border-color: var(--brick);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.process {
  background-color: var(--surface);
  background-image: var(--grain);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 110px;
}

.process-copy p:last-child {
  font-size: 1.05rem;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  min-height: 150px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.steps li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--brick);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 260ms var(--ease-out);
}

.steps li:hover::after {
  transform: scaleY(1);
}

.steps li:hover {
  border-color: rgba(159, 47, 40, 0.35);
  box-shadow: 0 14px 34px rgba(44, 36, 28, 0.1);
}

.steps span {
  color: var(--brick);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
}

.steps p {
  margin: 10px 0 0;
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.faq-layout .section-heading {
  margin-bottom: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 20px 44px 20px 0;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 180ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brick);
  border: 1.5px solid var(--brick);
  border-radius: 50%;
  font-weight: 700;
  transform: translateY(-50%);
  transition: transform 260ms var(--ease-out), background 180ms ease, color 180ms ease;
}

.faq-item summary:hover,
.faq-item[open] summary {
  color: var(--brick-dark);
}

.faq-item[open] summary::after {
  content: "−";
  color: #ffffff;
  background: var(--brick);
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 44px 22px 0;
}

/* Quote */

.quote-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(24, 27, 23, 0.98), rgba(24, 27, 23, 0.88)),
    url("assets/warehouse-pallets.jpg") center / cover;
  color: #ffffff;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.quote-note {
  margin-top: 24px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.quote-note strong {
  color: #ffffff;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: var(--surface);
  border-radius: 8px;
  border-top: 5px solid var(--amber);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #38332d;
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form .wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: #f8f6f1;
  border: 1px solid #cbc2b6;
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(200, 147, 52, 0.32);
  border-color: var(--amber);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
}

/* Footer */

.site-footer {
  padding: 34px clamp(18px, 5vw, 72px) 26px;
  background: #11130f;
  color: #ffffff;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner a {
  color: #ffffff;
}

.footer-tagline {
  width: min(1180px, 100%);
  margin: 22px auto 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Scroll reveals (enabled only when JS is present) */

.js [data-reveal],
.js [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.js [data-reveal].is-revealed,
.js [data-reveal-group].is-revealed > * {
  opacity: 1;
  transform: none;
}

.js [data-reveal-group].is-revealed > :nth-child(2) {
  transition-delay: 100ms;
}

.js [data-reveal-group].is-revealed > :nth-child(3) {
  transition-delay: 200ms;
}

.js [data-reveal-group].is-revealed > :nth-child(4) {
  transition-delay: 300ms;
}

.js [data-reveal-group].is-revealed > :nth-child(5) {
  transition-delay: 400ms;
}

.js [data-reveal-group].is-revealed > :nth-child(6) {
  transition-delay: 500ms;
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg,
  .marquee-track,
  .hero-content > *,
  .hero-panel {
    animation: none;
  }

  .js [data-reveal],
  .js [data-reveal-group] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .product-card,
  .industry-list a,
  .site-header {
    transition: none;
  }
}

/* Responsive */

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 4.45rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 40px;
  }

  .quick-proof div {
    width: min(180px, 100%);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-panel {
    max-width: 620px;
  }

  .product-grid,
  .industry-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .process-layout,
  .quote-layout,
  .faq-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

  .hero-emblem {
    display: none;
  }

  h2 {
    font-size: 2.75rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand-copy strong {
    font-size: 1.28rem;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding: 104px 18px 44px;
  }

  .hero-bg {
    background-position: 61% center;
  }

  .hero h1 {
    font-size: 3.2rem;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-layout {
    gap: 34px;
  }

  .hero-panel {
    display: none;
  }

  .panel-logo {
    margin: 18px 0 20px;
    font-size: 1.45rem;
  }

  .quick-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .quick-proof div {
    width: 100%;
    padding: 0 8px 0 0;
    border-right: 0;
  }

  .quick-proof div + div {
    padding-top: 0;
    padding-left: 10px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .quick-proof dt {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .quick-proof dd {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  h2 {
    font-size: 2.35rem;
  }

  .intro-copy {
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .product-grid,
  .industry-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .product-card p {
    min-height: auto;
  }

  .steps li {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .section {
    padding: 68px 18px;
  }

  .quote-form {
    padding: 22px 18px;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 11px;
  }

  .brand-mark {
    width: 44px;
    height: 42px;
  }

  .brand-mark::after {
    right: -6px;
    bottom: 5px;
    height: 26px;
  }

  .brand-copy {
    max-width: 112px;
    line-height: 1.05;
  }

  .brand-copy strong {
    font-size: 1.16rem;
  }

  .hero h1 {
    font-size: 2.48rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 0.98rem;
  }
}
