:root {
  --primary: #0a345f;
  --secondary: #eaf0f5;
  --accent: #f15a24;
  --navy: var(--primary);
  --navy-dark: var(--primary);
  --navy-soft: var(--secondary);
  --ink: var(--primary);
  --muted: #596674;
  --warm: #f6f3ee;
  --warm-deep: #ece5db;
  --white: #ffffff;
  --orange: var(--accent);
  --line: #dfe3e6;
  --shadow: 0 18px 55px rgba(10, 52, 95, 0.12);
  --site-width: 1440px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "DM Sans", "Noto Sans", Arial, sans-serif;
  --type-h1: clamp(42px, 4.1vw, 64px);
  --type-h2: clamp(32px, 3.1vw, 46px);
  --type-h3: clamp(22px, 2vw, 30px);
  --type-lead: 18px;
  --type-copy: 18px;
  --type-eyebrow: 18px;
  --heading-weight: 700;
  --line-h1: 1.08;
  --line-h2: 1.2;
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 6px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: var(--type-copy);
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

:focus-visible {
  outline: 3px solid rgba(241, 90, 36, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(var(--site-width), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 82px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  padding: 0 max(24px, calc((100vw - var(--site-width)) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(10, 52, 95, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-crop {
  width: 108px;
  height: 64px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-crop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-caption {
  padding-left: 12px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-left: 1px solid var(--line);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding: 30px 0 27px;
  color: #42505e;
  font-size: 18px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  background: var(--navy);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 0;
  height: 44px;
  padding-inline: 24px;
  color: var(--white);
  background: var(--navy-dark);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
  animation: sample-cta-nudge 6s ease-in-out infinite;
}

.header-cta:hover {
  background: var(--orange);
}

@keyframes sample-cta-nudge {
  0%, 82%, 100% {
    transform: translateX(0) rotate(0);
  }

  85% {
    transform: translateX(-3px) rotate(-1.5deg);
  }

  88% {
    transform: translateX(3px) rotate(1.5deg);
  }

  91% {
    transform: translateX(-2px) rotate(-1deg);
  }

  94% {
    transform: translateX(2px) rotate(1deg);
  }

  97% {
    transform: translateX(0) rotate(0);
  }
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 750px;
  margin-top: 82px;
  overflow: hidden;
  background: var(--warm);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(246, 243, 238, 1) 0%,
    rgba(246, 243, 238, 0.98) 34%,
    rgba(246, 243, 238, 0.9) 43%,
    rgba(246, 243, 238, 0.58) 52%,
    rgba(246, 243, 238, 0.16) 61%,
    rgba(246, 243, 238, 0) 68%
  );
}

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

.hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

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

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(10, 52, 95, 0.12);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 52, 95, 0.3);
  cursor: pointer;
  transition: width 240ms ease, background-color 240ms ease, transform 240ms ease;
}

.hero-dot:hover,
.hero-dot:focus-visible {
  background: rgba(10, 52, 95, 0.68);
  transform: scale(1.12);
}

.hero-dot.is-active {
  width: 24px;
  background: var(--navy);
}

.hero-panel {
  --hero-page-gutter: max(50px, calc((100vw - var(--site-width)) / 2));
  position: relative;
  z-index: 2;
  width: min(58%, calc(var(--hero-page-gutter) + 760px));
  min-height: 750px;
  padding: 112px clamp(40px, 4vw, 80px) 96px var(--hero-page-gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

.pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 8px 13px;
  color: var(--navy);
  background: var(--navy-soft);
  font-size: 18px;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.factory-content h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: var(--heading-weight);
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 680px;
  font-size: var(--type-h1);
  line-height: var(--line-h1);
}

.hero h1 em {
  color: var(--orange);
  font-weight: 400;
}

.hero-copy {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: var(--type-lead);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--orange);
}

.button-secondary {
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--navy-dark);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--navy);
}

.hero-points {
  display: flex;
  gap: 25px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #526171;
  font-size: 18px;
  font-weight: 600;
}

.hero-points svg {
  color: var(--orange);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-dark);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue svg {
  transform: rotate(90deg);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(24px, calc((100vw - var(--site-width)) / 2));
  background: var(--navy-dark);
}

.trust-item {
  min-height: 134px;
  padding: 27px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item strong {
  font-family: var(--serif);
  font-size: clamp(30px, 2.2vw, 36px);
  letter-spacing: -0.04em;
}

.trust-number {
  display: inline-block;
  color: inherit;
  font: inherit;
  line-height: 1;
  letter-spacing: inherit;
  text-transform: none;
  font-variant-numeric: tabular-nums;
  transform-origin: 50% 100%;
}

.trust-item > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 58px;
}

.section-heading-center {
  text-align: center;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--orange);
  font-size: var(--type-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.factory-content h2,
.contact-copy h2 {
  font-size: var(--type-h2);
  line-height: var(--line-h2);
}

.section-copy {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: var(--type-copy);
  line-height: 1.75;
}

.accent-underline {
  color: var(--accent);
  text-decoration-line: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.section-heading-left .section-copy {
  margin-left: 0;
}

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

.product-carousel {
  position: relative;
}

.product-track {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  cursor: grab;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-track.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

.product-track.is-dragging a {
  pointer-events: none;
}

.product-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
  overflow: hidden;
  background: transparent;
  scroll-snap-align: start;
}

.product-image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f3;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.035);
}

.product-card > a {
  display: block;
  color: var(--navy-dark);
}

.product-card h3 {
  min-height: 52px;
  margin: 0;
  padding: 14px 10px 0;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

.text-link:hover {
  color: var(--orange);
}

.product-pagination {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.product-pagination button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(10, 52, 95, 0.28);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.product-pagination button:hover,
.product-pagination button.is-active {
  background: var(--navy);
  transform: scale(1.25);
}

.customization {
  background: var(--white);
}

.customization-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(55px, 7vw, 94px);
}

.custom-collage {
  position: relative;
  min-height: 650px;
}

.custom-collage img {
  position: absolute;
  object-fit: cover;
}

.collage-main {
  inset: 0 72px 95px 0;
  width: calc(100% - 72px);
  height: calc(100% - 95px);
  object-position: left center;
}

.collage-detail {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 46%;
  border: 12px solid var(--white);
}

.collage-label {
  position: absolute;
  left: 34px;
  bottom: 62px;
  z-index: 2;
  min-width: 190px;
  padding: 19px 24px;
  display: flex;
  flex-direction: column;
  background: var(--navy-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.collage-label strong {
  font-family: var(--serif);
  font-size: 20px;
}

.collage-label span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.custom-content .section-heading {
  margin-bottom: 34px;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
}

.capability {
  padding: 18px 0;
  display: flex;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.capability-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--navy-soft);
}

.capability h3,
.capability p {
  margin: 0;
}

.capability h3 {
  font-size: 18px;
}

.capability p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.custom-content .custom-inquiry-button {
  margin-top: 26px;
  width: fit-content;
}

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

.advantages-section .section-heading {
  margin-bottom: 52px;
}

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

.advantage-card {
  position: relative;
  isolation: isolate;
  min-height: 230px;
  padding: clamp(34px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(10, 52, 95, 0.14);
}

.advantage-card-light {
  color: var(--ink);
  background: var(--white);
}

.advantage-card-dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.advantage-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.advantage-icon {
  margin-top: 2px;
  color: var(--accent);
}

.advantage-card h3,
.advantage-card p {
  margin: 0;
}

.advantage-logo {
  position: absolute;
  z-index: 0;
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(14px, 1.6vw, 22px);
  width: clamp(108px, 9vw, 142px);
  height: auto;
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}

.advantage-card-dark .advantage-logo {
  opacity: 0.09;
}

.advantage-card h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.35;
}

.advantage-card-dark h3 {
  color: var(--white);
}

.advantage-card p {
  max-width: 58ch;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.advantage-card-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.factory-section {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 700px;
  background: var(--navy-dark);
}

.factory-photo {
  position: relative;
  overflow: hidden;
}

.factory-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-photo span {
  position: absolute;
  left: 25px;
  bottom: 24px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(10, 52, 95, 0.78);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.factory-video-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 76px;
  height: 76px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(10, 52, 95, 0.28);
  transform: translate(-50%, -50%);
  transition: background 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.factory-video-trigger::before,
.factory-video-trigger::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: factory-video-ripple 2.4s ease-out infinite;
  pointer-events: none;
}

.factory-video-trigger::after {
  animation-delay: 1.2s;
}

.factory-video-trigger:hover {
  background: var(--navy);
  transform: translate(-50%, -50%) scale(1.06);
}

@keyframes factory-video-ripple {
  0% {
    opacity: 0.72;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

.factory-video-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  padding: 76px 32px 32px;
  display: grid;
  place-items: center;
  background: rgba(2, 17, 31, 0.9);
  backdrop-filter: blur(8px);
}

.factory-video-panel {
  position: relative;
  width: min(1120px, 100%);
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.factory-video-panel iframe {
  width: 100%;
  max-height: calc(100vh - 96px);
  display: block;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.factory-video-close {
  position: absolute;
  top: -58px;
  right: 0;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(10, 52, 95, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.factory-video-close:hover {
  background: var(--orange);
}

.factory-content {
  padding: 90px max(45px, calc((100vw - var(--site-width)) / 2)) 86px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.eyebrow-light {
  color: #d99a6d;
}

.factory-content > p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.8;
}

.factory-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 36px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.factory-features div {
  padding: 20px 18px 20px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.factory-features div:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.factory-features div:nth-child(even) {
  padding-left: 24px;
}

.factory-features strong {
  color: #d99a6d;
  font-family: var(--serif);
  font-size: 20px;
}

.factory-features span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
}

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

.button-light:hover {
  color: var(--white);
  background: var(--orange);
}

.proof-section {
  padding: 84px 0;
  background: var(--warm);
}

.proof-controls {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.proof-controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy-dark);
  background: var(--white);
  border: 1px solid rgba(10, 52, 95, 0.18);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.proof-controls button:hover {
  color: var(--white);
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.arrow-left {
  transform: rotate(180deg);
}

.proof-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  touch-action: pan-y;
}

.proof-grid::-webkit-scrollbar {
  display: none;
}

.proof-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.proof-card {
  flex: 0 0 calc((100% - 54px) / 4);
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(10, 52, 95, 0.12);
  box-shadow: 0 18px 45px rgba(10, 52, 95, 0.07);
}

.proof-image-wrap {
  position: relative;
  width: 100%;
  height: 430px;
  padding: 0;
  display: block;
  overflow: hidden;
  background: #eeece7;
  border: 0;
  cursor: grab;
}

.proof-image-wrap img {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(10, 52, 95, 0.12));
  pointer-events: none;
  user-select: none;
}

.proof-grid.is-dragging .proof-image-wrap {
  cursor: grabbing;
}

.proof-image-wrap span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  background: var(--primary);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 1;
  transform: none;
  text-transform: uppercase;
}

.proof-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 38px 84px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 24px;
  background: rgba(4, 20, 36, 0.94);
  backdrop-filter: blur(14px);
}

.proof-lightbox-content {
  min-width: 0;
  max-width: 1160px;
  max-height: calc(100vh - 76px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-lightbox-content img {
  min-height: 0;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  filter: drop-shadow(0 24px 55px rgba(0, 0, 0, 0.34));
}

.proof-lightbox-content figcaption {
  width: min(100%, 720px);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-size: 18px;
}

.proof-lightbox-content figcaption span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.proof-lightbox-close,
.proof-lightbox-nav {
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.proof-lightbox-close:hover,
.proof-lightbox-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.proof-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
}

.proof-lightbox-nav {
  width: 54px;
  height: 54px;
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  min-height: 270px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

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

.process-step > span {
  color: #b9c4ce;
  font-family: var(--serif);
  font-size: 32px;
}

.process-step h3 {
  margin: 45px 0 12px;
  font-family: var(--serif);
  font-size: 18px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.buyers-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-soft);
}

.buyers-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: clamp(24px, 6vw, 120px);
  bottom: 18px;
  width: clamp(260px, 27vw, 430px);
  aspect-ratio: 471 / 281;
  background: var(--bh-logo-white) center / contain no-repeat;
  opacity: 0.48;
  pointer-events: none;
}

.buyers-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.buyer-intro {
  position: sticky;
  top: 120px;
}

.buyer-intro .section-heading {
  margin-bottom: 0;
}

.buyer-visual {
  position: relative;
  height: 285px;
  margin-top: 34px;
  overflow: hidden;
  background: var(--navy-dark);
  box-shadow: 0 18px 42px rgba(10, 52, 95, 0.14);
}

.buyer-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(10, 52, 95, 0.52), transparent);
  pointer-events: none;
}

.buyer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: buyer-image-in 420ms ease both;
}

@keyframes buyer-image-in {
  from {
    opacity: 0.3;
    transform: scale(1.025);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.buyer-dots {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 17px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.buyer-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.buyer-dots button:hover,
.buyer-dots button.is-active {
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

.buyer-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  align-self: center;
}

.buyer-card {
  min-height: 230px;
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 52, 95, 0.12);
  cursor: pointer;
  text-align: left;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.buyer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 52, 95, 0.28);
}

.buyer-card.is-active {
  background: var(--white);
  border-color: rgba(10, 52, 95, 0.5);
  box-shadow: 0 0 0 3px rgba(10, 52, 95, 0.1), 0 18px 40px rgba(10, 52, 95, 0.13);
  animation: buyer-card-glow 620ms ease both;
}

@keyframes buyer-card-glow {
  50% {
    box-shadow: 0 0 0 6px rgba(10, 52, 95, 0.16), 0 18px 42px rgba(10, 52, 95, 0.16);
  }
}

.buyer-card span {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.buyer-card h3 {
  margin: 45px 0 11px;
  font-family: var(--serif);
  font-size: 18px;
}

.buyer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.news-section {
  overflow: hidden;
  background: var(--white);
}

.news-section .section-heading {
  margin-bottom: 54px;
}

.news-card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.news-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card-image {
  position: relative;
  aspect-ratio: 1.5 / 1;
  overflow: hidden;
  background: var(--navy-dark);
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.035);
}

.news-card-image > span {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--navy);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-card-content {
  min-height: 276px;
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
}

.news-card-content > p {
  margin: 0;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-card-content h3 {
  margin: 13px 0 14px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-card-content > div {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.news-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

.inquiry-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-soft);
}

.inquiry-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--bh-contact-map) center / cover no-repeat;
  opacity: 0.52;
  pointer-events: none;
}

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

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 118px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.contact-list {
  margin-top: 42px;
  display: grid;
  gap: 19px;
}

.contact-list a,
.contact-list > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--navy-dark);
}

.contact-list svg {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-list span {
  max-width: 390px;
  font-size: 18px;
  line-height: 1.55;
}

.contact-list small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inquiry-form {
  min-height: 620px;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  padding: 28px;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(4, 20, 36, 0.78);
  backdrop-filter: blur(10px);
}

.inquiry-modal-panel {
  position: relative;
  width: min(860px, 100%);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(4, 20, 36, 0.32);
}

.inquiry-modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy-dark);
  background: var(--navy-soft);
  border: 0;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.inquiry-modal-close:hover {
  color: var(--white);
  background: var(--orange);
}

.inquiry-form-modal {
  min-height: auto;
  padding: 34px 38px 36px;
  border: 0;
  box-shadow: none;
}

.inquiry-form-modal .form-heading {
  padding-right: 54px;
}

.inquiry-form-modal .success-state {
  min-height: 430px;
}

.form-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.form-heading p {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.form-heading span {
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
}

.form-heading-description {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 18px;
  margin-top: 24px;
}

.inquiry-form label {
  display: block;
  margin-top: 17px;
  color: #324050;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.form-grid label {
  margin-top: 0;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  margin-top: 7px;
  color: var(--ink);
  background: #fbfbfa;
  border: 1px solid #d7dce0;
  border-radius: 0;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.inquiry-form input,
.inquiry-form select {
  height: 44px;
  padding: 0 12px;
}

.inquiry-form textarea {
  min-height: 105px;
  padding: 12px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 52, 95, 0.1);
}

.form-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--navy-dark);
  border: 0;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease;
}

.form-submit:hover {
  background: var(--orange);
}

.form-note {
  margin: 13px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #7d8791;
  font-size: 18px;
}

.success-state {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-state svg {
  color: var(--orange);
}

.success-state h3 {
  max-width: 430px;
  margin: 22px 0 12px;
  font-family: var(--serif);
  font-size: 22px;
}

.success-state p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.success-state button {
  margin-top: 25px;
  padding: 12px 17px;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--navy);
  cursor: pointer;
}

.footer {
  padding: 70px 0 0;
  color: rgba(255, 255, 255, 0.66);
  background: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 55px;
}

.footer-brand img {
  display: block;
  width: 140px;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 280px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.7;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a,
.footer-grid span {
  font-size: 18px;
  line-height: 1.5;
}

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

.footer-socials {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  transform: translateY(-2px);
}

.footer-qr-section {
  margin-top: 12px;
}

.footer-qr-section .footer-qr-title {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 96px));
  gap: 12px;
}

.footer-qr-card,
.footer-grid a.footer-qr-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  text-decoration: none;
}

.footer-qr-image {
  width: 96px;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.footer-qr-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-qr-card strong {
  margin-top: 4px;
  width: 100%;
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
}

.footer-grid a.footer-qr-card:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 56px;
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
}

.floating-actions {
  position: fixed;
  z-index: 45;
  right: 23px;
  top: 58%;
  bottom: auto;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
}

.float-action {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 9px 27px rgba(10, 52, 95, 0.24);
  transition: transform 180ms ease;
  cursor: pointer;
}

.whatsapp-float {
  background: #1faf61;
}

.float-action:hover {
  transform: translateY(-3px) scale(1.03);
}

/* About page */
.about-hero {
  margin-top: 82px;
  padding: 76px 0;
  background: var(--navy-soft);
}

.about-hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.about-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.about-hero-copy h1 em {
  color: var(--orange);
  font-weight: 400;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.about-hero-copy .button {
  margin-top: 34px;
}

.about-hero-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--navy-dark);
}

