:root {
  --ink: #171717;
  --muted: #5f6268;
  --paper: #f7f7f2;
  --cream: #e8f0ff;
  --coral: #ff503d;
  --berry: #d92362;
  --mint: #00a98f;
  --lime: #e7ff54;
  --blue: #5b76ff;
  --coffee: #171717;
  --line: rgba(23, 23, 23, 0.14);
  --shadow: 0 22px 70px rgba(23, 23, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(34, 23, 19, 0.1);
  background: rgba(255, 248, 239, 0.88);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: clamp(18px, 4vw, 54px);
  width: 44px;
  height: 4px;
  background: var(--coral);
  box-shadow: 44px 0 0 var(--blue), 88px 0 0 var(--lime), 132px 0 0 var(--mint);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.brand-logo {
  width: clamp(176px, 18vw, 224px);
  max-height: 52px;
}

.custom-logo-link,
.custom-logo-link img {
  display: block;
  width: auto;
  max-width: 224px;
  max-height: 52px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  box-shadow: inset -9px -9px 0 rgba(0, 0, 0, 0.12);
}

.brand-text {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu > li {
  position: relative;
}

.menu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #3c2e28;
  font-size: 14px;
  font-weight: 800;
}

.menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 30;
  display: grid;
  width: 250px;
  gap: 3px;
  margin: 0;
  padding: 8px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
  list-style: none;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.sub-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sub-menu a {
  display: flex;
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  line-height: 1.25;
}

.sub-menu a:hover,
.sub-menu a:focus {
  background: var(--lime);
}

.menu a:hover,
.menu a:focus {
  background: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:hover,
.header-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button.primary {
  color: #fff;
  background: var(--coral);
}

.button.secondary {
  background: #fff;
}

.button.full {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  min-height: calc(100vh - 130px);
  padding: clamp(32px, 5vw, 64px) clamp(18px, 5vw, 72px) 34px;
  overflow: hidden;
  background: #fff;
}

.hero h1,
.section h2,
.quote-section h2,
.page-content h1 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 5.3vw, 76px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 700px;
  margin: 18px 0 0;
  color: #4f403b;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.5;
}

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

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 22px;
}

.proof-row span {
  display: grid;
  align-content: center;
  min-height: 78px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
}

.proof-row strong {
  color: var(--berry);
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.proof-row small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 480px);
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #8ce6d3;
  box-shadow: 14px 14px 0 var(--ink), var(--shadow);
  transform: rotate(2deg);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  border-radius: 6px;
}

.floating-note {
  position: absolute;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
}

.note-one {
  top: 11%;
  left: -22px;
}

.note-two {
  right: -26px;
  bottom: 25%;
  background: var(--lime);
}

.note-three {
  left: 18%;
  bottom: -18px;
  background: var(--mint);
  color: #fff;
}

.ticker {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 13px 18px;
  animation: cpl-marquee 34s linear infinite;
}

.ticker span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker span::after {
  content: "/";
  margin-left: 18px;
  color: var(--lime);
}

@keyframes cpl-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-45%); }
}

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

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

.section-heading.wide {
  max-width: 980px;
}

