:root {
  --ink: #111111;
  --text: #252525;
  --muted: #616161;
  --line: #d9d9d9;
  --surface: #ffffff;
  --soft: #f5f6f4;
  --panel: #eef1ee;
  --carbon: #262626;
  --accent: #f06423;
  --accent-dark: #cf4d12;
  --gold: #9b7a3d;
  --focus: #0653b6;
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --edge: clamp(22px, 6vw, 88px);
  --measure: 1180px;
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--surface);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: var(--font-body);
  line-height: 1.45;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}

p {
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.45;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 20px var(--edge);
  color: #ffffff;
  background: transparent;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled,
.site-header-solid {
  min-height: 68px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.site-header nav a {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  white-space: nowrap;
}

.brand span {
  line-height: 1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-footer .brand-mark {
  filter: brightness(0) invert(1);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.8vw, 36px);
}

.site-header nav a {
  position: relative;
  padding: 8px 0;
}

.site-header nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transition: right 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
.site-header nav a.active::after {
  right: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.hero,
.page-hero,
.section,
.contact-layout {
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  min-height: auto;
  padding-top: 88px;
  padding-bottom: 82px;
  background: var(--surface);
}

.home-carousel {
  position: relative;
  margin-top: 74px;
  overflow: hidden;
  background: var(--carbon);
  --carousel-panel-width: min(56vw, 760px);
}

.carousel-track {
  position: relative;
  min-height: clamp(520px, calc(100svh - 74px), 760px);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1700ms cubic-bezier(0.37, 0, 0.22, 1);
}

.carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.slider-image-bg,
.slider-image-bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.slider-image-bg img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.045);
  transition: transform 9000ms ease;
}

.carousel-slide.is-active .slider-image-bg img {
  transform: scale(1);
}

.carousel-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04) 68%, rgba(0, 0, 0, 0.08));
}

.carousel-copy {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--carousel-panel-width);
  min-width: 560px;
  padding: clamp(44px, 6vw, 86px) var(--edge) clamp(112px, 12vw, 154px);
  color: #ffffff;
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.82), rgba(20, 20, 20, 0.68));
}

.carousel-copy h3 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(38px, 4.7vw, 66px);
  overflow-wrap: anywhere;
}

.carousel-copy .description {
  max-width: 480px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.45;
}

.carousel-controls {
  position: absolute;
  z-index: 3;
  left: var(--carousel-panel-width);
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.carousel-progress {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.carousel-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transform-origin: left center;
}

.carousel-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--accent);
  background: #ffffff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-1px);
}

.carousel-count {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.hero-copy {
  color: var(--text);
}

.hero-copy h1 {
  color: var(--ink);
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--text);
}

.hero-media img,
.page-hero-image,
.feature-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.image-polished {
  filter: saturate(0.92) contrast(1.04) brightness(1.02);
}

.hero-media img {
  height: clamp(300px, 36vw, 470px);
}

.facade-summary {
  text-align: center;
}

.centered {
  text-align: center;
}

.section-intro.centered {
  width: 100%;
  max-width: 760px;
}

.centered p,
.centered h1,
.centered h2 {
  margin-left: auto;
  margin-right: auto;
}

.centered p {
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
}

.wide-feature {
  max-width: min(980px, 100%);
  margin: 34px auto 0;
}

.wide-feature img {
  width: 100%;
  height: clamp(300px, 42vw, 520px);
  border-radius: var(--radius);
  object-fit: cover;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 46px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button::after {
  content: "->";
  margin-left: 18px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-secondary {
  color: var(--accent);
  background: transparent;
}

.section {
  padding-top: clamp(76px, 10vw, 132px);
  padding-bottom: clamp(76px, 10vw, 132px);
}

.section-inner {
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
}

.section-muted {
  background: var(--soft);
}

.two-column,
.page-hero,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
}

.two-column > *,
.page-hero > *,
.contact-layout > * {
  min-width: 0;
}

.two-column-reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 0.9fr);
}

.copy-block p:not(.eyebrow) {
  max-width: 620px;
  overflow-wrap: break-word;
}

.feature-image {
  width: 100%;
  margin: 0;
}

.feature-image img {
  width: 100%;
  height: clamp(280px, 42vw, 520px);
}

.section-intro,
.section-cta {
  max-width: var(--measure);
  margin: 0 auto;
}