.about-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 52, 95, 0.62) 100%);
  pointer-events: none;
}

.about-hero-visual > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

.about-hero-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: min(450px, 78%);
  min-height: 112px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 15px;
  align-items: start;
  color: var(--white);
  background: rgba(10, 52, 95, 0.94);
}

.about-hero-visual figcaption svg {
  color: var(--orange);
}

.about-hero-visual figcaption strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.about-hero-visual figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.about-facts {
  color: var(--white);
  background: var(--navy-dark);
}

.about-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-facts-grid > div {
  min-height: 138px;
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.about-facts-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-facts-grid strong {
  font-family: var(--serif);
  font-size: 29px;
  letter-spacing: -0.03em;
}

.about-facts-grid span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(58px, 7vw, 112px);
  align-items: center;
}

.about-overview-images {
  position: relative;
  min-height: 640px;
}

.about-overview-images img {
  position: absolute;
  object-fit: cover;
}

.about-overview-main {
  inset: 0 80px 120px 0;
  width: calc(100% - 80px);
  height: calc(100% - 120px);
}

.about-overview-detail {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 48%;
  border: 12px solid var(--white);
}

.about-overview-images > span {
  position: absolute;
  left: 28px;
  bottom: 92px;
  z-index: 1;
  padding: 15px 18px;
  color: var(--white);
  background: var(--navy);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-overview-copy h2,
.about-manufacturing-content h2,
.about-people-copy h2,
.about-materials-copy h2,
.about-quality-heading h2,
.about-buyer-support h2 {
  margin: 0;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.about-overview-copy > p:not(.eyebrow),
.about-people-copy > p,
.about-materials-copy > p,
.about-quality-heading > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.about-overview-copy .about-lead {
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
}

.about-journey {
  margin-top: 34px;
  display: grid;
  border-top: 1px solid var(--line);
}

.about-journey > div {
  position: relative;
  padding: 22px 0 22px 84px;
  border-bottom: 1px solid var(--line);
}

.about-journey span {
  position: absolute;
  top: 22px;
  left: 0;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 18px;
}

.about-journey strong {
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 18px;
}

.about-journey p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.about-network {
  overflow: hidden;
  background: var(--navy-soft);
}

.about-network-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-location {
  position: relative;
  min-height: 360px;
  padding: 48px;
  overflow: hidden;
}

.about-location > svg {
  color: var(--orange);
}

.about-location > p {
  margin: 38px 0 0;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-location h3 {
  max-width: 520px;
  margin: 13px 0 0;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.35;
}

.about-location > span {
  max-width: 560px;
  margin-top: 18px;
  display: block;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-location-dark {
  color: var(--white);
  background: var(--navy);
}

.about-location-light {
  background: var(--white);
  border: 1px solid rgba(10, 52, 95, 0.12);
}

.about-location-dark h3 {
  color: var(--white);
}

.about-location-dark > span {
  color: rgba(255, 255, 255, 0.72);
}

.about-location-number {
  position: absolute;
  top: 38px;
  right: 42px;
  color: rgba(10, 52, 95, 0.13);
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
}

.about-location-dark .about-location-number {
  color: rgba(255, 255, 255, 0.1);
}

.about-network-link {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--white);
  border: 8px solid var(--navy-soft);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.about-manufacturing {
  min-height: 780px;
  display: grid;
  grid-template-columns: 47% 53%;
  background: var(--navy-dark);
}

.about-manufacturing-image {
  position: relative;
  overflow: hidden;
}

.about-manufacturing-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(10, 52, 95, 0.64) 100%);
}

.about-manufacturing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-manufacturing-image span {
  position: absolute;
  z-index: 1;
  left: max(24px, calc((100vw - var(--site-width)) / 2));
  bottom: 34px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-manufacturing-content {
  padding: 88px max(28px, calc((100vw - var(--site-width)) / 2)) 82px 72px;
  color: var(--white);
}

.about-manufacturing-content h2,
.about-buyer-support h2 {
  color: var(--white);
}

.about-manufacturing-intro {
  max-width: 640px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.8;
}

.about-manufacturing-steps {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.about-manufacturing-steps article {
  min-height: 218px;
  padding: 27px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.about-manufacturing-steps article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--orange);
}

.about-manufacturing-steps article > div span {
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--serif);
  font-size: 18px;
}

.about-manufacturing-steps h3 {
  margin: 29px 0 0;
  font-family: var(--serif);
  font-size: 18px;
}

.about-manufacturing-steps p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.7;
}

.about-people-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(56px, 7vw, 112px);
  align-items: center;
}

.about-people-copy ul {
  margin: 29px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.about-people-copy li {
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--navy-dark);
  font-size: 18px;
  font-weight: 600;
}

.about-people-copy li svg {
  color: var(--orange);
}

.about-people-gallery {
  min-height: 620px;
  position: relative;
}

.about-people-gallery figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--navy-soft);
}

.about-people-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, rgba(10, 52, 95, 0.58));
}

.about-people-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-people-gallery figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 19px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-people-office {
  inset: 0 0 115px 92px;
}

.about-people-culture {
  left: 0;
  bottom: 0;
  width: 48%;
  height: 44%;
  border: 12px solid var(--white);
}

.about-materials-quality {
  background: var(--navy-soft);
}

.about-materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
}

.about-materials-photo {
  position: relative;
  min-height: 510px;
  overflow: hidden;
}

.about-materials-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(10, 52, 95, 0.58));
}

.about-materials-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-materials-photo span {
  position: absolute;
  z-index: 1;
  left: 30px;
  bottom: 27px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-materials-copy {
  padding: 64px 68px;
  border: 1px solid var(--line);
}

.about-material-tags {
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-material-tags span {
  min-height: 64px;
  padding: 16px;
  display: flex;
  align-items: center;
  color: var(--navy-dark);
  background: var(--white);
  font-size: 18px;
  font-weight: 600;
}

.about-material-tags span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--orange);
  border-radius: 50%;
}

.about-quality-grid {
  margin-top: 74px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: end;
}

