.s02-document {
  scroll-behavior: smooth;
  background: #0a0908;
}

.s02-body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #0a0908;
}

.s02-page {
  --s02-ink: #0a0908;
  --s02-graphite: #131210;
  --s02-panel: #1a1815;
  --s02-coal: #24211d;
  --s02-paper: #f1ede8;
  --s02-warm-white: #f7f3ee;
  --s02-dark-text: #26211d;
  --s02-muted-dark: #776f67;
  --s02-muted-light: #b8aea3;
  --s02-bronze: #a9825e;
  --s02-brass: #c5a27a;
  --s02-line-dark: rgba(229, 211, 190, 0.16);
  --s02-line-light: rgba(55, 46, 38, 0.18);
  color: var(--s02-warm-white);
  background: var(--s02-ink);
  font: 400 14px/1.55 Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

.s02-page,
.s02-page * {
  box-sizing: border-box;
}

.s02-page img,
.s02-page video {
  display: block;
  max-width: 100%;
}

.s02-page a {
  color: inherit;
  text-decoration: none;
}

.s02-page button,
.s02-page input {
  font: inherit;
}

.s02-page button {
  color: inherit;
}

.s02-page :focus-visible,
.s02-skip:focus-visible {
  outline: 2px solid var(--s02-brass, #c5a27a);
  outline-offset: 3px;
}

.s02-document.s02-scroll-lock,
.s02-document.s02-scroll-lock .s02-body {
  overflow: hidden;
}

.s02-skip {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  color: #0a0908;
  background: #f7f3ee;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.s02-outer,
.s02-inner {
  width: calc(100% - 128px);
  margin-inline: auto;
}

.s02-outer { max-width: 1680px; }
.s02-inner { max-width: 1176px; }

.s02-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.s02-eyebrow {
  margin: 0 0 13px;
  color: var(--s02-bronze);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.s02-page h1,
.s02-page h2,
.s02-page h3,
.s02-page p {
  margin-top: 0;
}

.s02-page h1,
.s02-page h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.s02-page h1 {
  font-size: clamp(50px, 4.17vw, 60px);
  line-height: 0.98;
  letter-spacing: 0.035em;
}

.s02-page h2 {
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: 0.025em;
}

.s02-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid var(--s02-brass);
  border-radius: 2px;
  padding: 0 26px;
  color: var(--s02-ink);
  background: var(--s02-brass);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.s02-button:hover {
  color: var(--s02-warm-white);
  background: transparent;
  transform: translateY(-2px);
}

.s02-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  color: var(--s02-bronze);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.s02-progress {
  --s02-progress: 0;
  position: fixed;
  z-index: 900;
  inset: 0 0 auto;
  height: 2px;
  background: var(--s02-brass);
  transform: scaleX(var(--s02-progress));
  transform-origin: left;
}

.s02-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  height: 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.s02-header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 170px 1fr auto 48px;
  align-items: center;
  gap: 34px;
}

.s02-logo img {
  width: 150px;
  height: 44px;
}

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

.s02-nav a,
.s02-footer nav a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.s02-nav a:hover,
.s02-footer nav a:hover { color: var(--s02-brass); }

.s02-header-contact {
  display: grid;
  gap: 2px;
  text-align: right;
  white-space: nowrap;
}

.s02-header-contact span { font-size: 11px; letter-spacing: 0.04em; }
.s02-header-contact small { color: var(--s02-muted-light); font-size: 9px; }

.s02-icon-button,
.s02-round-button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--s02-line-dark);
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.32);
  cursor: pointer;
}

.s02-menu-button span {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.s02-menu-button span + span { margin-top: -16px; transform: translateY(5px); }

.s02-hero {
  position: relative;
  height: 900px;
  overflow: hidden;
  background: var(--s02-ink);
}

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

.s02-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.s02-hero-overlay {
  background: linear-gradient(90deg, rgba(7, 7, 6, 0.82) 0%, rgba(7, 7, 6, 0.52) 39%, rgba(7, 7, 6, 0.08) 72%, rgba(7, 7, 6, 0.26) 100%);
}

.s02-hero-light {
  position: absolute;
  top: 42%;
  left: 39%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--s02-brass), transparent);
  box-shadow: 0 0 10px rgba(197, 162, 122, 0.72);
  transform: translateX(-110%);
}

