/* Source: tokens.css */
:root {
  --ink: #141815;
  --paper: #f7f7f4;
  --surface: #ffffff;
  --muted: #5e655f;
  --line: #d9ddd8;
  --accent: #a77935;
  --accent-dark: #76501c;
  --success: #1f6a45;
  --error: #a23030;
  --radius: 6px;
  --content: min(1180px, calc(100% - 40px));
  --header-height: 76px;
  --shadow: 0 16px 40px rgb(15 20 16 / 12%);
}

/* Source: base.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  overflow-x: clip;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.content {
  width: var(--content);
  margin-inline: auto;
}

.section {
  padding-block: 72px;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-block: 0 1em;
}

main {
  min-height: 50vh;
}

/* Source: components.css */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  border-bottom: 1px solid var(--line);
}

#main {
  scroll-margin-top: 92px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  width: var(--content);
  min-height: var(--header-height);
  margin-inline: auto;
  gap: 22px;
}

.brand {
  display: flex;
  flex: 0 1 290px;
  flex-direction: column;
  justify-content: center;
  min-width: 180px;
  text-decoration: none;
}

.brand__name {
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.2;
}

.brand__descriptor {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  gap: 4px;
}

.site-navigation__link,
.product-menu > summary {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 12px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.site-navigation__link:hover,
.site-navigation__link[aria-current="page"],
.product-menu > summary:hover {
  background: var(--paper);
}

.site-navigation__link[aria-current="page"] {
  color: var(--accent-dark);
}

.product-menu {
  position: relative;
}

.product-menu > summary {
  cursor: pointer;
  list-style: none;
}

.product-menu > summary::-webkit-details-marker {
  display: none;
}

.product-menu > summary::after {
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.product-menu[open] > summary::after {
  transform: translateY(2px) rotate(225deg);
}

.product-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  width: 270px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-menu__link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: var(--radius);
  text-decoration: none;
}

.product-menu__link:hover,
.product-menu__link[aria-current="page"] {
  color: var(--accent-dark);
  background: var(--paper);
}

.language-control {
  display: inline-grid;
  flex: 0 0 auto;
  grid-template-columns: repeat(3, minmax(44px, auto));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.language-control a:first-child {
  border-radius: calc(var(--radius) - 1px) 0 0 calc(var(--radius) - 1px);
}

.language-control a:last-child {
  border-radius: 0 calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0;
}

.language-control a:focus-visible {
  position: relative;
  z-index: 1;
  outline: 0;
  box-shadow: inset 0 0 0 3px var(--accent);
}

.language-control a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding-inline: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.language-control a + a {
  border-left: 1px solid var(--line);
}

.language-control a[aria-current="true"] {
  color: var(--surface);
  background: var(--ink);
}

.menu-button {
  position: relative;
  display: none;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.menu-button span::before {
  transform: translateY(-6px);
}

.menu-button span::after {
  transform: translateY(4px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  color: var(--surface);
  background: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.page-intro {
  display: grid;
  align-content: center;
  min-height: 430px;
}

.page-intro__inner {
  max-width: 720px;
}

.page-intro h1 {
  margin-bottom: 20px;
}

.page-intro p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.075rem;
}

.site-footer {
  color: var(--surface);
  background: var(--ink);
  border-top: 4px solid var(--accent);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(460px, 1.2fr);
  width: var(--content);
  margin-inline: auto;
  padding-block: 52px;
  gap: 48px;
}

.site-footer__brand {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer__brand span {
  max-width: 38ch;
  color: #cbd0cb;
}

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

.site-footer__links {
  display: grid;
  align-content: start;
  gap: 4px;
}

.site-footer__links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #eef0ed;
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a[aria-current="page"] {
  color: #d6b77c;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

html.modal-open,
body.modal-open {
  overflow: hidden;
}

.gallery-dialog {
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid #68736b;
  border-radius: 6px;
  box-shadow: 0 18px 60px rgb(7 12 9 / 35%);
}

.gallery-dialog::backdrop {
  background: rgb(10 14 11 / 76%);
}

.gallery-dialog__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  min-width: 0;
}

.gallery-dialog__close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid #79837c;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.gallery-dialog__close:hover {
  color: var(--surface);
  background: var(--ink);
}

.gallery-dialog__media {
  display: grid;
  min-width: 0;
  min-height: 100%;
  place-items: center;
  background: #d9dfda;
}

.gallery-dialog__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 34px);
  object-fit: contain;
}

.gallery-dialog__content {
  min-width: 0;
  padding: 18px 32px 32px;
}

.gallery-dialog__languages {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding-right: 56px;
  flex-wrap: wrap;
  gap: 4px;
}

.gallery-dialog__languages a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 32px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.gallery-dialog__languages a:hover,
.gallery-dialog__languages a[aria-current="true"] {
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
}

.gallery-dialog__eyebrow {
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-dialog__content h2 {
  padding-right: 28px;
  font-size: 1.65rem;
  overflow-wrap: anywhere;
}

.gallery-dialog__facts {
  display: grid;
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.gallery-dialog__facts div {
  display: grid;
  grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  gap: 14px;
}

.gallery-dialog__facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.gallery-dialog__facts dd {
  min-width: 0;
  margin: 0;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.gallery-dialog__inquiry {
  max-width: 100%;
}

.evidence-dialog {
  width: min(1040px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid #68736b;
  border-radius: 6px;
  box-shadow: 0 18px 60px rgb(7 12 9 / 35%);
}

.evidence-dialog::backdrop {
  background: rgb(10 14 11 / 78%);
}

.evidence-dialog__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  max-height: min(90vh, 900px);
  overflow: auto;
}

.evidence-dialog__close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid #79837c;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.evidence-dialog__close:hover {
  color: var(--surface);
  background: var(--ink);
}

.evidence-dialog__close:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.evidence-dialog__media {
  display: grid;
  min-width: 0;
  min-height: 320px;
  place-items: center;
  background: #d8dfdb;
}

.evidence-dialog__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: min(90vh, 900px);
  object-fit: contain;
}

.evidence-dialog__content {
  align-self: center;
  min-width: 0;
  padding: 72px 30px 32px;
}

.evidence-dialog__content h2 {
  font-size: 1.55rem;
  overflow-wrap: anywhere;
}

.evidence-dialog__content p {
  color: var(--muted);
  line-height: 1.6;
}

.evidence-dialog__truth {
  margin-top: 22px;
  padding: 10px 0 10px 14px;
  border-left: 3px solid var(--accent);
  font-size: 0.8rem;
}

.evidence-dialog__truth[hidden] {
  display: none;
}

.form-field {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
}

.form-field[hidden] {
  display: none;
}

.form-field label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-field label span {
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 550;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid #b8beb9;
  border-radius: 4px;
}

.form-field input,
.form-field select {
  min-height: 46px;
}

.form-field textarea {
  min-height: 126px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent-dark);
  outline: 3px solid rgb(167 121 53 / 22%);
  outline-offset: 0;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.form-field small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.form-field__error {
  color: var(--error);
  font-size: 0.8rem;
  font-weight: 650;
}

.inquiry-error-summary,
.inquiry-alert,
.inquiry-noscript {
  margin: 0 0 20px;
  padding: 12px 14px;
  border-left: 4px solid var(--error);
  background: #fff3f1;
  color: #762424;
  font-size: 0.9rem;
}

.inquiry-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--success);
  font-size: 0.88rem;
  font-weight: 650;
}

.inquiry-error-summary[hidden],
.inquiry-alert[hidden],
.form-field__error[hidden] {
  display: none;
}

.inquiry-form button[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.trial-launch-status {
  border-bottom: 1px solid #d6d9d4;
  background: #f5f6f4;
  color: #39413c;
  font-size: 0.78rem;
  line-height: 1.5;
}

.trial-launch-status .content {
  padding-block: 8px;
}

.trial-media-disclosure {
  display: block;
  width: 100%;
  padding: 7px 9px;
  border-left: 3px solid var(--accent);
  background: #f5f6f4;
  color: #4e5651;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

.site-footer__trial {
  grid-column: 1 / -1;
  max-width: 78ch;
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgb(255 255 255 / 18%);
  color: inherit;
  font-size: 0.72rem;
  line-height: 1.5;
  opacity: 0.8;
}

/* Source: pages.css */
.home-hero {
  position: relative;
  display: grid;
  align-items: end;
  height: 65dvh;
  min-height: 520px;
  max-height: 680px;
  overflow: hidden;
  color: var(--surface);
  background-color: #202923;
  isolation: isolate;
}

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

/* About, design, and R&D trust sections */
#design-rd {
  scroll-margin-top: 92px;
}

.home-trust-band,
.about-section {
  background: var(--paper);
}

.home-trust-band--rd,
.about-section--products,
.about-section--preparation {
  background: #edf0ed;
  border-block: 1px solid var(--line);
}

.home-trust-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.about-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.rd-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(36px, 6vw, 84px);
}

.home-trust-layout--reverse .home-trust-media {
  order: 2;
}

.home-trust-media,
.about-media {
  min-width: 0;
  margin: 0;
}

.home-trust-media__trigger,
.about-media__trigger {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  padding: 0;
  overflow: clip;
  background: #d8dfdb;
  border: 0;
  border-radius: 6px;
  cursor: zoom-in;
}

.home-trust-media__trigger img,
.about-media__trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-trust-media__truth,
.about-media__truth {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.home-trust-layout__copy > :first-child,
.about-overview__copy > :first-child,
.rd-layout__copy > :first-child {
  margin-top: 0;
}

.home-trust-audience {
  margin-block: 22px 0;
  padding-top: 18px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.home-trust-products,
.home-rd-areas,
.about-audiences,
.about-products,
.rd-areas,
.rd-flow ol,
.about-preparation {
  padding: 0;
  list-style: none;
}

.home-trust-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.home-trust-products li {
  border-bottom: 1px solid var(--line);
}

.home-trust-products a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.home-trust-products a::after {
  content: "\2197";
  color: var(--accent);
}

.home-rd-areas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 26px;
  border-top: 1px solid var(--line);
}

.home-rd-areas li {
  min-height: 76px;
  padding: 14px 14px 14px 0;
  border-bottom: 1px solid var(--line);
}

.home-rd-areas li:nth-child(even) {
  padding-inline: 14px 0;
  border-left: 1px solid var(--line);
}

.home-rd-areas strong,
.home-rd-areas span {
  display: block;
}

.home-rd-areas span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.about-audiences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px auto 0;
  border-top: 1px solid var(--line);
}

.about-audiences li {
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--line);
}

