@font-face {
  font-family: "Doors Raleway";
  src: url("../fonts/raleway-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Doors Raleway";
  src: url("../fonts/raleway-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Doors Raleway";
  src: url("../fonts/raleway-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #191a17;
  --ink-soft: #292a26;
  --paper: #f4f1ea;
  --sand: #e8e0d3;
  --sand-dark: #c9bdab;
  --white: #fffdf8;
  --red: #e31e2b;
  --red-dark: #aa101b;
  --rust: #9a3f2b;
  --green: #5f6755;
  --muted: #65645e;
  --line: rgba(25, 26, 23, 0.18);
  --line-light: rgba(255, 255, 255, 0.22);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: "Doors Raleway", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --body: "Doors Raleway", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --page: min(1280px, calc(100vw - 80px));
  --page-wide: min(1480px, calc(100vw - 48px));
  --radius: 2px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-synthesis: none;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

body.menu-open .mobile-actions {
  display: none;
}

main {
  min-height: 60vh;
  overflow: clip;
}

main:focus {
  outline: none;
}

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

img {
  height: auto;
}

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

p,
ul,
ol,
dl,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.3rem, 7.2vw, 8rem);
}

h2 {
  font-size: clamp(2.6rem, 5.2vw, 5.7rem);
}

h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
}

::selection {
  background: var(--red);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid #1284c8;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  translate: 0 -180%;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  translate: 0;
}

.kicker {
  margin: 0 0 18px;
  color: var(--red-dark);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.large-copy {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  letter-spacing: -0.022em;
  line-height: 1.32;
}

.section {
  padding: clamp(86px, 10vw, 150px) max(40px, calc((100vw - 1280px) / 2));
}

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

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

.section--sand {
  background: var(--sand);
}

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

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

.section--ink .kicker,
.section--red .kicker,
.quote-band .kicker {
  color: #f3b2a7;
}

.section-heading {
  margin-bottom: clamp(48px, 7vw, 88px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
}

.section-heading--split > p,
.section-heading__aside p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading__aside > :last-child {
  margin-bottom: 0;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, translate 180ms ease;
}

.button:hover {
  translate: 0 -2px;
}

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

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

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

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

.button--ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

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

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

.button--light:hover {
  background: var(--sand);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: var(--white);
}

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

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: translate 180ms ease;
}

.text-link:hover span {
  translate: 4px 0;
}

.text-link--light,
.section--ink .text-link,
.section--red .text-link {
  color: var(--white);
}

/* Header */
.utility-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.utility-bar__inner {
  display: flex;
  width: var(--page);
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
}

.utility-bar p {
  margin: 0;
}

.utility-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.utility-links a {
  text-decoration: none;
}

.utility-links a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.97);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(25, 26, 23, 0.08);
}

.site-header__inner {
  display: grid;
  width: var(--page);
  min-height: 88px;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  width: 218px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 34px);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav > a,
.product-menu > summary {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  text-decoration: none;
}

.primary-nav > a:not(.nav-quote)::after,
.product-menu > summary::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  scale: 0 1;
  transform-origin: left;
  transition: scale 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after,
.product-menu:hover > summary::after,
.product-menu.is-current > summary::after {
  scale: 1 1;
}

.product-menu {
  position: relative;
}

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

.product-menu > summary span {
  margin-left: 8px;
  color: var(--red);
  font-size: 1rem;
  transition: rotate 180ms ease;
}

.product-menu[open] > summary span {
  rotate: 45deg;
}

.product-menu__panel {
  position: absolute;
  top: calc(100% + 20px);
  right: -250px;
  width: min(680px, 80vw);
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 25px 70px rgba(25, 26, 23, 0.16);
}

.product-menu__panel::before {
  position: absolute;
  top: -22px;
  right: 246px;
  width: 140px;
  height: 24px;
  content: "";
}

.product-menu__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-menu__links a {
  display: grid;
  min-height: 84px;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-transform: none;
}

.product-menu__links a > span {
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.product-menu__links a > b {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
}

.product-menu__links a:hover {
  background: var(--paper);
}

.nav-quote {
  min-height: 48px !important;
  padding: 0 18px;
  background: var(--red);
  color: var(--white);
}

.nav-quote:hover {
  background: var(--red-dark);
}

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

/* Inner hero */
.inner-hero {
  display: grid;
  min-height: min(720px, calc(100vh - 124px));
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  background: var(--paper);
}

.inner-hero__copy {
  display: flex;
  max-width: 650px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) clamp(40px, 7vw, 120px) clamp(70px, 8vw, 130px) max(40px, calc((100vw - 1280px) / 2));
}

.inner-hero__copy h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.2vw, 6.2rem);
}

.inner-hero__description {
  max-width: 610px;
  margin: 34px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.38;
}

.inner-hero__actions {
  margin-top: 38px;
}

.inner-hero__media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink-soft);
}

.inner-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 26, 23, 0.08), transparent 40%), linear-gradient(0deg, rgba(25, 26, 23, 0.13), transparent 45%);
  content: "";
  pointer-events: none;
}

.inner-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-mark {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.inner-hero--compact {
  min-height: 590px;
}

.inner-hero--compact .inner-hero__media {
  min-height: 520px;
}

.inner-hero--compact .inner-hero__copy h1 {
  font-size: clamp(3rem, 4.6vw, 5.4rem);
}

.inner-hero--text {
  grid-template-columns: 1fr;
}

.breadcrumbs {
  margin-bottom: 44px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--red);
}

/* Home */
.home-story {
  padding: 24px 0 clamp(42px, 5vw, 76px);
  background: var(--ink);
  color: var(--white);
}

.home-story__topline,
.home-story__stage,
.home-story__understory,
.home-story__chapters {
  width: min(1320px, calc(100% - 80px));
  margin-inline: auto;
}

.home-story__topline {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-story__topline p {
  margin: 0;
}

.home-story__topline p:first-child {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
}

.home-story__topline p:first-child span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(227, 30, 43, 0.18);
}

.home-story__stage {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #050505;
}

.home-story__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.home-story__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 800ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.home-story__stage:hover .home-story__media > img {
  scale: 1.018;
}

.home-story__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.78) 0%, rgba(5, 7, 8, 0.38) 43%, transparent 70%),
    linear-gradient(0deg, rgba(5, 7, 8, 0.72) 0%, transparent 45%);
  pointer-events: none;
}

.home-story__headline {
  position: absolute;
  z-index: 2;
  bottom: clamp(50px, 6vw, 86px);
  left: clamp(30px, 5vw, 76px);
  max-width: min(760px, 62%);
  pointer-events: none;
}

.home-story__headline .kicker {
  color: #f4beb5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.home-story__headline h1 {
  font-size: clamp(3.5rem, 6vw, 7.15rem);
  text-shadow: 0 4px 38px rgba(0, 0, 0, 0.42);
}

.home-story__headline h1 em {
  font-weight: 400;
}

.home-story__play {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(68px, 6vw, 92px);
  left: auto;
  display: inline-flex;
  min-height: 78px;
  align-items: center;
  gap: 16px;
  padding: 11px 20px 11px 11px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(15, 16, 15, 0.88);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  color: var(--white);
  font-family: var(--sans);
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, translate 180ms ease;
}

.home-story__play:hover {
  border-color: var(--red);
  background: var(--red);
  translate: 0 -3px;
}

.home-story__play-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-size: 0.76rem;
  place-items: center;
}

.home-story__play small,
.home-story__play strong {
  display: block;
}

.home-story__play small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.home-story__play strong {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
}

.home-story__understory {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 45px;
  align-items: end;
  padding: clamp(34px, 4vw, 54px) 0;
  border-bottom: 1px solid var(--line-light);
}

.home-story__understory .button-row {
  justify-content: flex-end;
  margin: 0;
}

.home-story__lede {
  max-width: 860px;
  margin-bottom: 21px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.65vw, 1.55rem);
  line-height: 1.45;
}