.s02-ready .s02-hero-light { animation: s02-light-sweep 1.4s 800ms ease-out both; }

.s02-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 218px;
}

.s02-hero-copy h1 { max-width: 640px; }
.s02-hero-lead { max-width: 480px; margin: 24px 0 34px; color: var(--s02-muted-light); font-size: 15px; }

.s02-counter {
  position: absolute;
  z-index: 2;
  top: 580px;
  left: max(24px, calc((100vw - 1312px) / 2 - 35px));
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--s02-muted-light);
  font-size: 9px;
}

.s02-counter strong { color: var(--s02-warm-white); font-weight: 500; }
.s02-counter span { width: 1px; height: 32px; background: var(--s02-bronze); }

.s02-media-button {
  position: absolute;
  z-index: 3;
  right: max(64px, calc((100vw - 1312px) / 2));
  top: 548px;
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 14px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.s02-media-play {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--s02-brass);
  border-radius: 50%;
  color: var(--s02-brass);
}

.s02-media-button strong,
.s02-media-button small { display: block; }
.s02-media-button strong { font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; }
.s02-media-button small { margin-top: 5px; color: var(--s02-muted-light); font-size: 9px; }

.s02-benefits {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 20px;
  left: 0;
  display: grid;
  height: 180px;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--s02-line-dark);
  border-radius: 3px;
  background: rgba(15, 14, 12, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.s02-benefit {
  padding: 24px 25px 18px;
  border-right: 1px solid var(--s02-line-dark);
  transition: transform 240ms ease, background 240ms ease;
}

.s02-benefit:last-child { border-right: 0; }
.s02-benefit:hover { background: var(--s02-coal); transform: translateY(-4px); }
.s02-benefit svg { width: 28px; height: 28px; margin-bottom: 15px; fill: none; stroke: var(--s02-brass); stroke-width: 1.4; }
.s02-benefit h3 { margin-bottom: 8px; font: 500 12px/1.25 Arial, sans-serif; letter-spacing: 0.055em; text-transform: uppercase; }
.s02-benefit p { margin-bottom: 0; color: var(--s02-muted-light); font-size: 11px; line-height: 1.45; }

.s02-process {
  height: 272px;
  overflow: hidden;
  border-top: 1px solid var(--s02-line-dark);
  background: radial-gradient(circle at 90% 38%, rgba(169, 130, 94, 0.12), transparent 28%), var(--s02-graphite);
}

.s02-process-grid {
  display: grid;
  height: 100%;
  grid-template-columns: 390px 1fr;
}

.s02-process-rail {
  padding: 42px 40px 24px 0;
  border-right: 1px solid var(--s02-line-dark);
}

.s02-process-rail h2 { margin-bottom: 18px; font-size: 31px; }

.s02-timeline {
  position: relative;
  display: grid;
  margin: 0;
  padding: 70px 0 0 34px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.s02-timeline::before {
  position: absolute;
  top: 96px;
  right: 0;
  left: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--s02-bronze), rgba(197, 162, 122, 0.18));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.s02-timeline.s02-is-visible::before { transform: scaleX(1); }
.s02-timeline li { position: relative; padding: 0 18px 0 0; }
.s02-timeline li::before { position: absolute; top: 22px; left: 0; width: 7px; height: 7px; border: 1px solid var(--s02-brass); border-radius: 50%; background: var(--s02-graphite); box-shadow: 0 0 10px rgba(197, 162, 122, 0.62); content: ""; }
.s02-timeline span { color: var(--s02-bronze); font-size: 9px; }
.s02-timeline h3 { margin: 42px 0 8px; font-size: 11px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; }
.s02-timeline p { max-width: 155px; margin-bottom: 0; color: var(--s02-muted-light); font-size: 10px; line-height: 1.45; }

.s02-projects {
  position: relative;
  height: 500px;
  overflow: hidden;
  color: var(--s02-dark-text);
  background: var(--s02-paper);
}

.s02-section-head {
  display: flex;
  height: 132px;
  align-items: center;
  justify-content: space-between;
}

.s02-section-head h2 { font-size: 32px; }
.s02-project-actions { display: flex; align-items: center; gap: 10px; }
.s02-project-actions .s02-text-link { margin-right: 18px; }
.s02-round-button { border-color: var(--s02-line-light); background: transparent; color: var(--s02-dark-text); }

.s02-project-track {
  display: grid;
  height: 320px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.s02-project-track::-webkit-scrollbar,
.s02-material-rail::-webkit-scrollbar { display: none; }
.s02-project-track.s02-is-dragging { cursor: grabbing; scroll-behavior: auto; }

.s02-project-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--s02-graphite);
  scroll-snap-align: start;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.s02-project-card picture,
.s02-project-card img { width: 100%; height: 100%; }
.s02-project-card img { object-fit: cover; transition: transform 600ms ease; }
.s02-project-card::after { position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, 0.78)); content: ""; pointer-events: none; }
.s02-project-card > div { position: absolute; z-index: 2; right: 20px; bottom: 16px; left: 20px; color: var(--s02-warm-white); }
.s02-project-card h3 { margin: 0 0 3px; font-size: 13px; letter-spacing: 0.1em; }
.s02-project-card p { margin: 0; color: rgba(247, 243, 238, 0.72); font-size: 10px; }
.s02-project-card:hover { box-shadow: 0 18px 48px rgba(31, 25, 20, 0.1); transform: translateY(-4px); }
.s02-project-card:hover img { transform: scale(1.035); }
.s02-project-live { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

.s02-materials {
  display: grid;
  height: 370px;
  grid-template-columns: 62% 38%;
  overflow: hidden;
  background: var(--s02-graphite);
}

.s02-material-content {
  min-width: 0;
  padding: 34px 28px 24px max(64px, calc((100vw - 1176px) / 2));
}

.s02-material-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 20px;
}