.about-audiences li:nth-child(even) {
  padding-inline: 18px 0;
  border-left: 1px solid var(--line);
}

.about-audiences strong,
.about-audiences span {
  display: block;
}

.about-audiences span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.about-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-products li + li {
  border-left: 1px solid var(--line);
}

.about-products a {
  display: block;
  height: 100%;
  padding: 20px 16px;
  color: var(--ink);
  text-decoration: none;
}

.about-products strong,
.about-products span {
  display: block;
}

.about-products span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.about-factory {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-factory__media {
  min-width: 0;
}

.about-factory__copy {
  min-width: 0;
}

.about-factory__media .evidence-media {
  aspect-ratio: 16 / 10;
}

.about-factory__copy .text-link {
  margin-top: 22px;
}

.rd-areas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.rd-areas li {
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--line);
}

.rd-areas li:nth-child(even) {
  padding-inline: 18px 0;
  border-left: 1px solid var(--line);
}

.rd-areas strong,
.rd-areas span {
  display: block;
}

.rd-areas span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.rd-flow {
  margin-top: clamp(42px, 6vw, 72px);
}

.rd-flow ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 24px 0 0;
  counter-reset: rd-stage;
  border-top: 1px solid var(--line);
}

.rd-flow li {
  min-height: 146px;
  padding: 18px;
  counter-increment: rd-stage;
  border-bottom: 1px solid var(--line);
}

.rd-flow li + li {
  border-left: 1px solid var(--line);
}

.rd-flow li::before {
  content: "0" counter(rd-stage);
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.rd-flow strong,
.rd-flow span {
  display: block;
}

.rd-flow span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.about-preparation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 26px 0 0;
  border-top: 1px solid var(--line);
}

.about-preparation li {
  padding: 15px 16px 15px 0;
  border-bottom: 1px solid var(--line);
}

.about-preparation li:nth-child(even) {
  padding-inline: 16px 0;
  border-left: 1px solid var(--line);
}

/* Factory evidence, process records, and product structures */
.home-factory-preview,
.factory-film,
.factory-records--packing,
.product-structure {
  background: #edf0ed;
  border-block: 1px solid var(--line);
}

.home-factory-preview__lead {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  align-items: stretch;
  margin-top: 30px;
  gap: 32px;
}

.home-factory-preview__video,
.factory-film__record__visual,
.product-structure__process-media {
  min-width: 0;
  margin: 0;
}

.home-factory-preview__video video,
.factory-film__record__visual video,
.product-structure__process-media video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #18201b;
  object-fit: cover;
}

.home-factory-preview__video .evidence-media__caption,
.factory-film__record__visual .evidence-media__caption,
.product-structure__process-media .evidence-media__caption {
  display: grid;
  padding: 12px 0;
  gap: 3px;
}

.home-factory-preview__video .evidence-media__caption span,
.factory-film__record__visual .evidence-media__caption span,
.product-structure__process-media .evidence-media__caption span {
  color: var(--muted);
  font-size: 0.82rem;
}

.home-factory-preview__stages {
  padding: 22px 24px;
  color: var(--surface);
  background: var(--ink);
}

.home-factory-preview__stages h3 {
  margin: 0 0 18px;
  color: #d6b77c;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.home-factory-preview__stages ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #526158;
}

.home-factory-preview__stages li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 52px;
  align-items: center;
  border-bottom: 1px solid #526158;
  gap: 10px;
}

.home-factory-preview__stages li span {
  color: #d6b77c;
  font-size: 0.74rem;
}

.home-factory-preview__images,
.factory-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  gap: 18px;
}

.home-factory-preview__images figure,
.factory-media {
  min-width: 0;
  margin: 0;
}

.home-factory-preview__image,
.factory-media__visual,
.factory-process__visual {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: clip;
  background: #d8dfdb;
  border-radius: 4px;
}

.home-factory-preview__image img,
.factory-media__visual img,
.factory-process__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-factory-preview__images figcaption {
  display: grid;
  padding-top: 10px;
  gap: 4px;
}

.home-factory-preview__images figcaption span {
  color: var(--muted);
  font-size: 0.76rem;
}

.factory-hero {
  min-height: 380px;
  color: var(--surface);
  background: #202a24;
}

.factory-hero .page-intro__eyebrow {
  color: #d6b77c;
}

.factory-hero p {
  color: #d7ddd8;
}

.factory-media__body {
  padding-top: 14px;
}

.factory-media__body h3,
.factory-media__body p {
  margin: 0;
}

.factory-media__body p {
  margin-top: 6px;
  color: var(--muted);
}

.factory-media__metadata {
  display: grid;
  margin: 14px 0 0;
  border-top: 1px solid var(--line);
}

.factory-media__metadata div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  padding-block: 7px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}

.factory-media__metadata dt,
.factory-media__metadata dd {
  margin: 0;
  font-size: 0.76rem;
  overflow-wrap: anywhere;
}

.factory-media__metadata dt {
  color: var(--muted);
}

.factory-film__layout {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(36px, 6vw, 80px);
}

.factory-process-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.factory-process {
  display: grid;
  grid-template-columns: 58px minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: start;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}

.factory-process__number {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 750;
}

.factory-process__copy h3 {
  margin: 5px 0 8px;
}

.factory-process__copy > p:not(.item-kicker) {
  color: var(--muted);
}

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

.product-structure__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: start;
  margin-top: 30px;
  gap: clamp(34px, 5vw, 68px);
}

.product-structure__diagram {
  min-width: 0;
  margin: 0;
}

.product-structure__diagram-trigger {
  display: block;
  aspect-ratio: 8 / 5;
  overflow: clip;
  background: #d8dfdb;
  border-radius: 4px;
}

.product-structure__diagram-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-structure__details > h3,
.product-structure__options h3,
.product-structure__process > h3 {
  font-size: 0.88rem;
  text-transform: uppercase;
}

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

.product-structure__parts li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
  gap: 14px;
}

.product-structure__marker {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 750;
}

.product-structure__parts strong,
.product-structure__parts p {
  display: block;
  margin: 0;
}

