:root {
  --paper: #f5f2ec;
  --paper-soft: #ebe7de;
  --ink: #090909;
  --graphite: #202020;
  --graphite-soft: #2b2b2a;
  --muted: #6e6b65;
  --line: rgba(9, 9, 9, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --accent: #9e1f18;
  --accent-dark: #741611;
  --white: #fffaf2;
  --shadow: 0 24px 80px rgba(9, 9, 9, 0.12);
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(20px, 4vw, 54px);
  color: var(--white);
  transition: background 320ms ease, color 320ms ease, border-color 320ms ease, padding 320ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(245, 242, 236, 0.94);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  padding-top: 8px;
  padding-bottom: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(300px, 27vw, 520px);
  min-width: 280px;
  height: 48px;
  padding: 4px 8px;
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(255, 250, 242, 0.4);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  background: transparent;
  border-color: transparent;
  padding-left: 0;
  height: 44px;
}

.brand-logo {
  width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 20px);
  font-size: 0.82rem;
  font-weight: 680;
}

.site-nav a {
  opacity: 0.78;
  transition: opacity 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-group {
  position: relative;
}

.nav-group > button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 680;
  opacity: 0.78;
  padding: 0;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 30;
  display: grid;
  min-width: 240px;
  padding: 10px;
  background: rgba(245, 242, 236, 0.98);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  padding: 11px 10px;
  border-bottom: 1px solid var(--line);
}

.nav-menu a:last-child {
  border-bottom: 0;
}

.site-nav a:hover {
  color: var(--accent);
  opacity: 1;
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  place-items: center;
  padding: 0;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(54px, 7vw, 92px) 0;
}

.section-soft {
  background: var(--paper-soft);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.page-hero {
  padding-top: clamp(128px, 13vw, 178px);
  padding-bottom: clamp(58px, 7vw, 88px);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.75rem, 5.8vw, 6.3rem);
}

.page-intro {
  display: grid;
  gap: 26px;
  align-content: start;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .page-intro {
  color: rgba(255, 250, 242, 0.74);
}

.compact {
  margin-top: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 126px clamp(20px, 4vw, 54px) 60px;
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  animation: heroDrift 9s var(--ease) forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.92) 0%, rgba(9, 9, 9, 0.76) 35%, rgba(9, 9, 9, 0.26) 67%, rgba(9, 9, 9, 0.34) 100%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.44) 0%, rgba(9, 9, 9, 0.08) 46%, rgba(9, 9, 9, 0.52) 100%);
  z-index: 1;
}

.line-grid {
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 12.5vw 100%, 100% 12.5vh;
  mask-image: linear-gradient(90deg, black, transparent 76%);
  opacity: 0.32;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 780;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: rgba(255, 250, 242, 0.72);
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 7.65vw, 7.4rem);
  font-weight: 790;
}

h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.35vw, 4.65rem);
  font-weight: 760;
}

h3,
h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

h4 {
  color: var(--white);
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 250, 242, 0.8);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 760;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  margin-top: clamp(38px, 7vh, 74px);
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.82rem;
}

.hero-proof span {
  padding-left: 14px;
  border-left: 2px solid rgba(158, 31, 24, 0.9);
}

.split,
.trust-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: start;
}

.why .split {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
}

.why h2 {
  font-size: clamp(2rem, 3.35vw, 3.55rem);
  line-height: 1.08;
}

.why-copy,
.intro-copy {
  padding-top: 12px;
  color: var(--muted);
  font-size: 1.06rem;
}

.lead {
  color: var(--graphite);
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  line-height: 1.35;
}

.field-list {
  display: grid;
  gap: 1px;
  margin: 26px 0;
  background: var(--line);
}

.field-list span {
  display: block;
  padding: 17px 0;
  background: var(--paper);
  color: var(--graphite);
  font-weight: 720;
}

.metrics {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
}

.metrics div {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  padding: 22px 0;
  background: var(--paper-soft);
}

.metrics strong {
  color: var(--accent);
  font-size: 0.8rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 238px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--paper);
  transition: background 220ms ease, transform 220ms var(--ease);
}

.service-card:hover {
  background: var(--paper-soft);
  transform: translateY(-4px);
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.65;
}