.home-story__audience {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-story__chapters {
  padding-top: 30px;
}

.home-story__chapters-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.home-story__chapters-heading p {
  margin: 0;
}

.home-story__chapters-heading .kicker {
  color: #f3b2a7;
}

.home-story__chapters-heading > p:last-child {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.home-story__chapter-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.home-story__chapter {
  min-width: 0;
  padding: 12px;
  border-right: 1px solid var(--line-light);
  color: var(--white);
  text-decoration: none;
  transition: background 180ms ease;
}

.home-story__chapter:last-child {
  border-right: 0;
}

.home-story__chapter:hover {
  background: rgba(255, 255, 255, 0.07);
}

.home-story__chapter-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 13px;
  background: #0a0a0a;
}

.home-story__chapter-image img {
  width: 500%;
  max-width: none;
  height: 100%;
  object-fit: fill;
  transform: translateX(calc(var(--chapter-frame) * -20%));
  transition: filter 180ms ease, scale 260ms ease;
}

.home-story__chapter:hover .home-story__chapter-image img {
  filter: saturate(1.08) contrast(1.04);
  scale: 1.015;
}

.home-story__chapter-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
}

.home-story__chapter-copy small {
  color: #f0a79d;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-story__chapter-copy strong {
  overflow: hidden;
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.film-room {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(5, 5, 5, 0.98);
  color: var(--white);
}

.film-room[open] {
  display: block;
}

.film-room::backdrop {
  background: rgba(0, 0, 0, 0.94);
}

.film-room__shell {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
  padding: 18px clamp(18px, 3vw, 52px) clamp(18px, 3vw, 42px);
}

.film-room__header {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-light);
}

.film-room__header p,
.film-room__header span,
.film-room__header strong {
  display: block;
  margin: 0;
}

.film-room__header p > span {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.film-room__header p > strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.film-room__close {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.film-room__close span {
  font-size: 1.4rem;
  font-weight: 400;
}

.film-room__screen {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  background: #000;
  place-items: center;
}

.film-room__screen video {
  width: 100%;
  height: 100%;
  background: #000;
  cursor: pointer;
  object-fit: contain;
}

.film-room__screen:fullscreen {
  width: 100vw;
  height: 100vh;
}

.film-room__controls {
  position: absolute;
  z-index: 4;
  right: clamp(12px, 2vw, 28px);
  bottom: clamp(12px, 2vw, 28px);
  left: clamp(12px, 2vw, 28px);
  display: grid;
  min-height: 62px;
  grid-template-columns: auto minmax(140px, 1fr) auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 12, 12, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.film-room__controls[hidden],
.film-room__end[hidden] {
  display: none;
}

.film-room__controls button {
  min-height: 40px;
  padding: 0 7px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-room__progress {
  display: block;
}

.film-room__progress span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.film-room__progress input {
  width: 100%;
  height: 5px;
  margin: 0;
  appearance: none;
  border-radius: 0;
  background: linear-gradient(90deg, var(--red) 0 var(--film-progress, 0%), rgba(255, 255, 255, 0.3) var(--film-progress, 0%) 100%);
  cursor: pointer;
}

.film-room__progress input::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  appearance: none;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--red);
}

.film-room__progress input::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--red);
}

.film-room__controls output {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.film-room__end {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  background: rgba(8, 8, 8, 0.86);
  text-align: center;
}

.film-room__end .kicker {
  color: #f4beb5;
}

.film-room__end h2 {
  max-width: 780px;
  margin-bottom: 34px;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.proof-strip,
.about-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip > div,
.about-facts > div {
  display: flex;
  min-height: 125px;
  flex-direction: column;
  justify-content: center;
  padding: 25px clamp(22px, 4vw, 65px);
  border-right: 1px solid var(--line);
}

.proof-strip > div:last-child,
.about-facts > div:last-child {
  border-right: 0;
}

.proof-strip strong,
.about-facts strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.proof-strip span,
.about-facts span {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(35px, 6vw, 90px) clamp(26px, 4vw, 60px);
}

.product-path {
  display: grid;
  gap: 28px;
}

.product-path:nth-child(even) {
  translate: 0 70px;
}

.product-path__media {
  position: relative;
  display: block;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  background: var(--ink);
}

.product-path__media::after {
  position: absolute;
  inset: 0;
  border: 0 solid rgba(255, 255, 255, 0.5);
  content: "";
  transition: border-width 200ms ease;
}

.product-path__media:hover::after {
  border-width: 10px;
}

.product-path__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 500ms ease;
}

.product-path__media:hover img {
  scale: 1.025;
}

.product-path__media > span {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
  place-items: center;
}

.product-path__copy {
  max-width: 560px;
}

.product-path__copy h3 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.product-path__copy h3 a {
  text-decoration: none;
}

.product-path__copy > p:not(.kicker) {
  max-width: 500px;
  margin-bottom: 22px;
  color: var(--muted);
}

.guidance-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(55px, 8vw, 130px);
  align-items: center;
}

.guidance-section__media {
  position: relative;
}

.guidance-section__media img {
  width: 100%;
  aspect-ratio: 0.94 / 1;
  object-fit: cover;
}

.guidance-section__caption {
  position: absolute;
  right: -45px;
  bottom: 40px;
  display: flex;
  width: min(370px, 65%);
  flex-direction: column;
  gap: 7px;
  padding: 26px;
  background: var(--red);
  color: var(--white);
}

.guidance-section__caption span {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guidance-section__caption strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}

.guidance-section__copy h2 {
  margin-bottom: 34px;
}

.guidance-section__copy .large-copy {
  color: rgba(255, 255, 255, 0.77);
}

.process-list {
  margin: 40px 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line-light);
}

.process-list li > span {
  color: #f3b2a7;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.process-list strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

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

.project-editorial-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(28px, 4vw, 58px) clamp(18px, 2.6vw, 38px);
}

.project-editorial-grid > .project-card {
  grid-column: span 4;
}

.project-editorial-grid > .project-card:nth-child(1),
.project-editorial-grid > .project-card:nth-child(4) {
  grid-column: span 8;
}

.project-editorial-grid > .project-card:nth-child(3),
.project-editorial-grid > .project-card:nth-child(6) {
  margin-top: 70px;
}

.project-card__image {
  position: relative;
  display: block;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-soft);
}

.project-card--featured .project-card__image {
  aspect-ratio: 16 / 9;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 450ms ease, filter 300ms ease;
}

.project-card__image:hover img {
  filter: saturate(1.05);
  scale: 1.025;
}

.project-card__index {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 700;
  place-items: center;
}

.project-card__copy {
  padding-top: 22px;
}

.project-card__copy .kicker {
  margin-bottom: 10px;
}

.project-card__copy h3 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
}

.project-card__copy h3 a {
  text-decoration: none;
}

.showroom-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.showroom-section__copy h2 {
  margin-bottom: 34px;
}

.showroom-section__copy > p:not(.kicker) {
  color: var(--muted);
}

.showroom-details {
  margin: 38px 0;
  border-top: 1px solid var(--line);
}

.showroom-details > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.showroom-details dt {
  color: var(--red-dark);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showroom-details dd {
  margin: 0;
}

.showroom-section__media {
  position: relative;
  min-height: 650px;
  padding: 0 0 80px 70px;
}

.showroom-main-image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
}

.showroom-detail-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 230px;
  aspect-ratio: 1;
  border: 12px solid var(--paper);
  object-fit: cover;
}

.showroom-stamp {
  position: absolute;
  top: -30px;
  right: -25px;
  display: grid;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  place-items: center;
  text-align: center;
}

/* Manufacturer grids */
.manufacturer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.manufacturer-card {
  display: flex;
  min-width: 0;
  min-height: 260px;
  flex-direction: column;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
  transition: background 180ms ease;
}

.manufacturer-card:hover {
  background: var(--paper);
}

.manufacturer-logo {
  display: grid;
  min-height: 130px;
  flex: 1;
  place-items: center;
}

.manufacturer-logo img {
  width: 100%;
  max-width: 190px;
  height: 90px;
  filter: saturate(0.95);
  object-fit: contain;
}