.about-quality-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-quality-steps > div {
  position: relative;
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-quality-steps > div > span {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #c7d0d9;
  font-family: var(--serif);
  font-size: 18px;
}

.about-quality-steps strong {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 23px;
}

.about-quality-steps p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.about-buyer-support {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: var(--white);
  background: var(--navy);
}

.about-buyer-support::after {
  content: "boshiho";
  position: absolute;
  right: -24px;
  bottom: -46px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(120px, 15vw, 240px);
  line-height: 1;
  pointer-events: none;
}

.about-buyer-support-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.about-buyer-support-grid > div:first-child > p:not(.eyebrow) {
  max-width: 670px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.8;
}

.about-buyer-support .button {
  margin-top: 32px;
}

.about-support-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.about-support-list > div {
  min-height: 125px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  color: var(--orange);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-support-list span {
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 180px 1fr auto;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero-panel {
    width: 62%;
    padding-left: 36px;
    padding-right: 36px;
  }

  .trust-item {
    padding-inline: 17px;
  }

  .customization-grid,
  .inquiry-grid {
    gap: 50px;
  }

  .proof-card {
    flex-basis: calc((100% - 36px) / 3);
  }

  .product-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .factory-content {
    padding-left: 48px;
    padding-right: 40px;
  }

  .about-hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
  }

  .about-overview-grid,
  .about-people-grid {
    gap: 58px;
  }

  .about-manufacturing-content {
    padding-left: 48px;
    padding-right: 36px;
  }

  .about-materials-copy {
    padding: 48px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 22px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--navy-dark);
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .mobile-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 16px 22px 23px;
    display: grid;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(10, 52, 95, 0.1);
  }

  .mobile-nav a {
    padding: 13px 0;
    color: var(--navy-dark);
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    font-weight: 600;
  }

  .mobile-nav .mobile-nav-cta {
    margin-top: 12px;
    padding: 14px;
    color: var(--white);
    background: var(--navy-dark);
    border: 0;
    text-align: center;
    animation: sample-cta-nudge 6s ease-in-out infinite;
  }

  .section {
    padding: 84px 0;
  }

  .hero,
  .hero-panel {
    min-height: 690px;
  }

  .hero-image.is-active {
    opacity: 0.52;
  }

  .hero-panel {
    width: 72%;
    background: transparent;
  }

  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(246, 243, 238, 0.98) 0%,
      rgba(246, 243, 238, 0.94) 52%,
      rgba(246, 243, 238, 0.62) 76%,
      rgba(246, 243, 238, 0.28) 100%
    );
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .customization-grid {
    grid-template-columns: 1fr;
  }

  .custom-collage {
    min-height: 600px;
  }

  .advantages-grid {
    gap: 16px;
  }

  .advantage-card {
    min-height: 210px;
    padding: 32px;
  }

  .proof-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .factory-section {
    grid-template-columns: 1fr;
  }

  .factory-photo {
    min-height: 490px;
  }

  .factory-content {
    padding: 70px 48px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .buyers-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .buyer-intro {
    position: static;
  }

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

  .inquiry-grid {
    gap: 60px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero {
    padding: 68px 0;
  }

  .about-hero-grid,
  .about-overview-grid,
  .about-people-grid,
  .about-materials-grid,
  .about-quality-grid,
  .about-buyer-support-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-grid {
    gap: 52px;
  }

  .about-hero-copy {
    max-width: 700px;
  }

  .about-hero-visual,
  .about-hero-visual > img {
    min-height: 520px;
    height: 520px;
  }

  .about-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-facts-grid > div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-facts-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-overview-images {
    min-height: 610px;
  }

  .about-network-grid {
    gap: 14px;
  }

  .about-location {
    min-height: 390px;
    padding: 38px;
  }

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

  .about-manufacturing-image {
    min-height: 520px;
  }

  .about-manufacturing-content {
    padding: 74px 48px;
  }

  .about-people-grid,
  .about-quality-grid,
  .about-buyer-support-grid {
    gap: 54px;
  }

  .about-people-copy {
    max-width: 700px;
  }

  .about-people-gallery {
    min-height: 590px;
  }

  .about-materials-photo {
    min-height: 520px;
  }

  .about-quality-grid {
    margin-top: 64px;
  }

  .about-buyer-support-grid {
    align-items: start;
  }
}

/* Dedicated customization page */
.custom-page-hero {
  min-height: min(790px, calc(100vh - 82px));
  margin-top: 82px;
  display: grid;
  align-items: center;
  padding: clamp(72px, 7vw, 112px) 0;
  overflow: hidden;
  background: linear-gradient(118deg, #ffffff 0%, #ffffff 54%, var(--secondary) 54%, var(--secondary) 100%);
}

.custom-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: center;
}

.custom-page-hero-copy {
  max-width: 650px;
}

.custom-page-hero-copy h1 {
  margin: 22px 0 24px;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: var(--type-h1);
  font-weight: var(--heading-weight);
  line-height: var(--line-h1);
  letter-spacing: -0.045em;
}

.custom-page-hero-copy h1 em {
  color: var(--accent);
  font-weight: 400;
}

.custom-page-hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-lead);
  line-height: 1.75;
}

.custom-page-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.custom-page-text-link {
  position: relative;
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
}

.custom-page-text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: var(--accent);
}

.custom-page-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.custom-page-hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4f5d6a;
  font-size: 18px;
  font-weight: 600;
}

.custom-page-hero-facts svg {
  color: var(--accent);
}

.custom-page-hero-visual {
  position: relative;
  min-height: 545px;
}

.custom-page-hero-main {
  position: absolute;
  inset: 0 0 54px 0;
  width: 88%;
  height: calc(100% - 54px);
  object-fit: cover;
}

.custom-page-hero-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 12px solid var(--secondary);
}

.custom-entry-section {
  padding: 104px 0 116px;
  background: var(--navy-dark);
  color: var(--white);
}

.custom-entry-heading {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 30px 70px;
  align-items: end;
  margin-bottom: 54px;
}

.custom-entry-heading > span,
.custom-options-heading span,
.custom-development-heading span,
.custom-scale-copy > span,
.custom-faq-grid > div:first-child > span {
  color: var(--accent);
  font-size: var(--type-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.custom-entry-heading h2,
.custom-options-heading h2,
.custom-materials-copy h2,
.custom-development-heading h2,
.custom-scale-copy h2,
.custom-fulfillment-copy h2,
.custom-faq-grid h2,
.custom-brief-copy h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: var(--type-h2);
  font-weight: var(--heading-weight);
  line-height: var(--line-h2);
  letter-spacing: -0.04em;
}

.custom-entry-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.75;
}

.custom-entry-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.custom-entry-panel {
  min-height: 430px;
  padding: clamp(40px, 4vw, 70px);
}

.custom-entry-panel + .custom-entry-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.custom-entry-panel-light {
  color: var(--navy-dark);
  background: var(--secondary);
}

.custom-entry-panel > span {
  display: block;
  margin-bottom: 70px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
}

.custom-entry-panel h3 {
  max-width: 500px;
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.3;
}

.custom-entry-panel p,
.custom-entry-panel li {
  font-size: 18px;
  line-height: 1.7;
}

.custom-entry-panel-dark p,
.custom-entry-panel-dark li {
  color: rgba(255, 255, 255, 0.72);
}

.custom-entry-panel-light p,
.custom-entry-panel-light li {
  color: var(--muted);
}

.custom-entry-panel ul {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding-left: 19px;
}

.custom-options-section {
  background: var(--white);
}

.custom-options-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.custom-options-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.custom-options-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  border: 1px solid var(--line);
}

.custom-option-tabs {
  display: grid;
  align-content: stretch;
  background: var(--secondary);
}

.custom-option-tabs button {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 15px 24px;
  color: var(--primary);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(10, 52, 95, 0.12);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.custom-option-tabs button:last-child {
  border-bottom: 0;
}

.custom-option-tabs button.is-active {
  color: var(--white);
  background: var(--primary);
}

.custom-option-tabs button svg {
  flex: 0 0 auto;
  color: var(--accent);
}

.custom-option-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  min-height: 500px;
}

.custom-option-stage figure {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  background: #f3f5f6;
}

.custom-option-stage figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.01);
  transition:
    opacity 180ms ease,
    transform 420ms ease,
    visibility 0s linear 180ms;
}

.custom-option-stage figure img.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

.custom-option-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 76px);
  background: var(--warm);
}

.custom-option-copy > svg {
  color: var(--accent);
}

.custom-option-copy h3 {
  margin: 24px 0 16px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.25;
}

.custom-option-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.custom-option-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.custom-option-copy li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #475463;
  font-size: 18px;
  line-height: 1.5;
}

.custom-option-copy li svg {
  flex: 0 0 auto;
  color: var(--accent);
  margin-top: 1px;
}

.custom-materials-section {
  padding: 120px 0;
  background: var(--secondary);
}

.custom-materials-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.custom-materials-visual {
  position: relative;
  min-height: 620px;
}

.custom-materials-visual > img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.custom-materials-visual > div {
  position: absolute;
  left: 0;
  right: 12%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 20px 28px;
  color: var(--white);
  background: var(--navy-dark);
}

.custom-materials-visual strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.custom-materials-visual span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-materials-copy > p {
  max-width: 660px;
  margin: 24px 0 40px;
  color: var(--muted);
  line-height: 1.75;
}

.custom-material-list {
  border-top: 1px solid rgba(10, 52, 95, 0.16);
}

.custom-material-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(10, 52, 95, 0.16);
}

.custom-material-list article > span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 18px;
}

.custom-material-list h3 {
  margin: 0 0 7px;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.custom-material-list p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.custom-development-section {
  background: var(--white);
}

.custom-development-heading {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 60px;
}

.custom-development-heading h2 {
  margin-top: 0;
  max-width: 850px;
}

.custom-development-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.custom-development-flow article {
  position: relative;
  min-height: 290px;
  padding: 34px 26px;
  border-right: 1px solid var(--line);
}

.custom-development-flow article:last-child {
  border-right: 0;
}

.custom-development-flow article > span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 20px;
}

.custom-development-flow h3 {
  margin: 64px 0 15px;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
}

.custom-development-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.custom-scale-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
  background: var(--navy-dark);
  color: var(--white);
}

.custom-scale-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-scale-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 7vw, 120px);
}

.custom-scale-copy h2 {
  max-width: 620px;
  margin-top: 20px;
}

.custom-scale-copy > p {
  max-width: 650px;
  margin: 28px 0 42px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.custom-quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.custom-quality-grid div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 92px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.custom-quality-grid strong {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.custom-quality-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
}

.custom-fulfillment-section {
  background: var(--warm);
}

.custom-fulfillment-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 7vw, 110px);
  align-items: center;
}

.custom-fulfillment-copy > p {
  max-width: 650px;
  margin: 25px 0 42px;
  color: var(--muted);
  line-height: 1.75;
}

.custom-fulfillment-points {
  border-top: 1px solid var(--line);
}

.custom-fulfillment-points > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.custom-fulfillment-points svg {
  color: var(--accent);
}

.custom-fulfillment-points span {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.custom-fulfillment-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-dark);
  font-size: 18px;
}

.custom-fulfillment-grid figure {
  min-height: 590px;
  margin: 0;
}

.custom-fulfillment-grid figure img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

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

.custom-faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  align-items: start;
}

.custom-faq-grid h2 {
  max-width: 500px;
}

.custom-faq-list {
  border-top: 1px solid var(--line);
}

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

.custom-faq-item > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  color: var(--navy-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  text-align: left;
  transition: color 180ms ease;
}

.custom-faq-item > button:hover,
.custom-faq-item.is-open > button {
  color: var(--accent);
}

.custom-faq-item > button i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  transform-origin: center;
}

.custom-faq-answer {
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.custom-faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 48px 25px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.custom-brief-section {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary);
  background-image: var(--bh-contact-map);
  background-position: center;
  background-size: cover;
}

.custom-brief-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(234, 240, 245, 0.86);
}

.custom-brief-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 7vw, 110px);
  align-items: start;
}

.custom-brief-copy {
  position: sticky;
  top: 130px;
  padding-top: 35px;
}

.custom-brief-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 28px;
  color: var(--muted);
  line-height: 1.75;
}

.custom-brief-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(10, 52, 95, 0.16);
  list-style: none;
}

.custom-brief-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

.custom-brief-copy li svg {
  color: var(--accent);
}

