:root {
  --g1-black: #0b0b0b;
  --g1-carbon: #161616;
  --g1-graphite: #2b2d2f;
  --g1-metal: #8a8f98;
  --g1-line: #d9dde1;
  --g1-surface: #f4f5f5;
  --g1-white: #ffffff;
  --ink: var(--g1-black);
  --muted: var(--g1-metal);
  --line: var(--g1-line);
  --paper: var(--g1-surface);
  --white: var(--g1-white);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  will-change: transform, opacity;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.main-nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  color: var(--g1-graphite);
  font-size: 0.9rem;
  font-weight: 720;
}

.main-nav a:hover,
.nav-dropdown-toggle:hover,
.site-footer a:hover {
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.nav-dropdown-toggle::after {
  width: 7px;
  height: 7px;
  border: solid currentColor;
  border-width: 0 1.6px 1.6px 0;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown-toggle[aria-expanded="true"] {
  color: var(--ink);
}

.nav-dropdown-toggle[aria-expanded="true"]::after {
  transform: translateY(2px) rotate(-135deg);
}

.project-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 30;
  display: grid;
  width: min(78vw, 360px);
  padding: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(11, 11, 11, 0.14);
  transform: translateX(-50%);
}

.project-menu[hidden] {
  display: none;
}

.project-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  color: var(--g1-graphite);
  border-radius: 5px;
  font-weight: 720;
}

.project-menu a:hover {
  color: var(--ink);
  background: var(--paper);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 780;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  will-change: transform;
}

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

.button-primary {
  color: var(--ink);
  background: var(--white);
}

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

.button:hover,
.blog-card:hover {
  transform: translateY(-2px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  height: auto;
  min-height: 0;
  overflow: visible;
  padding: 0;
  color: var(--white);
  background: var(--g1-black);
}

.hero::before,
.hero::after {
  content: none;
}

.hero-slide-track {
  position: relative;
  aspect-ratio: 1920 / 650;
  overflow: hidden;
  background: var(--white);
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 820ms ease;
  will-change: opacity;
  transform: translateZ(0);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  transform-origin: center;
  will-change: transform;
}

.hero-slide::after {
  content: none;
}

.hero-slide.is-active::after {
  opacity: 0;
}

.hero-action-panel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(220px, auto) auto auto;
  gap: clamp(14px, 2.4vw, 28px);
  align-items: center;
  width: 100%;
  padding: clamp(14px, 1.8vw, 20px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--g1-black);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  will-change: transform, opacity;
}

.hero-action-panel::before {
  content: none;
}

.hero-action-panel .eyebrow {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.hero-action-title {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 850;
  line-height: 1.25;
}

.hero-action-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 760;
}

.hero-action-meta span {
  display: grid;
  gap: 1px;
}

.hero-action-meta b {
  color: var(--white);
  font-size: 0.86rem;
  line-height: 1.1;
}

.hero-action-panel .button-row {
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.hero-slider-controls {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: flex-end;
  will-change: transform, opacity;
}

.hero-slider-controls button {
  position: relative;
  width: 34px;
  height: 4px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  border-radius: 999px;
  transition: width 180ms ease, background 180ms ease;
  will-change: width, background;
}

.hero-slider-controls button span {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--white);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-slider-controls button.is-active,
.hero-slider-controls button[aria-current="true"] {
  width: 48px;
  background: var(--white);
}

.hero-slider-controls button.is-active {
  background: rgba(255, 255, 255, 0.28);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--g1-metal);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-action-panel .eyebrow,
.mission-section .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

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

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 4.3vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.section {
  position: relative;
  padding: clamp(68px, 9vw, 118px) clamp(18px, 5vw, 76px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
}

.section-heading p,
.about-copy p,
.blog-card p,
.project-card p,
.contact-main p {
  color: var(--muted);
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(22px, 5vw, 76px);
  align-items: end;
  max-width: none;
  margin-bottom: 30px;
}

.section-heading.split > p {
  position: relative;
  padding-left: 18px;
  border-left: 2px solid var(--g1-black);
}

.factory-section {
  display: block;
  background:
    linear-gradient(180deg, var(--white) 0%, #f7f8f8 100%);
}

.factory-heading {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
}

.factory-heading p {
  color: var(--g1-graphite);
}

.factory-heading span {
  display: block;
  width: 72px;
  height: 2px;
  margin: 16px auto 18px;
  background: var(--g1-black);
  transform-origin: center;
}

.factory-mosaic {
  column-count: 5;
  column-gap: 8px;
}

.factory-mosaic figure {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 8px;
  overflow: hidden;
  background: var(--g1-carbon);
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(11, 11, 11, 0.08);
  break-inside: avoid;
  transform-origin: 50% 70%;
  transition:
    border-color 360ms ease,
    box-shadow 360ms ease;
  will-change: transform, opacity;
}

.factory-mosaic figure::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0) 45%, rgba(11, 11, 11, 0.4) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 32%);
  opacity: 0.58;
  transition: opacity 420ms ease;
}

.factory-mosaic figure:hover {
  border-color: rgba(11, 11, 11, 0.14);
  box-shadow: 0 18px 42px rgba(11, 11, 11, 0.16);
}