.manufacturer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.manufacturer-meta strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.2;
}

.manufacturer-meta small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manufacturer-meta .manufacturer-status {
  color: var(--red-dark);
}

.manufacturer-link {
  margin-top: 8px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.manufacturer-grid--compact {
  grid-template-columns: repeat(4, 1fr);
}

.manufacturer-grid--compact .manufacturer-card {
  min-height: 190px;
  padding: 16px;
}

.manufacturer-grid--compact .manufacturer-logo {
  min-height: 95px;
}

.manufacturer-grid--compact .manufacturer-logo img {
  max-width: 145px;
  height: 70px;
}

.manufacturer-grid--compact .manufacturer-meta strong {
  font-size: 0.95rem;
}

.manufacturer-grid--compact .manufacturer-link {
  display: none;
}

/* Reviews */
.reviews-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(50px, 8vw, 120px);
}

.reviews-section__heading h2 {
  max-width: 100%;
  margin-bottom: 32px;
  font-size: clamp(3.15rem, 3.5vw, 5rem);
  line-height: 1.04;
  text-wrap: balance;
}

.reviews-section.section--red .kicker,
.reviews-section.section--red .review-card__index,
.reviews-section.section--red .review-card blockquote,
.reviews-section.section--red .review-card > p:last-child span {
  color: var(--white);
}

.review-grid {
  display: grid;
}