.section h2,
.quote-section h2 {
  font-size: clamp(38px, 5.4vw, 76px);
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.intro-band {
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.intro-grid article {
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.intro-grid span {
  color: var(--coral);
  font-family: "Inter", sans-serif;
  font-size: 44px;
  font-weight: 900;
}

.intro-grid h3,
.product-card h3 {
  margin: 10px 0;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1.05;
}

.intro-grid p,
.product-card small,
.process-list span,
.factory-copy li,
.sample-route p,
.faq-list p,
.quote-section p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.sampling-section {
  background: var(--lime);
}

.sample-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.sample-route {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
}

.sample-route.featured {
  color: #fff;
  background: var(--blue);
}

.sample-route.featured p,
.sample-route.featured small {
  color: rgba(255, 255, 255, 0.82);
}

.sample-route-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sample-route-top span {
  font-family: "Inter", sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.sample-route-top strong {
  padding: 8px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-route h3 {
  margin: 36px 0 10px;
  font-family: "Inter", sans-serif;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.04;
}

.sample-route p {
  margin: 0;
}

.sample-route small {
  margin-top: auto;
  padding-top: 24px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-credit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.sample-credit div {
  display: grid;
  gap: 6px;
}

.sample-credit span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-credit strong {
  max-width: 760px;
  font-family: "Inter", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
}

.sample-credit .button.secondary {
  color: var(--ink);
  background: #fff;
}

.solutions-section {
  background: #fff;
}

.solution-system-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: stretch;
  background: #eff5ff;
}

.solution-system-media {
  overflow: hidden;
  min-height: 520px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

.solution-system-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-system-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.solution-system-copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

.solution-system-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.system-item-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
}

.system-item-grid span {
  padding: 9px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--ink);
}

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

.solution-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.78fr) minmax(0, 1.22fr);
  min-height: 390px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff3a8;
  box-shadow: 6px 6px 0 var(--ink);
}

.solution-card:nth-child(2) {
  background: #c9f2e9;
}

.solution-card:nth-child(3) {
  background: #ffd9e3;
}

.solution-card:nth-child(4) {
  background: #dfe5ff;
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-right: 2px solid var(--ink);
}

.solution-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
}

.solution-card > div > span {
  color: var(--berry);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-card h3 {
  margin: 18px 0 10px;
  font-family: "Inter", sans-serif;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.04;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.solution-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 0;
  padding: 22px 0 0;
  list-style: none;
}

.solution-card li {
  padding: 7px 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
}

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

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 28px;
}

.category-pills span,
.category-pills a {
  display: inline-flex;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-weight: 900;
}

.category-pills a:hover,
.category-pills a:focus {
  background: var(--lime);
}

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

.product-category-anchor {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-top: 24px;
  padding: 18px 0 10px;
  border-bottom: 2px solid var(--ink);
  scroll-margin-top: 96px;
}

.product-category-anchor:first-child {
  margin-top: 0;
}

.product-category-anchor h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.product-category-anchor p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.product-card {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 5px 0 rgba(34, 23, 19, 0.92);
}

.product-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f6efe5;
}

.product-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-card p {
  margin: 0;
  color: var(--berry);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.product-card small {
  display: block;
  font-size: 14px;
}

.product-card b {
  margin-top: auto;
  padding-top: 16px;
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
}

.product-card-link:hover b,
.product-card-link:focus b {
  color: var(--berry);
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 54px;
  align-items: start;
  background: #fff;
}

.product-overview h2,
.product-customize-section h2,
.product-confirm-section h2,
.product-sample-band h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.product-intro {
  max-width: 800px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.best-for-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.best-for-list span,
.best-for-list strong {
  padding: 9px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
}

.best-for-list span {
  color: #fff;
  background: var(--ink);
  text-transform: uppercase;
}

.product-spec-panel {
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
}

.product-spec-panel > p {
  margin: 0 0 16px;
  color: var(--berry);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-spec-panel dl {
  margin: 0;
}

.product-spec-panel dl div {
  display: grid;
  gap: 5px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.product-spec-panel dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-spec-panel dd {
  margin: 0;
  font-weight: 900;
}

.product-features-section {
  background: var(--cream);
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.product-feature-grid article {
  min-height: 240px;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.product-feature-grid span {
  color: var(--coral);
  font-family: "Inter", sans-serif;
  font-size: 38px;
  font-weight: 900;
}

.product-feature-grid h3 {
  margin: 60px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  line-height: 1.06;
}

.product-customize-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 54px;
  color: #fff;
  background: var(--ink);
}

.product-customize-section .eyebrow {
  color: var(--ink);
}

.product-customize-section > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.65;
}

.product-customize-section ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.32);
  list-style: none;
}

.product-customize-section li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 90px;
  padding: 18px;
  background: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.product-customize-section li span {
  color: var(--lime);
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.product-confirm-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
  gap: 54px;
  background: #fff;
}

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

.product-considerations article {
  padding: 22px;
  border-top: 4px solid var(--blue);
  background: var(--paper);
}

.product-considerations article:nth-child(2) { border-color: var(--coral); }
.product-considerations article:nth-child(3) { border-color: var(--mint); }

.product-considerations span {
  color: var(--berry);
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 900;
}

.product-considerations p {
  margin: 44px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.product-sample-band {
  color: var(--ink);
  background: var(--lime);
}

.sample-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.sample-summary-grid article {
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
}

.sample-summary-grid strong {
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 32px;
}

.sample-summary-grid h3 {
  margin: 40px 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 23px;
}

.sample-summary-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.related-products {
  background: #ffdbe5;
}

.related-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.related-product-grid > a {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.related-product-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-bottom: 2px solid var(--ink);
  object-fit: cover;
}

.related-product-grid a > div {
  padding: 20px;
}

.related-product-grid span {
  color: var(--berry);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-product-grid h3 {
  margin: 14px 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
}

.related-product-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.materials-section {
  color: #fff;
  background: var(--ink);
}

.materials-section .eyebrow {
  color: var(--ink);
}

.materials-intro {
  max-width: 940px;
}

.materials-intro p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border-block: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.34);
}

.build-grid article {
  min-height: 330px;
  padding: 28px 24px;
  background: var(--ink);
}

.build-grid span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.build-grid h3 {
  margin: 54px 0 20px;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  line-height: 1.05;
}

.build-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
  list-style: none;
}

.build-grid li {
  position: relative;
  padding-left: 18px;
}

.build-grid li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.material-library {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.22);
}