.factory-mosaic figure:hover::before {
  opacity: 0.28;
}

.factory-mosaic img {
  width: 100%;
  height: auto;
  object-fit: initial;
  filter: saturate(0.98);
  transition: transform 520ms ease, filter 520ms ease;
}

.factory-mosaic figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.04);
}

.tile-polish img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.factory-mosaic figcaption {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 8px;
  left: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 8px;
  color: var(--white);
  background: rgba(11, 11, 11, 0.72);
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(11, 11, 11, 0.18);
  font-size: 0.72rem;
  font-weight: 820;
  text-align: center;
  transition:
    background 260ms ease,
    transform 260ms ease;
}

.factory-mosaic figure:hover figcaption {
  background: rgba(11, 11, 11, 0.88);
  transform: translateY(-3px);
}

.factory-mosaic b {
  color: var(--g1-line);
  font-size: 0.72rem;
}

.project-section {
  background:
    linear-gradient(180deg, var(--paper) 0%, #eceeef 100%);
}

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

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 24px);
  color: var(--white);
  background: var(--g1-carbon);
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(11, 11, 11, 0.08);
  transition:
    border-color 320ms ease,
    box-shadow 320ms ease,
    transform 320ms ease;
  transform-origin: 50% 76%;
  will-change: transform, opacity;
}

.project-card::before {
  position: absolute;
  inset: 1px;
  z-index: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: calc(var(--radius) - 1px);
  transition: border-color 260ms ease;
}

.project-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.04), rgba(11, 11, 11, 0.78));
  transition: opacity 180ms ease;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 360ms ease,
    transform 520ms ease;
  will-change: transform;
}

.project-card span,
.project-card p {
  position: relative;
  z-index: 2;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.project-card:hover {
  border-color: rgba(11, 11, 11, 0.16);
  box-shadow: 0 22px 46px rgba(11, 11, 11, 0.18);
  transform: translateY(-6px) scale(1.006);
}

.project-card:hover::before {
  border-color: rgba(255, 255, 255, 0.3);
}

.project-card:hover::after,
.project-card:hover span,
.project-card:hover p {
  opacity: 1;
}

.project-card:hover img {
  filter: brightness(0.76);
  transform: scale(1.025);
}

.project-card:hover span,
.project-card:hover p {
  transform: translateY(0);
}

.project-card span {
  max-width: 15ch;
  margin-bottom: 8px;
  font-weight: 850;
  line-height: 1.12;
}

.project-card p {
  max-width: 31ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.42;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: end;
  min-height: clamp(560px, 64vw, 760px);
  color: var(--white);
  position: relative;
  overflow: hidden;
  background: url("assets/img/about-studio.webp") center / cover no-repeat;
}

.about-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.58), rgba(11, 11, 11, 0.12) 54%, rgba(11, 11, 11, 0.42)),
    linear-gradient(180deg, rgba(11, 11, 11, 0), rgba(11, 11, 11, 0.18));
}

.about-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: clamp(28px, 4vw, 46px);
  background: rgba(11, 11, 11, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(11, 11, 11, 0.3);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.about-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.mini-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.mini-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 820;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.mini-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
}

.blog-section {
  background:
    linear-gradient(180deg, var(--white) 0%, #f8f8f8 100%);
}

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

.blog-card {
  display: grid;
  min-height: 420px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(11, 11, 11, 0.06);
  transition:
    border-color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms ease;
  transform-origin: 50% 80%;
  will-change: transform, opacity;
}

.blog-card:hover {
  border-color: rgba(11, 11, 11, 0.18);
  box-shadow: 0 20px 44px rgba(11, 11, 11, 0.14);
  transform: translateY(-6px) scale(1.006);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper);
  filter: saturate(0.96);
  transition:
    filter 360ms ease,
    transform 520ms ease;
  will-change: transform;
}

.blog-card:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.028);
}

.blog-card span,
.blog-card p {
  margin-inline: 20px;
}

.blog-card span {
  margin-top: 20px;
  font-size: 1.06rem;
  font-weight: 850;
  line-height: 1.25;
}

.blog-card p {
  margin-bottom: 24px;
}

.mission-section {
  position: relative;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 76px);
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, #101010 0%, var(--g1-carbon) 48%, #080808 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mission-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent 76%);
}

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

.mission-section h2 {
  max-width: 1040px;
  margin: 0 auto 28px;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(26px, 6vw, 90px);
  align-items: start;
  background: var(--white);
}

.contact-main {
  max-width: 720px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 24px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(11, 11, 11, 0.06);
  font-style: normal;
}

.contact-details span {
  color: var(--ink);
  font-weight: 850;
}

.contact-details a {
  color: var(--ink);
  font-weight: 780;
}