.is-customization-page .footer {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .custom-page-hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
  }

  .custom-page-hero-visual {
    min-height: 470px;
  }

  .custom-option-stage {
    grid-template-columns: 1fr 0.9fr;
  }

  .custom-development-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .custom-development-flow article:nth-child(3) {
    border-right: 0;
  }

  .custom-development-flow article:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .custom-page-hero {
    min-height: auto;
    background: var(--white);
  }

  .custom-page-hero-grid,
  .custom-entry-heading,
  .custom-options-heading,
  .custom-materials-grid,
  .custom-development-heading,
  .custom-scale-section,
  .custom-fulfillment-grid,
  .custom-faq-grid,
  .custom-brief-grid {
    grid-template-columns: 1fr;
  }

  .custom-page-hero-visual {
    min-height: 520px;
    margin-top: 18px;
    background: var(--secondary);
  }

  .custom-entry-heading,
  .custom-options-heading,
  .custom-development-heading,
  .custom-faq-grid {
    gap: 24px;
  }

  .custom-options-layout {
    grid-template-columns: 1fr;
  }

  .custom-option-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .custom-option-tabs button {
    min-height: 70px;
    border-right: 1px solid rgba(10, 52, 95, 0.12);
  }

  .custom-materials-visual,
  .custom-materials-visual > img {
    min-height: 520px;
    height: 520px;
  }

  .custom-materials-copy {
    max-width: 760px;
  }

  .custom-scale-image {
    min-height: 520px;
  }

  .custom-scale-copy {
    min-height: 580px;
  }

  .custom-fulfillment-grid figure {
    grid-row: 1;
  }

  .custom-brief-copy {
    position: static;
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  .custom-page-hero {
    margin-top: 72px;
    padding: 54px 0 64px;
  }

  .custom-page-hero-copy h1 {
    margin-top: 16px;
    font-size: var(--type-h1);
  }

  .custom-page-hero-copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .custom-page-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .custom-page-hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .custom-page-hero-visual {
    min-height: 370px;
  }

  .custom-page-hero-main {
    width: 92%;
  }

  .custom-page-hero-detail {
    width: 45%;
    border-width: 7px;
  }

  .custom-entry-section,
  .custom-materials-section {
    padding: 72px 0;
  }

  .custom-entry-split {
    grid-template-columns: 1fr;
  }

  .custom-entry-panel {
    min-height: auto;
    padding: 34px 24px 42px;
  }

  .custom-entry-panel + .custom-entry-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .custom-entry-panel > span {
    margin-bottom: 42px;
    font-size: 42px;
  }

  .custom-entry-heading h2,
  .custom-options-heading h2,
  .custom-materials-copy h2,
  .custom-development-heading h2,
  .custom-scale-copy h2,
  .custom-fulfillment-copy h2,
  .custom-faq-grid h2,
  .custom-brief-copy h2 {
    font-size: var(--type-h2);
  }

  .custom-option-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-option-tabs button {
    min-height: 64px;
    padding: 13px 14px;
    font-size: 18px;
  }

  .custom-option-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .custom-option-stage figure {
    min-height: 340px;
    aspect-ratio: 1;
  }

  .custom-option-copy {
    padding: 34px 22px 40px;
  }

  .custom-materials-grid {
    gap: 50px;
  }

  .custom-materials-visual,
  .custom-materials-visual > img {
    min-height: 370px;
    height: 370px;
  }

  .custom-materials-visual > div {
    right: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    min-height: 86px;
    padding: 16px 19px;
  }

  .custom-development-flow {
    grid-template-columns: 1fr 1fr;
  }

  .custom-development-flow article {
    min-height: 245px;
    padding: 25px 17px;
  }

  .custom-development-flow article:nth-child(2n) {
    border-right: 0;
  }

  .custom-development-flow article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .custom-development-flow article:last-child {
    grid-column: 1 / -1;
    min-height: 210px;
    border-right: 0;
  }

  .custom-development-flow h3 {
    margin-top: 38px;
    font-size: 18px;
  }

  .custom-development-flow p {
    font-size: 18px;
  }

  .custom-scale-image {
    min-height: 380px;
  }

  .custom-scale-copy {
    min-height: 0;
    padding: 62px 16px 72px;
  }

  .custom-fulfillment-grid {
    gap: 48px;
  }

  .custom-fulfillment-grid figure,
  .custom-fulfillment-grid figure img {
    min-height: 380px;
    height: 380px;
  }

  .custom-faq-item > button {
    font-size: 18px;
  }

  .custom-brief-grid {
    gap: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta,
  .mobile-nav .mobile-nav-cta {
    animation: none;
  }
}

/* Product collection directory and detail pages */
.catalog-hero,
.product-detail-banner {
  position: relative;
  isolation: isolate;
  min-height: 455px;
  margin-top: 82px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
}

.catalog-hero::before,
.product-detail-banner::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 52, 95, 0.92) 0%, rgba(10, 52, 95, 0.7) 46%, rgba(10, 52, 95, 0.2) 100%);
}

.catalog-hero > img,
.product-detail-banner > img {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-hero > img {
  object-position: center 48%;
}

.catalog-hero-content,
.product-detail-banner-copy {
  position: relative;
  z-index: 1;
  min-height: 455px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.catalog-hero-content .eyebrow,
.product-detail-banner-copy .eyebrow {
  color: var(--orange);
}

.catalog-hero h1,
.product-detail-banner h1 {
  max-width: 860px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: var(--type-h1);
  font-weight: var(--heading-weight);
  line-height: var(--line-h1);
  letter-spacing: -0.045em;
}

.catalog-hero-content > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--type-lead);
  line-height: 1.7;
}

.catalog-breadcrumb {
  color: rgba(255, 255, 255, 0.67);
  background: var(--navy-dark);
}

.catalog-breadcrumb > .container {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  font-size: 18px;
}

.catalog-breadcrumb a {
  flex: 0 0 auto;
  color: var(--white);
  font-weight: 700;
}

.catalog-breadcrumb span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-directory {
  background: var(--secondary);
  padding-top: 86px;
  padding-bottom: 96px;
}

.catalog-directory-heading {
  margin-bottom: 44px;
  text-align: center;
}

.catalog-directory-heading h2 {
  margin: 0;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: var(--type-h2);
  font-weight: var(--heading-weight);
  line-height: var(--line-h2);
  letter-spacing: -0.035em;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 22px;
}

.catalog-sidebar-heading {
  padding-bottom: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--navy-dark);
  border-bottom: 1px solid rgba(10, 52, 95, 0.18);
}

.catalog-sidebar-heading span {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.catalog-sidebar-heading strong {
  color: var(--muted);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-filter {
  display: grid;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(10, 52, 95, 0.14);
  border-radius: var(--radius-md);
}

.catalog-filter button {
  min-height: 54px;
  padding: 0 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--navy-dark);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(10, 52, 95, 0.11);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, padding-left 180ms ease;
}

.catalog-filter button:last-child {
  border-bottom: 0;
}

.catalog-filter button small {
  color: var(--muted);
  font-size: 18px;
}

.catalog-filter button:hover {
  padding-left: 22px;
  color: var(--orange);
}

.catalog-filter button.is-active {
  color: var(--white);
  background: var(--navy);
}

.catalog-filter button.is-active small {
  color: rgba(255, 255, 255, 0.68);
}

.catalog-sidebar-cta {
  padding: 27px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.catalog-sidebar-cta > svg {
  color: var(--orange);
}

.catalog-sidebar-cta h2 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.3;
}

.catalog-sidebar-cta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

.catalog-sidebar-cta button,
.product-information-panel aside button {
  margin-top: 22px;
  padding: 0 0 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--orange);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.catalog-content {
  min-width: 0;
}

.catalog-intro {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 54px;
  align-items: end;
}

.catalog-intro h2 {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: var(--type-h3);
  line-height: 1.25;
}

.catalog-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.catalog-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 52, 95, 0.15);
  border-radius: var(--radius-md);
}

.catalog-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.catalog-card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--white);
}

.catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

.catalog-card:hover .catalog-card-media img {
  transform: scale(1.035);
}

.catalog-card > a > h2 {
  min-height: 74px;
  margin: 0;
  padding: 20px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: var(--heading-weight);
  line-height: 1.35;
  text-align: center;
}

.catalog-card-copy {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.catalog-card-copy > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-card-copy h3 {
  margin: 15px 0 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.35;
}

.catalog-card-copy p {
  margin: 13px 0 23px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.catalog-card-copy strong {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 18px;
}

.catalog-bottom-cta {
  padding: 74px 0;
  color: var(--white);
  background: var(--navy);
}

.catalog-bottom-cta > .container {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.9fr) auto;
  gap: 56px;
  align-items: center;
}

.catalog-bottom-cta h2 {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: var(--type-h3);
  line-height: 1.28;
}

.catalog-bottom-cta > .container > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

.catalog-bottom-cta > .container > div:last-child {
  display: grid;
  gap: 15px;
  justify-items: start;
}

.catalog-bottom-cta > .container > div:last-child > a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--orange);
}

.product-detail-banner {
  min-height: 390px;
}

.product-detail-banner::before {
  background: linear-gradient(90deg, rgba(10, 52, 95, 0.94) 0%, rgba(10, 52, 95, 0.72) 56%, rgba(10, 52, 95, 0.4) 100%);
}

.product-detail-banner > img {
  object-position: center;
  filter: saturate(0.78);
}

.product-detail-banner-copy {
  min-height: 390px;
}

.product-detail-overview {
  background: var(--white);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: 76px;
  align-items: start;
}

.product-gallery {
  --gallery-thumb-width: clamp(74px, 6.6vw, 96px);
  position: relative;
  min-width: 0;
  padding-left: calc(var(--gallery-thumb-width) + 14px);
}

.product-gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--secondary);
  border-radius: var(--radius-md);
  touch-action: pan-y pinch-zoom;
  user-select: none;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: product-gallery-image-in 220ms ease both;
  -webkit-user-drag: none;
}