.section-intro {
  margin-bottom: 36px;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--measure);
  margin: 0 auto;
}

.project-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--carbon);
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.72));
}

.project-card div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 28px;
}

.project-card span {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card h3 {
  color: #ffffff;
}

.project-card p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.04);
}

.image-preview-trigger {
  cursor: zoom-in;
}

.image-preview-trigger:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(10, 11, 12, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-open {
  overflow: hidden;
}

.image-lightbox-figure {
  display: grid;
  gap: 14px;
  width: min(1180px, calc(100vw - 48px));
  max-height: calc(100vh - 72px);
  margin: 0;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.image-lightbox.is-open .image-lightbox-figure {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.image-lightbox-figure img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 142px);
  border-radius: var(--radius);
  object-fit: contain;
  background: #111111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.image-lightbox-figure figcaption {
  min-height: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.image-lightbox-close {
  position: fixed;
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  z-index: 201;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.72);
  cursor: pointer;
}

.image-lightbox-close::before,
.image-lightbox-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  content: "";
  background: #ffffff;
  transform-origin: center;
}

.image-lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.image-lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 91, 36, 0.92);
  outline: none;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
}

.section-cta p {
  max-width: 620px;
  margin: 0;
  font-size: 15px;
}

.section-cta-end {
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 52px var(--edge);
  color: #ffffff;
  background: var(--carbon);
}

.site-footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.site-footer .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.page-main {
  padding-top: 74px;
}

.page-hero {
  max-width: calc(var(--measure) + var(--edge) + var(--edge));
  padding-top: clamp(70px, 9vw, 128px);
  padding-bottom: clamp(62px, 8vw, 112px);
}

.page-hero-image {
  height: clamp(300px, 44vw, 560px);
}

#project-list {
  scroll-margin-top: 74px;
}

.project-grid-large,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--measure);
  margin: 0 auto;
}

.case-card,
.process-card,
.contact-panel,
.stat {
  border-radius: var(--radius);
  background: #ffffff;
}