.contact-details p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding: 24px clamp(18px, 5vw, 76px);
  color: var(--g1-metal);
  background: var(--g1-black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer span {
  margin-right: auto;
  color: var(--white);
  font-weight: 850;
}

@media (max-width: 1080px) {
  .about-section,
  .contact-section,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-action-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-action-meta {
    display: none;
  }

  .hero-action-panel .button-row,
  .hero-slider-controls {
    justify-content: flex-start;
  }

  .project-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .factory-mosaic {
    column-count: 3;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-dropdown {
    position: static;
  }

  .project-menu {
    position: fixed;
    top: 106px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100vh - 130px);
    overflow: auto;
    transform: none;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .hero::after {
    content: none;
  }

  h1 {
    max-width: min(100%, 330px);
    font-size: clamp(2.25rem, 9.8vw, 2.625rem);
    line-height: 1.05;
  }

  .hero-action-panel {
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding: 16px;
    gap: 12px;
  }

  .hero-action-panel .button-row {
    gap: 8px;
  }

  .hero-action-panel .button {
    padding: 11px 13px;
    font-size: 0.78rem;
  }

  .hero-slider-controls {
    justify-content: center;
  }

  .project-grid,
  .blog-grid,
  .mini-links {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 0;
  }

  .factory-mosaic {
    column-count: 2;
  }

  .project-card::after {
    opacity: 0.42;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0), rgba(11, 11, 11, 0.6));
  }

  .project-card span,
  .project-card p {
    opacity: 1;
    transform: none;
  }

  .project-card img {
    filter: none;
  }
}

/* Canonical project concept grid: every industry page uses square 3x3 cards. */
.concept-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 16px !important;
}

.concept-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  padding: clamp(18px, 2.2vw, 26px) !important;
  color: var(--white) !important;
  background: var(--g1-black) !important;
  border-radius: var(--radius) !important;
}

.concept-card::after {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  content: "" !important;
  opacity: 0 !important;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.04) 12%, rgba(11, 11, 11, 0.52) 58%, rgba(11, 11, 11, 0.9) 100%) !important;
  transition: opacity 220ms ease !important;
}

.concept-card img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition:
    filter 220ms ease,
    transform 420ms ease !important;
}

.concept-card span,
.concept-card p,
.concept-card small {
  position: relative !important;
  z-index: 1 !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  margin: 0 !important;
  opacity: 0 !important;
  transform: translateY(12px) !important;
  transition:
    opacity 220ms ease,
    transform 220ms ease !important;
}

.concept-card span {
  max-width: 13ch !important;
  margin-bottom: 10px !important;
  font-size: clamp(1.05rem, 1.35vw, 1.55rem) !important;
  font-weight: 850 !important;
  line-height: 1.08 !important;
}

.concept-card p {
  display: -webkit-box !important;
  max-width: 30ch !important;
  margin-bottom: 14px !important;
  overflow: hidden !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: clamp(0.82rem, 0.95vw, 0.96rem) !important;
  line-height: 1.42 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

.concept-card small {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.68rem !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}

.concept-card:hover::after,
.concept-card:hover span,
.concept-card:hover p,
.concept-card:hover small {
  opacity: 1 !important;
}

.concept-card:hover span,
.concept-card:hover p,
.concept-card:hover small {
  transform: translateY(0) !important;
}

.concept-card:hover img {
  filter: brightness(0.78) saturate(0.94) !important;
  transform: scale(1.045) !important;
}

@media (max-width: 1080px) {
  .concept-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .concept-grid {
    grid-template-columns: 1fr !important;
  }

  .concept-card {
    padding: 18px !important;
  }

  .concept-card::after,
  .concept-card span,
  .concept-card p,
  .concept-card small {
    opacity: 1 !important;
    transform: none !important;
  }

  .concept-card::after {
    background:
      linear-gradient(180deg, rgba(11, 11, 11, 0.04) 18%, rgba(11, 11, 11, 0.46) 62%, rgba(11, 11, 11, 0.86) 100%) !important;
  }
}

.about-page {
  color: var(--ink);
  background: var(--white);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 71px);
  padding: clamp(62px, 7vw, 104px) clamp(18px, 5vw, 76px);
  color: var(--white);
  background: var(--g1-black);
}

.about-hero-copy {
  max-width: 720px;
  padding-left: clamp(0px, 2vw, 24px);
  border-left: 3px solid var(--g1-line);
}

.about-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.about-hero h1 {
  color: var(--white);
}

.about-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.about-hero-media {
  position: relative;
  margin: 0;
}

.about-hero-media img {
  width: 100%;
  min-height: 520px;
  max-height: 72vh;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  max-width: 260px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(11, 11, 11, 0.2);
}