.product-structure__parts p,
.product-structure__options li {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.product-structure__options {
  margin-top: 28px;
}

.product-structure__options ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.product-structure__process {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.product-structure__process-media {
  max-width: 820px;
  margin-top: 18px;
}

/* Style detail catalog, media viewer, and construction */
.style-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  align-items: center;
  padding-block: 38px;
  gap: clamp(34px, 6vw, 78px);
}

.style-detail-hero__media {
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8dfdb;
  border-radius: 6px;
}

.style-detail-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-detail-hero__copy {
  max-width: 500px;
}

.style-detail-hero__copy .eyebrow {
  margin-bottom: 13px;
  color: var(--accent-dark);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.style-detail-hero__copy h1 {
  font-size: 2.75rem;
  overflow-wrap: anywhere;
}

.style-detail-hero__copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin-top: 16px;
  color: var(--muted);
}

.style-detail-hero__copy .text-link {
  margin-top: 24px;
}

.style-media,
.style-structure {
  background: #edf0ed;
  border-block: 1px solid var(--line);
}

.style-media__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 210px);
  align-items: start;
  margin-top: 30px;
  gap: 18px;
}

.style-media__main {
  min-width: 0;
  margin: 0;
}

.style-media__open {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  background: #d8dfdb;
  border: 0;
  border-radius: 6px;
  cursor: zoom-in;
}

.style-media__open img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-media__main > figcaption {
  display: grid;
  min-height: 72px;
  padding-top: 13px;
  gap: 4px;
}

.style-media__main > figcaption span {
  color: var(--muted);
  font-size: .86rem;
}

.style-media__rail {
  display: grid;
  max-height: min(720px, 72vw);
  padding-right: 5px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  gap: 10px;
}

.style-media__thumbnail,
.style-media__placeholder {
  display: grid;
  min-width: 0;
  padding: 0;
  grid-template-rows: auto minmax(34px, auto);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid #c6cdc7;
  border-radius: 5px;
  overflow: hidden;
}

.style-media__thumbnail {
  cursor: pointer;
}

.style-media__thumbnail[aria-pressed="true"] {
  border-color: var(--accent-dark);
  box-shadow: inset 0 0 0 1px var(--accent-dark);
}

.style-media__thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.style-media__thumbnail span,
.style-media__placeholder span {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 7px 9px;
  font-size: .74rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.style-media__placeholder {
  min-height: 118px;
  align-content: end;
  color: #59635c;
  background: #e1e6e2;
  border-style: dashed;
}

.style-options__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.style-options__grid > div {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(110px, .38fr) minmax(0, 1fr);
  padding: 17px 18px 17px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}

.style-options__grid > div:nth-child(even) {
  padding-inline: 18px 0;
  border-left: 1px solid var(--line);
}

.style-options__grid dt,
.style-options__grid dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.style-options__grid dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
}

.style-options__grid dd {
  font-size: .9rem;
}

.style-structure__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: start;
  margin-top: 30px;
  gap: clamp(34px, 5vw, 68px);
}

.style-structure__diagram {
  display: block;
  min-width: 0;
  width: 100%;
  aspect-ratio: 8 / 5;
  padding: 0;
  overflow: hidden;
  background: #d8dfdb;
  border: 1px solid #c6cdc7;
  border-radius: 6px;
  cursor: zoom-in;
}

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

.style-structure__details h3 {
  font-size: .86rem;
  text-transform: uppercase;
}

.style-structure__parts {
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #bfc7c1;
}

.style-structure__parts li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  padding-block: 14px;
  border-bottom: 1px solid #cbd2cc;
  gap: 14px;
}

.style-structure__parts li > span {
  color: var(--accent-dark);
  font-size: .76rem;
  font-weight: 800;
}

.style-structure__parts strong,
.style-structure__parts p {
  margin: 0;
}

.style-structure__parts p {
  margin-top: 4px;
  color: var(--muted);
  font-size: .84rem;
}

.style-inquiry-cta {
  color: var(--surface);
  background: #26352d;
}

.style-inquiry-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.style-inquiry-cta__inner p {
  max-width: 68ch;
  margin-top: 10px;
  color: #d4ddd6;
}

.style-inquiry-cta .button {
  flex: 0 0 auto;
  color: var(--ink);
  background: #e4bf77;
  border-color: #e4bf77;
}

.style-media-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--surface);
  background: #101411;
  border: 0;
}

.style-media-dialog::backdrop {
  background: rgb(8 11 9 / 92%);
}

.style-media-dialog__panel {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 24px clamp(62px, 8vw, 116px);
  place-items: center;
}

.style-media-dialog figure {
  display: grid;
  max-width: min(1260px, 100%);
  max-height: calc(100dvh - 48px);
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
}

.style-media-dialog figure img {
  display: block;
  min-width: 0;
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 132px);
  object-fit: contain;
}

.style-media-dialog figcaption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  color: #d9e0da;
  gap: 4px 22px;
}

.style-media-dialog figcaption strong,
.style-media-dialog figcaption span {
  min-width: 0;
}

.style-media-dialog figcaption > span:not([data-style-media-dialog-count]) {
  grid-column: 1;
  color: #aeb9b1;
}

.style-media-dialog [data-style-media-dialog-count] {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: #d9e0da;
}

.style-media-dialog__close,
.style-media-dialog__previous,
.style-media-dialog__next {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: var(--surface);
  background: rgb(30 37 32 / 88%);
  border: 1px solid #566159;
  border-radius: 50%;
  cursor: pointer;
}

.style-media-dialog__close {
  top: 20px;
  right: 20px;
  font-size: 1.7rem;
}

.style-media-dialog__previous,
.style-media-dialog__next {
  top: 50%;
  font-size: 2rem;
  transform: translateY(-50%);
}

.style-media-dialog__previous {
  left: 16px;
}

.style-media-dialog__next {
  right: 16px;
}

.style-media__thumbnail:focus-visible,
.style-media__open:focus-visible,
.style-structure__diagram:focus-visible,
.style-media-dialog button:focus-visible {
  outline: 3px solid #d7a955;
  outline-offset: 3px;
}

.home-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgb(8 13 10 / 66%);
  content: "";
}

.home-hero__content {
  padding-block: 76px 68px;
}

.home-hero__eyebrow,
.section-intro__eyebrow,
.item-kicker {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero__eyebrow {
  color: #e1c58d;
}

.home-hero h1 {
  max-width: 790px;
  font-size: 3.5rem;
  overflow-wrap: anywhere;
}

.home-hero__body {
  max-width: 650px;
  margin-top: 22px;
  color: #eef1ed;
  font-size: 1.1rem;
}

.home-hero__region {
  max-width: 650px;
  margin-top: 14px;
  padding-left: 12px;
  color: #f2dba9;
  font-size: 0.94rem;
  font-weight: 650;
  border-left: 2px solid #e4bf77;
}

.home-hero__region[hidden] {
  display: none;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 12px;
}

.home-hero .button {
  color: var(--ink);
  background: #e4bf77;
  border-color: #e4bf77;
}

.home-hero .button:hover {
  color: var(--surface);
  background: var(--ink);
  border-color: var(--surface);
}

.home-hero .button--secondary {
  color: var(--surface);
  background: rgb(8 13 10 / 70%);
  border-color: #dfe5df;
}

.proof-strip {
  color: #edf2ee;
  background: #26352d;
  border-bottom: 1px solid #45574c;
}

.proof-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-block: 0;
  padding-block: 22px;
  list-style: none;
}

.proof-strip li {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.proof-strip li:first-child {
  padding-left: 0;
}

.proof-strip li + li {
  border-left: 1px solid #526158;
}

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

#core-products {
  scroll-margin-top: 92px;
}

.home-section--styles {
  background: #e9eeee;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 36px;
}

.section-intro h2 {
  overflow-wrap: anywhere;
}

.section-intro > p:last-child {
  max-width: 65ch;
  margin-top: 14px;
  color: var(--muted);
}

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

.section-intro-row .section-intro {
  margin-bottom: 0;
}

.section-link {
  flex: 0 0 auto;
  margin-bottom: 2px;
}

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

.product-card,
.style-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: clip;
}

.product-card[data-context-match="true"],
.style-card[data-context-match="true"],
.exterior-item[data-context-match="true"] {
  box-shadow: inset 0 0 0 2px #8f6a28;
}