.service-card p,
.product-card p,
.trust-point p,
.pillar-card p,
.contact-text {
  color: var(--muted);
}

.process {
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 12.5vw 100%, 100% 12.5vh;
  opacity: 0.25;
  pointer-events: none;
}

.process .container {
  position: relative;
}

.process-header,
.catalogue-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: end;
  margin-bottom: 42px;
}

.process-header p,
.catalogue-heading p {
  color: rgba(255, 250, 242, 0.72);
  font-size: 1.02rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.05);
}

.process-item {
  min-height: 318px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(22px, 2.4vw, 32px);
  border-right: 1px solid var(--line-dark);
}

.process-item:last-child {
  border-right: 0;
}

.process-item span,
.pillar-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.process-item p {
  color: rgba(255, 250, 242, 0.7);
}

.process-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.process-timeline.light {
  margin-top: 42px;
  border-color: var(--line);
  background: var(--line);
}

.process-timeline.light .process-item {
  background: var(--paper);
  border-color: var(--line);
}

.process-timeline.light h3 {
  color: var(--ink);
}

.process-timeline.light p {
  color: var(--muted);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pillar-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(22px, 2.4vw, 32px);
  background: var(--paper);
}

.pillar-card h3 {
  margin-top: auto;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 38px;
  margin-top: 0;
}

.category-list {
  display: grid;
  align-content: start;
  gap: 8px;
  position: sticky;
  top: 94px;
}

.category {
  min-height: 48px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(255, 250, 242, 0.72);
  text-align: left;
  padding: 0 18px;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.category.active,
.category:hover {
  border-color: rgba(158, 31, 24, 0.8);
  background: rgba(158, 31, 24, 0.12);
  color: var(--white);
}

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

.catalogue-products {
  display: grid;
  gap: 46px;
}

.catalogue-category {
  display: grid;
  gap: 18px;
}

.category-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}

.category-heading span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.category-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.catalogue-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.015)),
    radial-gradient(circle at 82% 14%, rgba(158, 31, 24, 0.16), transparent 28%);
}

.product-card span {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.55);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.product-card p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.68);
}

.product-image {
  display: grid;
  min-height: 96px;
  place-items: center;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.02)),
    repeating-linear-gradient(45deg, rgba(255, 250, 242, 0.045) 0, rgba(255, 250, 242, 0.045) 1px, transparent 1px, transparent 11px);
  color: rgba(255, 250, 242, 0.42);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.product-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.7rem;
}

.product-card th,
.product-card td {
  padding: 8px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  vertical-align: top;
}

.catalogue-search {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin: 0 0 34px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
}

.catalogue-search label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 242, 0.66);
  font-size: 0.78rem;
  font-weight: 760;
}

.catalogue-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0 14px;
  outline: none;
}

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

.search-tags span {
  border: 1px solid var(--line-dark);
  padding: 9px 10px;
  color: rgba(255, 250, 242, 0.66);
  font-size: 0.76rem;
}

.portal-grid,
.request-structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.portal-grid article,
.request-structure-grid > div {
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 24px;
  background: var(--paper);
}