.about-hero-media figcaption span {
  color: var(--g1-metal);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.about-hero-media figcaption b {
  line-height: 1.18;
}

.about-stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.about-stat-band div {
  display: grid;
  gap: 5px;
  min-height: 148px;
  align-content: center;
  padding: 26px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.about-stat-band div:last-child {
  border-right: 0;
}

.about-stat-band b {
  font-size: clamp(2rem, 3.7vw, 4.4rem);
  line-height: 0.95;
}

.about-stat-band span {
  color: var(--g1-graphite);
  font-weight: 760;
}

.about-page .about-section,
.about-process,
.about-factory,
.about-quality,
.about-documents,
.about-feedback,
.about-faq,
.about-final-cta {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.about-page .about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  min-height: 0;
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-section-heading h2,
.about-process-heading h2,
.about-factory h2,
.about-quality h2,
.about-documents h2,
.about-feedback h2,
.about-faq h2,
.about-final-cta h2 {
  margin-top: 0;
}

.about-intro-copy p,
.about-support p,
.about-factory p,
.about-quality p,
.about-feedback p,
.about-final-cta p {
  max-width: 680px;
  color: var(--g1-graphite);
}

.about-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-pill-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 790;
}

.about-process {
  color: var(--white);
  background: var(--g1-carbon);
}

.about-process-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.about-process .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.about-process h2 {
  color: var(--white);
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-process-grid div {
  display: grid;
  gap: 13px;
  min-height: 260px;
  align-content: start;
  padding: clamp(20px, 2.4vw, 30px);
  background: var(--g1-carbon);
}

.about-process-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 880;
}

.about-process-grid h3 {
  margin: 8px 0 0;
  color: var(--white);
  line-height: 1.2;
}

.about-process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.about-factory {
  background: var(--paper);
}

.about-factory-main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
}

.about-factory-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-factory-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.about-factory-strip figure,
.about-certificate-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-factory-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-factory-strip figcaption,
.about-certificate-grid figcaption {
  padding: 13px 14px;
  color: var(--g1-graphite);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.about-support {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  align-items: center !important;
}

.about-support-media {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 12px;
  align-items: end;
}

.about-support-media img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-support-media img:first-child {
  aspect-ratio: 3 / 4;
}

.about-support-media img:last-child {
  aspect-ratio: 4 / 3;
}

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

.about-check-grid span {
  min-height: 56px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--g1-graphite);
  font-size: 0.9rem;
  font-weight: 760;
}

.about-quality {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.68)),
    url("assets/about-us/factory-packing.webp") center / cover no-repeat;
}

.about-quality .eyebrow,
.about-quality p {
  color: rgba(255, 255, 255, 0.72);
}

.about-quality h2 {
  color: var(--white);
}

.about-quality ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  counter-reset: quality;
  list-style: none;
}

.about-quality li {
  counter-increment: quality;
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.about-quality li::before {
  content: counter(quality, decimal-leading-zero);
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 860;
}

.about-quality li span {
  font-weight: 780;
}

.about-documents {
  background: var(--white);
}

.about-certificate-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.about-certificate-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  background: var(--paper);
}

.about-feedback {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-feedback-grid img {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.about-feedback-grid img:first-child,
.about-feedback-grid img:nth-child(2) {
  aspect-ratio: 16 / 7;
  grid-column: 1 / -1;
  padding: 10px;
  object-fit: contain;
}

.about-feedback-grid img:last-child {
  aspect-ratio: 4 / 3;
  grid-column: 1 / -1;
}

.about-faq {
  background: var(--white);
}

.about-faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
  margin-top: 30px;
}

.about-faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 840;
}

.about-faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--g1-graphite);
}

.about-final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--white);
  background: var(--g1-black);
}

.about-final-cta .eyebrow,
.about-final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.about-final-cta h2 {
  max-width: 920px;
  color: var(--white);
}

.about-final-cta p {
  max-width: 760px;
}

.about-column-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-column-nav a {
  display: grid;
  gap: 8px;
  min-height: 156px;
  align-content: center;
  padding: clamp(18px, 2.4vw, 28px);
  border-right: 1px solid var(--line);
  color: var(--ink);
}

.about-column-nav a:last-child {
  border-right: 0;
}

.about-column-nav a:hover {
  background: var(--paper);
}

.about-column-nav span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--g1-black);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 850;
}

.about-column-nav b {
  font-size: 1.08rem;
  line-height: 1.1;
}

.about-column-nav small {
  color: var(--g1-graphite);
  font-size: 0.82rem;
  line-height: 1.35;
}

.about-deep-section {
  padding: clamp(78px, 9vw, 128px) clamp(18px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.about-deep-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: end;
  margin-bottom: 42px;
}

.about-deep-heading h2 {
  margin-top: 0;
}

.about-deep-heading p:not(.eyebrow) {
  color: var(--g1-graphite);
}

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

.about-video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(22px, 5vw, 66px);
  align-items: center;
  margin-bottom: 46px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-youtube-slot {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--g1-black);
  border-radius: var(--radius);
}

.about-youtube-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.about-youtube-slot::before {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(54px, 6vw, 76px);
  height: clamp(54px, 6vw, 76px);
  place-self: center;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  content: "Play";
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-youtube-slot span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  color: var(--white);
  background: rgba(11, 11, 11, 0.72);
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 840;
  text-transform: uppercase;
}