@keyframes product-gallery-image-in {
  from {
    opacity: 0.72;
    transform: scale(1.012);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.product-gallery-rail {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--gallery-thumb-width);
  display: grid;
  grid-template-rows: 36px minmax(0, 1fr) 36px;
  gap: 8px;
}

.product-gallery-thumbs {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.product-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.product-gallery-scroll {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 0;
  color: #fff;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.product-gallery-scroll:hover:not(:disabled) {
  color: var(--orange);
  background: #fff;
}

.product-gallery-scroll:disabled {
  opacity: 0.28;
  cursor: default;
}

.product-gallery-thumbs button {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  background: var(--secondary);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  scroll-snap-align: start;
}

.product-gallery-thumbs button.is-active {
  border-color: var(--orange);
}

.product-gallery-thumbs button:focus-visible,
.product-gallery-scroll:focus-visible,
.product-tabs button:focus-visible,
.product-faq-item > button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.product-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-summary {
  padding-top: 12px;
}

.product-detail-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-summary h2 {
  margin: 20px 0 0;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: var(--type-h2);
  line-height: var(--line-h2);
  letter-spacing: -0.035em;
}

.product-detail-summary > p:not(.product-detail-note) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.product-detail-points {
  margin-top: 32px;
  display: grid;
  border-top: 1px solid rgba(10, 52, 95, 0.16);
}

.product-detail-points > div {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  border-bottom: 1px solid rgba(10, 52, 95, 0.16);
}

.product-detail-points svg {
  color: var(--orange);
}

.product-detail-points strong {
  color: var(--navy-dark);
  font-size: 18px;
  line-height: 1.5;
}

.product-detail-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.product-whatsapp-link {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  border: 1px solid rgba(10, 52, 95, 0.22);
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 700;
}

.product-whatsapp-link svg {
  color: #1cad63;
}

.product-detail-note {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 18px;
}

.product-information {
  padding-top: 52px;
  background: var(--secondary);
}

.product-tabs {
  margin-top: 0;
  display: flex;
  border-bottom: 1px solid rgba(10, 52, 95, 0.18);
}

.product-tabs button {
  min-height: 54px;
  padding: 0 25px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.product-tabs button:hover,
.product-tabs button.is-active {
  color: var(--navy);
  border-bottom-color: var(--orange);
}

.product-information-panel {
  padding-top: 45px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
  gap: 76px;
  align-items: start;
}

.product-information-content {
  min-width: 0;
  outline: none;
  animation: product-panel-in 240ms ease both;
}

@keyframes product-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-information-panel > div h3,
.product-information-panel aside h3 {
  margin: 0;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: var(--type-h3);
  line-height: 1.3;
}

.product-information-panel .product-information-content > div > p:not(.eyebrow),
.product-information-panel aside p {
  max-width: 780px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.product-information-content .eyebrow {
  margin: 0 0 12px;
}

.product-information-panel ul {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.product-information-panel li {
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--navy-dark);
  font-size: 18px;
}

.product-information-panel li svg,
.product-information-panel aside > svg {
  flex: 0 0 auto;
  color: var(--orange);
}

.product-overview-content > p:not(.eyebrow) + p {
  margin-top: 10px;
}

.product-detail-tables {
  display: grid;
  gap: 38px;
}

.product-information-panel .product-detail-table h3 {
  margin-bottom: 30px;
  text-align: center;
}

.product-detail-table-body {
  border-top: 1px solid rgba(10, 52, 95, 0.18);
  border-left: 1px solid rgba(10, 52, 95, 0.18);
}

.product-detail-table-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-detail-table-row.is-single .product-detail-table-pair {
  grid-column: 1 / -1;
}

.product-detail-table-pair {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(118px, 0.42fr) minmax(0, 1fr);
  border-right: 1px solid rgba(10, 52, 95, 0.18);
  border-bottom: 1px solid rgba(10, 52, 95, 0.18);
}

.product-detail-table-pair span,
.product-detail-table-pair strong {
  min-height: 60px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.55;
}

.product-detail-table-pair span {
  color: var(--muted);
  background: rgba(10, 52, 95, 0.045);
  font-weight: 700;
}

.product-detail-table-pair strong {
  color: var(--navy-dark);
  font-weight: 600;
}

.product-application-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-application-grid span {
  min-height: 48px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 700;
}

.product-application-grid svg,
.product-capability-grid svg {
  flex: 0 0 auto;
  color: var(--orange);
}

.product-specification-list {
  margin-top: 28px;
  border-top: 1px solid rgba(10, 52, 95, 0.16);
}

.product-specification-list > div {
  min-height: 58px;
  padding: 13px 0;
  display: grid;
  grid-template-columns: minmax(100px, 0.32fr) 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(10, 52, 95, 0.16);
}

.product-specification-list span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-specification-list strong {
  color: var(--navy-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

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

.product-capability-grid > div {
  min-height: 154px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-sm);
}

.product-capability-grid h4 {
  margin: 16px 0 0;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 18px;
}

.product-capability-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-faq-list {
  margin-top: 0;
  border-top: 1px solid rgba(10, 52, 95, 0.16);
}

.product-information-panel .product-faq-title {
  margin: 0 0 30px;
  text-align: center;
}

.product-faq-item {
  border-bottom: 1px solid rgba(10, 52, 95, 0.16);
}

.product-faq-item > button {
  width: 100%;
  min-height: 56px;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--navy-dark);
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 18px;
  cursor: pointer;
}

.product-faq-item > button svg {
  flex: 0 0 auto;
  color: var(--orange);
  transition: transform 260ms ease;
}

.product-faq-item.is-open > button svg {
  transform: rotate(90deg);
}

.product-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 300ms ease, opacity 220ms ease;
}

.product-faq-answer > div {
  overflow: hidden;
}

.product-faq-answer p {
  margin: 0;
  padding: 0 38px 18px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.product-faq-item.is-open .product-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.product-information-panel aside {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 31px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.product-information-panel aside p.eyebrow {
  margin: 0;
  color: var(--orange);
}

.product-information-panel aside h3 {
  margin-top: 13px;
  color: var(--white);
  font-size: 22px;
}

.product-information-panel aside p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.related-products {
  background: var(--white);
}

.related-products-heading {
  margin-bottom: 35px;
  text-align: center;
}

.related-products-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--type-h2);
  line-height: var(--line-h2);
}

.related-products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .catalog-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 34px;
  }

  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-bottom-cta > .container {
    grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  }

  .catalog-bottom-cta > .container > div:last-child {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .product-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 45px;
  }
}

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

  .catalog-sidebar {
    position: static;
  }

  .catalog-filter {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .catalog-filter::-webkit-scrollbar {
    display: none;
  }

  .catalog-filter button {
    flex: 0 0 auto;
    border-right: 1px solid rgba(10, 52, 95, 0.11);
    border-bottom: 0;
  }

  .catalog-sidebar-cta {
    display: none;
  }

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

  .product-detail-grid,
  .product-information-panel {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    gap: 42px;
  }

  .product-detail-summary {
    padding-top: 0;
  }

  .product-information-panel {
    gap: 42px;
  }

  .product-information-panel aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .catalog-hero,
  .product-detail-banner {
    min-height: 400px;
    margin-top: 72px;
  }

  .catalog-hero-content,
  .product-detail-banner-copy {
    min-height: 400px;
  }

  .product-detail-banner,
  .product-detail-banner-copy {
    min-height: 310px;
  }

  .catalog-hero-content > p:last-child {
    font-size: 18px;
  }

  .catalog-breadcrumb > .container {
    min-height: 56px;
  }

  .catalog-directory {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .catalog-directory-heading {
    margin-bottom: 30px;
  }

  .catalog-intro {
    grid-template-columns: 1fr;
    gap: 17px;
  }

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

  .catalog-card > a {
    display: flex;
  }

  .catalog-card-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .catalog-card > a > h2 {
    min-height: 64px;
    padding: 14px 9px;
    font-size: 18px;
    line-height: 1.3;
  }

  .catalog-bottom-cta {
    padding: 60px 0;
  }

  .catalog-bottom-cta > .container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .catalog-bottom-cta > .container > div:last-child {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .product-detail-overview,
  .product-information,
  .related-products {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .product-information {
    padding-top: 40px;
  }

  .product-gallery-rail {
    position: static;
    width: 100%;
    margin-top: 12px;
    display: block;
  }

  .product-gallery-scroll {
    display: none;
  }

  .product-gallery-thumbs {
    height: auto;
    max-height: none;
    padding: 0 0 3px;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    touch-action: pan-y;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: none;
    user-select: none;
  }

  .product-gallery-thumbs.is-dragging {
    cursor: grabbing;
  }

  .product-gallery {
    padding-left: 0;
  }

  .product-gallery-main::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 20%;
    pointer-events: none;
    background: linear-gradient(transparent, rgba(10, 52, 95, 0.18));
    opacity: 0;
    transition: opacity 180ms ease;
  }

  .product-gallery-main:active::after {
    opacity: 1;
  }

  .product-gallery-thumbs button {
    flex-basis: calc((100% - 28px) / 4.35);
    width: auto;
    min-width: 70px;
  }

  .product-detail-summary h2 {
    margin-top: 15px;
    font-size: clamp(28px, 8.4vw, 34px);
  }

  .product-detail-summary > p:not(.product-detail-note) {
    margin-top: 15px;
    font-size: 18px;
  }

  .product-detail-points {
    margin-top: 24px;
  }

  .product-detail-points > div {
    padding: 15px 0;
  }

  .product-detail-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
  }

  .product-detail-actions .button,
  .product-whatsapp-link {
    justify-content: center;
  }

  .product-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    border: 1px solid rgba(10, 52, 95, 0.16);
  }

  .product-tabs::-webkit-scrollbar {
    display: none;
  }

  .product-tabs button {
    min-height: 50px;
    padding: 8px 12px;
    border-right: 1px solid rgba(10, 52, 95, 0.12);
    border-bottom: 1px solid rgba(10, 52, 95, 0.12);
    text-align: center;
  }

  .product-tabs button:nth-child(2n) {
    border-right: 0;
  }

  .product-tabs button:nth-last-child(-n + 2) {
    border-bottom-width: 2px;
  }

  .product-information-panel {
    padding-top: 30px;
    gap: 32px;
  }

  .product-information-panel aside {
    padding: 25px;
  }

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

  .product-specification-list > div {
    grid-template-columns: 90px 1fr;
    gap: 16px;
  }

  .product-detail-table-row {
    grid-template-columns: 1fr;
  }

  .related-products-heading {
    margin-bottom: 28px;
  }

  .related-products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .product-detail-actions {
    grid-template-columns: 1fr;
  }

  .product-specification-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .product-detail-table-pair {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .product-detail-table-pair span,
  .product-detail-table-pair strong {
    min-height: 54px;
    padding: 12px;
  }

  .product-detail-note {
    align-items: flex-start;
    line-height: 1.55;
  }
}


/* About page: editorial company profile */
.about-hero {
  padding: 150px 0 96px;
  background: var(--white);
}

.about-hero-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: end;
}

.about-hero-heading h1,
.about-profile-heading h2,
.about-bases-heading h2,
.about-production-heading h2,
.about-culture-heading h2,
.about-proof-heading h2 {
  margin: 0;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-weight: var(--heading-weight);
  letter-spacing: -0.045em;
}

.about-hero-heading h1 {
  max-width: 920px;
  font-size: var(--type-h1);
  line-height: var(--line-h1);
}

.about-hero-heading h1 em {
  color: var(--accent);
  font-weight: 400;
}

.about-hero-deck {
  padding: 0 0 8px 24px;
  border-left: 2px solid var(--accent);
}

.about-hero-deck span,
.about-profile-heading > span,
.about-bases-heading > span,
.about-proof-heading div > span {
  color: var(--accent);
  font-size: var(--type-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-hero-deck p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: var(--type-lead);
  line-height: 1.8;
}

.about-hero-film {
  position: relative;
  min-height: 540px;
  margin-top: 70px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
  gap: 14px;
}

.about-hero-film figure {
  margin: 0;
  overflow: hidden;
  background: var(--secondary);
}

.about-hero-film img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-hero-film-main img {
  object-position: center 46%;
}

.about-hero-film-side img {
  object-position: 32% center;
}

.about-year-mark {
  position: absolute;
  right: calc(25% - 80px);
  bottom: -30px;
  width: 160px;
  min-height: 148px;
  padding: 25px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--navy-dark);
}

.about-year-mark span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-year-mark strong {
  font-family: var(--serif);
  font-size: 38px;
}

.about-profile {
  background: var(--secondary);
}

.about-profile-heading {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.about-profile-heading h2 {
  max-width: 940px;
  font-size: var(--type-h2);
  line-height: var(--line-h2);
}

.about-profile-copy {
  margin: 64px 0 0 316px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
}

.about-profile-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.about-profile-copy .about-profile-lead {
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.65;
}

.about-profile-facts {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(10, 52, 95, 0.22);
  border-bottom: 1px solid rgba(10, 52, 95, 0.22);
}

.about-profile-facts > div {
  min-height: 138px;
  padding: 27px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(10, 52, 95, 0.16);
}

.about-profile-facts > div:last-child {
  border-right: 1px solid rgba(10, 52, 95, 0.16);
}

.about-profile-facts strong {
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: clamp(26px, 2.7vw, 38px);
}

.about-profile-facts span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-profile-journey {
  position: relative;
  margin-top: 72px;
  padding-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(90px, 12vw, 180px);
  align-items: start;
}

.about-profile-journey::before {
  content: "";
  position: absolute;
  top: 23px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0 50%, rgb(10 52 95 / 24%) 50% 100%);
}

.about-profile-journey > div {
  position: relative;
  min-height: 176px;
  padding-top: 24px;
}

.about-profile-journey > div::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 3px solid var(--accent);
  background: var(--secondary);
  box-shadow: 0 0 0 5px var(--secondary);
}

.about-profile-journey > div:last-child {
  text-align: right;
}

.about-profile-journey > div:last-child::before {
  right: 0;
  left: auto;
}

.about-profile-journey > div > span {
  display: block;
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(44px, 4.2vw, 60px);
  line-height: 1;
}

.about-profile-journey strong {
  display: block;
  margin-top: 18px;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
}

.about-profile-journey p {
  max-width: 430px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.about-profile-journey > div:last-child p {
  margin-left: auto;
}

.about-profile-journey i {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  background: var(--navy-dark);
  color: var(--white);
  font-style: normal;
}

.about-profile-journey i::before {
  content: "→";
  font-size: 18px;
}

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

.about-bases-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.about-bases-heading h2 {
  font-size: var(--type-h2);
  line-height: var(--line-h2);
}

.about-bases-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.about-base-list {
  display: grid;
}

.about-base-row {
  min-height: 330px;
  padding: 38px 0;
  display: grid;
  grid-template-columns: 220px minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 48px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.about-base-city {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-base-city small {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.about-base-city strong {
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
}

.about-base-copy h3 {
  margin: 0;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
}

.about-base-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.about-base-row figure {
  height: 254px;
  margin: 0;
  overflow: hidden;
  background: var(--secondary);
}

.about-base-row img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-production {
  padding: 112px 0 0;
  color: var(--white);
  background: var(--navy-dark);
}

.about-production-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 48px;
  align-items: end;
}

.about-production-heading h2 {
  color: var(--white);
  font-size: var(--type-h2);
  line-height: var(--line-h2);
}

.about-production-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.8;
}

.about-production-panorama {
  position: relative;
  height: 510px;
  margin: 64px 0 0;
  overflow: hidden;
}

.about-production-panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 52, 95, 0.72));
}

.about-production-panorama img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.about-production-panorama figcaption {
  position: absolute;
  z-index: 1;
  left: 28px;
  bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-production-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-production-flow article {
  min-height: 280px;
  padding: 38px 30px 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.about-production-flow article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.about-production-flow article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
}

.about-production-flow h3 {
  margin: 42px 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
}

.about-production-flow p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.72;
}

.about-culture {
  background: var(--warm);
}

.about-culture-heading {
  max-width: 1060px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.about-culture-heading h2 {
  font-size: var(--type-h2);
  line-height: var(--line-h2);
}

.about-culture-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.82;
}

.about-culture-mosaic {
  min-height: 620px;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  grid-template-rows: 1fr 0.72fr;
  gap: 14px;
}

.about-culture-mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--secondary);
}

.about-culture-mosaic img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-culture-main {
  grid-row: 1 / 3;
}

.about-culture-mosaic figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  color: var(--white);
  background: var(--navy-dark);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-culture-notes {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  color: var(--white);
  background: var(--navy);
}

.about-culture-notes > div {
  display: flex;
  flex-direction: column;
}

.about-culture-notes strong {
  font-family: var(--serif);
  font-size: 30px;
}

.about-culture-notes span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-culture-notes p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

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

.about-proof-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.about-proof-heading > strong {
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(110px, 13vw, 190px);
  line-height: 0.8;
}

.about-proof-heading h2 {
  max-width: 820px;
  margin-top: 13px;
  font-size: var(--type-h2);
  line-height: var(--line-h2);
}

.about-proof-heading p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.about-proof-rows {
  margin-top: 68px;
  border-top: 1px solid var(--line);
}