.material-library > div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 3px 14px;
  align-items: center;
  min-height: 88px;
  padding: 16px;
  background: var(--ink);
}

.material-library strong {
  align-self: end;
  font-size: 14px;
}

.material-library small {
  align-self: start;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.swatch {
  display: block;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: #fff;
}

.swatch.kraft { background: #af7f4e; }
.swatch.foil { background: #d8dce2; }
.swatch.vmpet { background: #8f9bad; }
.swatch.clear { background: #cbeeff; }
.swatch.cup { background: #f1e7d2; }
.swatch.pla { background: #68d8bd; }

.custom-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
  background: #fff;
}

.custom-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
}

.process-list strong {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.factory-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.factory-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.factory-media img {
  width: 100%;
  min-height: 210px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 5px 5px 0 var(--ink);
}

.factory-media img:first-child {
  grid-row: span 2;
  min-height: 438px;
}

.factory-copy ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.factory-copy li {
  position: relative;
  padding-left: 32px;
  font-size: 18px;
}

.factory-copy li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--mint);
}

.production-checkline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}

.production-checkline span {
  position: relative;
  padding: 11px 10px 11px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.production-checkline span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  transform: translateY(-50%);
}

.launch-section {
  background: #ffdbe5;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.launch-grid article {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
}

.launch-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-bottom: 2px solid var(--ink);
  object-fit: cover;
}

.launch-grid article > div {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 24px;
}

.launch-grid span {
  color: var(--coral);
  font-family: "Inter", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.launch-grid h3 {
  margin: 20px 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 27px;
  line-height: 1.05;
}

.launch-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.launch-grid strong {
  margin-top: auto;
  padding-top: 24px;
  color: var(--berry);
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
}

.social-section {
  background: #f7fff8;
}

.social-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.social-strip article {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
}

.social-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-strip span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 52px;
  align-items: start;
  background: #fff;
}

.faq-list {
  display: grid;
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 2px solid var(--ink);
}

.faq-list summary {
  position: relative;
  padding: 22px 52px 22px 0;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
  color: #fff;
  background: var(--blue);
}

.faq-list p {
  max-width: 760px;
  margin: -4px 52px 22px 0;
  font-size: 16px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: var(--coffee);
  color: #fff;
}

.quote-section .eyebrow {
  color: var(--ink);
}

.quote-section p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.quote-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.quote-card .quote-card-title {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.quote-checklist {
  display: grid;
  gap: 8px;
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
}

.quote-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.quote-checklist li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--mint);
}

.mini-socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-socials a {
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.home-paths {
  background: #fff;
}

.home-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.home-path-grid > a {
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) minmax(0, 1.22fr);
  min-height: 330px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.home-path-grid img {
  width: 100%;
  height: 100%;
  border-right: 2px solid var(--ink);
  object-fit: cover;
}

.home-path-grid a > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
}

.home-path-grid span,
.home-sample-steps span,
.values-preview-grid span,
.decision-grid span,
.responsibility-grid span,
.company-values-grid span {
  color: var(--coral);
  font-family: "Inter", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.home-path-grid h3,
.home-sample-steps h3,
.values-preview-grid h3,
.decision-grid h3,
.responsibility-grid h3,
.company-values-grid h3 {
  margin: 24px 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 26px;
  line-height: 1.05;
}

.home-path-grid p,
.home-sample-steps p,
.values-preview-grid p,
.decision-grid p,
.responsibility-grid p,
.company-values-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.home-path-grid strong {
  margin-top: auto;
  padding-top: 24px;
  color: var(--berry);
  font-size: 13px;
  text-transform: uppercase;
}

.home-sample-band {
  color: #fff;
  background: var(--blue);
}

.home-sample-band .eyebrow {
  color: var(--ink);
}

.home-sample-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 36px 0 28px;
  background: rgba(255, 255, 255, 0.4);
}

.home-sample-steps article {
  min-height: 240px;
  padding: 26px;
  background: var(--blue);
}

.home-sample-steps span {
  color: var(--lime);
}

.home-sample-steps p {
  color: rgba(255, 255, 255, 0.76);
}

.home-sample-band .button.secondary {
  color: var(--ink);
}

.home-products .section-action,
.section-action,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.values-preview {
  background: #fff;
}

.customer-showcase {
  background: #f2fff9;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.showcase-grid article {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
}

.showcase-grid figure {
  position: relative;
  margin: 0;
}

.showcase-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-bottom: 2px solid var(--ink);
  object-fit: cover;
}