.about-video-feature h3,
.about-showroom-grid h3 {
  margin-top: 0;
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.about-video-feature p,
.about-showroom-grid p {
  color: var(--g1-graphite);
}

.about-mini-metrics {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.about-mini-metrics span {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--g1-graphite);
}

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

.about-machine-grid figure {
  display: grid;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-machine-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-machine-grid figcaption {
  display: grid;
  gap: 6px;
  padding: 15px;
}

.about-machine-grid b {
  line-height: 1.15;
}

.about-machine-grid span {
  color: var(--g1-graphite);
  font-size: 0.84rem;
  line-height: 1.35;
}

.certificate-section,
.faq-section {
  background: var(--white);
}

.about-certificate-grid.expanded {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.about-certificate-grid.expanded figcaption {
  display: grid;
  gap: 5px;
  padding: 14px;
  text-transform: none;
}

.about-certificate-grid.expanded figcaption b {
  color: var(--ink);
  text-transform: uppercase;
}

.about-certificate-grid.expanded figcaption span {
  color: var(--g1-graphite);
  font-size: 0.78rem;
  line-height: 1.28;
}

.showroom-section {
  color: var(--white);
  background: var(--g1-carbon);
}

.showroom-section .eyebrow,
.showroom-section .about-deep-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.showroom-section h2 {
  color: var(--white);
}

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

.about-showroom-grid article {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.about-showroom-grid .about-youtube-slot {
  border-radius: 0;
}

.about-showroom-grid article div {
  padding: clamp(18px, 2.5vw, 28px);
}

.about-showroom-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.about-showroom-grid h3 {
  color: var(--white);
  margin: 10px 0 8px;
}

.about-showroom-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.about-client-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-client-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--g1-black);
  border-radius: var(--radius);
}

.about-client-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.about-client-gallery figure:hover img {
  transform: scale(1.025);
}

.about-client-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(11, 11, 11, 0.68);
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 820;
}

.about-feedback-messages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.about-feedback-messages img {
  width: 100%;
  min-height: 180px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.about-faq-list.complete {
  max-width: 1100px;
}

@media (max-width: 1080px) {
  .about-hero,
  .about-page .about-section,
  .about-process-heading,
  .about-factory-main,
  .about-quality,
  .about-feedback {
    grid-template-columns: 1fr !important;
  }

  .about-stat-band,
  .about-process-grid,
  .about-factory-strip,
  .about-certificate-grid,
  .about-column-nav,
  .about-machine-grid,
  .about-certificate-grid.expanded,
  .about-client-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-deep-heading,
  .about-video-feature {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: auto;
  }

  .about-hero-media img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding-top: 72px;
  }

  .about-hero-copy {
    padding-left: 16px;
  }

  .about-hero-media figcaption {
    right: 10px;
    bottom: 10px;
    max-width: min(260px, calc(100% - 20px));
  }

  .about-stat-band,
  .about-process-grid,
  .about-factory-strip,
  .about-certificate-grid,
  .about-column-nav,
  .about-machine-grid,
  .about-certificate-grid.expanded,
  .about-showroom-grid,
  .about-client-gallery,
  .about-feedback-messages,
  .about-check-grid,
  .about-quality ol,
  .about-feedback-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-band div {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-support-media {
    grid-template-columns: 1fr;
  }

  .about-process-grid div {
    min-height: 0;
  }
}

.blog-page {
  color: var(--ink);
  background: var(--white);
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  min-height: calc(100vh - 71px);
  padding: clamp(68px, 8vw, 116px) clamp(18px, 5vw, 76px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.92), rgba(11, 11, 11, 0.66) 58%, rgba(11, 11, 11, 0.2)),
    url("assets/img/blog-process.webp") center / cover no-repeat;
}

.blog-hero-copy {
  max-width: 800px;
  padding-left: clamp(0px, 2vw, 24px);
  border-left: 3px solid var(--g1-line);
}

.blog-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.blog-hero h1 {
  max-width: 780px;
  color: var(--white);
}

.blog-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.blog-hero-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.blog-hero-panel span {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-weight: 780;
}

.blog-question-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.blog-question-strip a {
  display: flex;
  min-height: 118px;
  align-items: center;
  padding: 22px clamp(16px, 2.4vw, 28px);
  color: var(--g1-graphite);
  border-right: 1px solid var(--line);
  font-weight: 780;
  line-height: 1.25;
}

.blog-question-strip a:last-child {
  border-right: 0;
}

.blog-question-strip a:hover {
  color: var(--ink);
  background: var(--paper);
}

.blog-featured,
.blog-prep,
.blog-mini-guides,
.blog-categories,
.blog-industries,
.blog-final-cta {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.blog-section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.blog-section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.blog-section-heading h2 {
  margin-top: 0;
}

.blog-section-heading p:not(.eyebrow) {
  color: var(--g1-graphite);
}

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

.blog-guide-card {
  display: grid;
  min-height: 480px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.blog-guide-card:hover {
  border-color: var(--g1-black);
  transform: translateY(-2px);
}

.blog-guide-card.featured {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
}

.blog-guide-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  background: var(--paper);
}

.blog-guide-card:not(.featured) img {
  height: auto;
  aspect-ratio: 4 / 3;
}

.blog-guide-card div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.blog-guide-card span {
  color: var(--g1-metal);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-guide-card h3 {
  margin: 0;
  font-size: clamp(1.26rem, 1.7vw, 1.9rem);
  line-height: 1.1;
}

.blog-guide-card p {
  margin: 0;
  color: var(--g1-graphite);
}

.blog-guide-card b {
  margin-top: 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.blog-prep {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: center;
  color: var(--white);
  background: var(--g1-carbon);
}

.blog-prep .eyebrow,
.blog-prep p {
  color: rgba(255, 255, 255, 0.72);
}

.blog-prep h2 {
  color: var(--white);
}

.blog-prep-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.blog-prep-list span {
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 780;
}

.blog-mini-guides {
  background: var(--paper);
}

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

.blog-note-grid article {
  min-height: 310px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blog-note-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--g1-black);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 860;
}

.blog-note-grid h3 {
  margin: 26px 0 10px;
  font-size: clamp(1.3rem, 1.7vw, 1.8rem);
}

.blog-note-grid p {
  color: var(--g1-graphite);
}

.blog-categories {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.blog-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.blog-category-grid a {
  display: flex;
  min-height: 86px;
  align-items: center;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--g1-graphite);
  font-weight: 820;
}

.blog-category-grid a:hover {
  color: var(--white);
  background: var(--g1-black);
  border-color: var(--g1-black);
}

.blog-industries {
  background: var(--paper);
}

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

.blog-industry-grid a {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  color: var(--white);
  background: var(--g1-black);
  border-radius: var(--radius);
}

.blog-industry-grid a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.08), rgba(11, 11, 11, 0.72));
}