.portal-grid span,
.request-structure-grid em {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.portal-grid p {
  margin: 0;
  color: var(--muted);
}

.request-structure-grid {
  background: var(--line-dark);
  border-color: var(--line-dark);
}

.request-structure-grid > div {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.request-structure-grid span {
  color: rgba(255, 250, 242, 0.68);
}

.zone-panel {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.zone-panel > div {
  display: grid;
  gap: 10px;
  padding: 24px 0;
  background: var(--paper-soft);
}

.zone-panel strong {
  color: var(--ink);
}

.zone-panel span,
.zone-panel p {
  margin: 0;
  color: var(--muted);
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.brand-wall div {
  display: grid;
  min-height: 112px;
  place-items: center;
  background: var(--paper);
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.faq-list details {
  background: var(--ink);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px;
  color: var(--white);
  font-weight: 760;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(255, 250, 242, 0.72);
}

.product-add {
  min-height: 42px;
  border: 1px solid rgba(158, 31, 24, 0.72);
  background: rgba(158, 31, 24, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 780;
  transition: background 180ms ease, border-color 180ms ease;
}

.product-add:hover {
  background: rgba(158, 31, 24, 0.22);
  border-color: rgba(158, 31, 24, 0.95);
}

.request-panel {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 250, 242, 0.06);
}

.request-panel .eyebrow {
  margin-bottom: 10px;
}

.request-ref {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
}

.request-list {
  display: grid;
  gap: 10px;
  max-height: 330px;
  overflow: auto;
}

.request-list > p {
  margin: 0;
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.88rem;
}

.request-item {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.request-item strong,
.request-item span {
  display: block;
}

.request-item strong {
  color: var(--white);
  font-size: 0.86rem;
}

.request-item span {
  color: rgba(255, 250, 242, 0.56);
  font-size: 0.76rem;
}

.qty-control {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  gap: 6px;
}

.qty-control button,
.qty-control input {
  min-height: 34px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  text-align: center;
}

.qty-control [data-remove] {
  grid-column: 1 / -1;
  color: rgba(255, 250, 242, 0.72);
  cursor: pointer;
}

.request-form {
  display: grid;
  gap: 10px;
}

.request-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 250, 242, 0.64);
  font-size: 0.76rem;
  font-weight: 720;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 11px 12px;
  outline: none;
  resize: vertical;
}

.request-actions {
  display: grid;
  gap: 8px;
}

.request-actions .btn {
  width: 100%;
  min-height: 44px;
}

.product-card th {
  color: rgba(255, 250, 242, 0.48);
  font-size: 0.68rem;
  font-weight: 780;
  text-transform: uppercase;
}

.trust-points {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.trust-point {
  padding: 28px 0;
  background: var(--paper);
}

.trust-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(158, 31, 24, 0.7);
  box-shadow: 0 0 0 4px rgba(158, 31, 24, 0.08);
}

.contact-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-form .btn-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-actions .btn {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-links {
  margin-top: 32px;
}

.contact .section-heading h2,
.contact-grid .section-heading h2 {
  line-height: 1.08;
  margin-bottom: 24px;
}

.contact-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-bottom: 1px solid var(--accent);
  color: var(--graphite);
  font-weight: 740;
}

.site-footer {
  padding: clamp(42px, 5.5vw, 66px) 0;
  background: var(--ink);
  color: rgba(255, 250, 242, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(150px, 0.55fr));
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.footer-brand img {
  width: min(360px, 100%);
  height: auto;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid rgba(255, 250, 242, 0.12);
}

.footer-brand p {
  max-width: 420px;
  margin: 28px 0 0;
  color: var(--white);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  line-height: 1.28;
}

.footer-column {
  display: grid;
  gap: 9px;
  font-size: 0.92rem;
}

.footer-column strong {
  margin-bottom: 10px;
  color: var(--white);
}

.footer-column a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.055);
  }

  to {
    transform: scale(1.025);
  }
}

@media (max-width: 1100px) {
  .process-timeline,
  .pillar-grid,
  .portal-grid,
  .request-structure-grid,
  .brand-wall {
    grid-template-columns: 1fr 1fr;
  }

  .process-item:nth-child(2n),
  .process-item:last-child {
    border-right: 0;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms var(--ease);
  }

  .nav-group > button {
    width: 100%;
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .nav-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    border: 0;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .split,
  .why .split,
  .trust-grid,
  .contact-grid,
  .process-header,
  .catalogue-heading,
  .catalogue-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .catalogue-search {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    width: 196px;
    min-width: 196px;
    height: 44px;
    padding: 6px 8px;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 14px 44px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.76), rgba(9, 9, 9, 0.74)),
      linear-gradient(90deg, rgba(9, 9, 9, 0.9), rgba(9, 9, 9, 0.36));
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.35rem);
  }

  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .hero-proof {
    margin-top: 44px;
  }

  .section {
    padding: 52px 0;
  }

  .service-grid,
  .product-grid,
  .catalogue-grid,
  .process-timeline,
  .pillar-grid,
  .portal-grid,
  .request-structure-grid,
  .brand-wall {
    grid-template-columns: 1fr;
  }

  .service-card,
  .pillar-card {
    min-height: 220px;
  }

  .category-list {
    position: static;
  }

  .process-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-item:last-child {
    border-bottom: 0;
  }

  .metrics div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-brand img {
    width: 100%;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