.review-grid--home {
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.review-card__index {
  display: block;
  margin-bottom: 55px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.review-stars {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
}

.review-card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.review-card blockquote {
  flex: 1 1 auto;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
}

.review-card > p:last-child,
.review-author {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-card > p:last-child span,
.review-author span {
  color: rgba(255, 255, 255, 0.65);
}

/* Quote band */
.quote-band {
  padding: clamp(75px, 9vw, 125px) max(40px, calc((100vw - 1280px) / 2));
}

.quote-band--dark {
  background: var(--ink-soft);
  color: var(--white);
}

.quote-band--red {
  background: var(--red);
  color: var(--white);
}

.quote-band--paper {
  background: var(--paper);
}

.quote-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
}

.quote-band h2 {
  max-width: 900px;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.quote-band p:not(.kicker) {
  max-width: 750px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.quote-band--paper p:not(.kicker) {
  color: var(--muted);
}

.quote-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

/* Search-landing discovery and lead paths */
.lead-discovery {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}

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

.lead-discovery__grid > a {
  min-height: 224px;
  padding: clamp(22px, 2.5vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lead-discovery__grid > a:last-child {
  border-right: 0;
}

.lead-discovery__grid > a:hover,
.lead-discovery__grid > a:focus-visible {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-3px);
}

.lead-discovery__grid span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.lead-discovery__grid strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.1;
}

.lead-discovery__grid small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.lead-discovery__grid > a:hover small,
.lead-discovery__grid > a:focus-visible small {
  color: rgba(255, 255, 255, 0.76);
}

.lead-discovery__actions {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.lead-discovery__actions p,
.lead-discovery__actions p span {
  display: block;
  margin: 0;
}

.lead-discovery__actions p span {
  margin-top: 6px;
  color: var(--muted);
}

.lead-discovery__actions .button-row {
  justify-content: flex-end;
  align-items: center;
}

.home-story__call {
  align-self: center;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-underline-offset: 0.3em;
}

@media (max-width: 1100px) {
  .lead-discovery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-discovery__grid > a:nth-child(2) {
    border-right: 0;
  }

  .lead-discovery__grid > a:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .lead-discovery__actions {
    grid-template-columns: 1fr;
  }

  .lead-discovery__actions .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .lead-discovery__grid {
    grid-template-columns: 1fr;
  }

  .lead-discovery__grid > a,
  .lead-discovery__grid > a:nth-child(2) {
    min-height: 176px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lead-discovery__grid > a:last-child {
    border-bottom: 0;
  }

  .lead-discovery__actions .button-row,
  .lead-discovery__actions .button,
  .lead-discovery__actions .text-link {
    width: 100%;
  }

  .home-story__call {
    padding: 8px 0;
    text-align: center;
  }
}

/* Service pages */
.category-rail,
.manufacturer-category-nav {
  display: flex;
  min-height: 70px;
  align-items: stretch;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-rail > *,
.manufacturer-category-nav > * {
  display: inline-flex;
  min-width: 140px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-right: 1px solid var(--line);
}

.category-rail > span,
.manufacturer-category-nav > span {
  color: var(--muted);
}

.category-rail a,
.manufacturer-category-nav a {
  text-decoration: none;
}

.category-rail a:hover,
.category-rail a[aria-current="page"],
.manufacturer-category-nav a:hover {
  background: var(--red);
  color: var(--white);
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(330px, 0.65fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 7vw, 105px);
  align-items: start;
}

.service-intro__heading h2 {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}

.service-intro__copy > p:not(.large-copy) {
  color: var(--muted);
}

.service-intro__image {
  margin: 0;
}

.service-intro__image img {
  width: 100%;
  aspect-ratio: 0.83 / 1;
  object-fit: cover;
}

.service-intro__image figcaption {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

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

.option-card {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.option-card > span {
  display: block;
  margin-bottom: 80px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.option-card h3 {
  margin-bottom: 16px;
}

.option-card p {
  margin: 0;
  color: var(--muted);
}

.decision-section {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(380px, 0.8fr) minmax(300px, 0.48fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.decision-section__heading h2 {
  margin-bottom: 25px;
}

.decision-section__heading > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

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

.decision-list article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 17px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-light);
}

.decision-list span {
  color: #f3b2a7;
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
}

.decision-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.quote-prep-card {
  padding: 30px;
  background: var(--red);
}

.quote-prep-card ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.quote-prep-card li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

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

.project-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(55px, 10vw, 160px);
}

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

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

.faq-list summary {
  display: grid;
  min-height: 90px;
  grid-template-columns: 46px 1fr auto;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  list-style: none;
}

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

.faq-list summary span {
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
}

.faq-list summary b {
  color: var(--red);
  font-family: var(--body);
  font-size: 1.4rem;
  font-weight: 400;
  transition: rotate 180ms ease;
}

.faq-list details[open] summary b {
  rotate: 45deg;
}

.faq-list details > p {
  max-width: 720px;
  margin: 0;
  padding: 0 55px 30px 62px;
  color: var(--muted);
}

/* Gallery */
.gallery-guide,
.contact-path-grid,
.tour-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.gallery-guide article,
.contact-path-grid article,
.tour-category-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-guide article > span,
.contact-path-grid article > span,
.tour-category-grid article > span {
  display: block;
  margin-bottom: 55px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
}

.gallery-guide h3,
.contact-path-grid h3,
.tour-category-grid h3 {
  margin-bottom: 14px;
}

.gallery-guide p,
.contact-path-grid p,
.tour-category-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-browser__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.gallery-count {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-count strong {
  color: var(--red);
  font-size: 1.1rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 65px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.gallery-filters button {
  min-height: 48px;
  padding: 10px 20px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-filters button:hover,
.gallery-filters button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.gallery-item {
  grid-column: span 4;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(8),
.gallery-item:nth-child(15) {
  grid-column: span 8;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-empty {
  padding: 40px;
  border: 1px solid var(--line);
  text-align: center;
}

.gallery-context,
.review-invitation,
.about-location,
.library-intro,
.review-intro,
.manufacturer-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(380px, 1.22fr);
  gap: clamp(55px, 11vw, 170px);
  align-items: start;
}

.gallery-context p:not(.kicker) {
  color: rgba(255, 255, 255, 0.7);
}

/* Contact */
.contact-path-grid article {
  min-height: 335px;
}

.contact-path-grid article .kicker {
  margin-bottom: 8px;
}

.contact-path-grid .text-link {
  margin-top: 25px;
}

.contact-workspace {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(480px, 1.25fr);
  gap: clamp(55px, 10vw, 150px);
  align-items: start;
}

.contact-form-intro {
  position: sticky;
  top: 125px;
}

.contact-form-intro h2 {
  margin-bottom: 30px;
}

.contact-what-next {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-what-next h3 {
  margin-bottom: 22px;
  font-size: 1.45rem;
}

.contact-what-next ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-what-next li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-what-next li span {
  color: var(--red);
  font-family: var(--sans);
  font-weight: 700;
}

.form-notice {
  margin-top: 30px;
  padding: 20px;
  border-left: 3px solid var(--red);
  background: var(--white);
  color: var(--muted);
  font-size: 0.88rem;
}

.project-form {
  padding: clamp(28px, 5vw, 65px);
  background: var(--white);
}

.project-form > fieldset {
  display: grid;
  gap: 9px;
  margin: 0 0 46px;
  padding: 0;
  border: 0;
}

.project-form > fieldset > legend {
  width: 100%;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.project-form label {
  margin-top: 13px;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-form__field > p {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
  width: 100%;
  margin: 0;
}

.project-form__field > p > label {
  display: block;
  width: 100%;
}

.project-form label > .field-requirement,
.contact-preference legend > span {
  float: right;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.project-form .wpcf7-form-control-wrap {
  display: block;
  min-width: 0;
  width: 100%;
}

.project-form .wpcf7-form-control-wrap > input,
.project-form .wpcf7-form-control-wrap > select,
.project-form .wpcf7-form-control-wrap > textarea {
  margin-top: 0;
}

.project-form .wpcf7-list-item {
  margin: 0;
}

.project-form .wpcf7-list-item-label {
  float: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.project-form input,
.project-form select,
.project-form textarea {
  font-size: 1rem;
}

.project-form .contact-preference .wpcf7-form-control,
.project-form .contact-preference .wpcf7-form-control-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.project-form input:not([type="radio"]):not([type="submit"]),
.project-form select,
.project-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}

.project-form textarea {
  min-height: 170px;
  resize: vertical;
}

.project-form input:not([type="submit"]):focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--ink);
  outline: 3px solid rgba(18, 132, 200, 0.24);
  outline-offset: 0;
}

.form-options {
  margin: 22px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.form-options summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  list-style: none;
  text-transform: uppercase;
}

.form-options summary::-webkit-details-marker {
  display: none;
}

.form-options summary span {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.form-options summary::after {
  color: var(--red-dark);
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
}

.form-options[open] summary::after {
  content: "−";
}

.form-options__fields {
  display: grid;
  gap: 9px;
  padding: 0 0 24px;
}

.contact-preference {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin: 24px 0 0;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.contact-preference legend {
  float: left;
  width: 100%;
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-preference > p {
  flex: 1 0 100%;
  min-width: 0;
  margin: 0;
}

.contact-preference label {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.8125rem;
}

.contact-preference input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.project-form__submit {
  width: 100%;
}

.project-form > p:not([class]) {
  margin: 0;
}

.form-privacy {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
  gap: clamp(55px, 10vw, 150px);
}

.location-section__map-card {
  position: relative;
  min-height: 500px;
  padding: clamp(40px, 7vw, 90px);
  overflow: hidden;
  background: var(--ink-soft);
}

.location-section__map-card h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 45px;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
}

.location-section__map-card .kicker,
.location-section__map-card .button-row {
  position: relative;
  z-index: 2;
}

.location-map-lines {
  position: absolute;
  inset: -20%;
  opacity: 0.22;
  background-image: linear-gradient(30deg, transparent 48%, #fff 49%, #fff 50%, transparent 51%), linear-gradient(-20deg, transparent 48%, #fff 49%, #fff 50%, transparent 51%);
  background-size: 110px 80px, 160px 130px;
  rotate: -10deg;
}

.location-section__details {
  display: grid;
  gap: 55px;
}

.location-section__details dl,
.tour-hours dl {
  margin: 0 0 22px;
  border-top: 1px solid var(--line-light);
}

.location-section__details dl > div,
.tour-hours dl > div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-light);
}

.location-section__details dd,
.tour-hours dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.location-section__details > div > p:last-child,
.tour-hours > p {
  color: rgba(255, 255, 255, 0.65);
}

.location-section__details a {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.location-phone {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  text-decoration: none;
}

.location-phone--dark {
  color: var(--ink);
}

/* About */
.about-story {
  display: grid;
  grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(55px, 10vw, 150px);
  align-items: center;
}

.about-story__copy h2 {
  margin-bottom: 34px;
}

.about-story__copy > p:not(.kicker):not(.large-copy) {
  color: var(--muted);
}

.about-story__image {
  margin: 0;
}

.about-story__image img {
  width: 100%;
  aspect-ratio: 0.95 / 1;
  object-fit: cover;
}

.about-story__image figcaption {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--serif);
}

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

.audience-grid article {
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.audience-grid article > span {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 75px;
  border: 1px solid var(--line-light);
  color: #f3b2a7;
  font-family: var(--serif);
  place-items: center;
}

.audience-grid h3 {
  margin-bottom: 16px;
}

.audience-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.showroom-values {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(55px, 10vw, 150px);
}

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

.value-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.value-list article > span {
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
}

.value-list h3 {
  margin-bottom: 8px;
}

.value-list p {
  margin: 0;
  color: var(--muted);
}

/* Reviews archive */
.review-archive {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(50px, 8vw, 120px);
}

.review-grid--archive {
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.review-archive > *,
.review-themes > *,
.review-invitation > *,
.review-grid--archive > *,
.review-theme-list > * {
  min-width: 0;
}

.review-card--archive {
  min-height: 430px;
  border-color: var(--line);
  color: var(--ink);
  overflow-wrap: break-word;
}

.review-card--archive .review-card__index {
  margin-bottom: 35px;
  color: var(--red);
}

.review-card--archive blockquote {
  color: var(--ink);
  font-size: 1.28rem;
}

.review-card--archive .review-author span {
  color: var(--muted);
}

/* The shared dark-card rule above is more specific than the archive variant. */
.review-card--archive > .review-author:last-child span {
  color: var(--muted);
}

.review-themes {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(50px, 8vw, 120px);
}

.review-theme-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.review-theme-list article {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.review-theme-list span {
  display: block;
  margin-bottom: 45px;
  color: #f3b2a7;
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
}

.review-theme-list h3 {
  margin-bottom: 12px;
}

.review-theme-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

/* Virtual tour */
.tour-category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.virtual-tour-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: start;
}

.virtual-tour-section__heading > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.tour-embed {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink-soft);
}

.tour-embed > img {
  width: 100%;
  height: 620px;
  filter: brightness(0.52);
  object-fit: cover;
}

.tour-embed__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.tour-embed__overlay h3 {
  margin: 22px 0 28px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.tour-ring {
  display: grid;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  place-items: center;
}

.tour-embed iframe {
  width: 100%;
  height: 620px;
  border: 0;
}

.visit-prep {
  display: grid;
  grid-template-columns: minmax(300px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(55px, 10vw, 150px);
}

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

.visit-prep__list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.visit-prep__list li > span {
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
}

.visit-prep__list h3 {
  margin-bottom: 8px;
}

.visit-prep__list p {
  margin: 0;
  color: var(--muted);
}

.tour-location {
  display: grid;
  grid-template-columns: minmax(350px, 0.82fr) minmax(380px, 1.18fr);
  gap: clamp(55px, 11vw, 170px);
}

.tour-location h2 {
  margin-bottom: 25px;
}

.tour-hours dl {
  border-color: var(--line);
}

.tour-hours dl > div {
  border-color: var(--line);
}

.tour-hours dd {
  color: var(--muted);
}

.tour-hours > p {
  color: var(--muted);
}

/* Manufacturer page */
.manufacturer-category-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.manufacturer-category-overview > article {
  min-height: 480px;
  padding: clamp(34px, 6vw, 80px);
  background: var(--sand);
}

.manufacturer-category-overview > article > span {
  display: block;
  margin-bottom: 70px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
}

.manufacturer-category-overview h2 {
  margin-bottom: 22px;
}

.manufacturer-category-overview > article > p:not(.kicker) {
  max-width: 600px;
  color: var(--muted);
}

.manufacturer-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0;
}

.manufacturer-name-list a {
  padding: 7px 10px;
  border: 1px solid var(--line);
  font-size: 0.75rem;
  text-decoration: none;
}

.manufacturer-name-list a:hover {
  border-color: var(--red);
  color: var(--red);
}

.manufacturer-disclaimer {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(50px, 9vw, 140px);
}

.manufacturer-question-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.manufacturer-question-grid p {
  min-height: 210px;
  margin: 0;
  padding: 28px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.74);
}

.manufacturer-question-grid span {
  display: block;
  margin-bottom: 45px;
  color: #f3b2a7;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
}

/* Blog */
.article-grid--featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 40px;
}

.article-card {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(250px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.article-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  background: var(--ink-soft);
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 400ms ease;
}

.article-card__media:hover img {
  scale: 1.025;
}

.article-card__media > span:not(.article-card__placeholder) {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  background: var(--white);
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  place-items: center;
}

.article-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  color: var(--white);
  font-family: var(--serif);
  font-size: 3rem;
  place-items: center;
}

.article-card h3 {
  margin-bottom: 16px;
}

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

.article-card > div > p:not(.kicker) {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.article-list article {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr) auto;
  gap: 25px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.article-list article > span {
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
}

.article-list h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.article-list h3 a {
  text-decoration: none;
}

.article-list article > div > p:not(.kicker) {
  max-width: 800px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.article-list .kicker {
  margin-bottom: 5px;
}

.future-topics {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(55px, 10vw, 150px);
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.topic-list span {
  padding: 12px 16px;
  border: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.78);
}

/* Project pages */
.project-context {
  display: grid;
  grid-template-columns: minmax(250px, 0.45fr) minmax(400px, 1.55fr);
  gap: clamp(55px, 12vw, 180px);
}

.project-context__label {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.project-context__copy h2 {
  margin-bottom: 30px;
}

.project-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-image-grid figure {
  margin: 0;
}

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

.project-image-grid__wide {
  grid-column: 1 / -1;
}

.project-image-grid__wide img {
  aspect-ratio: 16 / 8;
}

.project-review {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(55px, 10vw, 150px);
}

.project-review__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.project-review__lists > div {
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.project-review__lists h3 {
  margin-bottom: 25px;
}

.project-review__lists ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.project-review__lists li + li {
  margin-top: 14px;
}

/* Generic content */
.generic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(55px, 10vw, 150px);
  align-items: start;
}

.rich-content {
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  line-height: 1.7;
}

.rich-content > :first-child:not(.archive-notice) {
  margin-top: 0;
}

.rich-content h2,
.rich-content h3 {
  margin: 2.1em 0 0.7em;
}

.rich-content h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.rich-content h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
}

.rich-content a {
  color: var(--red-dark);
}

.rich-content img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 28px 0;
}

.rich-content iframe {
  width: 100%;
  min-height: 480px;
  border: 0;
}

.rich-content ul,
.rich-content ol {
  padding-left: 1.35em;
}

.rich-content blockquote {
  margin: 35px 0;
  padding-left: 25px;
  border-left: 3px solid var(--red);
  font-size: 1.3em;
}

.archive-notice {
  margin-bottom: 45px;
  padding: 24px;
  border-left: 3px solid var(--red);
  background: var(--sand);
  font-family: var(--body);
  font-size: 0.86rem;
}

.archive-notice p {
  margin: 8px 0 0;
}

.content-aside {
  position: sticky;
  top: 125px;
  padding: 30px;
  border-top: 3px solid var(--red);
  background: var(--sand);
}

.content-aside h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.content-aside p {
  color: var(--muted);
}

.content-aside .button {
  width: 100%;
  margin: 12px 0 22px;
}

.redirect-view {
  min-height: 70vh;
  padding-top: clamp(120px, 15vw, 220px);
  padding-bottom: clamp(120px, 15vw, 220px);
}

.redirect-view h1 {
  max-width: 900px;
  margin-bottom: 30px;
}

.redirect-view > p {
  max-width: 760px;
}

.redirect-view .button-row {
  margin-top: 35px;
}

/* Footer */
.site-footer {
  padding: clamp(70px, 9vw, 120px) max(40px, calc((100vw - 1280px) / 2)) 30px;
  background: #11120f;
  color: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(300px, 1.4fr) repeat(2, minmax(130px, 0.55fr)) minmax(230px, 0.9fr);
  gap: clamp(35px, 6vw, 90px);
  padding-bottom: 75px;
}

.footer-brand > a:first-child {
  display: inline-block;
  width: 230px;
  margin-bottom: 30px;
  padding: 8px;
  background: var(--white);
}

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

.footer-brand > p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.63);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 16px;
  color: #f3b2a7;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column > a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

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

.footer-contact p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.footer-phone {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer__bottom a {
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

.mobile-actions {
  display: none;
}

/* 404 */
.not-found {
  min-height: 70vh;
  padding: clamp(130px, 15vw, 220px) max(30px, calc((100vw - 960px) / 2));
  background: var(--paper);
}

.not-found h1 {
  margin-bottom: 25px;
}

.not-found .hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

/* Search */
.search-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(55px, 10vw, 150px);
  align-items: start;
}

.site-search {
  position: sticky;
  top: 125px;
  padding: clamp(28px, 4vw, 45px);
  border-top: 3px solid var(--red);
  background: var(--sand);
}

.site-search label {
  display: block;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.site-search__controls {
  display: grid;
  gap: 10px;
}

.site-search input {
  width: 100%;
  min-height: 56px;
  padding: 13px 15px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.site-search input:focus {
  outline: 3px solid rgba(227, 30, 43, 0.25);
  outline-offset: 2px;
}

.site-search > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.search-summary {
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.search-results {
  display: grid;
}

.search-results > a,
.search-results article a {
  display: grid;
  gap: 9px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.search-results > a:first-child,
.search-results article:first-child a {
  border-top: 1px solid var(--line);
}

.search-results > a span,
.search-results article span {
  color: var(--red-dark);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.search-results > a strong,
.search-results article h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 400;
  line-height: 1.05;
}

.search-results article p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.search-results a:hover h2,
.search-results > a:hover strong {
  color: var(--red-dark);
}

@media (max-width: 1180px) {
  :root {
    --page: min(100% - 50px, 1280px);
  }

  .site-header__inner {
    grid-template-columns: 190px 1fr;
    gap: 25px;
  }

  .brand {
    width: 185px;
  }

  .primary-nav {
    gap: 18px;
    font-size: 0.72rem;
  }

  .nav-quote {
    padding-inline: 14px;
  }

  .manufacturer-grid--compact {
    grid-template-columns: repeat(4, 1fr);
  }

  .option-grid,
  .audience-grid,
  .tour-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .decision-section {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .quote-prep-card {
    grid-column: 2;
  }
}

@media (max-width: 1100px) {
  :root {
    --page: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 85px;
  }

  .utility-bar {
    display: none;
  }

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

  .site-search {
    position: static;
  }

  .site-header__inner {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 190px;
  }

  .menu-toggle {
    display: inline-flex;
    min-width: 90px;
    min-height: 46px;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-toggle__lines {
    display: flex;
    width: 26px;
    height: 18px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .menu-toggle__lines i {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: rotate 180ms ease, translate 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
    translate: 0 4px;
    rotate: 45deg;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
    translate: 0 -4px;
    rotate: -45deg;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 20px;
    background: var(--paper);
  }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .primary-nav > a,
  .product-menu > summary {
    min-height: 58px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .primary-nav > a::after,
  .product-menu > summary::after {
    display: none;
  }

  .product-menu__panel {
    position: static;
    width: 100%;
    padding: 20px 0 10px;
    border: 0;
    box-shadow: none;
  }

  .product-menu__panel .kicker {
    display: none;
  }

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

  .product-menu__links a {
    min-height: 62px;
    font-size: 1.25rem;
  }

  .nav-quote {
    min-height: 58px !important;
    justify-content: center !important;
    margin-top: 20px;
    color: var(--white);
    font-family: var(--sans) !important;
    font-size: 0.8125rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
  }

  .mobile-nav-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    padding: 25px 0;
    font-size: 0.8125rem;
  }

  .mobile-nav-contact a {
    color: var(--red-dark);
  }

  .inner-hero {
    grid-template-columns: 1fr;
  }

  .inner-hero__copy {
    max-width: none;
    padding: 80px max(24px, calc((100vw - 720px) / 2));
  }

  .inner-hero__media {
    min-height: 620px;
  }

  .home-story__topline,
  .home-story__stage,
  .home-story__understory,
  .home-story__chapters {
    width: calc(100% - 48px);
  }

  .home-story__headline {
    max-width: 70%;
  }

  .home-story__headline h1 {
    font-size: clamp(3.25rem, 7.1vw, 5.65rem);
  }

  .home-story__play {
    top: clamp(18px, 3vw, 32px);
    bottom: auto;
  }

  .home-story__understory {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-story__understory .button-row {
    justify-content: flex-start;
  }

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

  .proof-strip > div:nth-child(2),
  .about-facts > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-child(-n+2),
  .about-facts > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .guidance-section,
  .showroom-section,
  .service-intro,
  .contact-workspace,
  .location-section,
  .about-story,
  .tour-location {
    grid-template-columns: 1fr;
  }

  .guidance-section__caption {
    right: 25px;
  }

  .showroom-section__media {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .reviews-section,
  .review-archive,
  .review-themes,
  .virtual-tour-section,
  .visit-prep,
  .manufacturer-disclaimer,
  .future-topics,
  .project-review,
  .showroom-values {
    grid-template-columns: 1fr;
  }

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

  .review-grid--home .review-card:last-child {
    grid-column: 1 / -1;
  }

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

  .manufacturer-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-heading--split,
  .quote-band__inner,
  .gallery-context,
  .review-invitation,
  .about-location,
  .library-intro,
  .review-intro,
  .manufacturer-intro,
  .project-context,
  .generic-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .quote-band__actions {
    justify-content: flex-start;
  }

  .category-rail,
  .manufacturer-category-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .category-rail > *,
  .manufacturer-category-nav > * {
    min-width: max-content;
  }

  .service-intro__image {
    max-width: 520px;
  }

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

  .quote-prep-card {
    grid-column: auto;
  }

  .contact-form-intro,
  .content-aside {
    position: static;
  }

  .location-section__map-card {
    min-height: 420px;
  }

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

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

  .site-footer__top {
    grid-template-columns: 1.4fr repeat(2, 0.7fr);
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100% - 36px);
  }

  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  html {
    scroll-padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  a,
  button,
  input,
  select,
  textarea,
  summary {
    scroll-margin-block: 85px calc(82px + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.6rem);
  }

  .section {
    padding: 66px 18px;
  }

  .reviews-section__heading h2 {
    font-size: clamp(2.35rem, 11vw, 2.8rem);
  }

  .site-header__inner {
    width: calc(100% - 32px);
  }

  .brand {
    width: 158px;
  }

  .menu-toggle {
    width: 46px;
    min-width: 46px;
    justify-content: center;
  }

  .menu-toggle > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .inner-hero__copy {
    padding: 34px 18px 76px;
  }

  .inner-hero__copy h1,
  .inner-hero--compact .inner-hero__copy h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .inner-hero__description {
    font-size: 1.12rem;
  }

  .inner-hero__media,
  .inner-hero--compact .inner-hero__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
    order: -1;
  }

  .home-story {
    padding-top: 14px;
  }

  .home-story__topline,
  .home-story__understory,
  .home-story__chapters {
    width: calc(100% - 36px);
  }

  .home-story__stage {
    width: 100%;
    border-right: 0;
    border-left: 0;
  }

  .home-story__topline {
    min-height: 46px;
    font-size: 0.62rem;
  }

  .home-story__topline p:last-child {
    display: none;
  }

  .home-story__shade {
    background: linear-gradient(0deg, rgba(5, 7, 8, 0.5), transparent 55%);
  }

  .home-story__headline {
    position: static;
    max-width: none;
    padding: 40px 18px 14px;
    pointer-events: auto;
  }

  .home-story__headline h1 {
    font-size: clamp(2.8rem, 12.4vw, 3.85rem);
    text-shadow: none;
  }

  .home-story__headline .kicker {
    color: #f4beb5;
    text-shadow: none;
  }

  .home-story__play {
    top: auto;
    right: auto;
    bottom: 12px;
    left: 12px;
    min-height: 54px;
    gap: 10px;
    padding: 6px 12px 6px 6px;
    background: rgba(15, 16, 15, 0.9);
  }

  .home-story__play-icon {
    width: 40px;
    height: 40px;
  }

  .home-story__play small {
    display: none;
  }

  .home-story__play strong {
    font-size: 0.62rem;
  }

  .home-story__understory {
    gap: 24px;
    padding: 28px 0 34px;
  }

  .home-story__lede {
    margin-bottom: 19px;
    font-size: 1.1rem;
  }

  .home-story__audience {
    line-height: 1.7;
  }

  .home-story__understory .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-story__understory .button {
    width: 100%;
  }

  .home-story__chapters-heading {
    display: block;
  }

  .home-story__chapters-heading > p:last-child {
    margin-top: 6px;
  }

  .home-story__chapter-rail {
    display: flex;
    overflow-x: auto;
    margin-right: -18px;
    border-right: 1px solid var(--line-light);
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .home-story__chapter {
    min-width: 164px;
    scroll-snap-align: start;
  }

  .film-room__shell {
    padding: 0;
  }

  .film-room__header {
    min-height: 68px;
    padding: 0 16px;
    border-top: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .film-room__controls {
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 106px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 5px 10px;
    padding: 6px 10px max(6px, env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .film-room__controls [data-film-mute] {
    grid-column: 1;
  }

  .film-room__controls [data-film-fullscreen] {
    grid-column: 3;
  }

  .film-room__controls button {
    min-height: 44px;
    padding-inline: 4px;
    font-size: 0.62rem;
  }

  .film-room__controls output {
    font-size: 0.62rem;
  }

  .film-room__progress {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .film-room__progress input {
    height: 6px;
  }

  .film-room__progress input::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
  }

  .film-room__progress input::-moz-range-thumb {
    width: 17px;
    height: 17px;
  }

  .film-room__screen:has(.film-room__controls:not([hidden])) video {
    height: calc(100% - 106px);
    margin-bottom: 106px;
  }

  .film-room__end {
    padding: 24px 18px 112px;
  }

  .film-room__end h2 {
    margin-bottom: 26px;
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .film-room__end .button-row {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .breadcrumbs {
    margin-bottom: 24px;
  }

  .inner-hero__description {
    margin-top: 24px;
  }

  .inner-hero__actions {
    margin-top: 24px;
  }

  .proof-strip > div,
  .about-facts > div {
    min-height: 110px;
    padding: 20px 18px;
  }

  .proof-strip strong,
  .about-facts strong {
    font-size: 1.3rem;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading--split {
    gap: 25px;
  }

  .product-paths {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .product-path:nth-child(even) {
    translate: 0;
  }

  .product-path__copy h3 {
    font-size: 3rem;
  }

  .guidance-section {
    gap: 65px;
  }

  .guidance-section__media img {
    aspect-ratio: 4 / 5;
  }

  .guidance-section__caption {
    right: 0;
    bottom: -28px;
    width: 78%;
    padding: 20px;
  }

  .project-editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

  .project-editorial-grid > .project-card,
  .project-editorial-grid > .project-card:nth-child(1),
  .project-editorial-grid > .project-card:nth-child(4) {
    grid-column: 1;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(15) {
    grid-column: auto;
  }

  .gallery-grid .project-card__copy {
    padding-top: 14px;
  }

  .gallery-grid .project-card__copy .kicker {
    margin-bottom: 7px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .gallery-grid .project-card__copy h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
  }

  .gallery-grid .project-card__index {
    right: 8px;
    bottom: 8px;
    width: 34px;
    height: 34px;
  }

  .project-editorial-grid > .project-card:nth-child(3),
  .project-editorial-grid > .project-card:nth-child(6) {
    margin-top: 0;
  }

  .project-card--featured .project-card__image {
    aspect-ratio: 4 / 3;
  }

  .showroom-section__media {
    min-height: 440px;
    padding: 0 0 55px 35px;
  }

  .showroom-main-image {
    height: 390px;
  }

  .showroom-detail-image {
    width: 145px;
    border-width: 8px;
  }

  .showroom-stamp {
    top: -25px;
    right: 0;
    width: 76px;
    height: 76px;
    font-size: 0.55rem;
  }

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

  .manufacturer-card,
  .manufacturer-grid--compact .manufacturer-card {
    min-height: 170px;
    padding: 13px;
  }

  .manufacturer-logo,
  .manufacturer-grid--compact .manufacturer-logo {
    min-height: 90px;
  }

  .manufacturer-logo img,
  .manufacturer-grid--compact .manufacturer-logo img {
    max-width: 130px;
    height: 65px;
  }

  .manufacturer-meta strong,
  .manufacturer-grid--compact .manufacturer-meta strong {
    font-size: 0.87rem;
  }

  .manufacturer-link {
    display: none;
  }

  .review-grid--home {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .review-grid--home .review-card:last-child {
    grid-column: auto;
  }

  .review-grid--home .review-card {
    min-height: 0;
  }

  .review-card__index {
    margin-bottom: 35px;
  }

  .quote-band {
    padding: 75px 18px;
  }

  .quote-band__inner {
    gap: 35px;
  }

  .quote-band__actions,
  .quote-band__actions .button,
  .button-row .button {
    width: 100%;
  }

  .category-rail,
  .manufacturer-category-nav {
    min-height: 58px;
  }

  .category-rail > *,
  .manufacturer-category-nav > * {
    padding: 10px 18px;
  }

  .service-intro {
    gap: 42px;
  }

  .service-intro__image {
    max-width: none;
  }

  .service-intro__image img {
    aspect-ratio: 4 / 3;
  }

  .option-grid,
  .audience-grid,
  .tour-category-grid,
  .gallery-guide,
  .contact-path-grid,
  .review-grid--archive,
  .review-theme-list,
  .manufacturer-question-grid,
  .project-review__lists {
    grid-template-columns: 1fr;
  }

  .option-card,
  .audience-grid article,
  .gallery-guide article,
  .contact-path-grid article,
  .tour-category-grid article,
  .review-theme-list article,
  .manufacturer-question-grid p {
    min-height: 0;
  }

  .option-card > span,
  .audience-grid article > span,
  .gallery-guide article > span,
  .contact-path-grid article > span,
  .tour-category-grid article > span,
  .review-theme-list span,
  .manufacturer-question-grid span {
    margin-bottom: 34px;
  }

  .decision-section {
    gap: 42px;
  }

  .project-grid,
  .project-grid--four {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-list summary {
    min-height: 78px;
    grid-template-columns: 36px 1fr auto;
    font-size: 1.25rem;
  }

  .faq-list details > p {
    padding: 0 25px 25px 52px;
  }

  .gallery-browser__top {
    display: block;
  }

  .gallery-filters {
    margin-bottom: 45px;
  }

  .gallery-filters button {
    flex: 1 1 50%;
  }

  .contact-workspace {
    gap: 45px;
  }

  .project-form {
    padding: 28px 18px;
  }

  .location-section__map-card {
    min-height: 410px;
    padding: 35px 25px;
  }

  .location-section__details dl > div,
  .tour-hours dl > div {
    display: grid;
    gap: 2px;
  }

  .about-facts strong {
    font-size: 1.25rem;
  }

  .about-story {
    gap: 55px;
  }

  .about-story__image img {
    aspect-ratio: 4 / 3;
  }

  .value-list article,
  .visit-prep__list li {
    grid-template-columns: 42px 1fr;
  }

  .review-card--archive {
    min-height: 0;
  }

  .tour-embed,
  .tour-embed > img,
  .tour-embed iframe {
    min-height: 450px;
    height: 450px;
  }

  .manufacturer-category-overview {
    grid-template-columns: 1fr;
  }

  .manufacturer-category-overview > article {
    min-height: 0;
    padding: 48px 22px;
  }

  .manufacturer-category-overview > article > span {
    margin-bottom: 40px;
  }

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

  .article-card__media {
    aspect-ratio: 4 / 3;
  }

  .article-list article {
    grid-template-columns: 38px 1fr;
  }

  .article-list article > .text-link {
    grid-column: 2;
    justify-self: start;
  }

  .project-image-grid {
    grid-template-columns: 1fr;
    padding-right: 18px;
    padding-left: 18px;
  }

  .project-image-grid__wide {
    grid-column: 1;
  }

  .project-image-grid__wide img {
    aspect-ratio: 4 / 3;
  }

  .rich-content {
    font-size: 1.02rem;
  }

  .rich-content iframe {
    min-height: 300px;
  }

  .site-footer {
    padding: 70px 18px 25px;
  }

  .site-footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 25px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-brand > a:first-child {
    width: 190px;
  }

  .site-footer__bottom {
    display: grid;
  }

  .mobile-actions {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: calc(62px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--ink);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    translate: 0 100%;
    transition: opacity 180ms ease, translate 220ms ease, visibility 220ms;
    visibility: hidden;
  }

  body.show-mobile-actions .mobile-actions {
    opacity: 1;
    pointer-events: auto;
    translate: 0;
    visibility: visible;
  }

  body.show-mobile-actions #trustedsite-tm-image {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }

  .mobile-actions a {
    display: grid;
    min-height: 62px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    font-family: var(--sans);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    place-items: center;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-actions a:first-child,
  .mobile-actions__quote {
    background: var(--red);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* WordPress block-theme integration and plugin-cascade guardrails. */
.wp-site-blocks {
  padding: 0;
}

.wp-site-blocks > *,
.wp-block-template-part {
  margin-block-start: 0;
}

.wp-block-post-content > :first-child {
  margin-top: 0;
}

.wp-block-post-content > :last-child {
  margin-bottom: 0;
}

.wp-block-post-featured-image.alignfull {
  margin: 0;
}

.entry-header {
  padding: clamp(82px, 9vw, 138px) max(40px, calc((100vw - 1280px) / 2)) clamp(52px, 6vw, 82px);
  background: var(--paper);
}

.entry-header > * {
  width: min(100%, 1040px);
}

.entry-header h1,
.entry-header .archive-title {
  overflow-wrap: anywhere;
  font-size: clamp(3rem, 6.8vw, 7rem);
}

.entry-header .wp-block-term-description {
  max-width: 760px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.entry-meta {
  gap: 10px 22px;
  margin-top: 24px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.78rem;
}

.content-shell {
  width: var(--page);
  max-width: 1280px;
  margin-inline: auto;
  padding-block: clamp(58px, 7vw, 105px);
}

.content-shell--narrow {
  width: min(760px, calc(100% - 48px));
}

.content-shell > :first-child {
  margin-top: 0;
}

.wp-block-post-featured-image.alignwide {
  width: var(--page);
  margin: 0 auto;
  overflow: hidden;
  background: var(--ink-soft);
}

.wp-block-post-featured-image.alignwide img {
  width: 100%;
}

.post-list > .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-list .wp-block-post {
  min-width: 0;
}

.post-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.post-card__media {
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.post-card__media img {
  width: 100%;
  transition: scale 300ms ease;
}

.post-card:hover .post-card__media img {
  scale: 1.02;
}

.post-card__body {
  padding: clamp(22px, 2.5vw, 32px);
}

.post-card__meta {
  justify-content: space-between;
  gap: 8px 18px;
  margin-bottom: 20px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.75rem;
}

.post-card__meta .kicker {
  margin: 0;
  font-size: 0.7rem;
}

.post-card h2 {
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
}

.post-card h2 a {
  text-decoration: none;
}

.post-card h2 a:hover {
  color: var(--red-dark);
}

.post-card .wp-block-post-excerpt {
  color: var(--muted);
}

.post-card .wp-block-post-excerpt__more-link {
  display: inline-flex;
  margin-top: 15px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.doors-pagination {
  gap: 8px;
  margin-top: clamp(45px, 6vw, 80px);
}

.doors-pagination a,
.doors-pagination .page-numbers,
.doors-pagination .wp-block-query-pagination-numbers > span {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.8125rem;
  place-items: center;
  text-decoration: none;
}

.doors-pagination .current,
.doors-pagination a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.search-form-shell {
  width: min(100%, 780px);
  margin: 0 0 clamp(42px, 6vw, 72px);
}

.search-form-shell .wp-block-search,
.not-found .wp-block-search,
.sitemap-search .wp-block-search {
  width: 100%;
}

.search-form-shell .wp-block-search__inside-wrapper,
.not-found .wp-block-search__inside-wrapper,
.sitemap-search .wp-block-search__inside-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0;
  border: 0;
}

.search-form-shell .wp-block-search__input,
.not-found .wp-block-search__input,
.sitemap-search .wp-block-search__input {
  min-width: 0;
  min-height: 56px;
  padding: 13px 15px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
}

.search-form-shell .wp-block-search__button,
.not-found .wp-block-search__button,
.sitemap-search .wp-block-search__button {
  min-height: 56px;
  margin: 0;
  padding: 13px 24px;
  border: 1px solid var(--red);
  border-radius: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.search-results > .wp-block-post-template {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.search-results .wp-block-post {
  min-width: 0;
}

.search-result-card {
  min-width: 0;
  padding: clamp(25px, 4vw, 42px) 0;
  border-bottom: 1px solid var(--line);
}

.search-result-card .wp-block-post-date {
  margin-bottom: 9px;
  color: var(--red-dark);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result-card h2 {
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.search-result-card h2 a {
  text-decoration: none;
}

.search-result-card .wp-block-post-excerpt {
  max-width: 820px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.project-empty-state {
  grid-column: 2;
  max-width: 760px;
  padding: clamp(28px, 5vw, 58px);
  border-top: 3px solid var(--red);
  background: var(--sand);
}

.project-empty-state h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.project-empty-state p {
  color: var(--muted);
}

.doors-etc-project-has-content .project-empty-state {
  display: none;
}

.faq-section--standalone .faq-section__heading > p:last-child {
  max-width: 620px;
  color: var(--muted);
}

.video-gallery-links__grid,
.human-sitemap__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(42px, 6vw, 78px);
  background: var(--line);
  border: 1px solid var(--line);
}

.video-gallery-links__grid > article,
.human-sitemap__grid > section {
  min-width: 0;
  padding: clamp(26px, 4vw, 48px);
  background: var(--white);
}

.video-gallery-links__grid h3,
.human-sitemap__grid h3 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.video-gallery-links__grid article > p:not(.kicker) {
  color: var(--muted);
}

.video-gallery-links__list {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.video-gallery-links__list a,
.human-sitemap__grid a {
  overflow-wrap: anywhere;
  text-decoration: none;
}

.video-gallery-links__list a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.video-gallery-links__list a::after {
  color: var(--red-dark);
  content: "\2192";
}

.human-sitemap__grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.human-sitemap__grid li + li {
  margin-top: 14px;
}

.human-sitemap__grid a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

.sitemap-search {
  text-align: center;
}

.sitemap-search h2 {
  margin-bottom: 34px;
}

.sitemap-search .wp-block-search {
  width: min(100%, 760px);
  margin-inline: auto;
}

/* The companion block stylesheet loads later; these selectors keep the theme contract authoritative. */
.doors-etc-theme .home-story__play {
  left: auto;
}

.doors-etc-theme .manufacturer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.doors-etc-theme .gallery-filters button {
  font-size: 0.8125rem;
}

.doors-etc-theme .gallery-browser .gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px) clamp(18px, 3vw, 38px);
}

.doors-etc-theme .gallery-browser .gallery-item {
  grid-column: span 4;
}

.doors-etc-theme .gallery-browser .gallery-item:nth-child(1),
.doors-etc-theme .gallery-browser .gallery-item:nth-child(8),
.doors-etc-theme .gallery-browser .gallery-item:nth-child(15) {
  grid-column: span 8;
}

.wp-block-query.gallery-grid {
  display: block;
}

.wp-block-query.gallery-grid > .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 52px);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wp-block-query.gallery-grid > .wp-block-post-template .project-card {
  min-width: 0;
}

.wp-block-query.gallery-grid > .wp-block-post-template .project-card__image {
  aspect-ratio: 4 / 3;
}

body.admin-bar .site-header {
  top: 32px;
}

/* Keep WordPress's two admin-toolbar menus on one row for signed-in editors. */
#wpadminbar #wp-admin-bar-root-default {
  float: left;
  width: auto;
}

@media (max-width: 1100px) {
  .post-list > .wp-block-post-template,
  .wp-block-query.gallery-grid > .wp-block-post-template {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doors-etc-theme .manufacturer-grid,
  .doors-etc-theme .manufacturer-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-gallery-links__grid,
  .human-sitemap__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  .entry-header {
    padding: 58px 18px 42px;
  }

  .entry-header h1,
  .entry-header .archive-title {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .content-shell,
  .content-shell--narrow {
    width: calc(100% - 36px);
    padding-block: 54px;
  }

  .post-list > .wp-block-post-template,
  .wp-block-query.gallery-grid > .wp-block-post-template {
    grid-template-columns: 1fr;
  }

  .post-card__body {
    padding: 24px 20px;
  }

  .search-form-shell .wp-block-search__inside-wrapper,
  .not-found .wp-block-search__inside-wrapper,
  .sitemap-search .wp-block-search__inside-wrapper {
    grid-template-columns: 1fr;
  }

  .search-form-shell .wp-block-search__input,
  .not-found .wp-block-search__input,
  .sitemap-search .wp-block-search__input {
    width: 100%;
    font-size: 1rem;
  }

  .search-form-shell .wp-block-search__button,
  .not-found .wp-block-search__button,
  .sitemap-search .wp-block-search__button {
    width: 100%;
  }

  .project-empty-state {
    grid-column: auto;
  }

  .doors-etc-theme .gallery-filters {
    flex-wrap: nowrap;
    gap: 8px;
    margin-right: -18px;
    padding: 0 18px 8px 0;
    border-left: 0;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
  }

  .doors-etc-theme .gallery-filters button {
    flex: 0 0 auto;
    min-width: max-content;
    padding-inline: 18px;
    border: 1px solid var(--line);
    font-size: 0.8125rem;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .doors-etc-theme .gallery-browser .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 12px;
  }

  .doors-etc-theme .gallery-browser .gallery-item,
  .doors-etc-theme .gallery-browser .gallery-item:nth-child(1),
  .doors-etc-theme .gallery-browser .gallery-item:nth-child(8),
  .doors-etc-theme .gallery-browser .gallery-item:nth-child(15) {
    grid-column: auto;
  }

  .menu-toggle,
  .mobile-actions a,
  .film-room__controls button,
  .film-room__controls output,
  .site-footer__bottom,
  .site-footer__bottom a {
    font-size: 0.8125rem;
  }

  .primary-nav .nav-quote,
  .primary-nav .mobile-nav-contact,
  .primary-nav .mobile-nav-contact a {
    font-size: 0.8125rem !important;
  }

  .doors-etc-theme .manufacturer-grid,
  .doors-etc-theme .manufacturer-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-story__chapter-copy small {
    font-size: 0.7rem;
  }

  .home-story__chapter-copy strong,
  .home-story__play strong {
    font-size: 0.8125rem;
  }
}