.blog-industry-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.blog-industry-grid span {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 20px;
  font-size: clamp(1.08rem, 1.55vw, 1.55rem);
  font-weight: 850;
  line-height: 1.1;
}

.blog-industry-grid a:hover img {
  transform: scale(1.035);
}

.blog-final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--white);
  background: var(--g1-black);
}

.blog-final-cta .eyebrow,
.blog-final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.blog-final-cta h2 {
  max-width: 900px;
  margin-top: 0;
  color: var(--white);
}

.blog-final-cta p {
  max-width: 760px;
}

@media (max-width: 1080px) {
  .blog-hero,
  .blog-section-heading.split,
  .blog-prep,
  .blog-guide-card.featured {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    min-height: auto;
  }

  .blog-question-strip,
  .blog-guide-grid,
  .blog-note-grid,
  .blog-category-grid,
  .blog-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-guide-card.featured {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .blog-hero {
    padding-top: 72px;
  }

  .blog-hero-copy {
    padding-left: 16px;
  }

  .blog-question-strip,
  .blog-guide-grid,
  .blog-prep-list,
  .blog-note-grid,
  .blog-category-grid,
  .blog-industry-grid {
    grid-template-columns: 1fr;
  }

  .blog-question-strip a {
    min-height: 84px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .blog-guide-card {
    min-height: 0;
  }
}

.blog-article-page {
  background: var(--white);
  color: var(--ink);
}

.blog-article {
  width: min(1180px, calc(100% - clamp(36px, 10vw, 152px)));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 92px) 0 clamp(78px, 9vw, 118px);
}

.blog-back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--g1-graphite);
  font-size: 0.82rem;
  font-weight: 820;
}

.blog-back-link:hover {
  color: var(--ink);
}

.blog-article-hero {
  display: grid;
  gap: 18px;
}

.blog-article-hero h1 {
  max-width: 980px;
  margin-bottom: 0;
}

.blog-article-hero p:not(.eyebrow) {
  max-width: 740px;
  color: var(--g1-graphite);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.blog-article-hero img {
  width: 100%;
  max-height: 580px;
  margin-top: 20px;
  object-fit: cover;
  border-radius: var(--radius);
}

.blog-article-body {
  display: grid;
  gap: 18px;
  width: min(820px, 100%);
  margin-top: clamp(42px, 6vw, 78px);
}

.blog-article-body h2 {
  margin: 22px 0 0;
  font-size: clamp(1.5rem, 2.2vw, 2.35rem);
}

.blog-article-body p {
  margin: 0;
  color: var(--g1-graphite);
  font-size: 1.02rem;
}

.blog-article-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.blog-article-checklist span {
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 780;
}

.blog-article-cta {
  display: grid;
  gap: 14px;
  margin-top: clamp(48px, 7vw, 86px);
  padding: clamp(26px, 4vw, 44px);
  color: var(--white);
  background: var(--g1-black);
  border-radius: var(--radius);
}

.blog-article-cta h2 {
  margin: 0;
  color: var(--white);
}

.blog-article-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.blog-article-cta .button {
  justify-self: start;
}

@media (max-width: 760px) {
  .blog-article {
    width: min(100% - 36px, 1180px);
  }

  .blog-article-checklist {
    grid-template-columns: 1fr;
  }
}

.services-page {
  color: var(--ink);
  background: var(--white);
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  min-height: calc(100vh - 71px);
  padding: clamp(68px, 8vw, 116px) clamp(18px, 5vw, 76px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.92), rgba(11, 11, 11, 0.7) 54%, rgba(11, 11, 11, 0.2)),
    url("assets/img/service-manufacturing.webp") center / cover no-repeat;
}

.services-hero-copy {
  max-width: 820px;
  padding-left: clamp(0px, 2vw, 24px);
  border-left: 3px solid var(--g1-line);
}