.product-card__media,
.style-card__media,
.exterior-item__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: clip;
  background: #d8ded9;
}

.product-card__media img,
.style-card__media img,
.exterior-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body,
.style-card__body {
  padding: 24px;
}

.product-card h3,
.style-card h3,
.exterior-item h3,
.audience-item h3 {
  overflow-wrap: anywhere;
}

.product-card__body > p:not(.item-kicker) {
  min-height: 5.1em;
  margin-top: 12px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 44px;
  color: var(--accent-dark);
  font-weight: 750;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration: none;
  gap: 8px;
}

.text-link:hover {
  color: var(--ink);
  text-decoration: underline;
}

.style-card h3 a {
  text-decoration: none;
}

.style-card__meta {
  display: grid;
  margin: 18px 0 0;
  gap: 8px;
}

.style-card__meta div {
  display: grid;
  grid-template-columns: minmax(86px, 0.45fr) minmax(0, 1fr);
  gap: 10px;
}

.style-card__meta dt {
  color: var(--muted);
  font-size: 0.8rem;
}

.style-card__meta dd {
  min-width: 0;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.exterior-band {
  background: #dde3dc;
  border-block: 1px solid #c8d0c8;
}

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

.exterior-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr);
  min-width: 0;
  padding-top: 24px;
  border-top: 2px solid #89968c;
  gap: 24px;
}

.exterior-item__media {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
}

.exterior-item__body {
  min-width: 0;
}

.exterior-item__body p {
  margin-top: 12px;
  color: #4c554f;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 72px;
}

.proof-layout .section-intro {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.proof-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.proof-topics li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 112px;
  padding: 22px 18px;
  border-bottom: 1px solid var(--line);
  gap: 10px;
}