.showcase-grid img.showcase-contain-image {
  padding: 18px;
  background: #fff;
  object-fit: contain;
}

.showcase-grid figcaption {
  position: absolute;
  right: 8px;
  bottom: 10px;
  left: 8px;
  width: fit-content;
  padding: 5px 7px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(0, 0, 0, 0.72);
  font-size: 9px;
  font-weight: 800;
}

.showcase-grid article > div {
  min-height: 250px;
  padding: 22px;
}

.showcase-grid span {
  color: var(--berry);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-grid h3 {
  margin: 22px 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  line-height: 1.05;
}

.showcase-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.testimonial-heading {
  max-width: 900px;
  margin-top: clamp(64px, 8vw, 110px);
}

.testimonial-heading h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(38px, 5.4vw, 70px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.testimonial-grid blockquote {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  margin: 0;
  padding: 26px;
  border-top: 4px solid var(--coral);
  background: #fff;
}

.testimonial-grid blockquote:nth-child(2) {
  border-color: var(--blue);
}

.testimonial-grid blockquote:nth-child(3) {
  border-color: var(--mint);
}

.testimonial-grid blockquote p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

.testimonial-grid blockquote footer {
  margin-top: auto;
  padding-top: 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.values-preview-grid,
.decision-grid,
.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.values-preview-grid article,
.decision-grid article,
.responsibility-grid article,
.company-values-grid article {
  padding: 26px;
  border-top: 2px solid var(--ink);
}

.page-hero {
  position: relative;
  display: flex;
  min-height: min(760px, calc(100vh - 76px));
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.48);
}

.page-hero > img,
.page-hero > figure,
.page-hero > figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 950px;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(48px, 7vw, 94px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

.page-hero .eyebrow {
  border-color: #fff;
  color: var(--coral);
  background: #fff;
}

.page-hero > div > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.6;
}

.page-hero figcaption,
.quality-story figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  max-width: 440px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(0, 0, 0, 0.74);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-editor-content {
  background: #fff;
}

.editor-content-inner {
  max-width: 980px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
}

.editor-content-inner h2,
.editor-content-inner h3 {
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.editor-content-inner h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.editor-content-inner h3 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.editor-content-inner p,
.editor-content-inner ul,
.editor-content-inner ol {
  max-width: 820px;
}

.editor-content-inner a {
  color: var(--berry);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.catalog-section {
  background: var(--cream);
}

.product-decisions {
  background: var(--lime);
}

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

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.page-cta h2 {
  max-width: 880px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.page-cta p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.production-flow {
  background: #fff;
}

.production-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.production-stage-grid article {
  min-height: 270px;
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
}

.production-stage-grid span {
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 900;
}

.production-stage-grid h3,
.quality-list h3,
.capability-columns h3,
.material-guide-table h3,
.serve-list h3 {
  margin: 28px 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  line-height: 1.05;
}

.production-stage-grid p,
.quality-list p,
.capability-columns p,
.material-guide-table p,
.serve-list p,
.company-purpose p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.quality-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
  background: var(--paper);
}

.quality-story figure {
  position: relative;
  min-height: 620px;
  margin: 0;
}

.quality-story figure img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 6px 6px 0 var(--ink);
}

.quality-story h2,
.company-purpose h2,
.sustainability-actions h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(38px, 5.4vw, 70px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.quality-list {
  display: grid;
  margin-top: 28px;
  border-top: 2px solid var(--ink);
}

.quality-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 2px solid var(--ink);
}

.quality-list span {
  color: var(--coral);
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.quality-list h3 {
  margin: 0 0 6px;
}

.capability-band {
  color: #fff;
  background: var(--blue);
}

.capability-band .eyebrow {
  color: var(--ink);
}

.capability-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.4);
}

.capability-columns article {
  min-height: 260px;
  padding: 26px;
  background: var(--blue);
}

.capability-columns h3 {
  margin-top: 0;
}

.capability-columns p {
  color: rgba(255, 255, 255, 0.74);
}

.responsibility-principles {
  background: #fff;
}

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

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

.material-guide-table {
  display: grid;
  margin-top: 36px;
  border-top: 2px solid var(--ink);
}

.material-guide-table article {
  display: grid;
  grid-template-columns: minmax(120px, 160px) minmax(240px, 0.78fr) minmax(280px, 1.12fr);
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 2px solid var(--ink);
}

.material-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
  object-fit: cover;
}

.material-guide-table article > div {
  position: relative;
  min-width: 0;
  padding-left: 72px;
}

.material-guide-table .swatch {
  position: absolute;
  top: 2px;
  left: 0;
  width: 50px;
  height: 50px;
}

.material-guide-table h3 {
  margin: 0 0 5px;
}

.material-guide-table strong {
  color: var(--berry);
  line-height: 1.5;
}

.sustainability-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 50px;
  background: var(--lime);
}