.services-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.services-hero h1 {
  max-width: 820px;
  color: var(--white);
}

.services-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.services-hero-stack {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.services-hero-stack span {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-weight: 800;
}

.services-hero-stack b {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.76rem;
}

.services-intro {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.services-intro a {
  display: grid;
  gap: 8px;
  min-height: 174px;
  align-content: center;
  padding: clamp(18px, 2.4vw, 28px);
  color: var(--ink);
  border-right: 1px solid var(--line);
}

.services-intro a:last-child {
  border-right: 0;
}

.services-intro a:hover {
  background: var(--paper);
}

.services-intro span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--g1-black);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 850;
}

.services-intro b {
  font-size: 1.1rem;
  line-height: 1.1;
}

.services-intro small {
  color: var(--g1-graphite);
  font-size: 0.82rem;
  line-height: 1.35;
}

.services-core,
.services-process,
.services-production,
.services-scope,
.services-prep,
.services-industries,
.services-final-cta {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.services-section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.services-section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.services-section-heading h2 {
  margin-top: 0;
}

.services-section-heading p:not(.eyebrow) {
  color: var(--g1-graphite);
}

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

.services-card {
  display: grid;
  min-height: 520px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.services-card:hover {
  border-color: var(--g1-black);
  transform: translateY(-2px);
}

.services-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper);
}

.services-card div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
}

.services-card span {
  color: var(--g1-metal);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.services-card h3 {
  margin: 0;
  font-size: clamp(1.24rem, 1.55vw, 1.74rem);
  line-height: 1.12;
}

.services-card p {
  margin: 0;
  color: var(--g1-graphite);
}

.services-process {
  color: var(--white);
  background: var(--g1-carbon);
}

.services-process .eyebrow,
.services-process p {
  color: rgba(255, 255, 255, 0.72);
}

.services-process h2 {
  color: var(--white);
}

.services-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: services-process;
  list-style: none;
}

.services-process-list li {
  counter-increment: services-process;
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: clamp(20px, 2.8vw, 30px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.services-process-list li::before {
  content: counter(services-process, decimal-leading-zero);
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 880;
}

.services-process-list b {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.15;
}

.services-process-list span {
  color: rgba(255, 255, 255, 0.7);
}

.services-production {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: center;
  background: var(--paper);
}

.services-production-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--g1-black);
  border-radius: var(--radius);
}

.services-production-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0.9;
}

.services-production-media figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(11, 11, 11, 0.72);
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 820;
}

.services-production-copy p:not(.eyebrow) {
  color: var(--g1-graphite);
}

.services-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.services-metric-grid span {
  display: grid;
  gap: 4px;
  min-height: 92px;
  align-content: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--g1-graphite);
  font-size: 0.86rem;
}

.services-metric-grid b {
  color: var(--ink);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
}

.services-scope {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-scope-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.services-scope-grid span {
  display: flex;
  min-height: 78px;
  align-items: center;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--g1-graphite);
  font-weight: 800;
}

.services-prep {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.66)),
    url("assets/img/service-quote.webp") center / cover no-repeat;
}

.services-prep .eyebrow,
.services-prep p {
  color: rgba(255, 255, 255, 0.72);
}

.services-prep h2 {
  color: var(--white);
}

.services-prep-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.services-prep-list span {
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-weight: 780;
}

.services-industries {
  background: var(--paper);
}

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

.services-industry-grid a {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  color: var(--white);
  background: var(--g1-black);
  border-radius: var(--radius);
}

.services-industry-grid a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.08), rgba(11, 11, 11, 0.74));
}

.services-industry-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.services-industry-grid span {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 20px;
  font-size: clamp(1.08rem, 1.55vw, 1.55rem);
  font-weight: 850;
  line-height: 1.1;
}

.services-industry-grid a:hover img {
  transform: scale(1.035);
}

.services-final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--white);
  background: var(--g1-black);
}

.services-final-cta .eyebrow,
.services-final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.services-final-cta h2 {
  max-width: 920px;
  margin-top: 0;
  color: var(--white);
}

.services-final-cta p {
  max-width: 760px;
}

@media (max-width: 1080px) {
  .services-hero,
  .services-section-heading.split,
  .services-production,
  .services-prep {
    grid-template-columns: 1fr;
  }

  .services-hero {
    min-height: auto;
  }

  .services-intro,
  .services-card-grid,
  .services-process-list,
  .services-scope-grid,
  .services-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .services-hero {
    padding-top: 72px;
  }

  .services-hero-copy {
    padding-left: 16px;
  }

  .services-intro,
  .services-card-grid,
  .services-process-list,
  .services-metric-grid,
  .services-scope-grid,
  .services-prep-list,
  .services-industry-grid {
    grid-template-columns: 1fr;
  }

  .services-intro a {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-card,
  .services-process-list li {
    min-height: 0;
  }
}

.contact-page {
  color: var(--ink);
  background: var(--white);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  min-height: calc(100vh - 71px);
  padding: clamp(68px, 8vw, 116px) clamp(18px, 5vw, 76px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.92), rgba(11, 11, 11, 0.7) 54%, rgba(11, 11, 11, 0.18)),
    url("assets/img/service-quote.webp") center / cover no-repeat;
}