.proof-topics li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.proof-topics span {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.proof-topics strong {
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.process-band {
  color: #edf1ed;
  background: #1e2822;
}

.process-band .section-intro__eyebrow,
.process-band .text-link {
  color: #dcbe82;
}

.process-band .section-intro > p:last-child {
  color: #c8d0ca;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #526057;
}

.process-steps li {
  min-width: 0;
  min-height: 170px;
  padding: 24px 22px 16px;
}

.process-steps li + li {
  border-left: 1px solid #526057;
}

.process-step__number {
  color: #dcbe82;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.process-steps li > p:last-child {
  overflow-wrap: anywhere;
}

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

.audience-item {
  min-width: 0;
  padding: 28px 0 8px;
  border-top: 3px solid var(--accent);
}

.audience-item p {
  max-width: 52ch;
  margin-top: 14px;
  color: var(--muted);
}

.inquiry-band {
  color: var(--surface);
  background: #8a5f27;
}

.inquiry-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.inquiry-band h2 {
  max-width: 760px;
  overflow-wrap: anywhere;
}

.inquiry-band p {
  max-width: 65ch;
  margin-top: 14px;
  color: #fff5e5;
}

.inquiry-band .button {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--surface);
  border-color: var(--surface);
}

.not-found-page {
  min-height: 64vh;
  background: var(--paper);
}

.not-found-page__code {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.not-found-page h1 {
  max-width: 940px;
  margin-top: 10px;
  font-size: 2.4rem;
  overflow-wrap: anywhere;
}

.not-found-page__languages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.not-found-language {
  min-width: 0;
  padding: 28px 28px 28px 0;
}

.not-found-language + .not-found-language {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.not-found-language h2 {
  font-size: 1.08rem;
}

.not-found-language p {
  min-height: 4.8em;
  margin-top: 12px;
  color: var(--muted);
}

.not-found-language nav {
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  gap: 8px 18px;
}

.not-found-language a {
  min-height: 44px;
  color: var(--accent-dark);
  font-weight: 700;
  line-height: 44px;
}

.inquiry-page {
  min-height: calc(100vh - var(--header-height));
  background: var(--paper);
}

.inquiry-page__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.inquiry-intro {
  padding-top: 18px;
}

.inquiry-intro__eyebrow {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.inquiry-intro h1 {
  max-width: 12ch;
  font-size: 2.65rem;
  overflow-wrap: anywhere;
}

.inquiry-intro__body {
  max-width: 44ch;
  margin: 22px 0 14px;
  color: #303732;
  font-size: 1.08rem;
}

.inquiry-intro > p:last-of-type {
  max-width: 52ch;
  color: var(--muted);
}

.inquiry-preparation {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.inquiry-preparation h2 {
  font-size: 1.05rem;
}

.inquiry-preparation ul {
  display: grid;
  gap: 9px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.inquiry-preparation li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.inquiry-preparation li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
}

.inquiry-form-panel {
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgb(20 24 21 / 8%);
}

.inquiry-form-panel__heading {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.inquiry-form-panel__heading h2 {
  font-size: 1.45rem;
}

.inquiry-form-panel__heading p {
  max-width: 62ch;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

.inquiry-business-fields {
  min-width: 0;
  margin: 28px 0 0;
  padding: 26px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.inquiry-business-fields[hidden],
.inquiry-style-field[hidden] {
  display: none;
}

.inquiry-business-fields legend {
  margin-bottom: 18px;
  padding: 0;
  font-size: 1rem;
  font-weight: 750;
}

.inquiry-form__footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

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

.inquiry-form__footer .button {
  flex: 0 0 auto;
}

.inquiry-form__footer p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Secure customer order tracking */
.tracking-page {
  min-height: calc(100vh - var(--header-height));
  padding-block: clamp(54px, 7vw, 92px);
  background: var(--paper);
}

.tracking-page [hidden] {
  display: none !important;
}

.tracking-page__inner,
.tracking-intro,
.tracking-access,
.tracking-order,
.tracking-section {
  min-width: 0;
}

.tracking-intro {
  max-width: 780px;
  margin-bottom: 34px;
}

.tracking-intro__eyebrow {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.tracking-intro h1 {
  font-size: 3.8rem;
  overflow-wrap: anywhere;
}

.tracking-intro__lead {
  max-width: 65ch;
  margin: 18px 0 0;
  color: #303732;
  font-size: 1.08rem;
}

.tracking-intro__privacy {
  max-width: 70ch;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.tracking-access {
  max-width: 800px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgb(20 24 21 / 8%);
}

.tracking-access[hidden],
.tracking-form[hidden],
.tracking-expired[hidden],
.tracking-loading[hidden],
.tracking-order[hidden],
.tracking-shipment[hidden],
.tracking-status[hidden],
.tracking-alert[hidden] {
  display: none;
}

.tracking-access__heading {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.tracking-access__heading h2,
.tracking-section h2,
.tracking-summary h2 {
  font-size: 1.4rem;
}

.tracking-access__heading p,
.tracking-form__code-heading p,
.tracking-expired p {
  max-width: 62ch;
  margin: 8px 0 0;
  color: var(--muted);
}

.tracking-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.tracking-form--code {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.45fr);
  gap: 22px;
  align-items: end;
}

.tracking-form__code-heading {
  grid-column: 1 / -1;
}

.tracking-form__code-heading h3,
.tracking-expired h3 {
  font-size: 1.15rem;
}

.tracking-form__code-field input {
  font-variant-numeric: tabular-nums;
}

.tracking-form__actions,
.tracking-order__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tracking-page .button--secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: #aeb5af;
}

.tracking-page .button--secondary:hover {
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
}

.tracking-status,
.tracking-alert {
  max-width: 800px;
  margin-bottom: 18px;
  padding: 13px 15px;
  border-left: 4px solid var(--success);
  background: #edf5f0;
  color: #17482f;
}

.tracking-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-left-color: var(--error);
  background: #faeeee;
  color: #7d2424;
}

.tracking-alert .button {
  flex: 0 0 auto;
}

.tracking-alert:focus,
.tracking-expired:focus,
.tracking-summary:focus {
  outline: 3px solid #b57724;
  outline-offset: 3px;
}

.tracking-expired {
  padding-block: 8px;
}

.tracking-expired .button {
  margin-top: 22px;
}

.tracking-loading {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
}

.tracking-loading__indicator {
  width: 18px;
  height: 18px;
  border: 2px solid var(--line);
  border-top-color: var(--accent-dark);
  border-radius: 50%;
  animation: tracking-spin 800ms linear infinite;
}

@keyframes tracking-spin {
  to { transform: rotate(360deg); }
}

.tracking-order {
  display: grid;
  gap: 34px;
}

.tracking-order__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.tracking-order__toolbar > p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.tracking-summary {
  padding: clamp(24px, 4vw, 38px);
  background: #1f2b24;
  border-radius: var(--radius);
  color: var(--surface);
}

.tracking-summary__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 0;
}

.tracking-summary__facts div {
  min-width: 0;
  padding-top: 15px;
  border-top: 1px solid rgb(255 255 255 / 24%);
}

.tracking-summary__facts dt,
.tracking-summary__facts dd,
.tracking-shipment__facts dt,
.tracking-shipment__facts dd {
  margin: 0;
}

.tracking-summary__facts dt {
  margin-bottom: 7px;
  color: #c8d2cc;
  font-size: 0.76rem;
  font-weight: 700;
}

.tracking-summary__facts dd {
  font-size: 1rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.tracking-section {
  padding-top: 6px;
}

.tracking-section__heading {
  margin-bottom: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.tracking-timeline__list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(112px, 1fr);
  gap: 0;
  margin: 0;
  padding: 2px 0 14px;
  overflow-x: auto;
  list-style: none;
  scrollbar-gutter: stable;
}

.tracking-timeline__list:focus-visible {
  outline: 3px solid #b57724;
  outline-offset: 5px;
}

.tracking-timeline__item {
  position: relative;
  min-width: 0;
  padding-right: 12px;
}

.tracking-timeline__item::before {
  position: absolute;
  top: 16px;
  right: 0;
  left: 32px;
  height: 2px;
  background: var(--line);
  content: "";
}

.tracking-timeline__item[data-stage-state="completed"]::before,
.tracking-timeline__item[data-stage-state="in_progress"]::before {
  background: var(--success);
}

.tracking-timeline__marker {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.tracking-timeline__item[data-stage-state="completed"] .tracking-timeline__marker {
  color: var(--success);
  border-color: var(--success);
}

.tracking-timeline__item[data-stage-state="in_progress"] .tracking-timeline__marker {
  color: var(--surface);
  background: var(--success);
  border-color: var(--success);
}

.tracking-timeline__item[data-stage-state="not_applicable"] .tracking-timeline__marker {
  border-style: dashed;
  color: #737c76;
  background: #eef1ef;
}

.tracking-timeline__item[aria-current="step"] .tracking-timeline__marker {
  box-shadow: 0 0 0 4px rgb(39 105 73 / 18%);
}

.tracking-timeline__body {
  display: grid;
  gap: 4px;
  margin-top: 11px;
  padding-right: 8px;
}

.tracking-timeline__body strong {
  font-size: 0.82rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.tracking-timeline__body span,
.tracking-timeline__body time {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.tracking-update {
  min-width: 0;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tracking-update__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.tracking-update__heading h3 {
  font-size: 1rem;
}

.tracking-update__heading time {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.75rem;
}

.tracking-update__note {
  margin: 14px 0 0;
  color: #303732;
  overflow-wrap: anywhere;
}

.tracking-update__estimate {
  margin: 15px 0 0;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

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

.tracking-media__item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tracking-media__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tracking-media__item figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.tracking-empty {
  margin: 0;
  padding: 18px 0;
  color: var(--muted);
}

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

.tracking-shipment__facts div {
  min-width: 0;
  padding: 17px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tracking-shipment__facts dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.tracking-shipment__facts dd {
  font-weight: 700;
  overflow-wrap: anywhere;
}

.tracking-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 28px;
  background: #e9efeb;
  border-left: 4px solid var(--success);
}

.tracking-contact h2 {
  font-size: 1.2rem;
}

.tracking-contact p {
  max-width: 68ch;
  margin: 7px 0 0;
  color: var(--muted);
}

.tracking-contact__person {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.tracking-contact__person[hidden],
.tracking-contact__person [hidden] {
  display: none;
}

.tracking-contact .button {
  flex: 0 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .tracking-loading__indicator { animation: none; }
}

.product-hero {
  display: grid;
  min-height: min(720px, calc(100svh - 132px));
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  padding-block: 44px;
  gap: 52px;
}

.product-hero__copy,
.product-hero__visual {
  min-width: 0;
}

.product-hero__eyebrow {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-hero h1 {
  max-width: 680px;
  font-size: 3.15rem;
  overflow-wrap: anywhere;
}

.product-hero__summary {
  max-width: 58ch;
  margin-top: 20px;
  color: #465049;
  font-size: 1.06rem;
}

.product-hero__facts {
  display: grid;
  margin: 26px 0;
  border-block: 1px solid var(--line);
}

.product-hero__facts div {
  display: grid;
  grid-template-columns: minmax(112px, 0.36fr) minmax(0, 1fr);
  padding-block: 14px;
  gap: 18px;
}

.product-hero__facts div + div {
  border-top: 1px solid var(--line);
}

.product-hero__facts dt,
.product-style__meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-hero__facts dd,
.product-style__meta dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.product-hero__media {
  display: block;
  aspect-ratio: 4 / 5;
  max-height: 610px;
  overflow: clip;
  background: #d6dcd7;
  border-radius: 4px;
}

.product-hero__media img,
.product-style__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-concept-label {
  margin: 10px 0 0;
  color: #5e4930;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.4;
}

.product-gallery-section {
  background: #e8ece9;
  border-block: 1px solid #cbd2cd;
}

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

.product-style {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: clip;
}

.product-style__media {
  display: block;
  /* Source gallery media stays 4:3 so wide garage and driveway products remain inspectable. */
  aspect-ratio: 4 / 3;
  overflow: clip;
  background: #d6dcd7;
}

.product-style__body {
  padding: 24px;
}

.product-style h3 {
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.product-style__meta {
  display: grid;
  margin: 18px 0 22px;
  gap: 8px;
}

.product-style__meta div {
  display: grid;
  grid-template-columns: minmax(92px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
}

.product-style__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-section-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 64px;
}

.product-section-layout > .section-intro {
  margin-bottom: 0;
}

.product-option-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid #7f8d83;
}

.product-option-group {
  min-width: 0;
  padding: 22px 18px 8px;
}

.product-option-group + .product-option-group {
  border-left: 1px solid var(--line);
}

.product-option-group__number {
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-option-group h3 {
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.product-option-group > p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-care {
  color: #edf1ed;
  background: #253029;
}

.product-care .section-intro {
  margin-bottom: 30px;
}

.product-care__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #647168;
}

.product-care__grid article {
  min-width: 0;
  padding: 24px 24px 8px;
}

.product-care__grid article:first-child {
  padding-left: 0;
}

.product-care__grid article + article {
  border-left: 1px solid #647168;
}

.product-care__grid h3 {
  color: #e0c48d;
  font-size: 1rem;
}

.product-care__grid p {
  margin-top: 12px;
  color: #d1d8d2;
}

.product-faq {
  background: var(--paper);
}

.product-faq__list {
  border-top: 1px solid var(--line);
}

.product-faq__item {
  border-bottom: 1px solid var(--line);
}

.product-faq__item summary {
  position: relative;
  min-height: 58px;
  padding: 17px 44px 17px 0;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
  overflow-wrap: anywhere;
}

.product-faq__item summary::-webkit-details-marker {
  display: none;
}

.product-faq__item summary::after {
  position: absolute;
  top: 17px;
  right: 4px;
  content: "+";
  font-size: 1.2rem;
  font-weight: 500;
}

.product-faq__item[open] summary::after {
  content: "−";
}

.product-faq__item p {
  max-width: 66ch;
  padding: 0 44px 18px 0;
  color: var(--muted);
}

.product-trade {
  background: #dce3dd;
  border-block: 1px solid #c4cdc6;
}

.product-trade__inner,
.product-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.product-trade__inner p,
.product-cta__inner p {
  max-width: 68ch;
  margin-top: 12px;
}

.product-trade__inner .text-link,
.product-cta__inner .button {
  flex: 0 0 auto;
}

.product-cta {
  color: var(--surface);
  background: #8a5f27;
}

.product-cta__inner p {
  color: #fff5e5;
}

.product-cta__inner .button {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--surface);
}

@media (min-width: 981px) and (max-height: 800px) {
  .product-hero {
    min-height: auto;
    padding-block: 20px;
    gap: 36px;
  }

  .product-hero h1 {
    font-size: 2.7rem;
  }

  .product-hero__summary {
    margin-top: 12px;
  }

  .product-hero__facts {
    margin: 16px 0;
  }

  .product-hero__facts div {
    padding-block: 9px;
  }

  .product-hero__media {
    max-height: 500px;
  }

  .product-gallery-section {
    padding-top: 24px;
  }
}

.style-library {
  padding-block: 34px 76px;
  background: #edf0ed;
}

.style-library__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 32px;
}

.style-library__header h1 {
  flex: 0 0 auto;
  font-size: 2rem;
}

.style-library__header p {
  max-width: 62ch;
  color: var(--muted);
  text-align: right;
}

.style-filters {
  display: grid;
  padding-block: 18px;
  border-block: 1px solid #aeb8b0;
  gap: 16px;
}

.style-filters fieldset {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 0;
  grid-template-columns: 82px minmax(0, 1fr);
  border: 0;
  gap: 12px;
}

.style-filters legend {
  float: left;
  width: 82px;
  padding: 8px 0 0;
  color: #4b554e;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.style-filters__buttons {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  grid-column: 2;
  width: 100%;
  gap: 6px;
}

.style-filters button {
  min-height: 38px;
  padding: 7px 11px;
  color: #354038;
  background: var(--surface);
  border: 1px solid #a8b2aa;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
}

.style-filters button:hover,
.style-filters button[aria-pressed="true"] {
  color: var(--surface);
  background: #26352d;
  border-color: #26352d;
}

.style-library__status {
  margin-block: 18px 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

.style-library__status strong {
  color: var(--ink);
}

.style-library__empty {
  margin-block: 48px;
  padding-block: 28px;
  color: var(--muted);
  text-align: center;
  border-block: 1px solid var(--line);
}

.style-library__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.style-library-card {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: clip;
}

.style-library-card[hidden] {
  display: none;
}

.style-library-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: clip;
  background: #d8ded9;
}

.style-library-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-library-card__body {
  display: flex;
  min-width: 0;
  padding: 17px;
  flex-direction: column;
}

.style-library-card__product {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.style-library-card h2 {
  margin-top: 6px;
  font-size: 1.02rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.style-library-card__id {
  margin-top: 9px;
  font-size: 0.8rem;
  font-weight: 750;
}

.style-library-card__id span {
  margin-right: 5px;
  color: var(--muted);
  font-weight: 500;
}

.style-library-card__tags {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 0;
  padding: 0;
  color: #455048;
  font-size: 0.76rem;
  list-style: none;
  gap: 3px 10px;
}

.style-library-card__tags li + li::before {
  margin-right: 10px;
  color: #8d978f;
  content: "·";
}

.style-library-card__truth {
  margin-top: 12px;
  color: #654d2f;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.4;
}

.style-library-card__details {
  margin-top: 14px;
  border-block: 1px solid var(--line);
}

.js .style-library-card__details {
  display: none;
}

.style-library-card__details summary {
  min-height: 44px;
  padding-block: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 750;
}

.style-library-card__details dl {
  display: grid;
  margin: 0 0 14px;
  gap: 10px;
}

.style-library-card__details dl div {
  display: grid;
  gap: 3px;
}

.style-library-card__details dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.style-library-card__details dd {
  min-width: 0;
  margin: 0;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.style-library-card__details .button {
  width: 100%;
  margin-bottom: 14px;
}

.style-library-card__actions {
  display: grid;
  margin-top: auto;
  padding-top: 16px;
  gap: 8px;
}

.style-library-card__actions .text-link,
.style-library-card__actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.business-hero {
  display: grid;
  min-height: 410px;
  align-items: center;
  padding-block: 46px;
  background: #e4e9e5;
  border-bottom: 1px solid #c8d0ca;
}

.business-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 56px;
}

.business-hero h1 {
  max-width: 830px;
  font-size: 3rem;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.projects-page {
  background: var(--paper);
}

.projects-page__intro {
  max-width: 720px;
  margin-bottom: 34px;
}

.projects-page__intro p {
  margin-top: 12px;
  color: var(--muted);
}

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

.project-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: clip;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card__body {
  padding: 22px;
}

.project-card__location {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.project-card h2 {
  margin-top: 8px;
  font-size: 1.2rem;
}

.project-card h2 + p {
  margin-top: 8px;
  color: var(--muted);
}

.project-card dl {
  display: grid;
  margin: 18px 0 0;
  gap: 8px;
}

.project-card dl div {
  display: grid;
  grid-template-columns: minmax(80px, 0.6fr) minmax(0, 1fr);
  gap: 10px;
}

.project-card dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.project-card dd {
  min-width: 0;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.business-hero__body {
  max-width: 74ch;
  margin-top: 18px;
  color: #475149;
  font-size: 1.04rem;
}

.business-hero .button,
.business-cta .button {
  flex: 0 0 auto;
}

.business-audiences {
  padding-block: 24px;
  color: #edf2ee;
  background: #26352d;
}

.business-audiences__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1.52fr);
  align-items: center;
  gap: 38px;
}

.business-audiences h2 {
  font-size: 1.05rem;
}

.business-audiences p {
  margin-top: 5px;
  color: #cdd6cf;
  font-size: 0.84rem;
}

.business-audiences ul {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid #526158;
}

.business-audiences li {
  display: flex;
  min-width: 0;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid #526158;
  overflow-wrap: anywhere;
}

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

.business-section__intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.business-section__intro > p:last-child {
  margin-top: 12px;
  color: var(--muted);
}

.trade-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid #7d8b81;
}

.trade-scope {
  display: flex;
  min-width: 0;
  min-height: 250px;
  padding: 24px 22px;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.trade-scope:not(:nth-child(3n + 1)) {
  border-left: 1px solid var(--line);
}

.trade-scope__number {
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.trade-scope h3 {
  margin-top: 24px;
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

.trade-scope h3 + p {
  margin-top: 12px;
  color: var(--muted);
}

.trade-scope strong {
  margin-top: auto;
  padding-top: 22px;
  color: #6a4d25;
  font-size: 0.76rem;
}

.business-preparation {
  color: #edf2ee;
  background: #26352d;
}

.business-preparation__layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 64px;
}

.business-preparation .business-section__intro {
  margin-bottom: 0;
}

.business-preparation .section-intro__eyebrow {
  color: #dfc184;
}

.business-preparation .business-section__intro > p:last-child {
  color: #cbd4cd;
}

.business-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #647168;
}

.business-checklist li {
  min-width: 0;
  padding: 17px 18px 17px 30px;
  border-bottom: 1px solid #647168;
  overflow-wrap: anywhere;
}

.business-checklist li:nth-child(odd) {
  border-right: 1px solid #647168;
}

.business-checklist li::before {
  display: inline-block;
  width: 18px;
  margin-left: -18px;
  color: #dfc184;
  content: "•";
}

.responsibility-matrix {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-top: 2px solid #7d8b81;
}

.responsibility-matrix caption {
  padding: 0 0 12px;
  font-size: 0.88rem;
  font-weight: 750;
  text-align: left;
}

.responsibility-matrix thead {
  color: #4c574f;
  background: #e4e9e5;
}

.responsibility-matrix th,
.responsibility-matrix td {
  min-width: 0;
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.responsibility-matrix th + th,
.responsibility-matrix th + td,
.responsibility-matrix td + td {
  border-left: 1px solid var(--line);
}

.responsibility-matrix thead th {
  padding-block: 13px;
  font-size: 0.78rem;
  border-bottom-color: #aeb8b0;
}

.responsibility-matrix thead th:first-child {
  width: 18%;
}

.responsibility-matrix tbody th {
  font-size: 0.9rem;
  line-height: 1.45;
}

.responsibility-matrix td {
  color: #4e5851;
  font-size: 0.84rem;
}

.process-stage-list {
  border-top: 2px solid #7d8b81;
}

.process-stage {
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.process-stage__header {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 22px;
}

.process-stage__header > p {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.process-stage__header h3 {
  font-size: 1.35rem;
}

.process-stage__header div > p {
  max-width: 75ch;
  margin-top: 9px;
  color: var(--muted);
}

.process-stage__records {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  margin-top: 24px;
  gap: 22px;
}

.process-stage h4 {
  color: #4c574f;
  font-size: 0.76rem;
  line-height: 1.45;
}

.process-stage__records ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-stage__records li {
  min-width: 0;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.process-stage__records li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.process-stage__responsibilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0 0 112px;
  border-top: 1px solid #aeb8b0;
}

.process-stage__responsibilities section {
  min-width: 0;
  padding: 16px;
}

.process-stage__responsibilities section + section {
  border-left: 1px solid var(--line);
}

.process-stage__responsibilities p {
  margin-top: 8px;
  color: #4e5851;
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.business-cta {
  color: var(--surface);
  background: #8a5f27;
}

.business-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.business-cta__inner p {
  max-width: 70ch;
  margin-top: 12px;
  color: #fff5e5;
}

.business-cta .button {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--surface);
}

@media (max-width: 980px) {
  #core-products {
    scroll-margin-top: 128px;
  }

  .home-hero {
    height: 58dvh;
    min-height: 500px;
    max-height: 620px;
  }

  .home-hero h1 {
    font-size: 2.7rem;
  }

  .proof-strip__inner,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip li:nth-child(3),
  .process-steps li:nth-child(3) {
    border-left: 0;
  }

  .proof-strip li:nth-child(n + 3),
  .process-steps li:nth-child(n + 3) {
    border-top: 1px solid #526158;
  }

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

  .exterior-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .exterior-item__media {
    aspect-ratio: 4 / 3;
  }

  .proof-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .proof-layout .section-intro {
    position: static;
  }

  .product-hero {
    min-height: auto;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 34px;
  }

  .product-hero h1 {
    font-size: 2.55rem;
  }

  .product-section-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .style-filters legend {
    float: none;
    width: auto;
  }

  .style-filters__buttons {
    grid-column: 1;
    width: 100%;
  }

  .home-hero {
    height: auto;
    min-height: 560px;
    max-height: none;
    background-position: 58% center;
  }

  .home-hero__content {
    padding-block: 48px 42px;
  }

  .home-hero h1 {
    font-size: 2.25rem;
  }

  .home-hero__body {
    margin-top: 16px;
    font-size: 1rem;
  }

  .home-hero__actions {
    margin-top: 20px;
  }

  .proof-strip__inner,
  .product-grid,
  .style-grid,
  .exterior-grid,
  .proof-topics,
  .process-steps,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip li {
    padding-inline: 0;
  }

  .proof-strip li + li,
  .proof-strip li:nth-child(3),
  .process-steps li + li,
  .process-steps li:nth-child(3) {
    border-top: 1px solid #526158;
    border-left: 0;
  }

  .section-intro-row,
  .inquiry-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-link {
    align-self: flex-start;
  }

  .product-card__body > p:not(.item-kicker) {
    min-height: 0;
  }

  .proof-topics li:nth-child(odd) {
    border-right: 0;
  }

  .process-steps li {
    min-height: 0;
    padding-inline: 0;
  }

  .inquiry-band .button {
    flex: 0 1 auto;
  }

  .product-hero {
    grid-template-columns: 1fr;
    padding-block: 18px 14px;
    gap: 14px;
  }

  .product-hero h1 {
    font-size: 1.9rem;
  }

  .product-hero__eyebrow {
    margin-bottom: 6px;
  }

  .product-hero__summary {
    display: none;
  }

  .product-hero__facts {
    margin: 12px 0;
  }

  .product-hero__facts div {
    padding-block: 7px;
  }

  .product-hero__facts dt {
    font-size: 0.7rem;
  }

  .product-hero__facts dd {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .product-hero__facts div,
  .product-gallery,
  .product-option-groups,
  .product-care__grid {
    grid-template-columns: 1fr;
  }

  .product-hero__facts div {
    gap: 4px;
  }

  .product-hero__media {
    aspect-ratio: 2 / 1;
    max-height: none;
  }

  .product-hero__visual .product-concept-label {
    margin-top: 6px;
    font-size: 0.72rem;
  }

  .product-style__actions,
  .product-trade__inner,
  .product-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-style__actions .button {
    width: 100%;
  }

  .product-option-group {
    padding-inline: 0;
  }

  .product-option-group + .product-option-group,
  .product-care__grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-care__grid article,
  .product-care__grid article:first-child {
    padding-inline: 0;
  }

  .product-trade__inner .text-link,
  .product-cta__inner .button {
    flex: 0 1 auto;
  }
}

/* Source: responsive.css */
@media (max-width: 1320px) {
  #main {
    scroll-margin-top: 128px;
  }

  .site-header__inner {
    position: relative;
    display: grid;
    grid-template-areas:
      "brand language"
      "nav nav";
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto minmax(44px, auto);
    column-gap: 10px;
    row-gap: 8px;
    padding-block: 8px;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
    max-width: 100%;
  }

  .brand__name {
    white-space: nowrap;
  }

  .menu-button {
    z-index: 1;
    grid-area: nav;
    display: none;
    align-self: start;
    justify-self: start;
  }

  .js .menu-button {
    display: flex;
  }

  .language-control {
    grid-area: language;
    justify-self: end;
  }

  .site-navigation {
    position: static;
    grid-area: nav;
    display: grid;
    align-self: start;
    width: 100%;
    max-height: calc(100vh - 100px);
    margin: 0;
    padding: 10px;
    overflow-y: auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-top: 0;
    box-shadow: var(--shadow);
  }

  .js .site-navigation {
    display: none;
    padding-top: 54px;
  }

  .js .site-header[data-menu-open="true"] .site-navigation {
    display: grid;
  }

  .site-navigation .site-navigation__link,
  .product-menu > summary {
    width: 100%;
    justify-content: space-between;
  }

  .product-menu__panel {
    position: static;
    width: auto;
    margin: 2px 0 8px 12px;
    padding: 0 0 0 12px;
    border: 0;
    border-left: 1px solid var(--line);
    box-shadow: none;
  }

  .tracking-navigation-link {
    z-index: 2;
    grid-area: nav;
    align-self: start;
    justify-self: end;
    background: var(--surface);
    border: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #main {
    scroll-margin-top: 128px;
  }

  .site-header__inner {
    position: relative;
    display: grid;
    grid-template-areas:
      "brand language"
      "nav nav";
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto minmax(44px, auto);
    column-gap: 10px;
    row-gap: 8px;
    padding-block: 8px;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
    max-width: 100%;
  }

  .brand__name {
    white-space: nowrap;
  }

  .menu-button {
    z-index: 1;
    grid-area: nav;
    display: none;
    align-self: start;
    justify-self: start;
  }

  .js .menu-button {
    display: flex;
  }

  .language-control {
    grid-area: language;
    justify-self: end;
  }

  .site-navigation {
    position: static;
    grid-area: nav;
    display: grid;
    align-self: start;
    width: 100%;
    max-height: calc(100vh - 100px);
    margin: 0;
    padding: 10px;
    overflow-y: auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-top: 0;
    box-shadow: var(--shadow);
  }

  .js .site-navigation {
    display: none;
    padding-top: 54px;
  }

  .js .site-header[data-menu-open="true"] .site-navigation {
    display: grid;
  }

  .site-navigation .site-navigation__link,
  .product-menu > summary {
    width: 100%;
    justify-content: space-between;
  }

  .product-menu__panel {
    position: static;
    width: auto;
    margin: 2px 0 8px 12px;
    padding: 0 0 0 12px;
    border: 0;
    border-left: 1px solid var(--line);
    box-shadow: none;
  }

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

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

  .business-hero__inner,
  .business-preparation__layout,
  .inquiry-page__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .inquiry-intro {
    max-width: 720px;
    padding-top: 0;
  }

  .business-hero__inner .button {
    justify-self: start;
  }

  .business-audiences__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .business-audiences li:nth-child(n + 5) {
    border-top: 1px solid #526158;
  }

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

  .trade-scope:not(:nth-child(3n + 1)) {
    border-left: 0;
  }

  .trade-scope:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .responsibility-matrix,
  .responsibility-matrix tbody,
  .responsibility-matrix tr,
  .responsibility-matrix th,
  .responsibility-matrix td {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .responsibility-matrix {
    overflow: visible;
  }

  .responsibility-matrix caption {
    display: block;
    width: 100%;
  }

  .responsibility-matrix thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: clip;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .responsibility-matrix tbody tr {
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
  }

  .responsibility-matrix tbody th,
  .responsibility-matrix tbody td {
    padding: 8px 0;
    border-bottom: 0;
    border-left: 0;
  }

  .responsibility-matrix td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--accent-dark);
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 800;
  }

  .process-stage__responsibilities {
    margin-left: 0;
  }
}

@media (max-width: 980px) {
  #design-rd {
    scroll-margin-top: 128px;
  }

  .home-trust-layout,
  .about-overview,
  .rd-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-trust-layout--reverse .home-trust-media {
    order: 0;
  }

  .about-overview .about-media {
    order: -1;
  }

  .about-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 0;
  }

  .about-products li,
  .about-products li + li {
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .about-products li:nth-child(even) {
    border-left: 1px solid var(--line);
  }

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

  .rd-flow li + li {
    border-left: 0;
  }

  .rd-flow li:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .home-factory-preview__lead,
  .factory-film__layout,
  .factory-process,
  .product-structure__layout {
    grid-template-columns: 1fr;
  }

  .about-factory {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .factory-process {
    gap: 16px;
  }

  .factory-process__media {
    order: -1;
  }

  .evidence-dialog__panel {
    grid-template-columns: 1fr;
  }

  .evidence-dialog__media img {
    max-height: 62vh;
  }
}

@media (max-width: 720px) {
  .style-detail-hero,
  .style-media__layout,
  .style-structure__layout {
    grid-template-columns: 1fr;
  }

  .style-detail-hero {
    padding-block: 18px 28px;
    gap: 24px;
  }

  .style-detail-hero__copy {
    max-width: none;
  }

  .style-detail-hero__copy h1 {
    font-size: 2rem;
  }

  .style-media__layout {
    gap: 14px;
  }

  .style-media__main > figcaption {
    min-height: 66px;
  }

  .style-media__rail {
    display: flex;
    max-height: none;
    padding: 0 0 7px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-gutter: auto;
    scroll-snap-type: x proximity;
  }

  .style-media__thumbnail,
  .style-media__placeholder {
    flex: 0 0 132px;
    scroll-snap-align: start;
  }

  .style-media__placeholder {
    min-height: 132px;
  }

  .style-options__grid {
    grid-template-columns: 1fr;
  }

  .style-options__grid > div,
  .style-options__grid > div:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }

  .style-structure__layout {
    gap: 28px;
  }

  .style-inquiry-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .style-media-dialog__panel {
    padding: 58px 12px 18px;
  }

  .style-media-dialog figure {
    max-height: calc(100dvh - 76px);
  }

  .style-media-dialog figure img {
    max-height: calc(100dvh - 166px);
  }

  .style-media-dialog figcaption {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-inline: 4px;
    gap: 3px 12px;
  }

  .style-media-dialog__close {
    top: 8px;
    right: 8px;
  }

  .style-media-dialog__previous,
  .style-media-dialog__next {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .style-media-dialog__previous {
    left: calc(50% - 54px);
  }

  .style-media-dialog__next {
    right: calc(50% - 54px);
  }
}

@media (max-width: 640px) {
  .home-trust-products,
  .home-rd-areas,
  .about-audiences,
  .about-products,
  .rd-areas,
  .rd-flow ol,
  .about-preparation {
    grid-template-columns: 1fr;
  }

  .home-rd-areas li:nth-child(even),
  .about-audiences li:nth-child(even),
  .about-products li:nth-child(even),
  .rd-areas li:nth-child(even),
  .rd-flow li:nth-child(even),
  .about-preparation li:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }

  .about-products a,
  .rd-flow li {
    min-height: 0;
    padding-inline: 0;
  }

  .home-factory-preview__images,
  .factory-overview__grid,
  .factory-records__grid {
    grid-template-columns: 1fr;
  }

  .home-factory-preview__stages,
  .evidence-dialog__content {
    padding-inline: 16px;
  }

  .evidence-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
  }

  .evidence-dialog__media {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .not-found-page__languages {
    grid-template-columns: 1fr;
  }

  .not-found-language,
  .not-found-language + .not-found-language {
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .not-found-language p {
    min-height: 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }
  :root {
    --content: min(100% - 28px);
  }

  .section {
    padding-block: 52px;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .site-header__inner {
    column-gap: 8px;
  }

  .brand__descriptor {
    display: none;
  }

  .language-control {
    grid-template-columns: repeat(3, 44px);
  }

  .language-control a {
    padding-inline: 4px;
  }

  .page-intro {
    min-height: 360px;
  }

  .page-intro p {
    font-size: 1rem;
  }

  .button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .site-footer__navigation {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .style-library {
    padding-block: 24px 52px;
  }

  .style-library__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .style-library__header h1 {
    font-size: 1.8rem;
  }

  .style-library__header p {
    text-align: left;
  }

  .style-filters fieldset {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .style-filters legend {
    padding-top: 0;
  }

  .style-library__grid {
    grid-template-columns: 1fr;
  }

  .gallery-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .gallery-dialog__panel {
    grid-template-columns: 1fr;
  }

  .gallery-dialog__media {
    min-height: 0;
  }

  .gallery-dialog__media img {
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: 42dvh;
  }

  .gallery-dialog__content {
    padding: 24px 18px 22px;
  }

  .gallery-dialog__content h2 {
    padding-right: 38px;
    font-size: 1.35rem;
  }

  .gallery-dialog__facts {
    margin-block: 18px;
  }

  .gallery-dialog__facts div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .gallery-dialog__inquiry {
    width: 100%;
  }

  .business-hero {
    min-height: 380px;
    padding-block: 34px;
  }

  .business-hero h1 {
    font-size: 2rem;
  }

  .business-hero__body {
    font-size: 0.95rem;
  }

  .business-audiences {
    padding-block: 20px;
  }

  .business-audiences ul,
  .trade-scope-grid,
  .business-checklist,
  .process-stage__records ul,
  .process-stage__responsibilities {
    grid-template-columns: 1fr;
  }

  .business-audiences li {
    min-height: 40px;
    justify-content: flex-start;
    padding-inline: 10px;
    text-align: left;
    border-top: 1px solid #526158;
  }

  .trade-scope,
  .trade-scope:nth-child(even) {
    min-height: 0;
    padding-inline: 0;
    border-left: 0;
  }

  .trade-scope h3 {
    margin-top: 14px;
  }

  .trade-scope strong {
    margin-top: 18px;
    padding-top: 0;
  }

  .business-checklist li,
  .business-checklist li:nth-child(odd) {
    border-right: 0;
  }

  .process-stage__header,
  .process-stage__records {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-stage__records li:nth-child(odd),
  .process-stage__responsibilities section + section {
    border-left: 0;
  }

  .process-stage__responsibilities section {
    padding-inline: 0;
  }

  .process-stage__responsibilities section + section {
    border-top: 1px solid var(--line);
  }

  .business-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .inquiry-page {
    padding-block: 36px 52px;
  }

  .inquiry-intro h1 {
    font-size: 2.1rem;
  }

  .inquiry-form-panel {
    padding: 22px 16px;
  }

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

  .form-field--wide {
    grid-column: auto;
  }

  .inquiry-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .inquiry-form__footer .button {
    width: 100%;
  }

  .tracking-page {
    padding-block: 36px 52px;
  }

  .tracking-intro h1 {
    font-size: 2.15rem;
  }

  .tracking-access {
    padding: 22px 16px;
  }

  .tracking-form__grid,
  .tracking-form--code,
  .tracking-summary__facts,
  .tracking-updates__list,
  .tracking-shipment__facts {
    grid-template-columns: 1fr;
  }

  .tracking-form__code-heading {
    grid-column: auto;
  }

  .tracking-form__actions,
  .tracking-order__actions,
  .tracking-alert,
  .tracking-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .tracking-form__actions .button,
  .tracking-order__actions .button,
  .tracking-alert .button,
  .tracking-contact .button {
    width: 100%;
  }

  .tracking-order__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .tracking-timeline__list {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 0;
    overflow: visible;
  }

  .tracking-timeline__item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    min-height: 74px;
    padding: 0 0 14px;
  }

  .tracking-timeline__item::before {
    top: 34px;
    bottom: 0;
    left: 16px;
    width: 2px;
    height: auto;
  }

  .tracking-timeline__item:last-child::before {
    display: none;
  }

  .tracking-timeline__body {
    margin-top: 4px;
    padding: 0;
  }

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

  .tracking-contact {
    padding: 22px 18px;
  }
}

@media (max-width: 420px) {
  .tracking-media__grid {
    grid-template-columns: 1fr;
  }
}