.sustainability-actions ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: questions;
  list-style: none;
}

.sustainability-actions li {
  position: relative;
  padding: 18px 18px 18px 70px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
  counter-increment: questions;
}

.sustainability-actions li::before {
  content: "0" counter(questions);
  position: absolute;
  top: 15px;
  left: 18px;
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.company-purpose {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 54px;
  background: #fff;
}

.company-purpose > div:last-child {
  display: grid;
  gap: 18px;
  align-content: center;
  font-size: 19px;
}

.company-values {
  background: var(--cream);
}

.company-values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.company-values-grid article {
  padding: 22px 16px;
}

.who-we-serve {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 54px;
  background: #fff;
}

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

.serve-list article {
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
}

.serve-list h3 {
  margin-top: 0;
}

.home-quote-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.home-quote-pitch {
  position: sticky;
  top: 112px;
}

.home-quote-pitch > img {
  width: 72px;
  height: 72px;
  margin-bottom: 30px;
}

.home-quote-pitch .eyebrow {
  color: var(--ink);
}

.home-quote-pitch h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.home-quote-pitch > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.home-quote-pitch .button.secondary {
  color: var(--ink);
}

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

.quote-experience {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: var(--ink);
}

.quote-experience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 10, 10, 0.72);
}

.quote-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(580px, 1.18fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
  max-width: 1580px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 88px) clamp(18px, 5vw, 72px);
}

.quote-pitch {
  position: sticky;
  top: 112px;
  padding-top: 18px;
  color: #fff;
}

.quote-brand-mark {
  width: 74px;
  height: 74px;
  margin-bottom: 32px;
}

.quote-pitch .eyebrow {
  color: var(--ink);
}