.contact-hero-copy {
  max-width: 840px;
  padding-left: clamp(0px, 2vw, 24px);
  border-left: 3px solid var(--g1-line);
}

.contact-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact-hero h1 {
  max-width: 820px;
  color: var(--white);
}

.contact-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.contact-hero-panel {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: clamp(18px, 3vw, 28px);
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-style: normal;
}

.contact-hero-panel span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-hero-panel a,
.contact-hero-panel p {
  margin: 0 0 10px;
  color: var(--white);
  font-weight: 780;
}

.contact-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.contact-path div {
  display: grid;
  gap: 8px;
  min-height: 174px;
  align-content: center;
  padding: clamp(18px, 2.4vw, 28px);
  border-right: 1px solid var(--line);
}

.contact-path div:last-child {
  border-right: 0;
}

.contact-path span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--g1-black);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 850;
}

.contact-path b {
  font-size: 1.08rem;
  line-height: 1.1;
}

.contact-path small {
  color: var(--g1-graphite);
  font-size: 0.82rem;
  line-height: 1.35;
}

.contact-brief-section,
.contact-checklist,
.contact-options,
.contact-next,
.contact-final-cta {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.contact-brief-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: start;
  background: var(--paper);
}

.contact-brief-copy p:not(.eyebrow),
.contact-section-heading p:not(.eyebrow),
.contact-next p:not(.eyebrow) {
  color: var(--g1-graphite);
}

.contact-brief-media {
  position: relative;
  margin: 30px 0 0;
  overflow: hidden;
  background: var(--g1-black);
  border-radius: var(--radius);
}

.contact-brief-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0.9;
}

.contact-brief-media figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 11px 13px;
  color: var(--white);
  background: rgba(11, 11, 11, 0.72);
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 820;
}

.contact-brief-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(18px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-brief-form label {
  display: grid;
  gap: 8px;
  color: var(--g1-graphite);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-brief-form label.wide,
.contact-form-actions,
.contact-form-note {
  grid-column: 1 / -1;
}

.contact-brief-form input,
.contact-brief-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.94rem;
  text-transform: none;
}

.contact-brief-form textarea {
  resize: vertical;
}

.contact-brief-form input:focus,
.contact-brief-form textarea:focus {
  outline: 2px solid var(--g1-black);
  outline-offset: 1px;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.button-secondary.light {
  color: var(--ink);
  border-color: var(--line);
}

.contact-form-note {
  margin: 0;
  color: var(--g1-metal);
  font-size: 0.86rem;
}

.contact-checklist {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.contact-section-heading.split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.contact-section-heading h2 {
  margin-top: 0;
}

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

.contact-check-grid span {
  display: flex;
  min-height: 86px;
  align-items: center;
  padding: 16px;
  color: var(--g1-graphite);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.contact-options {
  background: var(--paper);
}

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

.contact-option-grid a,
.contact-option-grid div {
  display: grid;
  gap: 10px;
  min-height: 236px;
  align-content: start;
  padding: clamp(20px, 2.7vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-option-grid a:hover {
  border-color: var(--g1-black);
  transform: translateY(-2px);
}

.contact-option-grid span {
  color: var(--g1-metal);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-option-grid b {
  font-size: clamp(1.08rem, 1.45vw, 1.44rem);
  line-height: 1.16;
}

.contact-option-grid small {
  color: var(--g1-graphite);
  line-height: 1.42;
}

.contact-next {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.66)),
    url("assets/about-us/factory-packing.webp") center / cover no-repeat;
}

.contact-next .eyebrow,
.contact-next p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-next h2 {
  color: var(--white);
}

.contact-next-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  counter-reset: contact-next;
  list-style: none;
}

.contact-next-list li {
  counter-increment: contact-next;
  display: grid;
  gap: 10px;
  min-height: 168px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.contact-next-list li::before {
  content: counter(contact-next, decimal-leading-zero);
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 880;
}

.contact-next-list b {
  color: var(--white);
  line-height: 1.15;
}

.contact-next-list span {
  color: rgba(255, 255, 255, 0.7);
}

.contact-final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--white);
  background: var(--g1-black);
}

.contact-final-cta .eyebrow,
.contact-final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-final-cta h2 {
  max-width: 940px;
  margin-top: 0;
  color: var(--white);
}

.contact-final-cta p {
  max-width: 760px;
}

@media (max-width: 1080px) {
  .contact-hero,
  .contact-brief-section,
  .contact-section-heading.split,
  .contact-next {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
  }

  .contact-path,
  .contact-check-grid,
  .contact-option-grid,
  .contact-next-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contact-hero {
    padding-top: 72px;
  }

  .contact-hero-copy {
    padding-left: 16px;
  }

  .contact-path,
  .contact-brief-form,
  .contact-check-grid,
  .contact-option-grid,
  .contact-next-list {
    grid-template-columns: 1fr;
  }

  .contact-path div {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-option-grid a,
  .contact-option-grid div,
  .contact-next-list li {
    min-height: 0;
  }
}