.about-proof-rows > div {
  min-height: 102px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 90px 170px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.about-proof-rows span {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

.about-proof-rows strong {
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 25px;
}

.about-proof-rows p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.about-material-index {
  margin-top: 70px;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--navy-dark);
  border-bottom: 1px solid var(--navy-dark);
}

.about-material-index > strong {
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 18px;
}

.about-material-index > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.about-material-index span {
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

.about-material-index p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .about-hero-heading,
  .about-profile-heading,
  .about-bases-heading,
  .about-production-heading,
  .about-culture-heading,
  .about-proof-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-hero-deck {
    max-width: 650px;
  }

  .about-profile-copy {
    margin-left: 0;
  }

  .about-base-row {
    grid-template-columns: 150px minmax(240px, 0.8fr) minmax(320px, 1.2fr);
    gap: 30px;
  }

  .about-production-heading > p:last-child {
    max-width: 650px;
  }

  .about-proof-heading {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .about-material-index {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .about-material-index p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding: 112px 0 68px;
  }

  .about-hero-heading h1 {
    font-size: var(--type-h1);
  }

  .about-hero-film {
    min-height: 450px;
    margin-top: 42px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 150px;
  }

  .about-year-mark {
    right: 14px;
    bottom: 120px;
    width: 126px;
    min-height: 112px;
    padding: 18px;
  }

  .about-year-mark strong {
    font-size: 29px;
  }

  .about-profile-heading h2,
  .about-bases-heading h2,
  .about-production-heading h2,
  .about-culture-heading h2,
  .about-proof-heading h2 {
    font-size: var(--type-h2);
  }

  .about-profile-copy {
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-profile-facts {
    margin-top: 46px;
    grid-template-columns: repeat(2, 1fr);
  }

  .about-profile-facts > div {
    min-height: 112px;
    padding: 20px;
    border-bottom: 1px solid rgba(10, 52, 95, 0.16);
  }

  .about-profile-journey {
    width: 100%;
    margin-top: 44px;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-profile-journey::before,
  .about-profile-journey i {
    display: none;
  }

  .about-profile-journey > div {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid var(--line);
  }

  .about-profile-journey > div::before,
  .about-profile-journey > div:last-child::before {
    display: none;
  }

  .about-profile-journey > div:last-child {
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .about-profile-journey > div > span {
    white-space: nowrap;
    font-size: 25px;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .about-profile-journey strong {
    margin-top: 2px;
    font-size: 18px;
  }

  .about-profile-journey p,
  .about-profile-journey > div:last-child p {
    grid-column: 2;
    width: 100%;
    margin: 8px 0 0;
  }

  .about-bases-heading {
    padding-bottom: 34px;
  }

  .about-base-row {
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-base-row figure {
    height: 240px;
  }

  .about-production {
    padding-top: 76px;
  }

  .about-production-panorama {
    height: 380px;
    margin-top: 40px;
  }

  .about-production-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-production-flow article {
    min-height: 250px;
    padding: 27px 20px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .about-culture-mosaic {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 340px 220px auto;
  }

  .about-culture-main {
    grid-row: auto;
  }

  .about-culture-notes {
    min-height: 220px;
  }

  .about-proof-heading {
    grid-template-columns: 95px minmax(0, 1fr);
    gap: 20px;
  }

  .about-proof-heading > strong {
    font-size: 92px;
  }

  .about-proof-rows {
    margin-top: 44px;
  }

  .about-proof-rows > div {
    grid-template-columns: 54px 88px minmax(0, 1fr);
    gap: 8px;
  }

  .about-proof-rows strong {
    font-size: 20px;
  }

  .about-proof-rows p {
    font-size: 18px;
  }

  .about-material-index {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-material-index p {
    grid-column: auto;
  }
}

/* Support navigation and buyer resource pages */
.desktop-nav {
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav > a,
.desktop-nav .nav-dropdown > .nav-dropdown-trigger {
  position: relative;
  min-width: max-content;
  padding: 30px 0 27px;
  color: #42505e;
  background: transparent;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.desktop-nav .nav-dropdown > .nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.desktop-nav .nav-dropdown > .nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--primary);
  transition: right 180ms ease;
}

.desktop-nav .nav-dropdown:hover > .nav-dropdown-trigger::after,
.desktop-nav .nav-dropdown:focus-within > .nav-dropdown-trigger::after {
  right: 0;
}

.desktop-nav .nav-dropdown > .nav-dropdown-trigger svg {
  transition: transform 180ms ease;
}

.desktop-nav .nav-dropdown:hover > .nav-dropdown-trigger svg,
.desktop-nav .nav-dropdown:focus-within > .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: relative;
  display: flex;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 9px);
  left: 50%;
  width: 184px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 42px rgba(10, 52, 95, 0.14);
  transform: translate(-50%, 9px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown-products .nav-dropdown-menu {
  display: grid;
  width: min(520px, 70vw);
  padding: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 8px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.desktop-nav .nav-dropdown-menu a {
  display: flex;
  padding: 12px 14px;
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 18px;
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav .nav-dropdown-menu a::after {
  display: none;
}

.desktop-nav .nav-dropdown-menu a:hover,
.desktop-nav .nav-dropdown-menu a:focus-visible {
  color: var(--white);
  background: var(--primary);
}

.support-page-hero {
  position: relative;
  isolation: isolate;
  min-height: 455px;
  margin-top: 82px;
  overflow: hidden;
  color: var(--white);
  background: var(--primary);
}

.support-page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 52, 95, 0.96) 0%, rgba(10, 52, 95, 0.78) 45%, rgba(10, 52, 95, 0.28) 100%);
}

.support-page-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.support-page-hero-copy {
  min-height: 455px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.support-page-hero-copy .eyebrow {
  color: var(--accent);
}

.support-page-hero-copy h1 {
  max-width: 920px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: var(--type-h1);
  line-height: var(--line-h1);
  letter-spacing: -0.045em;
}

.support-page-hero-copy > p:last-child {
  max-width: 730px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--type-lead);
  line-height: 1.7;
}

.support-page-breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  background: var(--primary);
}

.support-page-breadcrumb > .container {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
}

.support-page-breadcrumb a,
.support-page-breadcrumb span,
.support-page-breadcrumb strong {
  color: var(--white);
  font-weight: 700;
}

.downloads-directory {
  background: var(--secondary);
}

.support-faq-heading h2 {
  max-width: 720px;
  margin: 15px 0 0;
  font-family: var(--serif);
  font-size: var(--type-h2);
  line-height: var(--line-h2);
  letter-spacing: -0.035em;
}

.support-faq-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.download-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(10, 52, 95, 0.14);
  border-radius: var(--radius-md);
}

.download-card-cover {
  appearance: none;
  width: 100%;
  padding: 0;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--primary);
  border: 0;
  cursor: pointer;
}

.download-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.download-card-cover:hover img {
  transform: scale(1.025);
}

.download-card-content {
  min-height: 300px;
  padding: 25px 24px 24px;
  display: flex;
  flex-direction: column;
}

.download-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.download-card-meta svg {
  flex: 0 0 auto;
  color: var(--accent);
}

.download-card-content h3 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.download-card-content > p {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.download-card-button {
  appearance: none;
  width: fit-content;
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  background: var(--primary);
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.download-card-button:hover,
.download-card-button:focus-visible {
  background: #062846;
  transform: translateY(-1px);
}

.support-faq-section {
  background: var(--secondary);
}

.support-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(430px, 0.85fr);
  gap: clamp(54px, 6vw, 90px);
  align-items: start;
}

.support-faq-heading {
  margin-bottom: 42px;
}

.support-faq-heading > p:last-child {
  max-width: 720px;
  margin-top: 20px;
}

.support-faq-inquiry {
  position: sticky;
  top: 112px;
}

.support-faq-inquiry .inquiry-form {
  min-height: auto;
  box-shadow: 0 18px 50px rgba(10, 52, 95, 0.1);
}

@media (max-width: 1080px) {
  .support-faq-layout {
    grid-template-columns: 1fr;
  }

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

  .support-faq-inquiry {
    position: static;
  }
}

@media (max-width: 900px) {
  .mobile-nav-support {
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-parent-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-nav .mobile-nav-parent-row > a {
    flex: 1;
    padding: 13px 0;
    color: var(--primary);
    border: 0;
  }

  .mobile-nav-parent-row > button {
    padding: 13px 0 13px 20px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .mobile-nav-parent-row > button svg {
    transition: transform 180ms ease;
  }

  .mobile-nav-parent-row > button[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .mobile-nav-support > .mobile-nav-submenu {
    padding: 0 0 8px 15px;
    display: grid;
  }

  .mobile-nav .mobile-nav-support a {
    padding: 10px 0;
    color: var(--muted);
    border: 0;
  }

  .mobile-nav-support.is-products > .mobile-nav-submenu {
    max-height: 290px;
    overflow-y: auto;
    scrollbar-width: thin;
  }

  .support-page-hero,
  .support-page-hero-copy {
    min-height: 390px;
  }

}

@media (max-width: 620px) {
  .support-page-hero {
    min-height: 360px;
    margin-top: 72px;
  }

  .support-page-hero-copy {
    min-height: 360px;
  }

  .support-page-hero::before {
    background: linear-gradient(90deg, rgba(10, 52, 95, 0.96) 0%, rgba(10, 52, 95, 0.78) 100%);
  }

  .support-page-hero-copy h1 {
    font-size: 38px;
  }

  .support-page-hero-copy > p:last-child {
    font-size: 18px;
  }

  .support-page-breadcrumb > .container {
    min-height: 58px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .download-card-grid {
    grid-template-columns: 1fr;
  }

  .download-card-content {
    min-height: auto;
  }

  .download-card-button {
    width: 100%;
  }

  .support-faq-layout {
    gap: 52px;
  }

  .support-faq-heading {
    margin-bottom: 26px;
  }

  .support-faq-section .custom-faq-item > button {
    padding: 21px 0;
    font-size: 18px;
  }

  .support-faq-section .custom-faq-answer p {
    padding-right: 18px;
    font-size: 18px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, var(--site-width));
  }

  .site-header {
    height: 72px;
    padding-inline: 16px;
  }

  .brand-crop {
    width: 90px;
    height: 54px;
  }

  .brand-crop img {
    width: 100%;
    height: 100%;
  }

  .brand-caption {
    padding-left: 9px;
    font-size: 18px;
  }

  .mobile-nav {
    top: 72px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .hero {
    min-height: 720px;
    margin-top: 72px;
  }

  .hero-image {
    inset: 0;
    height: 100%;
    object-position: 58% center;
  }

  .hero-image.is-active {
    opacity: 0.34;
  }

  .hero-panel {
    width: 100%;
    min-height: 720px;
    padding: 72px 17px 92px;
    background: transparent;
    border: 0;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(246, 243, 238, 0.88) 0%,
      rgba(246, 243, 238, 0.82) 58%,
      rgba(246, 243, 238, 0.72) 100%
    );
  }

  .pill {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .hero h1 {
    font-size: var(--type-h1);
    line-height: var(--line-h1);
  }

  .hero-copy {
    margin-top: 22px;
    color: #465565;
    font-size: 18px;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

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

  .hero-points li {
    gap: 4px;
    font-size: 18px;
  }

  .scroll-cue {
    right: 16px;
    bottom: 18px;
  }

  .trust-bar {
    padding-inline: 0;
  }

  .trust-item {
    min-height: 112px;
    padding: 20px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .trust-item:first-child {
    border-left: 0;
  }

  .trust-item strong {
    font-size: 23px;
  }

  .trust-item > span {
    font-size: 18px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .factory-content h2,
  .contact-copy h2 {
    font-size: var(--type-h2);
  }

  .section-copy {
    margin-top: 16px;
    font-size: 18px;
  }

  .contact-copy {
    position: static;
  }

  .product-track {
    gap: 14px;
    scroll-padding-inline: 0;
  }

  .product-card {
    flex-basis: calc((100% - 14px) / 1.5);
  }

  .product-card h3 {
    min-height: 48px;
    font-size: 18px;
  }

  .custom-collage {
    min-height: 480px;
  }

  .collage-main {
    inset: 0 35px 65px 0;
    width: calc(100% - 35px);
    height: calc(100% - 65px);
  }

  .collage-detail {
    width: 58%;
    height: 43%;
    border-width: 8px;
  }

  .collage-label {
    left: 16px;
    bottom: 45px;
    min-width: 160px;
    padding: 15px 18px;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .advantage-card h3 {
    font-size: 20px;
  }

  .advantage-card p {
    margin-top: 12px;
    font-size: 18px;
  }

  .advantage-content {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
  }

  .advantage-icon {
    width: 28px;
    height: 28px;
  }

  .advantage-logo {
    right: 16px;
    bottom: 14px;
    width: 96px;
  }

  .proof-controls {
    margin-top: 16px;
  }

  .proof-grid {
    gap: 12px;
  }

  .proof-card {
    flex-basis: calc((100% - 12px) / 2);
  }

  .proof-image-wrap {
    height: 290px;
  }

  .proof-image-wrap img {
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
  }

  .proof-image-wrap span {
    right: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
    padding: 7px 8px;
    font-size: 18px;
  }

  .proof-lightbox {
    padding: 68px 12px 24px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 6px;
  }

  .proof-lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .proof-lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .proof-lightbox-content img {
    max-height: calc(100vh - 180px);
  }

  .proof-lightbox-content figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .factory-photo {
    min-height: 350px;
  }

  .factory-video-trigger {
    width: 66px;
    height: 66px;
  }

  .factory-video-modal {
    padding: 72px 16px 16px;
  }

  .factory-content {
    padding: 62px 17px;
  }

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

  .factory-features div {
    padding: 17px 10px 17px 0;
  }

  .factory-features div:nth-child(even) {
    padding: 17px 0 17px 14px;
  }

  .factory-features div:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .process-step,
  .process-step:nth-child(2) {
    min-height: 230px;
    padding: 24px 14px;
    border-right: 1px solid var(--line);
  }

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

  .process-step:nth-child(n + 3) {
    border-bottom: 0;
  }

  .process-step h3 {
    margin-top: 20px;
  }

  .buyer-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .buyer-card {
    min-height: 210px;
    padding: 20px 16px;
  }

  .buyer-card span {
    font-size: 18px;
  }

  .buyer-card h3 {
    margin-top: 30px;
    font-size: 18px;
  }

  .buyer-card p {
    font-size: 18px;
    line-height: 1.55;
  }

  .buyer-visual {
    height: 260px;
  }

  .news-section .section-heading {
    margin-bottom: 38px;
  }

  .news-card-grid {
    width: 100%;
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-card-image {
    aspect-ratio: 1.5 / 1;
  }

  .news-card-image > span {
    top: 16px;
    left: 16px;
    padding: 9px 12px;
    font-size: 18px;
  }

  .news-card-content {
    min-height: 260px;
    padding: 24px 22px 26px;
  }

  .news-card-content h3 {
    margin: 12px 0 13px;
    font-size: 20px;
    line-height: 1.32;
  }

  .news-card-content > div {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.65;
  }

  .inquiry-form {
    min-height: auto;
    padding: 24px 18px;
  }

  .inquiry-modal {
    padding: 12px;
  }

  .inquiry-modal-panel {
    max-height: calc(100vh - 24px);
  }

  .inquiry-form-modal {
    padding: 24px 16px 26px;
  }

  .inquiry-form-modal .form-heading {
    min-height: 72px;
    padding-right: 46px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 10px;
  }

  .form-grid label:nth-child(3),
  .form-grid label:nth-child(4) {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .floating-actions {
    right: 15px;
    top: 60%;
    bottom: auto;
    gap: 8px;
  }

  .about-hero {
    margin-top: 72px;
    padding: 54px 0 0;
  }

  .about-hero-grid {
    gap: 44px;
  }

  .about-hero-copy h1 {
    font-size: clamp(36px, 11vw, 44px);
    line-height: 1.13;
  }

  .about-hero-copy > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.75;
  }

  .about-hero-copy .button {
    margin-top: 27px;
  }

  .about-hero-visual {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .about-hero-visual,
  .about-hero-visual > img {
    min-height: 390px;
    height: 390px;
  }

  .about-hero-visual figcaption {
    width: calc(100% - 20px);
    min-height: 104px;
    padding: 20px;
  }

  .about-facts-grid > div {
    min-height: 112px;
    padding: 21px 17px;
  }

  .about-facts-grid strong {
    font-size: 23px;
  }

  .about-facts-grid span {
    font-size: 18px;
    line-height: 1.5;
  }

  .about-overview-images {
    min-height: 450px;
  }

  .about-overview-main {
    inset: 0 35px 76px 0;
    width: calc(100% - 35px);
    height: calc(100% - 76px);
  }

  .about-overview-detail {
    width: 59%;
    height: 43%;
    border-width: 8px;
  }

  .about-overview-images > span {
    left: 16px;
    bottom: 61px;
    padding: 11px 13px;
    font-size: 18px;
  }

  .about-overview-copy h2,
  .about-manufacturing-content h2,
  .about-people-copy h2,
  .about-materials-copy h2,
  .about-quality-heading h2,
  .about-buyer-support h2 {
    font-size: 30px;
  }

  .about-overview-copy > p:not(.eyebrow),
  .about-people-copy > p,
  .about-materials-copy > p,
  .about-quality-heading > p:not(.eyebrow) {
    font-size: 18px;
  }

  .about-journey > div {
    padding-left: 68px;
  }

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

  .about-location {
    min-height: 330px;
    padding: 30px 24px;
  }

  .about-location > p {
    margin-top: 31px;
  }

  .about-location-number {
    top: 26px;
    right: 24px;
    font-size: 60px;
  }

  .about-network-link {
    top: 50%;
    width: 52px;
    height: 52px;
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .about-manufacturing-image {
    min-height: 390px;
  }

  .about-manufacturing-content {
    padding: 62px 16px;
  }

  .about-manufacturing-steps {
    margin-top: 32px;
  }

  .about-manufacturing-steps article {
    min-height: 230px;
    padding: 21px 15px;
  }

  .about-manufacturing-steps h3 {
    margin-top: 23px;
    font-size: 18px;
  }

  .about-manufacturing-steps p {
    font-size: 18px;
    line-height: 1.6;
  }

  .about-people-gallery {
    min-height: 450px;
  }

  .about-people-office {
    inset: 0 0 76px 36px;
  }

  .about-people-culture {
    width: 54%;
    height: 43%;
    border-width: 8px;
  }

  .about-materials-photo {
    min-height: 360px;
  }

  .about-materials-copy {
    padding: 38px 22px;
  }

  .about-material-tags {
    margin-top: 25px;
  }

  .about-material-tags span {
    min-height: 72px;
    padding: 12px;
    font-size: 18px;
  }

  .about-quality-grid {
    margin-top: 52px;
    gap: 34px;
  }

  .about-quality-steps > div {
    min-height: 130px;
    padding: 21px 16px;
  }

  .about-quality-steps > div > span {
    top: 15px;
    right: 15px;
  }

  .about-quality-steps strong {
    font-size: 20px;
  }

  .about-quality-steps p {
    font-size: 18px;
    line-height: 1.55;
  }

  .about-buyer-support {
    padding: 72px 0;
  }

  .about-buyer-support-grid {
    gap: 42px;
  }

  .about-support-list > div {
    min-height: 120px;
    padding: 17px;
  }

  .about-support-list span {
    font-size: 18px;
  }

  .float-action {
    width: 49px;
    height: 49px;
  }
}

@media (max-width: 760px) {
  :root {
    --type-h1: clamp(38px, 10vw, 44px);
    --type-h2: clamp(28px, 8vw, 32px);
    --type-h3: clamp(20px, 6vw, 26px);
    --line-h1: 1.1;
    --line-h2: 1.18;
  }
}

/* Dedicated News page */
.news-page-hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  margin-top: 82px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
}

.news-page-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 52, 95, 0.9) 0%, rgba(10, 52, 95, 0.64) 48%, rgba(10, 52, 95, 0.18) 100%);
  pointer-events: none;
}

.news-page-hero-image {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.news-page-hero-content {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.news-page-hero-content .eyebrow {
  color: var(--orange);
}

.news-page-hero-content h1 {
  max-width: 780px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: var(--type-h1);
  font-weight: var(--heading-weight);
  line-height: var(--line-h1);
  letter-spacing: -0.045em;
}

.news-page-hero-content > p:last-child {
  max-width: 660px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--type-lead);
  line-height: 1.7;
}

.news-page-breadcrumb {
  color: rgba(255, 255, 255, 0.67);
  background: var(--navy-dark);
}

.news-page-breadcrumb > .container {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

.news-page-breadcrumb a {
  color: var(--white);
  font-weight: 700;
}

.news-directory {
  background: var(--secondary);
}

.news-filter {
  margin: 0 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-filter button {
  min-height: 42px;
  padding: 0 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(10, 52, 95, 0.18);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.news-filter button:hover,
.news-filter button.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.news-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.news-directory-card {
  min-width: 0;
  min-height: 330px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(10, 52, 95, 0.16);
}

.news-directory-card > a {
  min-width: 0;
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
}

.news-directory-media {
  min-height: 330px;
  overflow: hidden;
  background: var(--navy-dark);
}

.news-directory-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.news-directory-card:hover .news-directory-media img {
  transform: scale(1.035);
}

.news-directory-copy {
  min-width: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.news-directory-copy > p {
  margin: 0;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-directory-copy h3 {
  margin: 15px 0 15px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: clamp(20px, 1.45vw, 25px);
  font-weight: var(--heading-weight);
  line-height: 1.3;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-directory-copy > div {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.news-directory-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .news-directory-grid {
    grid-template-columns: 1fr;
  }

  .news-directory-card {
    display: block;
  }

  .news-directory-card > a {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 720px) {
  .news-page-hero {
    min-height: 470px;
    margin-top: 72px;
  }

  .news-page-hero::before {
    background: linear-gradient(90deg, rgba(10, 52, 95, 0.9) 0%, rgba(10, 52, 95, 0.68) 72%, rgba(10, 52, 95, 0.4) 100%);
  }

  .news-page-hero-content {
    min-height: 470px;
  }

  .news-page-hero-content > p:last-child {
    font-size: 18px;
  }

  .news-page-breadcrumb > .container {
    min-height: 56px;
  }

  .news-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    touch-action: pan-y;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: none;
    user-select: none;
  }

  .news-filter.is-dragging {
    cursor: grabbing;
  }

  .news-filter::-webkit-scrollbar {
    display: none;
  }

  .news-filter button {
    flex: 0 0 auto;
  }

  .news-directory-card {
    min-height: 0;
  }

  .news-directory-card > a {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .news-directory-media {
    min-height: 0;
    aspect-ratio: 1.45 / 1;
  }

  .news-directory-copy {
    min-height: 265px;
    padding: 26px 24px 28px;
  }

  .news-directory-copy h3 {
    font-size: 21px;
    -webkit-line-clamp: 2;
  }

}

/* News article template */
.news-article-hero {
  margin-top: 82px;
  padding: clamp(74px, 8vw, 116px) 0;
  color: var(--white);
  background: var(--navy-dark);
}

.news-article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.news-article-hero-copy .eyebrow {
  color: var(--orange);
}

.news-article-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: var(--heading-weight);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.news-article-hero-copy > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.news-article-hero figure {
  aspect-ratio: 1.48 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius-md);
}

.news-article-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article-breadcrumb {
  color: rgba(255, 255, 255, 0.62);
  background: var(--navy);
}

.news-article-breadcrumb > .container {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  font-size: 18px;
  white-space: nowrap;
}

.news-article-breadcrumb a {
  color: var(--white);
  font-weight: 700;
}

.news-article-breadcrumb span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-article-section {
  background: var(--white);
}

.news-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.55fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.news-article-body {
  max-width: 900px;
  color: var(--muted);
}

.news-article-lead {
  margin: 0 0 44px;
  padding-left: 24px;
  color: var(--navy-dark);
  border-left: 3px solid var(--orange);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.62;
}

.news-article-body section + section {
  margin-top: 44px;
}

.news-article-body h2 {
  margin: 0 0 17px;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: var(--heading-weight);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.news-article-body p,
.news-article-body li {
  font-size: 18px;
  line-height: 1.9;
}

.news-article-body p {
  margin: 0 0 18px;
}

.news-article-body ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.news-article-body li {
  position: relative;
  margin-top: 12px;
  padding-left: 26px;
}

.news-article-body li::before {
  position: absolute;
  top: 0.78em;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.news-article-inquiry {
  position: sticky;
  top: 106px;
  padding: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.news-article-inquiry > svg {
  color: var(--orange);
}

.news-article-inquiry > p {
  margin: 22px 0 0;
  color: #ffac89;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-article-inquiry h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.35;
}

.news-article-inquiry > span {
  margin-top: 16px;
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.news-article-inquiry button {
  min-height: 46px;
  margin-top: 25px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-dark);
  background: var(--white);
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 750;
  cursor: pointer;
}

.news-related {
  background: var(--secondary);
}

.news-related > .container > h2 {
  margin: 0 0 38px;
  text-align: center;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: var(--type-h2);
  line-height: var(--line-h2);
  letter-spacing: -0.035em;
}

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

.news-related-grid article {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.news-related-grid a {
  height: 100%;
  padding-bottom: 26px;
  display: flex;
  flex-direction: column;
}

.news-related-grid a > div {
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
}

.news-related-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.news-related-grid article:hover img {
  transform: scale(1.035);
}

.news-related-grid span {
  margin: 22px 24px 0;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-related-grid h3 {
  margin: 11px 24px 22px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-related-grid strong {
  margin: auto 24px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 18px;
}

@media (max-width: 1000px) {
  .news-article-hero-grid {
    grid-template-columns: 1fr;
  }

  .news-article-layout {
    grid-template-columns: 1fr;
  }

  .news-article-inquiry {
    position: static;
  }
}

@media (max-width: 760px) {
  .news-article-hero {
    margin-top: 72px;
    padding: 58px 0;
  }

  .news-article-hero-grid {
    gap: 34px;
  }

  .news-article-hero-copy h1 {
    font-size: 38px;
  }

  .news-article-hero-copy > p:last-child {
    font-size: 18px;
  }

  .news-article-breadcrumb > .container {
    min-height: 56px;
  }

  .news-article-lead {
    margin-bottom: 36px;
    padding-left: 18px;
    font-size: 20px;
  }

  .news-article-body h2 {
    font-size: 26px;
  }

  .news-article-body p,
  .news-article-body li {
    font-size: 18px;
    line-height: 1.8;
  }

  .news-article-inquiry {
    padding: 28px 24px;
  }

  .news-related-grid {
    grid-template-columns: 1fr;
  }
}

/* Gentle radius system
   Interactive controls and content surfaces are softened slightly while
   structural brand areas, factory/proof sections, the header and footer stay sharp. */
.header-cta,
.mobile-nav .mobile-nav-cta,
.button,
.form-submit,
.success-state button,
.inquiry-modal-close,
.factory-video-close,
.news-filter button {
  border-radius: var(--radius-sm);
}

.pill,
.capability-icon,
.contact-list svg {
  border-radius: var(--radius-sm);
}

.product-image-wrap,
.collage-main,
.collage-detail,
.advantage-card,
.buyer-visual,
.buyer-card,
.news-card,
.news-directory-card,
.contact-response-note,
.about-location,
.about-hero-film figure,
.about-base-row figure,
.about-production-panorama,
.about-culture-mosaic figure,
.custom-page-hero-main,
.custom-page-hero-detail {
  border-radius: var(--radius-md);
}

.inquiry-form,
.inquiry-modal-panel,
.custom-entry-split,
.custom-options-layout,
.custom-materials-visual,
.custom-fulfillment-grid figure,
.contact-location-card,
.about-culture-notes {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  border-radius: var(--radius-md);
}

/* Dedicated Contact page */
.contact-page-hero {
  position: relative;
  isolation: isolate;
  margin-top: 82px;
  padding: clamp(72px, 7vw, 108px) 0;
  overflow: hidden;
  background: var(--navy-soft);
}

.contact-page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--bh-contact-map) center / cover no-repeat;
  opacity: 0.34;
  pointer-events: none;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(600px, 1.18fr);
  gap: clamp(64px, 6.5vw, 104px);
  align-items: center;
}

.contact-page-intro {
  display: grid;
  gap: 34px;
}

.contact-page-heading h1 {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: var(--type-h1);
  font-weight: var(--heading-weight);
  line-height: var(--line-h1);
  letter-spacing: -0.04em;
}

.contact-page-heading > p:last-child {
  max-width: 570px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: var(--type-lead);
  line-height: 1.72;
}

.contact-response-note {
  max-width: 570px;
  min-height: 84px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border-left: 3px solid var(--orange);
  box-shadow: 0 14px 38px rgba(10, 52, 95, 0.08);
}

.contact-response-note > svg {
  flex: 0 0 auto;
  color: var(--orange);
}

.contact-response-note span {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.contact-response-note strong {
  color: var(--navy-dark);
  font-size: 18px;
}

.contact-page-methods {
  max-width: 570px;
  display: grid;
  font-style: normal;
  border-top: 1px solid rgba(10, 52, 95, 0.16);
}

.contact-page-methods a {
  min-height: 78px;
  padding: 17px 2px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 22px;
  gap: 14px;
  align-items: center;
  color: var(--navy-dark);
  border-bottom: 1px solid rgba(10, 52, 95, 0.16);
  transition: color 180ms ease, padding-left 180ms ease;
}

.contact-page-methods a:hover {
  padding-left: 8px;
  color: var(--orange);
}

.contact-page-methods a > svg:first-child {
  color: var(--navy);
}

.contact-page-methods a > span {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.contact-page-methods small {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-page-methods strong {
  overflow-wrap: anywhere;
  font-size: 18px;
  font-weight: 600;
}

.contact-page-grid > .inquiry-form {
  min-height: 0;
  padding: 42px;
  box-shadow: 0 24px 65px rgba(10, 52, 95, 0.13);
}

.contact-location-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #dce3e7;
}

.contact-location-section > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(0.96);
}

.contact-location-overlay {
  position: relative;
  min-height: 650px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 64px;
  pointer-events: none;
}

.contact-location-card {
  width: min(470px, 100%);
  padding: 34px;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.96);
  border-top: 4px solid var(--orange);
  box-shadow: 0 24px 70px rgba(10, 52, 95, 0.2);
  pointer-events: auto;
}

.contact-location-card > svg {
  color: var(--orange);
}

.contact-location-card h2 {
  margin: 21px 0 0;
  font-family: var(--serif);
  font-size: var(--type-h3);
  font-weight: var(--heading-weight);
  line-height: 1.24;
}

.contact-location-card p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-location-card a {
  width: fit-content;
  margin-top: 27px;
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--orange);
}

@media (max-width: 1120px) {
  .contact-page-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
  }

  .contact-page-intro,
  .contact-page-heading h1,
  .contact-page-heading > p:last-child,
  .contact-response-note,
  .contact-page-methods {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .contact-page-hero {
    margin-top: 72px;
    padding: 55px 0 68px;
  }

  .contact-page-grid {
    gap: 44px;
  }

  .contact-page-heading h1 {
    margin-top: 15px;
    letter-spacing: -0.035em;
  }

  .contact-page-heading > p:last-child {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.7;
  }

  .contact-page-intro {
    gap: 27px;
  }

  .contact-response-note {
    padding: 16px;
  }

  .contact-page-methods a {
    min-height: 72px;
    grid-template-columns: 32px minmax(0, 1fr) 18px;
    gap: 10px;
  }

  .contact-page-methods strong {
    font-size: 18px;
  }

  .contact-page-grid > .inquiry-form {
    width: calc(100% + 12px);
    margin-left: -6px;
    padding: 24px 16px;
  }

  .contact-location-section,
  .contact-location-overlay {
    min-height: 610px;
  }

  .contact-location-overlay {
    padding-bottom: 20px;
    align-items: flex-end;
  }

  .contact-location-card {
    width: 100%;
    padding: 25px;
  }

  .contact-location-card h2 {
    margin-top: 16px;
  }
}

/* Product category archive */
.product-category-hero {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  margin-top: 82px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
}

.product-category-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 52, 95, 0.95) 0%, rgba(10, 52, 95, 0.76) 52%, rgba(10, 52, 95, 0.35) 100%);
}

.product-category-hero > img {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78);
}

.product-category-hero-copy {
  position: relative;
  z-index: 1;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.product-category-hero-copy .eyebrow {
  color: var(--orange);
}

.product-category-hero-copy h1 {
  max-width: 820px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: var(--type-h1);
  font-weight: var(--heading-weight);
  line-height: var(--line-h1);
  letter-spacing: -0.045em;
}

.product-category-hero-copy > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: var(--type-lead);
  line-height: 1.7;
}

.product-category-directory {
  background: var(--secondary);
}

.product-category-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.product-category-sidebar {
  position: sticky;
  top: 106px;
  min-width: 0;
}

.product-category-search {
  margin-bottom: 26px;
}

.product-category-search-field {
  min-height: 48px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 52, 95, 0.18);
  border-radius: var(--radius-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.product-category-search-field:focus-within {
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 52, 95, 0.1);
}

.product-category-search-field > svg {
  flex: 0 0 auto;
}

.product-category-search-field input {
  min-width: 0;
  width: 100%;
  height: 46px;
  padding: 0;
  color: var(--navy-dark);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 18px;
}

.product-category-search-field input::placeholder {
  color: var(--muted);
  opacity: 0.85;
}

.product-category-search-field input::-webkit-search-cancel-button {
  display: none;
}

.product-category-search-field button {
  width: 30px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.product-category-search-field button:hover {
  color: var(--orange);
  background: rgba(10, 52, 95, 0.07);
}

.product-category-search-status {
  margin: 8px 2px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.product-category-search-mobile {
  display: none;
}

.product-category-sidebar h2 {
  margin: 0 0 20px;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
}

.product-category-sidebar nav {
  display: grid;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(10, 52, 95, 0.14);
  border-radius: var(--radius-md);
}

.product-category-sidebar a {
  min-height: 52px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--navy-dark);
  border-bottom: 1px solid rgba(10, 52, 95, 0.1);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.35;
  transition: color 180ms ease, background 180ms ease, padding-left 180ms ease;
}

.product-category-sidebar a:last-child {
  border-bottom: 0;
}

.product-category-sidebar a:hover {
  padding-left: 20px;
  color: var(--orange);
}

.product-category-sidebar a.is-active {
  color: var(--white);
  background: var(--navy);
}

.product-category-sidebar a svg {
  flex: 0 0 auto;
}

.product-category-content {
  min-width: 0;
}

.product-category-description {
  max-width: 900px;
  margin-bottom: 34px;
  margin-top: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.product-category-empty {
  min-height: 280px;
  padding: 44px 24px;
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(10, 52, 95, 0.14);
  border-radius: var(--radius-md);
}

.product-category-empty > svg {
  color: var(--orange);
}

.product-category-empty h3 {
  margin: 17px 0 8px;
  font-family: var(--serif);
  font-size: 22px;
}

.product-category-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.product-category-empty button {
  margin-top: 20px;
  padding: 0 0 5px;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--orange);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.product-category-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(10, 52, 95, 0.14);
  border-radius: var(--radius-md);
}

.product-category-card > a {
  height: 100%;
  padding-bottom: 23px;
  display: flex;
  flex-direction: column;
}

.product-category-card > a > div {
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: var(--white);
}

.product-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

.product-category-card:hover img {
  transform: scale(1.035);
}

.product-category-card span {
  margin: 20px 21px 0;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-category-card h3 {
  margin: 11px 21px 0;
  color: var(--navy-dark);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.32;
}

.product-category-card p {
  margin: 12px 21px 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-category-card strong {
  margin: auto 21px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 18px;
}

.product-category-editorial {
  background: var(--white);
}

.product-category-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.product-category-rich-content {
  padding: clamp(28px, 4vw, 54px);
  color: var(--muted);
  background: var(--white);
  border: 1px solid rgba(10, 52, 95, 0.12);
  border-radius: var(--radius-lg);
}

.product-category-rich-content h2,
.product-category-rich-content h3 {
  color: var(--navy-dark);
  font-family: var(--serif);
  font-weight: var(--heading-weight);
}

.product-category-rich-content h2 {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 20px;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.product-category-rich-content h2::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0 88px, rgba(10, 52, 95, 0.12) 88px);
  content: "";
}

.product-category-rich-content h3 {
  margin: 34px 0 12px;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
}

.product-category-rich-content p,
.product-category-rich-content li {
  font-size: 18px;
  line-height: 1.82;
}

.product-category-rich-content p {
  margin: 0 0 18px;
}

.product-category-rich-content ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.product-category-rich-content li {
  position: relative;
  margin-top: 16px;
  padding-left: 26px;
}

.product-category-rich-content li::before {
  position: absolute;
  top: 0.77em;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.product-category-rich-content strong {
  color: var(--navy);
}

.product-category-inquiry {
  position: sticky;
  top: 106px;
}

.category-inquiry-form {
  padding: clamp(26px, 3vw, 38px);
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.category-inquiry-heading {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.category-inquiry-heading p {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: var(--heading-weight);
  line-height: 1.2;
}

.category-inquiry-heading span {
  margin-top: 9px;
  display: block;
  color: #ffac89;
  font-size: 18px;
  font-weight: 700;
}

.category-inquiry-intro {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.65;
}

.category-inquiry-form label {
  margin-top: 15px;
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 700;
}

.category-inquiry-form input,
.category-inquiry-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--navy-dark);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.category-inquiry-form textarea {
  min-height: 126px;
  resize: vertical;
}

.category-inquiry-form input:focus,
.category-inquiry-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.18);
}

.category-inquiry-form > button[type="submit"] {
  width: 100%;
  min-height: 48px;
  margin-top: 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 750;
  cursor: pointer;
}

.category-inquiry-note {
  margin: 15px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  line-height: 1.5;
}

.category-inquiry-note svg {
  flex: 0 0 auto;
}

.category-inquiry-success {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.category-inquiry-success h3 {
  margin: 20px 0 8px;
  font-family: var(--serif);
  font-size: 26px;
}

.category-inquiry-success p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.category-inquiry-success button {
  margin-top: 24px;
  padding: 0 0 5px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--orange);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .product-category-layout {
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 34px;
  }

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

  .product-category-editorial-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .product-category-layout {
    grid-template-columns: 1fr;
  }

  .product-category-sidebar {
    position: static;
  }

  .product-category-sidebar nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .product-category-sidebar nav::-webkit-scrollbar {
    display: none;
  }

  .product-category-sidebar a {
    flex: 0 0 auto;
    border-right: 1px solid rgba(10, 52, 95, 0.1);
    border-bottom: 0;
  }

  .product-category-editorial-grid {
    grid-template-columns: 1fr;
  }

  .product-category-inquiry {
    position: static;
  }
}

@media (max-width: 720px) {
  .product-category-hero {
    min-height: 360px;
    margin-top: 72px;
  }

  .product-category-hero-copy {
    min-height: 360px;
  }

  .product-category-hero-copy > p:last-child {
    font-size: 18px;
  }

  .product-category-directory {
    padding-top: 60px;
    padding-bottom: 66px;
  }

  .product-category-sidebar {
    display: none;
  }

  .product-category-search-mobile {
    display: block;
    margin-bottom: 24px;
  }

  .product-category-description {
    margin-bottom: 26px;
    font-size: 18px;
  }

  .product-category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-category-editorial {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .product-category-rich-content,
  .category-inquiry-form {
    padding: 24px 20px;
  }

  .product-category-rich-content h2 {
    font-size: 28px;
  }

  .product-category-rich-content p,
  .product-category-rich-content li {
    font-size: 18px;
    line-height: 1.75;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