.quote-pitch h1 {
  max-width: 650px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.quote-pitch > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.quote-benefits {
  display: grid;
  gap: 16px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.quote-benefits li {
  position: relative;
  padding-left: 40px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.quote-benefits li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: inset 0 0 0 6px var(--coral);
}

.quote-benefits li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}

.quote-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.quote-facts span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.quote-facts strong {
  color: var(--lime);
  font-size: 18px;
}

.project-form {
  padding: clamp(22px, 3vw, 34px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 10px 10px 0 var(--ink);
}

.project-form-heading {
  margin-bottom: 26px;
}

.project-form-heading p {
  margin: 0 0 6px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-form-heading h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.project-form-heading > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

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

.project-form label > span,
.project-form legend {
  display: block;
  margin-bottom: 7px;
  color: #494d53;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  border: 1px solid #cfd2d6;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 16px;
}

.project-form input,
.project-form select {
  min-height: 50px;
  padding: 11px 13px;
}

.project-form textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(91, 118, 255, 0.18);
}

.project-form fieldset {
  min-width: 0;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.project-form legend {
  width: 100%;
  margin-bottom: 10px;
}

.project-form legend small {
  color: #92959a;
  font-size: 10px;
  text-transform: none;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

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

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

.choice-grid label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-grid label > span {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 14px;
  border: 2px solid #d8dade;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  text-transform: none;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease, transform 140ms ease;
}

.route-choice-grid label > span {
  min-height: 92px;
}

.choice-grid label > span strong {
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.choice-grid label > span small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.choice-grid input:checked + span {
  border-color: var(--coral);
  color: #fff;
  background: var(--coral);
  transform: translateY(-2px);
}

.choice-grid input:checked + span small {
  color: rgba(255, 255, 255, 0.78);
}

.choice-grid input:focus-visible + span {
  outline: 3px solid rgba(91, 118, 255, 0.3);
  outline-offset: 2px;
}

.project-details-grid {
  margin-top: 28px;
}

.file-field input[type="file"] {
  padding: 8px;
  border-style: dashed;
  font-size: 12px;
}

.file-field > small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.message-field {
  display: block;
  margin-top: 20px;
}

.form-submit {
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
}

.form-privacy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.form-notice {
  margin-bottom: 20px;
  padding: 13px 15px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.form-notice.success {
  background: #c9f2e9;
}

.form-notice.error {
  background: #ffd9e3;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.7fr) minmax(260px, 1fr);
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #140e0c;
  color: #fff;
}

.site-footer p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-logo {
  display: block;
  width: min(100%, 260px);
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
  justify-content: flex-end;
}

.footer-nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.footer-links a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.content-shell {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.page-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 44px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

.page-content h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 68px);
}

.post-hero {
  margin: 24px 0;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .showcase-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .site-nav.is-open {
    display: block;
  }

  .menu {
    display: grid;
    gap: 4px;
    padding: 10px 0 4px;
  }

  .menu a {
    border-radius: 8px;
    background: #fff;
  }

  .menu .sub-menu {
    position: static;
    width: auto;
    margin: 4px 0 8px;
    padding: 4px 0 4px 14px;
    border: 0;
    visibility: visible;
    opacity: 1;
    background: transparent;
    box-shadow: none;
    pointer-events: auto;
    transform: none;
  }

  .menu .sub-menu::before {
    display: none;
  }

  .menu .sub-menu a {
    padding-left: 14px;
    border-left: 2px solid var(--blue);
    background: var(--paper);
  }

  .header-cta {
    display: none;
  }

  .hero,
  .custom-section,
  .factory-section,
  .faq-section,
  .quote-section,
  .page-cta,
  .quality-story,
  .sustainability-actions,
  .company-purpose,
  .who-we-serve,
  .product-overview,
  .product-customize-section,
  .product-confirm-section,
  .solution-system-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    width: min(92vw, 500px);
  }

  .intro-grid,
  .sample-route-grid,
  .social-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .solution-system-media {
    min-height: 420px;
  }

  .home-path-grid {
    grid-template-columns: 1fr;
  }

  .build-grid,
  .material-library,
  .launch-grid,
  .production-stage-grid,
  .values-preview-grid,
  .related-product-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .sample-route:last-child {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .launch-grid article:last-child {
    grid-column: 1 / -1;
  }

  .faq-section {
    gap: 34px;
  }

  .factory-section {
    gap: 34px;
  }

  .quality-story,
  .company-purpose,
  .who-we-serve,
  .sustainability-actions {
    gap: 34px;
  }

  .quality-story figure,
  .quality-story figure img {
    min-height: 460px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > div:first-child {
    grid-column: 1 / -1;
  }

  .quote-layout {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

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

  .home-quote-pitch {
    position: static;
  }

  .quote-pitch {
    position: static;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 11px 16px;
  }

  .brand-text {
    max-width: 170px;
  }

  .brand-logo {
    width: 176px;
  }

  .hero {
    padding: 34px 16px 28px;
  }

  .hero h1 {
    font-size: 44px;
  }

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

  .proof-row span {
    width: 100%;
  }

  .proof-row,
  .sample-route-grid,
  .sample-credit,
  .build-grid,
  .material-library,
  .launch-grid,
  .system-item-grid,
  .production-checkline,
  .home-sample-steps,
  .values-preview-grid,
  .decision-grid,
  .production-stage-grid,
  .capability-columns,
  .responsibility-grid,
  .company-values-grid,
  .serve-list {
    grid-template-columns: 1fr;
  }

  .sample-route,
  .sample-route:last-child {
    grid-column: auto;
    min-height: 300px;
  }

  .sample-credit .button {
    width: 100%;
  }

  .solution-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .solution-card img {
    height: auto;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .solution-card > div {
    min-height: 320px;
  }

  .home-path-grid > a {
    grid-template-columns: 1fr;
  }

  .home-path-grid img {
    height: auto;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .home-path-grid a > div {
    min-height: 280px;
  }

  .page-hero {
    min-height: 620px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .page-hero > div {
    padding-right: 16px;
    padding-left: 16px;
  }

  .page-hero figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .material-guide-table article {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .material-photo {
    max-height: 240px;
  }

  .material-guide-table article > div {
    padding-left: 62px;
  }

  .material-guide-table strong {
    grid-column: auto;
  }

  .page-cta .button {
    width: 100%;
  }

  .form-grid,
  .packaging-choice-grid,
  .route-choice-grid,
  .home-route-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .product-feature-grid,
  .product-considerations,
  .sample-summary-grid,
  .related-product-grid {
    grid-template-columns: 1fr;
  }

  .quote-layout {
    padding-right: 16px;
    padding-left: 16px;
  }

  .project-form {
    padding: 20px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .choice-grid label > span {
    min-height: 90px;
  }

  .quality-story figure,
  .quality-story figure img {
    min-height: 360px;
  }

  .build-grid article {
    min-height: 0;
  }

  .launch-grid article:last-child {
    grid-column: auto;
  }

  .floating-note {
    font-size: 12px;
  }

  .note-one {
    left: 8px;
  }

  .note-two {
    right: 8px;
  }

  .section,
  .quote-section,
  .content-shell {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section h2,
  .quote-section h2 {
    font-size: 38px;
  }

  .intro-grid,
  .product-grid,
  .social-strip,
  .mini-socials {
    grid-template-columns: 1fr;
  }

  .product-category-anchor {
    display: grid;
    align-items: start;
  }

  .product-category-anchor p {
    text-align: left;
  }

  .process-list div {
    grid-template-columns: 1fr;
  }

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

  .factory-media img:first-child,
  .factory-media img {
    min-height: 260px;
  }

  .social-strip article {
    min-height: 360px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > div:first-child {
    grid-column: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .page-content {
    padding: 26px;
  }
}

/* Immersive home banner */
.home-hero-grand {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: calc(100svh - 128px);
  padding: 72px 6vw 58px;
  overflow: hidden;
  color: #fff;
  background: #0a0a0a;
}

.home-hero-grand::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.16);
}

.home-hero-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-grand .hero-copy {
  width: min(920px, 68vw);
}

.home-hero-grand .eyebrow {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(9, 9, 9, 0.52);
}

.home-hero-grand h1 {
  max-width: 900px;
  color: #fff;
  font-size: 92px;
  line-height: 0.9;
  text-wrap: balance;
}

.home-hero-grand .hero-lede {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.home-hero-grand .button {
  border-color: #fff;
  box-shadow: none;
}

.home-hero-grand .button.secondary {
  color: #fff;
  background: rgba(9, 9, 9, 0.5);
}

.home-hero-grand .button:hover {
  box-shadow: 3px 3px 0 #fff;
}

.home-hero-grand .proof-row {
  gap: 0;
  max-width: 760px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.home-hero-grand .proof-row span {
  min-height: 64px;
  padding: 3px 20px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: transparent;
}

.home-hero-grand .proof-row span:first-child {
  padding-left: 0;
  border-left: 0;
}

.home-hero-grand .proof-row strong {
  color: var(--coral);
  font-size: 25px;
}

.home-hero-grand .proof-row small {
  color: rgba(255, 255, 255, 0.72);
}

.home-hero-range {
  position: absolute;
  right: 4vw;
  bottom: 28px;
  display: flex;
  gap: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-hero-range span + span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

@media (max-width: 1200px) {
  .home-hero-grand h1 {
    font-size: 76px;
  }
}

@media (max-width: 980px) {
  .home-hero-grand {
    min-height: calc(100svh - 116px);
    padding: 64px 28px 52px;
  }

  .home-hero-grand .hero-copy {
    width: min(760px, 82vw);
  }

  .home-hero-grand h1 {
    font-size: 68px;
  }

  .home-hero-background {
    object-position: 58% center;
  }

  .home-hero-range {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-hero-grand {
    min-height: calc(100svh - 106px);
    padding: 34px 16px 28px;
  }

  .home-hero-grand::before {
    background: rgba(0, 0, 0, 0.34);
  }

  .home-hero-grand .hero-copy {
    width: 100%;
  }

  .home-hero-grand h1 {
    max-width: 530px;
    font-size: 48px;
    line-height: 0.92;
  }

  .home-hero-grand .hero-lede {
    max-width: 540px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.42;
  }

  .home-hero-grand .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 16px;
  }

  .home-hero-grand .hero-actions .button {
    width: auto;
    min-height: 46px;
    padding: 12px 9px;
    font-size: 12px;
  }

  .home-hero-grand .proof-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
    padding-top: 13px;
  }

  .home-hero-grand .proof-row span {
    width: auto;
    min-height: 56px;
    padding: 2px 9px;
  }

  .home-hero-grand .proof-row strong {
    font-size: 18px;
  }

  .home-hero-grand .proof-row small {
    font-size: 10px;
  }

  .home-hero-background {
    object-position: 63% center;
  }
}

@media (max-width: 390px) {
  .home-hero-grand h1 {
    font-size: 42px;
  }
}

/* Language switcher and RTL support */
.language-switcher {
  position: relative;
  z-index: 45;
  justify-self: end;
}

.language-toggle {
  display: inline-flex;
  width: 62px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 150ms ease;
}

.language-switcher.is-open .language-arrow {
  transform: rotate(225deg) translate(-2px, -2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 178px;
  gap: 3px;
  padding: 7px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.language-switcher.is-open .language-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 7px 9px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button:focus,
.language-menu button.is-active {
  background: var(--lime);
}

.language-menu strong {
  color: var(--berry);
  font-size: 11px;
}

.language-menu span {
  font-size: 13px;
  font-weight: 800;
}

html[lang="ar"] body,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] select,
html[lang="ar"] textarea {
  font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] .eyebrow,
html[lang="ar"] .button,
html[lang="ar"] .header-cta {
  font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .site-header::after {
  right: clamp(18px, 4vw, 54px);
  left: auto;
  box-shadow: -44px 0 0 var(--blue), -88px 0 0 var(--lime), -132px 0 0 var(--mint);
}

html[dir="rtl"] .sub-menu {
  right: 0;
  left: auto;
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .language-menu button {
  text-align: right;
}

html[dir="rtl"] .product-card span,
html[dir="rtl"] #spec-material,
html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"] {
  direction: ltr;
  unicode-bidi: isolate;
}

html[dir="rtl"] .product-card span,
html[dir="rtl"] #spec-material {
  text-align: right;
}

html[dir="rtl"] .menu .sub-menu a {
  padding-right: 14px;
  padding-left: 12px;
  border-right: 2px solid var(--blue);
  border-left: 0;
}

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

  .brand {
    grid-row: 1;
    grid-column: 1;
  }

  .language-switcher {
    grid-row: 1;
    grid-column: 2;
  }

  .nav-toggle {
    display: block;
    grid-row: 1;
    grid-column: 3;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-row: 2;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .site-nav.is-open {
    display: block;
  }

  .menu {
    display: grid;
    gap: 4px;
    padding: 10px 0 4px;
  }

  .menu a {
    border-radius: 8px;
    background: #fff;
  }

  .menu .sub-menu {
    position: static;
    width: auto;
    margin: 4px 0 8px;
    padding: 4px 0 4px 14px;
    border: 0;
    visibility: visible;
    opacity: 1;
    background: transparent;
    box-shadow: none;
    pointer-events: auto;
    transform: none;
  }

  .menu .sub-menu::before {
    display: none;
  }

  .menu .sub-menu a {
    padding-left: 14px;
    border-left: 2px solid var(--blue);
    background: var(--paper);
  }

  .header-cta {
    display: none;
  }

  html[dir="rtl"] .menu .sub-menu {
    padding-right: 14px;
    padding-left: 0;
  }

  html[dir="rtl"] .menu .sub-menu a {
    padding-right: 14px;
    padding-left: 12px;
    border-right: 2px solid var(--blue);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .language-toggle {
    width: 56px;
    height: 42px;
  }

  .language-menu {
    width: 166px;
  }

  html[lang="fr"] .brand-logo,
  html[lang="es"] .brand-logo,
  html[lang="ar"] .brand-logo {
    width: 158px;
  }
}