.case-card,
.process-card {
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.case-card img,
.process-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.case-card div,
.process-card {
  padding: 26px;
}

.case-card p:not(.eyebrow),
.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.case-card p.case-scope {
  margin-bottom: 18px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-meta li {
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--muted);
  background: var(--soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-content: center;
  gap: 16px;
  max-width: calc(var(--measure) + var(--edge) + var(--edge));
  min-height: clamp(340px, 30vw, 430px);
  margin: 0 auto;
  padding-top: clamp(76px, 10vw, 132px);
}

.stat {
  display: grid;
  align-content: center;
  min-height: 172px;
  border: 1px solid var(--line);
  padding: 28px;
}

.stat strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-card h3 {
  margin-top: 22px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--measure);
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-rows: 170px 18px 52px 126px auto;
  align-items: start;
  row-gap: 14px;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.product-image {
  width: 100%;
  height: 170px;
  margin-bottom: 0;
  object-fit: cover;
}

.product-card .eyebrow {
  margin: 0;
}

.product-card h3 {
  margin: 0;
}

.product-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.product-diagram {
  position: relative;
  display: grid;
  align-self: start;
  min-height: 150px;
  margin-bottom: 24px;
  border: 1px solid #c9cec9;
  background:
    linear-gradient(135deg, rgba(240, 100, 35, 0.12), transparent 34%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(17, 17, 17, 0.04) 18px 19px),
    var(--panel);
}

.product-diagram span {
  position: absolute;
  display: block;
  background: #27313a;
}

.product-diagram-window span:nth-child(1),
.product-diagram-curtain span:nth-child(1) {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
}

.product-diagram-window span:nth-child(2),
.product-diagram-curtain span:nth-child(2) {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
}

.product-diagram-window span:nth-child(3) {
  left: 14%;
  top: 14%;
  width: 2px;
  height: 72%;
}

.product-diagram-window span:nth-child(4) {
  right: 14%;
  top: 14%;
  width: 2px;
  height: 72%;
}

.product-diagram-door span:nth-child(1) {
  left: 24%;
  top: 12%;
  width: 2px;
  height: 76%;
}

.product-diagram-door span:nth-child(2) {
  left: 24%;
  right: 18%;
  top: 12%;
  height: 2px;
}

.product-diagram-door span:nth-child(3) {
  right: 18%;
  top: 12%;
  width: 2px;
  height: 76%;
}

.product-diagram-curtain span:nth-child(3) {
  left: 25%;
  top: 0;
  bottom: 0;
  width: 2px;
}

.product-diagram-curtain span:nth-child(4) {
  right: 25%;
  top: 0;
  bottom: 0;
  width: 2px;
}

.product-diagram-curtain span:nth-child(5) {
  left: 0;
  right: 0;
  top: 28%;
  height: 2px;
}

.product-diagram-facade span:nth-child(1) {
  left: 12%;
  right: 12%;
  top: 22%;
  height: 2px;
}

.product-diagram-facade span:nth-child(2) {
  left: 18%;
  right: 18%;
  top: 48%;
  height: 2px;
}

.product-diagram-facade span:nth-child(3) {
  left: 24%;
  right: 24%;
  top: 74%;
  height: 2px;
}

.product-diagram-facade span:nth-child(4) {
  left: 50%;
  top: 10%;
  bottom: 10%;
  width: 2px;
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  align-self: start;
  gap: 8px;
  margin-top: 0;
}

.spec-row span {
  border: 1px solid #d4d7d4;
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--muted);
  background: #fafafa;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-layout {
  min-height: calc(100svh - 74px);
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(72px, 10vw, 132px);
}

.contact-panel {
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
}

.contact-panel ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-panel li {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: var(--muted);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .split-hero,
  .two-column,
  .two-column-reverse,
  .page-hero,
  .contact-layout,
  .project-cards,
  .project-grid-large,
  .process-grid,
  .product-grid,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 420px;
  }

  .carousel-track {
    min-height: 560px;
  }

  .home-carousel {
    --carousel-panel-width: min(68vw, 640px);
  }

  .carousel-copy {
    min-width: 390px;
    padding-right: clamp(28px, 5vw, 58px);
  }

  .project-card,
  .project-card div {
    min-height: 320px;
  }

  .product-card {
    grid-template-rows: 170px auto auto auto auto;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: 92px;
  }

  .site-header nav {
    width: 100%;
    justify-content: flex-start;
    gap: clamp(14px, 6vw, 26px);
    overflow-x: auto;
  }

  .site-header nav a {
    flex: 0 0 auto;
    font-size: 12px;
  }

  .page-main {
    padding-top: 100px;
  }

  main,
  .section,
  .page-hero,
  .section-inner,
  .project-grid-large,
  .product-grid {
    max-width: 100%;
    min-width: 0;
  }

  .page-hero > *,
  .section-inner,
  .project-grid-large,
  .product-grid,
  .stats-band {
    width: calc(100vw - 72px) !important;
    max-width: calc(100vw - 72px) !important;
  }

  .split-hero {
    padding-top: 128px;
  }

  .home-carousel {
    margin-top: 100px;
  }

  .carousel-track {
    min-height: 640px;
  }

  .carousel-copy {
    top: auto;
    bottom: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 44px var(--edge) 118px;
    background: linear-gradient(0deg, rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.72));
  }

  .carousel-copy .button {
    width: 100%;
    max-width: 320px;
  }

  .carousel-copy h3 {
    max-width: 16ch;
    font-size: clamp(28px, 7.6vw, 38px);
  }

  .carousel-copy .description {
    max-width: 34ch;
  }

  .carousel-controls {
    left: 50%;
    bottom: 34px;
  }

  .carousel-progress {
    left: 0;
    right: 0;
  }

  .facade-summary .section-intro,
  .facade-summary .section-intro p {
    width: auto;
    max-width: 300px;
  }

  h1 {
    font-size: clamp(30px, 8vw, 44px);
    overflow-wrap: anywhere;
  }

  .page-hero h1 {
    max-width: 10ch;
    font-size: clamp(30px, 9vw, 36px);
  }

  .page-hero .button {
    width: 100%;
    max-width: 320px;
  }

  .spec-row span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .copy-block p:not(.eyebrow),
  .section-intro p,
  .product-card p:not(.eyebrow) {
    width: 100%;
    max-width: min(26ch, calc(100vw - var(--edge) - var(--edge)));
    overflow-wrap: anywhere;
  }

  .button,
  .button-row {
    width: 100%;
  }

  .section-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