.s02-material-heading .s02-eyebrow { grid-column: 1 / -1; }
.s02-material-heading h2 { font-size: 29px; }
.s02-material-rail { display: flex; gap: 8px; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; }

.s02-material-card {
  position: relative;
  flex: 1 1 144px;
  min-width: 108px;
  height: 190px;
  overflow: hidden;
  border: 1px solid var(--s02-line-dark);
  border-radius: 3px;
  padding: 0;
  background: var(--s02-panel);
  cursor: pointer;
}

.s02-material-card picture,
.s02-material-card img { width: 100%; height: 100%; }
.s02-material-card img { object-fit: cover; transition: transform 420ms ease; }
.s02-material-card::after { position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, 0.78)); content: ""; }
.s02-material-card span { position: absolute; z-index: 2; right: 10px; bottom: 10px; left: 10px; color: var(--s02-warm-white); font-size: 9px; line-height: 1.25; letter-spacing: 0.04em; text-align: left; text-transform: uppercase; }
.s02-material-card:hover img,
.s02-material-card[aria-pressed="true"] img { transform: scale(1.045); }
.s02-material-card[aria-pressed="true"] { border-color: var(--s02-brass); }

.s02-material-detail {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--s02-line-dark);
  background: var(--s02-panel);
}

.s02-material-detail picture,
.s02-material-detail img { width: 100%; height: 100%; }
.s02-material-detail img { object-fit: cover; transition: opacity 320ms ease; }
.s02-material-caption { position: absolute; right: 24px; bottom: 22px; padding: 7px 10px; color: var(--s02-warm-white); background: rgba(10, 9, 8, 0.72); font-size: 9px; letter-spacing: 0.11em; text-transform: uppercase; }

.s02-calculator {
  display: grid;
  height: 274px;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  background: var(--s02-ink);
}

.s02-calculator-media,
.s02-calculator-media img { width: 100%; height: 100%; }
.s02-calculator-media img { object-fit: cover; object-position: 68% 52%; }

.s02-calculator-copy {
  position: relative;
  overflow: hidden;
  padding: 34px clamp(260px, 25vw, 360px) 26px 54px;
  border-left: 1px solid var(--s02-line-dark);
  background: radial-gradient(circle at 85% 50%, rgba(169, 130, 94, 0.09), transparent 31%), var(--s02-graphite);
}

.s02-calculator-copy h2 { margin-bottom: 11px; font-size: 30px; }
.s02-calculator-copy > p:not(.s02-eyebrow) { max-width: 420px; margin-bottom: 15px; color: var(--s02-muted-light); font-size: 11px; }
.s02-calculator-copy .s02-button { min-height: 46px; }
.s02-line-art { position: absolute; right: 18px; bottom: -18px; width: 320px; height: 220px; opacity: 0.28; stroke: var(--s02-brass); stroke-width: 1.4; stroke-linejoin: round; }
.s02-line-art path { stroke-dasharray: 2200; stroke-dashoffset: 2200; transition: stroke-dashoffset 1200ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.s02-line-art.s02-is-visible path { stroke-dashoffset: 0; }

.s02-contacts {
  display: grid;
  height: 242px;
  grid-template-columns: 69% 31%;
  overflow: hidden;
  color: var(--s02-dark-text);
  background: var(--s02-paper);
}

.s02-contact-copy {
  display: grid;
  padding: 30px 44px 20px max(64px, calc((100vw - 1176px) / 2));
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  grid-template-rows: 1fr auto;
  gap: 16px 44px;
}

.s02-contact-intro h2 { margin-bottom: 10px; font-size: 29px; }
.s02-contact-intro > p:last-child { max-width: 510px; margin: 0; color: var(--s02-muted-dark); font-size: 11px; }
.s02-address { display: grid; align-content: center; gap: 7px; color: var(--s02-muted-dark); font-size: 10px; font-style: normal; overflow-wrap: anywhere; }
.s02-contact-links { display: flex; grid-column: 1 / -1; gap: 28px; }
.s02-contact-links a,
.s02-contact-links button { border: 0; border-bottom: 1px solid var(--s02-line-light); padding: 0 0 4px; color: var(--s02-dark-text); background: transparent; font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase; cursor: pointer; }
.s02-showroom,
.s02-showroom img { width: 100%; height: 100%; }
.s02-showroom img { object-fit: cover; object-position: 52% 48%; }

.s02-footer { height: 40px; border-top: 1px solid var(--s02-line-dark); background: var(--s02-ink); }
.s02-footer-inner { display: grid; height: 100%; grid-template-columns: 60px 1fr 100px; align-items: center; }
.s02-footer-mark { color: var(--s02-brass); font-family: Georgia, serif; font-size: 19px; }
.s02-footer nav { display: flex; justify-content: center; gap: 35px; }
.s02-back-top { justify-self: end; border: 0; padding: 8px 0; background: transparent; font-size: 9px; letter-spacing: 0.11em; text-transform: uppercase; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 180ms ease; }
.s02-back-top.s02-is-visible { opacity: 1; pointer-events: auto; }

.s02-page dialog {
  width: min(920px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  overflow: auto;
  border: 1px solid var(--s02-line-dark);
  border-radius: 3px;
  padding: 28px;
  color: var(--s02-warm-white);
  background: var(--s02-graphite);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.s02-page dialog::backdrop { background: rgba(5, 5, 4, 0.86); }
.s02-dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.s02-dialog-head h2 { font-size: 32px; }
.s02-dialog-head .s02-icon-button { flex: 0 0 48px; font-size: 26px; }
.s02-menu-dialog { min-height: min(620px, calc(100dvh - 40px)); }
.s02-menu-dialog nav { display: grid; gap: 4px; }
.s02-menu-dialog nav a { display: flex; min-height: 58px; align-items: center; border-bottom: 1px solid var(--s02-line-dark); font: 400 30px/1 Georgia, serif; }
.s02-menu-dialog > p { margin: 48px 0 0; color: var(--s02-muted-light); }
.s02-media-dialog video { width: 100%; max-height: 70dvh; aspect-ratio: 16 / 9; object-fit: cover; background: var(--s02-ink); }
.s02-calculator-dialog { width: min(780px, calc(100% - 40px)); }
.s02-calculator-dialog form { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.s02-calculator-dialog fieldset { display: grid; gap: 8px; margin: 0; border: 1px solid var(--s02-line-dark); padding: 16px; }
.s02-calculator-dialog legend { padding: 0 8px; color: var(--s02-brass); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.s02-calculator-dialog label { display: flex; min-height: 44px; align-items: center; gap: 8px; border-bottom: 1px solid var(--s02-line-dark); cursor: pointer; }
.s02-calculator-dialog input { width: 18px; height: 18px; accent-color: var(--s02-brass); }
.s02-calculator-result { display: block; grid-column: 1 / -1; padding: 20px; border: 1px solid var(--s02-bronze); font: 400 25px/1.2 Georgia, serif; }
.s02-calculator-dialog .s02-button { grid-column: 1 / -1; justify-self: start; }

.s02-reveal { opacity: 1; transform: none; }
.s02-ready .s02-reveal { opacity: 0; transform: translateY(14px); transition: opacity 520ms ease, transform 520ms ease; }
.s02-ready .s02-reveal.s02-is-visible { opacity: 1; transform: none; }
.s02-ready .s02-hero-media { animation: s02-hero-reveal 900ms cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.s02-ready .s02-hero-copy > * { animation: s02-copy-rise 620ms ease both; }
.s02-ready .s02-hero-copy > *:nth-child(2) { animation-delay: 80ms; }
.s02-ready .s02-hero-copy > *:nth-child(3) { animation-delay: 160ms; }
.s02-ready .s02-hero-copy > *:nth-child(4) { animation-delay: 240ms; }

@keyframes s02-hero-reveal { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0); } }
@keyframes s02-copy-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes s02-light-sweep { from { transform: translateX(-110%); } to { transform: translateX(130%); } }

@media (min-width: 1600px) {
  .s02-inner { width: calc(30vw + 744px); max-width: 1320px; }
  .s02-hero { height: clamp(900px, calc(8.333vw + 780px), 940px); }
  .s02-process { height: clamp(272px, calc(1.667vw + 248px), 280px); }
  .s02-projects { height: clamp(500px, calc(4.167vw + 440px), 520px); }
  .s02-materials { height: clamp(370px, calc(4.167vw + 310px), 390px); }
  .s02-calculator { height: clamp(274px, calc(1.25vw + 256px), 280px); }
  .s02-contacts { height: clamp(242px, calc(1.667vw + 218px), 250px); }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .s02-outer { width: calc(90vw + 16px); }
  .s02-inner { width: calc(55vw + 384px); }
  .s02-page h1 { font-size: calc(2.5vw + 24px); }
  .s02-nav { gap: calc(5vw - 36px); }
  .s02-hero { height: calc(25vw + 540px); }
  .s02-process { height: calc(5vw + 200px); }
  .s02-projects { height: calc(15vw + 284px); }
  .s02-materials { height: calc(8.75vw + 244px); }
  .s02-calculator { height: calc(6.25vw + 184px); }
  .s02-contacts { height: calc(8.75vw + 116px); }
  .s02-footer { height: calc(58px - 1.25vw); }
}

@media (max-width: 1199px) {
  .s02-outer { width: calc(100% - 96px); max-width: 1168px; }
  .s02-inner { width: calc(100% - 160px); max-width: 1088px; }
  .s02-header-inner { grid-template-columns: 150px 1fr auto 48px; gap: 24px; }
  .s02-nav a:nth-last-child(-n + 2) { display: none; }
  .s02-hero { height: 820px; }
  .s02-hero-copy { padding-top: 205px; }
  .s02-benefits { bottom: 18px; }
  .s02-process { height: 280px; }
  .s02-process-grid { grid-template-columns: 32% 68%; }
  .s02-projects { height: 540px; }
  .s02-project-track { display: flex; height: 370px; }
  .s02-project-card { flex: 0 0 calc(50% - 2px); }
  .s02-materials { height: 390px; grid-template-columns: 58% 42%; }
  .s02-material-content { padding-left: 48px; }
  .s02-material-card { flex: 0 0 128px; }
  .s02-calculator { height: 300px; }
  .s02-calculator-copy { padding-right: 280px; padding-left: 40px; }
  .s02-line-art { width: 270px; }
  .s02-contacts { height: 260px; grid-template-columns: 60% 40%; }
  .s02-contact-copy { padding-left: 48px; grid-template-columns: 1fr; grid-template-rows: auto auto; gap: 10px; }
  .s02-contact-links { display: none; }
  .s02-footer { height: 50px; }
}

@media (max-width: 768px) {
  .s02-document { scroll-behavior: auto; }
  .s02-outer,
  .s02-inner { width: calc(100% - 80px); }
  .s02-header { height: 78px; }
  .s02-header-inner { grid-template-columns: 1fr 48px; }
  .s02-logo img { width: 144px; height: 40px; }
  .s02-nav,
  .s02-header-contact { display: none; }
  .s02-page h2 { font-size: 32px; }
  .s02-hero { min-height: 980px; height: auto; }
  .s02-hero-media { height: 100%; }
  .s02-hero-media img { object-position: 62% center; }
  .s02-hero-overlay { background: linear-gradient(180deg, rgba(7, 7, 6, 0.2), rgba(7, 7, 6, 0.88) 67%, rgba(7, 7, 6, 0.98)); }
  .s02-hero-copy { padding-top: 300px; }
  .s02-page h1 { font-size: 46px; }
  .s02-hero-lead { max-width: 520px; }
  .s02-counter { display: none; }
  .s02-media-button { top: 545px; right: 40px; }
  .s02-benefits { position: relative; bottom: auto; margin-top: 210px; height: auto; min-height: 360px; grid-template-columns: repeat(2, 1fr); }
  .s02-benefit { min-height: 180px; border-bottom: 1px solid var(--s02-line-dark); }
  .s02-process { min-height: 420px; height: auto; }
  .s02-process-grid { display: block; padding-block: 35px; }
  .s02-process-rail { padding: 0 0 28px; border-right: 0; }
  .s02-timeline { min-height: 210px; padding: 25px 0 0; grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .s02-timeline::before { display: none; }
  .s02-timeline li { border-top: 1px solid var(--s02-line-dark); padding-top: 10px; }
  .s02-timeline li::before { display: none; }
  .s02-timeline h3 { margin: 12px 0 6px; }
  .s02-projects { min-height: 630px; height: auto; padding-bottom: 40px; }
  .s02-section-head { height: 180px; }
  .s02-section-head h2 { font-size: 30px; }
  .s02-project-actions .s02-text-link { display: none; }
  .s02-project-track { width: calc(100% - 40px); height: 410px; margin-left: 40px; }
  .s02-project-card { flex: 0 0 59%; }
  .s02-materials { min-height: 650px; height: auto; grid-template-columns: 1fr; }
  .s02-material-content { padding: 38px 0 26px 40px; }
  .s02-material-heading { padding-right: 40px; }
  .s02-material-rail { padding-right: 40px; }
  .s02-material-card { flex-basis: 170px; height: 220px; }
  .s02-material-detail { min-height: 310px; border-top: 1px solid var(--s02-line-dark); border-left: 0; }
  .s02-calculator { min-height: 460px; height: auto; grid-template-columns: 1fr; }
  .s02-calculator-media { height: 190px; }
  .s02-calculator-copy { min-height: 270px; padding: 30px 210px 25px 40px; }
  .s02-calculator-copy h2 { font-size: 28px; }
  .s02-line-art { right: 8px; width: 210px; opacity: 0.16; }
  .s02-contacts { min-height: 410px; height: auto; grid-template-columns: 1fr; }
  .s02-contact-copy { min-height: 260px; padding: 30px 40px 22px; }
  .s02-contact-intro h2 { font-size: 28px; }
  .s02-address { grid-template-columns: 1fr 1fr; }
  .s02-showroom { height: 230px; }
  .s02-footer { min-height: 120px; height: auto; }
  .s02-footer-inner { min-height: 120px; grid-template-columns: 50px 1fr auto; }
  .s02-footer nav { flex-wrap: wrap; gap: 15px 25px; }
  .s02-calculator-dialog form { grid-template-columns: 1fr; }
  .s02-calculator-result,
  .s02-calculator-dialog .s02-button { grid-column: 1; }
}

@media (max-width: 480px) {
  .s02-outer,
  .s02-inner { width: calc(100% - 48px); }
  .s02-header-inner { width: calc(100% - 48px); }
  .s02-logo img { width: 128px; height: 36px; }
  .s02-menu-button { width: 44px; height: 44px; }
  .s02-page h1 { font-size: 42px; }
  .s02-page h2 { font-size: 30px; }
  .s02-button { min-height: 48px; padding-inline: 18px; }
  .s02-hero { min-height: 1080px; }
  .s02-hero-copy { padding-top: 270px; }
  .s02-hero-lead { font-size: 15px; }
  .s02-media-button { top: 575px; right: 24px; left: 24px; }
  .s02-benefits { margin-top: 225px; min-height: 400px; }
  .s02-benefit { min-height: 188px; padding: 20px 16px; }
  .s02-process { min-height: 550px; }
  .s02-process-grid { padding-block: 40px; }
  .s02-timeline { grid-template-columns: 1fr; gap: 16px; }
  .s02-timeline li { padding-left: 22px; }
  .s02-timeline li::before { display: block; top: 17px; left: 0; }
  .s02-projects { min-height: 680px; }
  .s02-section-head { height: 210px; align-items: flex-end; padding-bottom: 25px; }
  .s02-project-actions { margin-bottom: 3px; }
  .s02-project-track { width: calc(100% - 24px); height: 420px; margin-left: 24px; }
  .s02-project-card { flex: 0 0 calc(100vw - 48px); }
  .s02-materials { min-height: 760px; }
  .s02-material-content { padding: 42px 0 30px 24px; }
  .s02-material-heading { display: block; padding-right: 24px; }
  .s02-material-heading h2 { margin-bottom: 14px; }
  .s02-material-rail { padding-right: 24px; }
  .s02-material-card { flex-basis: 62vw; height: 235px; }
  .s02-material-detail { min-height: 360px; }
  .s02-calculator { min-height: 660px; }
  .s02-calculator-media { height: 260px; }
  .s02-calculator-copy { min-height: 400px; padding: 36px 24px; }
  .s02-calculator-copy > p:not(.s02-eyebrow) { max-width: 260px; }
  .s02-line-art { right: -40px; bottom: -15px; width: 230px; }
  .s02-contacts { min-height: 620px; }
  .s02-contact-copy { min-height: 390px; padding: 40px 24px 25px; }
  .s02-address { grid-template-columns: 1fr; gap: 9px; }
  .s02-contact-links { display: flex; gap: 22px; }
  .s02-showroom { height: 230px; }
  .s02-footer { min-height: 280px; }
  .s02-footer-inner { display: flex; min-height: 280px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; }
  .s02-footer nav { display: grid; grid-template-columns: 1fr 1fr; }
  .s02-back-top { opacity: 1; pointer-events: auto; }
  .s02-page dialog { width: calc(100% - 24px); max-height: calc(100dvh - 24px); padding: 20px; }
  .s02-calculator-dialog { height: calc(100dvh - 24px); }
  .s02-calculator-dialog form { padding-bottom: 20px; }
  .s02-calculator-result { position: sticky; z-index: 2; bottom: 0; background: var(--s02-graphite); font-size: 21px; }
}

@media (max-width: 390px) {
  .s02-outer,
  .s02-inner { width: calc(100% - 40px); }
  .s02-header-inner { width: calc(100% - 40px); }
  .s02-page h1 { font-size: 38px; }
  .s02-hero { min-height: 1120px; }
  .s02-project-card { flex-basis: calc(100vw - 48px); }
  .s02-materials { min-height: 780px; }
  .s02-calculator { min-height: 680px; }
  .s02-contacts { min-height: 640px; }
  .s02-footer { min-height: 300px; }
}

@media (max-width: 360px) {
  .s02-outer,
  .s02-inner { width: calc(100% - 32px); }
  .s02-header-inner { width: calc(100% - 32px); }
  .s02-page h1 { font-size: 36px; }
  .s02-page h2 { font-size: 28px; }
  .s02-hero { min-height: 1160px; }
  .s02-benefits { grid-template-columns: 1fr; margin-top: 160px; }
  .s02-benefit { min-height: 158px; border-right: 0; }
  .s02-process { min-height: 600px; }
  .s02-projects { min-height: 720px; }
  .s02-project-track { width: calc(100% - 20px); margin-left: 20px; }
  .s02-project-card { flex-basis: calc(100vw - 40px); }
  .s02-materials { min-height: 800px; }
  .s02-calculator { min-height: 700px; }
  .s02-contacts { min-height: 660px; }
  .s02-footer { min-height: 320px; }
}

@media (max-width: 320px) {
  .s02-page h1 { font-size: 32px; }
  .s02-hero { min-height: 1240px; }
  .s02-process { min-height: 640px; }
  .s02-projects { min-height: 760px; }
  .s02-materials { min-height: 840px; }
  .s02-calculator { min-height: 740px; }
  .s02-contacts { min-height: 700px; }
  .s02-footer { min-height: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  .s02-document { scroll-behavior: auto; }
  .s02-page *,
  .s02-page *::before,
  .s02-page *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
