:root {
  --bg: #0b0c0c;
  --text: #f2f3ed;
  --dim: #a0a59a;
  --line: #30332d;
  --accent: #d5ec80;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  min-width: 1240px;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
.screen {
  --title-size: clamp(96px, 7.085vw, 136.5px);
  --wheel-size: clamp(700px, min(55vw, calc(100svh - 140px)), 1000px);
  padding: 0 54px;
  max-width: 1840px;
  margin: auto;
  height: 100svh;
  min-height: 900px;
  display: grid;
  grid-template-rows: 104px minmax(672px, 1fr) 124px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.screen:before {
  content: none;
}
header {
  display: flex;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid var(--line);
}
.brand {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 8px 0;
  perspective: 400px;
  transition:
    color 0.4s,
    filter 0.4s;
}
.brand:hover {
  color: var(--accent);
  filter: brightness(1.08);
}
.mark {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -7px;
  font-style: italic;
  width: 41px;
  color: var(--accent);
  transform-origin: center;
  transition:
    transform 0.65s var(--ease),
    text-shadow 0.5s;
}
.brand strong {
  display: inline-block;
  position: relative;
  font-size: 19px;
  letter-spacing: -0.7px;
  transition:
    transform 0.6s var(--ease),
    letter-spacing 0.6s var(--ease);
}
.brand small {
  display: block;
  font-size: 14px;
  letter-spacing: 2.9px;
  color: var(--dim);
  margin-top: 4px;
  transition:
    color 0.5s,
    transform 0.6s var(--ease);
}
.location {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  line-height: 1.5;
  color: #c0c7b4;
  padding: 10px 0 10px 25px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
  transition: color 0.4s;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.1vw, 22px);
}
.text-link {
  position: relative;
  background: none;
  padding: 12px 0;
  font-size: 14px;
  overflow: hidden;
  display: inline-block;
  transition: color 0.35s;
}
.text-link:after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.text-link:hover {
  color: var(--accent);
}
.text-link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
.roll {
  display: block;
  position: relative;
  transition: transform 0.5s var(--ease);
}
.roll:after {
  content: attr(data-copy);
  position: absolute;
  left: 0;
  top: 140%;
  white-space: nowrap;
  color: var(--accent);
}
.text-link:hover .roll {
  transform: translateY(-140%);
}
.phone {
  font-size: 25px;
  font-weight: 750;
  letter-spacing: 0.3px;
  line-height: 1.2;
  color: var(--accent);
  white-space: nowrap;
}
.pill {
  padding: 13px 20px;
  border: 1px solid #69705b;
  border-radius: 50px;
  display: flex;
  gap: 18px;
  align-items: center;
  transition:
    background 0.4s,
    color 0.4s,
    transform 0.5s var(--ease);
}
.pill:hover {
  background: var(--accent);
  color: #15190d;
  transform: translateY(-3px);
}
.arrow {
  display: inline-block;
  transition: transform 0.5s var(--ease);
}
.pill:hover .arrow {
  transform: rotate(45deg);
}
.headline {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 15px;
  color: #b3b8a8;
}
.eyebrow:before {
  content: "";
  width: 29px;
  height: 2px;
  background: var(--accent);
}
h1 {
  font-size: var(--title-size);
  line-height: 1.02;
  letter-spacing: -4px;
  margin: 0;
  font-weight: 800;
  white-space: nowrap;
  text-shadow: 0 3px 22px #0008;
}
h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.7px #e0e4d6;
  font-weight: 600;
  text-shadow: none;
}
h1 .period {
  color: var(--accent);
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 0;
  isolation: isolate;
}
.copy {
  position: relative;
  z-index: 3;
  margin-top: 30px;
  padding-bottom: 0;
}
.copy h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -1px;
  margin: 0 0 20px;
}
.copy h2 em {
  font-style: normal;
  color: var(--accent);
}
.intro {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
  font-size: 16px;
  color: #adb3a4;
  line-height: 1.5;
  max-width: none;
}
.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px;
}
.cta {
  --mx: 0px;
  --my: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 74px;
  background: var(--accent);
  color: #161b0e;
  border-radius: 7px;
  padding: 23px 38px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 600;
  overflow: hidden;
  isolation: isolate;
  transform: translate(var(--mx), var(--my));
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s;
}
.cta:before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  left: var(--px, 50%);
  top: var(--py, 50%);
  border-radius: 50%;
  background: #edffc0;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.65s var(--ease);
  z-index: -1;
}
.cta:hover:before {
  transform: translate(-50%, -50%) scale(1);
}
.cta:hover {
  box-shadow: 0 12px 45px #c6e96e20;
}
.cta .arrow {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  display: block;
}
.cta:hover .arrow {
  transform: translate(4px, -4px);
}
.cta-note {
  font-size: 14px;
  color: #9ca88b;
  line-height: 1.55;
  max-width: 440px;
}
.small-services {
  font-size: 14px;
  color: #777f70;
  margin: 22px 0 0;
}
.small-services span {
  color: #c0c7b3;
}
.visual {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  isolation: isolate;
  perspective: 1100px;
  z-index: 2;
}
.halo {
  width: var(--wheel-size);
  height: var(--wheel-size);
  position: absolute;
  top: 50%;
  left: 47%;
  bottom: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(166, 192, 82, 0.2) 0%,
    rgba(138, 164, 65, 0.14) 28%,
    rgba(108, 134, 46, 0.07) 48%,
    transparent 70%
  );
}
.halo:before,
.halo:after {
  content: none;
}
.halo:after {
  inset: -22px;
  border-style: solid;
  opacity: 0.4;
}
.wheel-wrap {
  position: absolute;
  width: var(--wheel-size);
  height: var(--wheel-size);
  left: 47%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  perspective: 1100px;
  z-index: 1;
}
.wheel-tilt {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}
canvas {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
}
canvas:focus-visible {
  outline: 1px dashed var(--accent);
  outline-offset: -60px;
}
.hotspot {
  position: absolute;
  z-index: 6;
}
.hotspot button {
  background: transparent;
  font-size: 14px;
  color: #d7dfc8;
  padding: 10px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    color 0.3s,
    transform 0.4s;
  text-shadow: 0 2px 10px #000;
}
.hotspot button:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px #d5ec800b;
  transition:
    box-shadow 0.4s,
    background 0.4s;
}
.hotspot button:after {
  content: "";
  position: absolute;
  height: 1px;
  background: #82956080;
  width: 39px;
  top: 50%;
  right: calc(100% + 12px);
}
.hotspot button:hover,
.hotspot button[aria-expanded="true"] {
  color: var(--accent);
  transform: translateX(3px);
}
.hotspot button:hover:before {
  background: var(--accent);
  box-shadow: 0 0 0 8px #d5ec8015;
}
.hotspot.one {
  right: -4px;
  top: 27%;
}
.hotspot.two {
  left: 2%;
  top: 76%;
}
.hotspot.two button:after {
  left: calc(100% + 10px);
  right: auto;
}
.hotspot.three {
  right: 0;
  top: 81%;
}
.tooltip {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 245px;
  padding: 17px 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #c0c8b2;
  background: #20251aef;
  backdrop-filter: blur(16px);
  border: 1px solid #4e5d38;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: perspective(600px) translateY(9px) rotateX(-12deg);
  transform-origin: top;
  transition:
    opacity 0.3s,
    transform 0.4s var(--ease),
    visibility 0.3s;
  box-shadow: 0 20px 40px #0006;
  pointer-events: none;
}
.two .tooltip {
  left: 0;
  right: auto;
}
.hotspot:hover .tooltip,
.hotspot:focus-within .tooltip,
.hotspot.open .tooltip {
  opacity: 1;
  visibility: visible;
  transform: perspective(600px) translateY(0) rotateX(0);
  pointer-events: auto;
}
.facts {
  position: relative;
  z-index: 4;
  background: rgba(11, 12, 12, 0.48);
  backdrop-filter: blur(7px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
  align-items: center;
  gap: 32px;
}
.fact {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}
.fact + .fact {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.metric {
  font-size: 48px;
  line-height: 1;
  letter-spacing: -2px;
  white-space: nowrap;
}
.metric small {
  font-size: 21px;
  letter-spacing: -0.5px;
}
.fact p {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.6;
  margin: 0;
}
.fact b {
  display: block;
  color: #e3e7dc;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 2px;
}
.fact button {
  background: transparent;
  font-size: 14px;
  border-bottom: 1px solid #606d4c;
  padding: 0;
  color: #b8c4a3;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.fact button:hover {
  color: var(--accent);
  border-color: var(--accent);
}
dialog {
  padding: 40px;
  width: 570px;
  background: #1a1e16;
  color: var(--text);
  border: 1px solid #566342;
  border-radius: 14px;
  box-shadow: 0 45px 100px #0009;
  max-height: 86vh;
  overflow-y: auto;
  opacity: 0;
  transform: perspective(1000px) translateY(50px) rotateX(12deg) scale(0.94);
  transition:
    opacity 0.4s,
    transform 0.55s var(--ease);
}
dialog.shown {
  opacity: 1;
  transform: perspective(1000px) translateY(0) rotateX(0) scale(1);
}
dialog::backdrop {
  background: #000a;
  backdrop-filter: blur(9px);
}
dialog h2 {
  font-size: 31px;
  font-weight: 500;
  margin: 0 0 22px;
  letter-spacing: -0.8px;
}
dialog p {
  font-size: 15px;
  color: #afb9a1;
  line-height: 1.65;
}
dialog b {
  color: var(--text);
  font-weight: 500;
}
.dialog-address {
  border-top: 1px solid #435035;
  padding-top: 18px;
}
.close {
  position: absolute;
  right: 14px;
  top: 13px;
  width: 36px;
  height: 36px;
  background: transparent;
  border-radius: 50%;
  font-size: 26px;
  transition:
    transform 0.5s var(--ease),
    background 0.3s,
    color 0.3s;
}
.close:hover {
  transform: rotate(90deg);
  background: var(--accent);
  color: #16200c;
}
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.location:hover {
  color: var(--accent);
}
.phone:hover {
  color: #edffc0;
}
.intro li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
}
.intro li:before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  align-self: center;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px #d5ec800b;
}
.intro li + li:before {
  background: var(--accent);
  box-shadow: 0 0 0 4px #d5ec800b;
}
.identity {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}
.nav .text-link {
  white-space: nowrap;
}
.nav .phone {
  margin-left: 8px;
}
.material-list {
  padding-left: 20px;
  color: #afb9a1;
  font-size: 15px;
  line-height: 1.65;
}
.material-list li + li {
  margin-top: 10px;
}
.text-group {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  position: relative;
  padding: 36px 0;
}
.brand strong:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--ease);
}
.brand:hover .mark,
.brand:focus-visible .mark {
  transform: translateY(-2px) rotateY(-18deg) rotateZ(-7deg);
  text-shadow: 5px 5px 20px #d5ec8040;
}
.brand:hover strong,
.brand:focus-visible strong {
  transform: translateX(4px);
  letter-spacing: -0.15px;
}
.brand:hover strong:after,
.brand:focus-visible strong:after {
  transform: scaleX(1);
  transform-origin: left;
}
.brand:hover small,
.brand:focus-visible small {
  color: #c9d3b8;
  transform: translateX(4px);
}
.location:after {
  content: "";
  position: absolute;
  left: 25px;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.location:hover:after,
.location:focus-visible:after {
  transform: scaleX(1);
  transform-origin: left;
}
.location .address-arrow {
  width: 15px;
  height: 15px;
  transition: transform 0.5s var(--ease);
}
.location:hover .address-arrow,
.location:focus-visible .address-arrow {
  transform: translate(3px, -3px);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  overflow-x: hidden;
}
.intro li + li:before {
  background: var(--accent);
  box-shadow: 0 0 0 4px #d5ec800b;
}
section[id],
footer[id] {
  scroll-margin-top: 24px;
}
.section {
  padding: 108px 54px;
}
.section-inner {
  max-width: 1624px;
  margin: 0 auto;
}
.light {
  --section-ink: #24281f;
  --section-muted: #73796c;
  --section-line: #cdd1c5;
  background: #eeefe9;
  color: var(--section-ink);
}
.dark {
  --section-ink: #eff1e9;
  --section-muted: #a0a98f;
  --section-line: #343e28;
  background: #11160e;
  color: var(--section-ink);
}
.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  letter-spacing: 1.7px;
  line-height: 1.5;
  color: var(--section-muted);
  margin-bottom: 57px;
}
.section-kicker span:first-child {
  color: var(--section-ink);
}
.section h2,
.site-footer h2 {
  font-size: clamp(56px, 4.6vw, 80px);
  line-height: 1.03;
  letter-spacing: -3px;
  font-weight: 500;
  margin: 0;
}
.section h2 em,
.site-footer h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.section p {
  line-height: 1.6;
}
.section-lead {
  font-size: 18px;
  color: var(--section-muted);
  max-width: 495px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 70px;
  margin-bottom: 55px;
}
.section-heading > p,
.section-heading > div {
  max-width: 425px;
  font-size: 17px;
  color: var(--section-muted);
}
.section-heading > div p {
  margin: 0 0 20px;
}
.tiny-label {
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.atelier-image {
  position: relative;
  margin: 0;
  min-width: 0;
  align-self: stretch;
  min-height: 690px;
  border-radius: 320px 320px 16px 16px;
  overflow: hidden;
  background: #dedfd7;
}
.atelier-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 1.1s var(--ease);
}
.atelier-image:hover img {
  transform: scale(1.035);
}
.atelier-image figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #2e3328;
  font-size: 14px;
  background: #eeefe9ce;
  backdrop-filter: blur(10px);
  padding: 9px 12px;
  border-radius: 30px;
}
.service-copy .section-lead {
  margin: 26px 0 35px;
}
.service-row {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--section-line);
  padding: 24px 0;
  transition:
    padding 0.5s var(--ease),
    color 0.3s;
}
.service-row:hover {
  padding-left: 12px;
  color: #596f2f;
}
.row-number {
  font-size: 14px;
  color: #8f9784;
}
.service-row strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
}
.service-row small {
  display: block;
  color: #7a8271;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 7px;
}
.row-price {
  margin-left: auto;
  white-space: nowrap;
  font-size: 19px;
}
.row-price i {
  font-style: normal;
  margin-left: 15px;
  display: inline-block;
  transition: transform 0.4s;
}
.service-row:hover i {
  transform: translate(3px, -3px);
}
.fineprint {
  font-size: 14px !important;
  color: var(--section-muted);
}
.materials-section {
  padding-top: 0;
}
.materials-section .section-inner {
  border-top: 1px solid var(--section-line);
  padding-top: 70px;
}
.material-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--section-line);
  border-bottom: 1px solid var(--section-line);
  gap: 75px;
}
.material-menu {
  padding: 20px 0;
}
.material-option {
  display: flex;
  align-items: center;
  gap: 26px;
  background: transparent;
  border-bottom: 1px solid var(--section-line);
  padding: 23px 18px;
  width: 100%;
  text-align: left;
  transition:
    background 0.4s,
    padding 0.5s var(--ease),
    color 0.4s;
}
.material-option:last-child {
  border-bottom: 0;
}
.material-option > span {
  font-size: 14px;
  color: #8d947e;
}
.material-option strong {
  font-size: 25px;
  font-weight: 400;
}
.material-option i {
  font-style: normal;
  margin-left: auto;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition:
    transform 0.4s,
    opacity 0.4s;
}
.material-option.active {
  background: #d9e5b9;
  color: #222f12;
}
.material-option:hover {
  background: #e2e7d8;
  padding-left: 26px;
}
.material-option.active i,
.material-option:hover i {
  opacity: 1;
  transform: none;
}
.material-detail {
  padding: 46px 48px 46px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.material-detail .tiny-label {
  color: #6e795b;
}
.material-detail h3 {
  font-size: 38px;
  line-height: 1.13;
  font-weight: 400;
  letter-spacing: -1px;
  margin: 22px 0;
}
.material-detail > p {
  font-size: 17px;
  color: #6e7763;
  max-width: 460px;
}
.material-care {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin: 14px 0 24px;
}
.material-care > span {
  font-size: 14px;
  letter-spacing: 1px;
}
.material-care p {
  font-size: 14px;
  color: #7b8371;
  margin: 0;
}
.inline-action {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  align-self: flex-start;
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding: 10px 0;
  transition:
    gap 0.4s,
    color 0.3s;
}
.inline-action:hover {
  gap: 36px;
  color: #8ca044;
}
.dark .inline-action:hover {
  color: var(--accent);
}
.inline-action span {
  font-size: 20px;
}
.stitch-strip {
  display: flex;
  align-items: center;
  gap: 45px;
  padding-top: 40px;
}
.stitch-strip h3 {
  font-size: 25px;
  font-weight: 400;
  margin: 10px 0 0;
}
.stitch-strip > p {
  font-size: 15px;
  color: #77816a;
  margin-left: auto;
}
.thread-swatches {
  display: flex;
  gap: 10px;
}
.thread-swatches > span {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: var(--swatch);
  border: 1px solid #b5beaa;
  box-shadow: inset 0 1px 3px #0003;
}
.transform-card {
  position: relative;
  width: 800px;
  max-width: 100%;
  margin: auto;
  aspect-ratio: 1;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
  background: #141716;
  perspective: 1000px;
  border: 1px solid #323b2a;
  isolation: isolate;
}
.comparison-old,
.comparison-slice {
  position: absolute;
  inset: 0;
  background-image: url("../img/4157bd5f6ea605.webp");
  background-repeat: no-repeat;
  background-size: 200% 100%;
}
.comparison-old {
  background-position: left center;
}
.comparison-new {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.comparison-slice {
  background-position: right center;
  transform-origin: 50% 50%;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(45px) rotateX(12deg);
  transition:
    transform 0.85s var(--ease),
    opacity 0.65s,
    filter 0.65s;
  transition-delay: calc(var(--slice) * 28ms);
}
.transform-card.is-new .comparison-slice {
  opacity: 1;
  filter: blur(0);
  transform: none;
}
.comparison-label {
  position: absolute;
  left: 28px;
  top: 28px;
  font-size: 14px;
  letter-spacing: 1.5px;
  z-index: 2;
  padding: 11px 15px;
  border: 1px solid #596343;
  border-radius: 30px;
  background: #13190dd9;
}
.label-new {
  display: none;
  color: var(--accent);
}
.is-new .label-new {
  display: block;
}
.is-new .label-old {
  display: none;
}
.image-disclosure {
  position: absolute;
  right: 24px;
  bottom: 22px;
  font-size: 14px;
  color: #a1ab94;
  background: #10170cc9;
  padding: 8px 10px;
  border-radius: 4px;
}
.outline-action {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  border: 1px solid #63744b;
  border-radius: 40px;
  padding: 15px 22px;
  color: var(--accent);
  background: transparent;
  transition:
    background 0.4s,
    color 0.4s,
    gap 0.4s;
}
.outline-action:hover {
  background: var(--accent);
  color: #1b260f;
  gap: 45px;
}
.result-notes {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-top: 35px;
  color: #a5b391;
  font-size: 14px;
}
.result-notes span {
  color: var(--accent);
  margin-right: 14px;
}
.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.8fr);
  gap: 70px;
  align-items: start;
}
.calculator-options fieldset {
  margin: 0;
  padding: 0 0 30px;
  border: 0;
  border-bottom: 1px solid var(--section-line);
  margin-bottom: 28px;
  min-width: 0;
}
.calculator-options legend {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 0;
}
.calculator-options legend > span {
  font-size: 14px;
  margin-right: 18px;
  color: #939a87;
}
.choice-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.choice {
  position: relative;
  cursor: pointer;
}
.choice > input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.choice > span {
  position: relative;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border: 1px solid #c1c9b4;
  border-radius: 5px;
  font-size: 14px;
  color: #626e52;
  transition:
    background 0.35s,
    border-color 0.35s,
    color 0.35s,
    transform 0.4s;
}
.choice:hover > span {
  background: #e1e7d8;
  border-color: #99ac78;
  transform: translateY(-2px);
}
.choice > input:checked + span {
  background: #d7e7b3;
  color: #243414;
  border-color: #829d55;
}
.choice > input:focus-visible + span {
  outline: 2px solid #678636;
  outline-offset: 4px;
}
.choice i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #abb39e;
}
.field-note {
  font-size: 14px;
  color: #849075;
  margin: 13px 0 0;
}
.mix-slider {
  background: #e1e6d7;
  padding: 20px 23px;
  margin-top: 20px;
  border-radius: 6px;
}
.mix-slider > div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 15px;
}
.mix-slider input {
  width: 100%;
  accent-color: #657f34;
  cursor: pointer;
}
.mix-slider p {
  font-size: 14px;
  color: #7c866b;
  margin: 12px 0 0;
}
.extra-line {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  padding: 0 0 22px;
  position: relative;
}
.extra-line strong {
  display: block;
  font-size: 16px;
  font-weight: 400;
}
.extra-line small {
  display: block;
  font-size: 14px;
  color: #829071;
  margin-top: 6px;
}
.extra-price {
  margin-left: auto;
  font-size: 14px;
}
.extra-line input {
  position: absolute;
  right: 0;
  width: 45px;
  height: 26px;
  opacity: 0;
  cursor: pointer;
}
.toggle {
  width: 45px;
  height: 26px;
  background: #c9d0bf;
  border-radius: 20px;
  position: relative;
  pointer-events: none;
  transition: background 0.35s;
}
.toggle:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 4px;
  top: 4px;
  background: #f9faf6;
  border-radius: 50%;
  transition: transform 0.35s var(--ease);
}
.extra-line input:checked + .toggle {
  background: #7b9847;
}
.extra-line input:checked + .toggle:after {
  transform: translateX(19px);
}
.extra-line input:focus-visible + .toggle {
  outline: 2px solid #678636;
  outline-offset: 4px;
}
.heat-choice {
  padding-top: 20px;
  border-top: 1px solid #d4dbc9;
}
.heat-choice > label {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
}
.heat-choice select {
  width: 100%;
  padding: 15px;
  border: 1px solid #bdc8ae;
  border-radius: 5px;
  color: #465337;
  background: #e9ede2;
  font: inherit;
  font-size: 15px;
  cursor: pointer;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.heat-choice select:hover {
  border-color: #7a9550;
  background: #e3e9d9;
}
.included-note {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #79886a;
  max-width: 630px;
}
.included-note > span {
  font-size: 23px;
  color: #6a833d;
}
.included-note p {
  margin: 0;
}
.quote-receipt {
  background: #171f12;
  color: #e6ecdc;
  padding: 36px;
  border-radius: 12px;
  position: sticky;
  top: 30px;
  box-shadow: 0 24px 65px #26330d12;
}
.quote-receipt > .tiny-label {
  color: #9fac8c;
}
.quote-amount {
  font-size: 94px;
  line-height: 1.1;
  letter-spacing: -5px;
  margin: 25px 0 15px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.quote-amount > small {
  font-size: 20px;
  letter-spacing: 0;
}
.receipt-spec {
  font-size: 15px;
  color: #c6d1b8;
  min-height: 48px;
}
.receipt-lines {
  padding-top: 20px;
  border-top: 1px solid #3b492c;
}
.receipt-lines > div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #aebd9c;
  padding: 7px 0;
  gap: 15px;
}
.receipt-lines dd {
  margin: 0;
  color: #e0e9d3;
  white-space: nowrap;
}
.receipt-note {
  font-size: 14px;
  color: #92a47e;
  border-bottom: 1px solid #3b492c;
  padding-bottom: 22px;
}
.phone-label {
  display: block;
  font-size: 14px;
  margin: 24px 0 11px;
}
.quote-receipt input[type="tel"] {
  width: 100%;
  padding: 18px 17px;
  background: #242e1b;
  border: 1px solid #627349;
  border-radius: 5px;
  color: #f2f5eb;
  font-size: 18px;
  font-family: inherit;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.quote-receipt input[type="tel"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #d5ec8016;
}
.quote-receipt input[type="tel"]::placeholder {
  color: #7c8d68;
}
.phone-help {
  font-size: 14px;
  color: #92a47e;
  margin: 10px 0 22px;
}
.quote-receipt .cta {
  width: 100%;
  font-size: 15px;
  padding: 20px 18px;
  gap: 13px;
  min-height: 64px;
}
.consent {
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #80936d;
  margin: 18px 0;
}
.receipt-alternative {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #c8d7b5;
  transition: color 0.3s;
}
.receipt-alternative:hover {
  color: var(--accent);
}
.form-status {
  font-size: 14px;
  color: #d6e7b9;
  margin: 0;
}
.form-status:not(:empty) {
  margin-top: 16px;
}
.no-script {
  color: #53603c;
  padding: 20px;
  border: 1px solid #a1b388;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 70px 0;
}
.process-steps article {
  border-top: 1px solid var(--section-line);
  padding-top: 22px;
}
.step-number {
  font-size: 58px;
  color: #70824f;
  letter-spacing: -3px;
}
.process-steps h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 25px 0 15px;
}
.process-steps p {
  font-size: 15px;
  color: #9aaa85;
}
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.delivery-card {
  padding: 40px;
  background: #1b2414;
  border: 1px solid #3a492a;
  border-radius: 8px;
}
.delivery-card > .tiny-label {
  color: #a1b783;
}
.delivery-card h3 {
  font-size: 37px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 25px 0;
}
.delivery-card > p {
  max-width: 480px;
  color: #a4b38f;
  font-size: 16px;
}
.delivery-card .inline-action {
  color: var(--accent);
  margin-top: 15px;
}
.time-band {
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 42px 0 0;
}
.time-value {
  white-space: nowrap;
  font-size: 90px;
  color: var(--accent);
  letter-spacing: -4px;
}
.time-value small {
  font-size: 27px;
  letter-spacing: -1px;
}
.time-band > p {
  font-size: 15px;
  color: #9ead88;
  max-width: 850px;
}
.time-band strong {
  font-weight: 400;
  color: #d7e2c6;
}
.warranty-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.warranty-number {
  height: 420px;
  font-size: 400px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -30px;
  color: #cbd9a5;
  position: relative;
  text-align: center;
}
.warranty-number span {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 22px;
  letter-spacing: 1px;
  color: #334024;
  white-space: nowrap;
}
.warranty-grid .section-lead {
  margin: 28px 0;
}
.warranty-points {
  border-top: 1px solid var(--section-line);
  padding-top: 15px;
  margin-bottom: 25px;
}
.warranty-points p {
  font-size: 14px;
  color: #748261;
}
.warranty-points span {
  font-size: 14px;
  margin-right: 20px;
  color: #99a989;
}
.reviews-section {
  padding-top: 0;
}
.reviews-section .section-inner {
  border-top: 1px solid var(--section-line);
  padding-top: 70px;
}
.review-empty {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 90px;
}
.review-empty > div > p {
  max-width: 470px;
  font-size: 17px;
  color: #7a856d;
}
.review-invitation {
  padding: 35px 40px;
  border: 1px solid #c4ceba;
  border-radius: 7px;
  background: #e6ebdc;
}
.review-invitation h3 {
  font-size: 33px;
  line-height: 1.1;
  font-weight: 400;
  margin: 20px 0;
  letter-spacing: -1px;
}
.review-invitation > p {
  font-size: 15px !important;
}
.faq-section {
  background: #e6e9df;
  border-top: 1px solid #d3dac9;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
}
.faq-grid h2 {
  font-size: 58px;
  margin: 28px 0;
}
.faq-grid .section-lead {
  font-size: 16px;
}
.faq-grid .inline-action {
  margin-top: 20px;
}
.faq-list details {
  border-bottom: 1px solid #c6d0b8;
}
.faq-list details:first-child {
  border-top: 1px solid #c6d0b8;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 24px 0;
  list-style: none;
  font-size: 17px;
  cursor: pointer;
  transition:
    color 0.3s,
    padding 0.4s var(--ease);
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:hover {
  color: #6f893f;
  padding-left: 8px;
}
.faq-list summary > span {
  font-size: 25px;
  font-weight: 300;
  transition: transform 0.4s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
}
.faq-answer p {
  font-size: 15px;
  color: #758467;
  margin: 0;
  padding: 0 35px 25px 0;
}
.site-footer {
  padding: 70px 54px 25px;
  background: #0b1008;
  color: #ecf0e4;
  position: relative;
  overflow: hidden;
}
.site-footer:before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 950px;
  height: 950px;
  border-radius: 50%;
  right: -380px;
  top: -470px;
  background: radial-gradient(circle, #9ab85122, transparent 67%);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9bad85;
  margin-bottom: 65px;
}
.back-top {
  display: flex;
  gap: 15px;
  font-size: 14px;
  transition: color 0.3s;
}
.back-top:hover {
  color: var(--accent);
}
.back-top span {
  transition: transform 0.4s;
}
.back-top:hover span {
  transform: translateY(-5px);
}
.footer-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer h2 {
  font-size: clamp(76px, 7vw, 120px);
}
.site-footer h2 em {
  color: var(--accent);
}
.footer-orbit {
  height: 170px;
  width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border: 1px solid #809b50;
  border-radius: 50%;
  font-size: 15px;
  text-align: center;
  color: var(--accent);
  transition:
    background 0.5s,
    color 0.5s,
    transform 0.6s var(--ease),
    box-shadow 0.5s;
}
.footer-orbit .arrow {
  width: 27px;
  height: 27px;
}
.footer-orbit:hover {
  background: var(--accent);
  color: #1a260d;
  transform: rotate(-8deg) scale(1.05);
  box-shadow: 0 0 0 14px #c5e8760b;
}
.footer-phone {
  display: block;
  color: var(--accent);
  font-size: clamp(75px, 7.8vw, 134px);
  font-weight: 500;
  letter-spacing: -5px;
  line-height: 1.2;
  padding: 35px 0 48px;
  border-bottom: 1px solid #354129;
  transition:
    letter-spacing 0.6s var(--ease),
    color 0.4s;
}
.footer-phone:hover {
  color: #efffd6;
  letter-spacing: -2px;
}
.footer-info {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 70px;
  padding: 45px 0 50px;
}
.footer-info > div > span {
  display: block;
  font-size: 14px;
  letter-spacing: 1.3px;
  color: #748a5f;
  margin-bottom: 19px;
}
.footer-info a {
  display: block;
  width: max-content;
  max-width: 100%;
  font-size: 17px;
  line-height: 1.8;
  transition:
    color 0.3s,
    transform 0.4s;
}
.footer-info a:hover {
  color: var(--accent);
  transform: translateX(5px);
}
.footer-info p {
  font-size: 14px;
  color: #8e9f7d;
  margin: 6px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #293522;
  padding-top: 22px;
  font-size: 14px;
  color: #778c62;
}
.reveal {
  opacity: 1;
}
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.js-reveal .reveal.visible {
  opacity: 1;
  transform: none;
}
[hidden] {
  display: none !important;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js-reveal .reveal {
    opacity: 1;
    transform: none;
  }
  .comparison-slice {
    transition: none;
    filter: none;
  }
}

.material-detail h3 {
  white-space: pre-line;
}
.atelier-image {
  min-height: 0;
  height: 600px;
  align-self: center;
  background: #e6e5db;
}
.quote-receipt .cta:disabled {
  opacity: 0.65;
  cursor: wait;
}
.screen {
  height: 100svh;
}
.facts a {
  font-size: 14px;
  border-bottom: 1px solid #606d4c;
  padding: 0;
  color: #b8c4a3;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.facts a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
/* Unified desktop visual language */
.screen {
  --title-size: clamp(88px, 6.25vw, 120px);
  --rhythm: 24px;
}
.nav {
  gap: 32px;
}
.nav .text-link {
  font-size: 16px;
}
.nav .phone {
  font-size: 25px;
  margin-left: 24px;
}
.eyebrow {
  font-size: 14px;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0.2px;
  color: #899081;
  margin-bottom: var(--rhythm);
}
.copy {
  margin-top: var(--rhythm);
}
.cta-wrap {
  margin-top: var(--rhythm);
  gap: var(--rhythm);
}
.cta-note {
  font-size: 14px;
  color: #818879;
}
.intro {
  font-size: 16px;
}
.hotspot button {
  font-size: 16px;
}
.tooltip {
  font-size: 16px;
  line-height: 1.55;
  width: 310px;
  padding: 22px;
  transition:
    opacity 0.25s,
    transform 0.35s var(--ease),
    visibility 0.25s;
}
.tooltip.portal-tooltip {
  position: fixed;
  z-index: 1000;
  right: auto;
  top: auto;
  pointer-events: none;
  transform: translateY(7px);
}
.tooltip.portal-visible {
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.section {
  padding: 104px 54px;
}
.materials-section,
.reviews-section {
  padding-top: 104px;
}
.materials-section .section-inner,
.reviews-section .section-inner {
  border-top: 0;
  padding-top: 0;
}
.section-kicker {
  margin-bottom: 40px;
}
.section-kicker span:first-child {
  color: var(--section-muted);
}
.section-heading {
  margin-bottom: 48px;
}
.section h2,
.site-footer h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(48px, 3.8vw, 66px);
  line-height: 1.04;
  letter-spacing: -2px;
  font-weight: 800;
  text-transform: uppercase;
}
.section h2 em,
.site-footer h2 em {
  font: inherit;
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.2px currentColor;
}
.light h2 em {
  -webkit-text-stroke-color: #505b44;
}
.dark h2 em,
.site-footer h2 em {
  -webkit-text-stroke-color: #d0d8c4;
}
.section h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
}
.section-lead,
.section-heading > p,
.section-heading > div,
.section p {
  font-size: 16px;
}
.section .fineprint,
.section .field-note,
.section .tiny-label,
.section-kicker,
.section .phone-help,
.section .consent,
.section .form-status {
  font-size: 14px;
}
.row-number,
.step-number {
  color: #8ca94c;
}
.light .row-number {
  color: #647d2c;
}
.service-row {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 24px 16px;
  border-radius: 5px;
  transition:
    transform 0.45s var(--ease),
    border-color 0.35s,
    box-shadow 0.4s;
}
.service-row:before,
.material-option:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #d9e8b8;
  opacity: 0;
  transform: translateY(80%);
  transition:
    transform 0.55s var(--ease),
    opacity 0.4s;
}
.service-row:hover {
  padding-left: 16px;
  color: #263912;
  transform: translateY(-3px);
  box-shadow: 0 9px 24px #60772710;
  border-color: #94ad64;
}
.service-row:hover:before,
.material-option:hover:before {
  transform: none;
  opacity: 1;
}
.service-row:hover i {
  transform: translate(4px, -4px) rotate(45deg);
}
.service-row small {
  font-size: 14px;
}
.row-price {
  font-size: 20px;
}
.atelier-image {
  height: 680px;
  min-height: 0;
  isolation: isolate;
  border-radius: 300px 300px 12px 12px;
  overflow: hidden;
  background: #e4e5dc;
}
.atelier-image img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
  animation: atelier-drift 12s ease-in-out infinite;
  will-change: transform;
}
.atelier-image:hover img {
  animation-play-state: paused;
}
.atelier-image figcaption {
  font-size: 14px;
  left: 24px;
  bottom: 24px;
  color: #d8e5c4;
  border: 1px solid #6a7b50;
  background: #1e271bdb;
  border-radius: 30px;
  padding: 12px 18px;
  backdrop-filter: blur(8px);
}
@keyframes atelier-drift {
  0%,
  100% {
    transform: translateY(-2%);
  }
  50% {
    transform: translateY(-6%);
  }
}
.material-layout {
  grid-template-columns: 23% 36% minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  padding: 34px 0;
}
.material-menu {
  padding: 0;
}
.material-option {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 26px 14px;
  gap: 13px;
  min-height: 84px;
}
.material-option strong {
  font-size: 19px;
}
.material-option.active {
  background: #d9e8b8;
  border-color: #9eb573;
}
.material-option:hover {
  padding-left: 14px;
  background: transparent;
  color: #263912;
  transform: translateY(-2px);
}
.material-option i {
  opacity: 1;
  font-size: 20px;
  transform: none;
}
.material-option:hover i {
  transform: rotate(45deg);
}
.material-preview {
  position: relative;
  min-height: 560px;
  border-radius: 160px 160px 10px 10px;
  overflow: hidden;
  background: #dedfd7;
}
.material-render,
.calc-preview-image {
  position: absolute;
  inset: 0;
  background-image: url("../img/5df8c05c2813be.webp");
  background-size: 300% 200%;
  background-position: 0% 0%;
  background-repeat: no-repeat;
}
.material-render {
  inset: 0;
  background-size: 300% 200%;
}
.material-preview-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: #4e5c3e;
  font-size: 14px;
  background: #eef0e5db;
  border: 1px solid #aab99a;
  border-radius: 30px;
  padding: 12px 15px;
}
.material-detail {
  padding: 20px 0 20px 10px;
  justify-content: center;
  min-height: 560px;
}
.material-detail h3 {
  font-size: 29px;
  line-height: 1.18;
  letter-spacing: -0.6px;
  color: #364424;
  margin: 24px 0;
  min-height: 68px;
}
.material-detail > p {
  font-size: 16px;
  min-height: 128px;
}
.material-detail .tiny-label {
  color: #6c853c;
}
.material-care {
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.material-care p {
  font-size: 14px;
}
.material-detail .inline-action {
  font-size: 15px;
  padding: 16px 18px;
  gap: 14px;
}
.stitch-strip {
  padding-top: 38px;
  gap: 60px;
  justify-content: space-between;
}
.stitch-strip > p {
  margin: 0;
  font-size: 16px;
}
.thread-swatches {
  display: none;
}
.pill,
.inline-action,
.outline-action {
  --mx: 0px;
  --my: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid #728652;
  border-radius: 40px;
  padding: 16px 22px;
  font-size: 16px;
  line-height: 1.25;
  background: transparent;
  transform: translate(var(--mx), var(--my));
  transition:
    transform 0.5s var(--ease),
    color 0.35s,
    border-color 0.35s,
    box-shadow 0.5s;
}
.pill:before,
.inline-action:before,
.outline-action:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 500px;
  height: 500px;
  left: var(--px, 50%);
  top: var(--py, 50%);
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.65s var(--ease);
}
.pill:hover:before,
.inline-action:hover:before,
.outline-action:hover:before {
  transform: translate(-50%, -50%) scale(1);
}
.pill:hover,
.inline-action:hover,
.outline-action:hover,
.dark .inline-action:hover {
  color: #20300f;
  background: transparent;
  gap: 18px;
  box-shadow: 0 8px 25px #9bbd5516;
}
.pill .arrow,
.inline-action .arrow,
.outline-action .arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.pill:hover .arrow,
.inline-action:hover .arrow,
.outline-action:hover .arrow {
  transform: translate(2px, -2px) rotate(45deg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.gallery-card {
  min-width: 0;
  border: 1px solid #3b482d;
  border-radius: 8px;
  background: #192113;
  overflow: hidden;
}
.gallery-photo {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  perspective: 700px;
  background: #30342c;
}
.gallery-old,
.gallery-new {
  position: absolute;
  inset: 0;
  background-image: url("../img/b3c076f6ac872c.webp");
  background-size: 400% 200%;
  background-position: var(--gx) 0%;
  background-repeat: no-repeat;
}
.gallery-new {
  background-position: var(--gx) 100%;
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transform: scale(1.035);
  transition:
    clip-path 0.9s var(--ease),
    opacity 0.5s,
    transform 1s var(--ease);
}
.gallery-photo:hover .gallery-new,
.gallery-card.is-new .gallery-new {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: scale(1);
}
.gallery-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #11170de0;
  border: 1px solid #697a4f;
  border-radius: 22px;
  padding: 7px 10px;
  font-size: 14px;
  color: #cbd8b9;
}
.gallery-body {
  padding: 22px;
}
.gallery-body h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.gallery-body p {
  font-size: 14px;
  color: #a9b997;
  min-height: 44px;
  margin: 0 0 18px;
}
.gallery-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #a7b891;
  border-top: 1px solid #35432b;
  padding-top: 16px;
}
.gallery-price b {
  font-size: 20px;
  color: var(--accent);
  font-weight: 500;
}
.gallery-toggle {
  font-size: 14px;
  padding: 10px 0 0;
  background: none;
  color: #b9caa3;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 0.3s;
}
.gallery-toggle:hover {
  color: var(--accent);
}
.gallery-explainer {
  font-size: 14px !important;
  color: #8c9e76;
  margin: 24px 0 0;
}
.result-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid #344129;
  padding: 30px 0 0;
  margin-top: 38px;
}
.result-notes p {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding-right: 15px;
}
.result-notes p + p {
  border-left: 1px solid #344129;
  padding-left: 32px;
}
.result-notes span {
  font-size: 38px;
  letter-spacing: -2px;
  color: #d8e0ce;
  margin: 0;
}
.heat-choice select {
  max-width: 430px;
  padding: 16px 48px 16px 18px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%23556542' stroke-width='2'/%3E%3C/svg%3E");
  background-position: right 18px center;
  background-repeat: no-repeat;
}
.thread-choices .choice > span {
  min-width: 116px;
  justify-content: center;
  padding: 20px 20px;
  border: 2px solid transparent;
  background: var(--thread-bg);
  color: var(--thread-ink);
  border-radius: 6px;
}
.thread-choices .choice i {
  display: none;
}
.thread-choices .choice {
  --thread-bg: #32392b;
  --thread-ink: #eff3e8;
}
.thread-choices .choice:nth-child(2) {
  --thread-bg: #f4f4e9;
  --thread-ink: #3d4432;
}
.thread-choices .choice:nth-child(3) {
  --thread-bg: #c4e575;
  --thread-ink: #263512;
}
.thread-choices .choice:nth-child(4) {
  --thread-bg: #a64439;
  --thread-ink: #fff4ee;
}
.thread-choices .choice > input:checked + span {
  background: var(--thread-bg);
  color: var(--thread-ink);
  border-color: #637d3d;
  box-shadow: 0 0 0 3px #b8c9a0;
}
.thread-choices .choice > input:checked + span:after {
  content: "✓";
  position: absolute;
  right: 7px;
  top: 3px;
  font-size: 14px;
  font-weight: 700;
}
.calc-preview {
  height: 260px;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  margin: 22px 0 10px;
  background: #dedfd6;
}
.calc-preview-image {
  background-size: 300% 200%;
}
.calc-preview > small {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #435332;
  background: #eff2e6df;
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 14px;
}
.quote-amount {
  margin: 20px 0 12px;
  font-size: 80px;
}
.phone-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #627349;
  border-radius: 5px;
  background: #242e1b;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  padding: 0 17px;
}
.phone-input-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #d5ec8016;
}
.phone-prefix {
  font-size: 18px;
  color: #e9f0de;
  padding-right: 8px;
}
.quote-receipt .phone-input-wrap input[type="tel"] {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  padding: 18px 0;
  width: 100%;
  min-width: 0;
  letter-spacing: 1px;
}
.quote-receipt .phone-input-wrap input[type="tel"]:focus {
  border: 0;
  box-shadow: none;
}
.warranty-visual {
  position: relative;
  margin: 0;
}
.warranty-visual > img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 10px;
}
.warranty-badge {
  position: absolute;
  right: -28px;
  bottom: 40px;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #263414;
  border-radius: 50%;
  box-shadow: 0 0 0 10px #c5de8833;
  animation: warranty-pulse 4s ease-in-out infinite;
}
.warranty-badge strong {
  font-size: 80px;
  line-height: 0.9;
  font-weight: 500;
}
.warranty-badge span {
  font-size: 16px;
}
.warranty-visual figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #d9e4cb;
  font-size: 14px;
  background: #18220ed9;
  padding: 8px 12px;
  border-radius: 20px;
}
@keyframes warranty-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 10px #c5de8833;
  }
  50% {
    box-shadow: 0 0 0 24px #c5de880a;
  }
}
.faq-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 48px;
}
.faq-grid h2 {
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -1.2px;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  align-items: start;
}
.faq-list details {
  align-self: start;
  border-top: 1px solid #c6d0b8;
  border-bottom: 0;
}
.faq-list summary {
  font-size: 16px;
  line-height: 1.4;
  padding: 22px 0;
  min-height: 86px;
}
.faq-answer p {
  font-size: 15px;
  padding-right: 12px;
}
.site-footer {
  padding-top: 104px;
}
.site-footer h2 {
  font-size: clamp(64px, 5.3vw, 94px);
}
.footer-top {
  margin-bottom: 52px;
}
.footer-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-heading {
  gap: 40px;
}
.footer-heading .cta {
  min-height: 68px;
}
.footer-phone {
  color: var(--accent);
}
.footer-bottom .developer-credit {
  color: #a4b78c;
}
.footer-top .identity {
  gap: 28px;
}
.footer-top .brand {
  color: #eef2e8;
}
@media (prefers-reduced-motion: reduce) {
  .atelier-image img,
  .warranty-badge {
    animation: none;
  }
  .gallery-new {
    transition: none;
    transform: none;
  }
  .tooltip {
    transition: none;
  }
}

.material-render {
  inset: auto 0;
  top: 50%;
  aspect-ratio: 1;
  transform: translateY(-50%);
}
.calc-preview-image {
  inset: 0 auto auto 50%;
  width: 260px;
  height: 260px;
  transform: translateX(-50%);
}
.tooltip.portal-tooltip {
  bottom: auto;
}
.choice {
  position: relative;
}
html {
  scrollbar-width: thin;
  scrollbar-color: #d5ec80 #080a07;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #080a07;
}
::-webkit-scrollbar-thumb {
  background: #d5ec80;
  border-radius: 10px;
}
body {
  min-width: 0;
}
.material-option,
.material-option:hover,
.material-option.active,
.material-option.active:hover {
  padding: 26px 14px;
  transform: none;
  gap: 13px;
}
.material-option {
  transition:
    background 0.35s,
    color 0.35s,
    border-color 0.35s;
}
.choice:hover > span {
  transform: none;
}
.material-option i {
  flex-shrink: 0;
}
.material-option strong {
  min-width: 0;
}
.scroll-rail {
  position: fixed;
  right: 0;
  top: 0;
  height: 100dvh;
  width: 5px;
  background: #080a07;
  z-index: 1200;
  touch-action: none;
}
.scroll-thumb {
  width: 5px;
  position: absolute;
  top: 0;
  background: var(--accent);
  border-radius: 8px;
  min-height: 30px;
}
.custom-scroll {
  scrollbar-width: none;
}
.custom-scroll::-webkit-scrollbar {
  width: 0;
}
.gallery-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.gallery-grid::-webkit-scrollbar {
  display: none;
}
.gallery-card {
  flex: 0 0 calc((100% - 66px) / 4);
  scroll-snap-align: start;
}
.gallery-old,
.gallery-new {
  inset: -2px;
  clip-path: inset(0);
  background-size: 400% 200%;
}
.gallery-new {
  clip-path: inset(0 100% 0 0);
}
.gallery-photo:hover .gallery-new,
.gallery-card.is-new .gallery-new,
.gallery-card.auto-new .gallery-new {
  clip-path: inset(0);
  opacity: 1;
  transform: none;
}
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  gap: 20px;
}
.gallery-controls > div {
  display: flex;
  gap: 12px;
}
.gallery-controls button,
.pagination button {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid #77885d;
  border-radius: 50%;
  transition:
    background 0.3s,
    color 0.3s;
}
.gallery-controls button:hover,
.pagination button:hover,
.pagination button[aria-current="page"] {
  background: var(--accent);
  color: #1d280e;
}
.gallery-controls button:disabled {
  opacity: 0.3;
  cursor: default;
}
.gallery-count {
  font-size: 14px;
  color: #a6b991;
}
.gallery-card.extra .gallery-old,
.gallery-card.extra .gallery-new {
  background-image: url("../img/gallery-extra.webp");
  background-size: 200% 200%;
}
.gallery-card.extra .gallery-old {
  background-position: var(--gx) 0;
}
.gallery-card.extra .gallery-new {
  background-position: var(--gx) 100%;
}
.calc-preview {
  height: auto;
  aspect-ratio: 1.8;
  margin: 0 0 28px;
  background: #e1e2d9;
}
.calc-preview canvas {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.calculator-layout {
  gap: 44px;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.8fr);
}
.calculator-options fieldset {
  padding-bottom: 22px;
  margin-bottom: 22px;
}
.calculator-options legend {
  margin-bottom: 16px;
}
.quote-receipt {
  padding: 30px;
  top: 24px;
}
.quote-amount {
  font-size: 72px;
}
.custom-thread {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.custom-thread[hidden] {
  display: none;
}
.custom-thread input[type="color"] {
  width: 46px;
  height: 44px;
  padding: 3px;
  border: 1px solid #819567;
  background: transparent;
  border-radius: 5px;
}
.custom-thread input[type="text"] {
  width: min(100%, 320px);
  padding: 12px;
  border: 1px solid #acb69e;
  border-radius: 5px;
  background: transparent;
  font: inherit;
}
.thread-choices .choice:nth-child(5) {
  --thread-bg: #e3e7dc;
  --thread-ink: #334122;
}
.thread-choices .choice > span {
  min-width: 98px;
  padding: 17px 16px;
}
.process-section .section-heading > p {
  width: calc((100% - 120px) / 4);
  max-width: none;
  flex-shrink: 0;
}
.faq-list {
  gap: 32px 48px;
}
.faq-list details {
  border-bottom: 1px solid #c6d0b8;
}
.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  min-height: 100px;
}
.faq-list summary > span {
  flex: 0 0 24px;
  text-align: center;
  align-self: center;
}
.faq-answer {
  overflow: hidden;
}
.faq-answer p {
  margin-top: 0;
  padding-bottom: 12px;
}
.footer-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 48px;
}
.footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.footer-actions .pill,
.footer-actions .cta {
  height: 76px;
  min-height: 76px;
  padding: 18px 22px;
  font-size: 16px;
  gap: 12px;
}
.footer-actions .pill {
  border-radius: 7px;
}
.footer-phone {
  width: calc(100% - 528px);
  font-size: clamp(38px, 5.2vw, 90px);
  letter-spacing: -3px;
  white-space: nowrap;
}
.footer-phone:hover {
  letter-spacing: -3px;
}
.footer-info > div:last-child {
  justify-self: end;
}
.mobile-menu-toggle,
.mobile-contact {
  display: none;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.blog-card {
  display: block;
  border-top: 1px solid #bcc6ad;
  padding-top: 18px;
  transition: transform 0.4s;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
  border-radius: 6px;
}
.blog-card h3 {
  font-size: 23px;
  line-height: 1.3;
  margin: 20px 0 12px;
}
.blog-card p {
  color: #6c785e;
  margin: 0 0 14px;
}
.blog-card small {
  font-size: 14px;
  color: #7d8b6e;
}
.blog-card .read-more {
  display: block;
  margin-top: 20px;
  font-size: 15px;
  color: #4b6628;
}
.blog-header {
  max-width: 1732px;
  margin: auto;
  padding: 0 54px;
  min-height: 104px;
}
.blog-main {
  min-height: 60vh;
}
.blog-main h1 {
  font-size: clamp(44px, 5vw, 80px);
  white-space: normal;
  letter-spacing: -2px;
  text-shadow: none;
}
.blog-list-title {
  margin-bottom: 48px;
}
.pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 52px;
  align-items: center;
}
.article-body {
  max-width: 800px;
  margin: auto;
}
.article-body h1 {
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.12;
  margin: 24px 0;
}
.article-body h2 {
  font-size: 30px !important;
  letter-spacing: -0.5px;
  text-transform: none;
  margin: 36px 0 16px;
}
.article-body p,
.article-body li {
  font-size: 18px;
  line-height: 1.8;
}
.article-body img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}
.breadcrumbs {
  font-size: 14px;
  color: #667952;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.article-note {
  border-left: 3px solid #88a94c;
  padding: 12px 22px;
  background: #e4e9db;
}
.blog-main .section-inner {
  width: 100%;
}
.scroll-rail[hidden] {
  display: none;
}
@media (max-width: 1600px) and (min-width: 901px) {
  .screen {
    padding: 0 32px;
    --title-size: 6.1vw;
    --wheel-size: 52vw;
    min-height: 750px;
    height: 100svh;
    grid-template-rows: 94px minmax(530px, 1fr) 120px;
  }
  .identity {
    gap: 16px;
  }
  .location {
    font-size: 14px;
    padding-left: 16px;
  }
  .nav {
    gap: 18px;
  }
  .nav .text-link {
    font-size: 14px;
  }
  .nav .phone {
    font-size: 21px;
    margin-left: 4px;
  }
  .nav .pill {
    padding: 13px 16px;
  }
  .intro {
    font-size: 14px;
  }
  .intro li {
    white-space: normal;
  }
  .text-group {
    width: 125%;
  }
  .copy {
    max-width: 90%;
  }
  .section,
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .services-grid {
    gap: 50px;
  }
  .material-layout {
    gap: 24px;
    grid-template-columns: 23% 33% 1fr;
  }
  .material-detail h3 {
    font-size: 26px;
  }
  .material-option strong {
    font-size: 17px;
  }
  .section h2 {
    font-size: 4vw;
  }
  .fact {
    gap: 16px;
  }
  .fact + .fact {
    padding-left: 20px;
  }
  .metric {
    font-size: 40px;
  }
  .gallery-body {
    padding: 18px;
  }
  .gallery-body h3 {
    font-size: 19px;
  }
  .warranty-grid {
    gap: 55px;
  }
  .footer-heading {
    grid-template-columns: 1fr 400px;
    gap: 32px;
  }
  .footer-phone {
    width: calc(100% - 432px);
  }
  .footer-actions .cta,
  .footer-actions .pill {
    padding: 15px;
    font-size: 14px;
  }
  .blog-header {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  header {
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 16px 0;
    gap: 12px;
  }
  .nav {
    width: 100%;
    order: 3;
    justify-content: space-between;
    margin: 0;
  }
  .nav .phone {
    margin-left: 0;
  }
  .screen {
    grid-template-rows: auto minmax(530px, 1fr) auto;
    min-height: 780px;
  }
  .screen .facts {
    padding: 24px 0;
  }
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .material-layout {
    grid-template-columns: 25% 32% 1fr;
    gap: 20px;
  }
  .material-option strong {
    font-size: 16px;
  }
  .material-option > span {
    display: none;
  }
  .material-detail {
    padding-left: 0;
  }
  .material-detail h3 {
    font-size: 23px;
  }
  .material-preview {
    min-height: 500px;
  }
  .calculator-layout {
    gap: 28px;
    grid-template-columns: 1.2fr 1fr;
  }
  .gallery-card {
    flex-basis: calc((100% - 44px) / 3);
  }
  .footer-heading {
    grid-template-columns: 1fr 340px;
    gap: 24px;
  }
  .footer-actions {
    gap: 10px;
  }
  .footer-phone {
    width: calc(100% - 364px);
    font-size: 5vw;
  }
  .footer-info {
    gap: 30px;
  }
  .faq-grid {
    gap: 30px;
  }
  .faq-list {
    gap: 24px;
  }
  .faq-grid h2 {
    font-size: 34px;
  }
  .process-steps {
    gap: 24px;
  }
  .process-section .section-heading > p {
    width: calc((100% - 72px) / 4);
  }
  .section-heading {
    gap: 35px;
  }
}
@media (max-width: 900px) {
  .screen {
    height: auto;
    min-height: 0;
    padding: 0 24px;
    display: block;
    overflow: hidden;
    --title-size: 7.3vw;
    --wheel-size: 70vw;
  }
  .identity {
    gap: 18px;
  }
  .location {
    font-size: 14px;
    padding-left: 18px;
  }
  .nav .text-link {
    font-size: 14px;
  }
  .nav .phone {
    font-size: 22px;
  }
  .nav {
    gap: 16px;
  }
  .nav .pill {
    display: none;
  }
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .text-group {
    display: contents;
  }
  .headline {
    padding-top: 40px;
    grid-row: 1;
    grid-column: 1;
    z-index: 3;
  }
  .eyebrow {
    font-size: 14px;
    margin-bottom: 20px;
  }
  h1 {
    white-space: normal;
    letter-spacing: -2px;
  }
  .visual {
    grid-row: 2;
    grid-column: 1;
    height: 64vw;
    margin-top: -3vw;
    z-index: 2;
  }
  .wheel-wrap,
  .halo {
    left: 50%;
    top: 48%;
  }
  .copy {
    grid-row: 3;
    grid-column: 1;
    margin: 0 0 32px;
    padding: 0;
  }
  .intro li {
    white-space: normal;
  }
  .intro {
    font-size: 16px;
    max-width: 650px;
  }
  .cta-wrap {
    margin-top: 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
  }
  .cta-note br {
    display: none;
  }
  .facts {
    padding: 24px 0;
    gap: 20px;
  }
  .fact {
    display: block;
  }
  .metric {
    font-size: 40px;
    margin-bottom: 12px;
  }
  .fact + .fact {
    padding-left: 20px;
  }
  .fact p {
    font-size: 14px;
  }
  .fact b {
    font-size: 14px;
  }
  .hotspot.one {
    right: 0;
    top: 25%;
  }
  .hotspot.two {
    left: 0;
    top: 65%;
  }
  .hotspot.three {
    right: 0;
    top: 78%;
  }
  .section,
  .site-footer {
    padding: 72px 24px;
  }
  .section h2,
  .site-footer h2 {
    font-size: clamp(36px, 5.8vw, 54px);
    letter-spacing: -1.3px;
  }
  .section-kicker {
    margin-bottom: 30px;
    letter-spacing: 1px;
  }
  .section-kicker span + span {
    display: none;
  }
  .section-heading {
    align-items: flex-start;
    gap: 28px;
  }
  .section-heading > p {
    max-width: 45%;
    margin: 0;
  }
  .services-grid {
    gap: 32px;
    grid-template-columns: 1fr 1fr;
  }
  .atelier-image {
    height: 580px;
  }
  .service-row {
    gap: 10px;
    padding: 20px 10px;
  }
  .service-row:hover {
    padding-left: 10px;
  }
  .service-row strong {
    font-size: 18px;
  }
  .service-row small {
    font-size: 14px;
  }
  .row-number {
    display: none;
  }
  .row-price {
    font-size: 16px;
  }
  .row-price i {
    margin-left: 5px;
  }
  .material-layout {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .material-menu {
    grid-column: 1/-1;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .material-option,
  .material-option:hover,
  .material-option.active {
    width: auto;
    flex-shrink: 0;
    min-height: 54px;
    padding: 14px 18px;
    border: 1px solid #b7c3a8;
    border-radius: 5px;
    gap: 8px;
  }
  .material-option strong {
    font-size: 16px;
    white-space: nowrap;
  }
  .material-option i {
    display: none;
  }
  .material-preview {
    min-height: 430px;
  }
  .material-detail {
    min-height: 430px;
    padding: 0;
  }
  .material-detail h3 {
    font-size: 28px;
  }
  .material-detail > p {
    min-height: 0;
  }
  .material-care {
    margin: 16px 0;
  }
  .material-care p {
    font-size: 14px;
  }
  .stitch-strip {
    gap: 24px;
  }
  .gallery-card {
    flex-basis: calc((100% - 22px) / 2);
  }
  .result-notes {
    gap: 18px;
  }
  .result-notes p {
    display: block;
  }
  .result-notes span {
    display: block;
    font-size: 30px;
    margin-bottom: 12px;
  }
  .result-notes p + p {
    padding-left: 18px;
  }
  .calculator-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .calculator-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .calculator-options fieldset {
    margin: 0;
    min-width: 0;
  }
  .calc-preview {
    grid-column: 1/-1;
    aspect-ratio: 2.2;
    margin: 0;
    max-height: 340px;
  }
  .included-note {
    grid-column: 1/-1;
  }
  .quote-receipt {
    position: static;
    max-width: none;
  }
  .quote-amount {
    font-size: 68px;
  }
  .receipt-lines {
    margin: 16px 0;
  }
  .quote-receipt .cta {
    font-size: 17px;
  }
  .process-section .section-heading > p {
    width: 45%;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 40px 0;
  }
  .delivery-grid {
    gap: 24px;
  }
  .delivery-card {
    padding: 28px;
  }
  .delivery-card h3 {
    font-size: 28px;
  }
  .time-band {
    gap: 30px;
  }
  .warranty-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .warranty-visual > img {
    height: 440px;
  }
  .warranty-badge {
    width: 120px;
    height: 120px;
    right: -12px;
  }
  .warranty-badge strong {
    font-size: 56px;
  }
  .warranty-badge span {
    font-size: 14px;
  }
  .faq-grid {
    display: block;
  }
  .faq-grid > div:first-child {
    margin-bottom: 36px;
  }
  .faq-list {
    gap: 26px 32px;
  }
  .faq-grid h2 {
    font-size: 42px;
  }
  .footer-heading {
    grid-template-columns: 1fr 330px;
  }
  .footer-actions .cta,
  .footer-actions .pill {
    padding: 14px;
    height: 72px;
    min-height: 72px;
    font-size: 14px;
  }
  .footer-phone {
    font-size: 6.1vw;
    width: 100%;
    letter-spacing: -2px;
    padding: 30px 0;
  }
  .footer-info {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-info > div:last-child {
    grid-column: 2;
    grid-row: 1/3;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 16px;
  }
  .blog-grid {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-preview .blog-card:last-child {
    display: none;
  }
  .blog-header {
    padding: 16px 24px;
  }
  .article-body p,
  .article-body li {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .screen {
    padding: 0 20px;
    --title-size: 8.2vw;
    --wheel-size: 94vw;
  }
  header {
    padding: 16px 0;
    gap: 0;
  }
  .brand {
    gap: 12px;
  }
  .brand strong {
    font-size: 17px;
  }
  .brand small {
    font-size: 14px;
  }
  .mark {
    font-size: 27px;
  }
  .identity {
    width: calc(100% - 55px);
    display: block;
  }
  .identity .location {
    border: 0;
    padding: 5px 0 0;
    font-size: 14px;
    display: flex;
    gap: 7px;
  }
  .identity .location svg {
    width: 14px;
    height: 14px;
  }
  .mobile-menu-toggle {
    display: block;
    width: 44px;
    height: 44px;
    border: 1px solid #65734c;
    border-radius: 50%;
    background: none;
    font-size: 21px;
  }
  .nav {
    display: none;
    margin-top: 18px;
    padding: 14px 0 4px;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
  }
  .nav.open {
    display: grid;
  }
  .nav .text-link {
    font-size: 16px;
    padding: 13px 0;
  }
  .nav .phone {
    grid-column: 1/-1;
    font-size: 25px;
  }
  .nav .pill {
    display: inline-flex;
    grid-column: 1/-1;
    margin-top: 10px;
    min-height: 48px;
  }
  .headline {
    padding-top: 30px;
  }
  .eyebrow {
    font-size: 14px;
    gap: 9px;
    margin-bottom: 18px;
  }
  .eyebrow:before {
    width: 18px;
  }
  .hero h1 {
    font-size: var(--title-size);
    letter-spacing: -1.2px;
    line-height: 1.12;
  }
  .hero h1 .outline {
    -webkit-text-stroke-width: 1px;
  }
  .visual {
    height: 89vw;
    margin-top: 0;
  }
  .wheel-wrap,
  .halo {
    top: 45%;
  }
  .hotspot button {
    font-size: 14px;
    gap: 7px;
    min-height: 44px;
  }
  .hotspot button:after {
    display: none;
  }
  .hotspot.one {
    right: -2px;
    top: 19%;
  }
  .hotspot.two {
    left: 0;
    top: 71%;
  }
  .hotspot.three {
    right: 0;
    top: 81%;
  }
  .copy {
    margin: 4px 0 28px;
  }
  .intro {
    font-size: 15px;
    gap: 12px;
    line-height: 1.55;
  }
  .intro li {
    gap: 10px;
  }
  .intro li:before {
    align-self: flex-start;
    margin-top: 9px;
  }
  .cta-wrap {
    display: flex;
    gap: 14px;
    align-items: stretch;
    margin-top: 22px;
  }
  .cta {
    min-height: 62px;
    padding: 19px 24px;
    font-size: 17px;
  }
  .cta-note {
    font-size: 14px;
    line-height: 1.5;
  }
  .facts {
    gap: 10px;
    padding: 22px 0;
    align-items: start;
  }
  .fact + .fact {
    padding-left: 10px;
  }
  .metric {
    font-size: 29px;
    letter-spacing: -1px;
    margin-bottom: 10px;
  }
  .metric small {
    font-size: 14px;
  }
  .fact b {
    font-size: 14px;
    line-height: 1.4;
  }
  .fact p {
    font-size: 14px;
    line-height: 1.5;
  }
  .fact p br {
    display: none;
  }
  .fact a {
    display: block;
    margin-top: 8px;
  }
  .section,
  .site-footer {
    padding: 56px 20px;
  }
  .section h2,
  .site-footer h2 {
    font-size: 35px;
    line-height: 1.08;
    letter-spacing: -1px;
  }
  .section-kicker {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading > p,
  .section-heading > div {
    max-width: none;
    margin-top: 20px;
  }
  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .service-copy {
    order: -1;
  }
  .service-copy .section-lead {
    margin: 20px 0 24px;
  }
  .atelier-image {
    height: 430px;
    width: 100%;
    border-radius: 180px 180px 8px 8px;
  }
  .atelier-image figcaption {
    left: 16px;
    bottom: 16px;
    font-size: 14px;
    padding: 10px 14px;
  }
  .service-row {
    padding: 22px 0;
  }
  .service-row:hover {
    padding-left: 0;
  }
  .service-row strong {
    font-size: 18px;
  }
  .service-row small {
    font-size: 14px;
  }
  .row-price {
    font-size: 16px;
  }
  .material-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }
  .material-menu {
    margin: 0 -20px;
    padding: 0 20px 8px;
    max-width: calc(100vw - 5px);
    grid-column: auto;
  }
  .material-option,
  .material-option:hover,
  .material-option.active {
    padding: 14px 16px;
    min-height: 50px;
  }
  .material-preview {
    min-height: 0;
    height: auto;
    aspect-ratio: 1.12;
    border-radius: 100px 100px 8px 8px;
  }
  .material-preview-caption {
    font-size: 14px;
  }
  .material-detail {
    min-height: 0;
  }
  .material-detail h3 {
    font-size: 29px;
    min-height: 0;
    margin: 18px 0;
  }
  .material-detail > p {
    margin: 0;
  }
  .material-detail .inline-action {
    margin-top: 8px;
  }
  .stitch-strip {
    display: block;
    padding-top: 24px;
  }
  .stitch-strip p {
    font-size: 15px;
  }
  .gallery-grid {
    margin-right: -20px;
    padding-right: 20px;
    gap: 16px;
  }
  .gallery-card {
    flex-basis: 88%;
    min-width: 0;
  }
  .gallery-body h3 {
    font-size: 22px;
  }
  .gallery-body p {
    min-height: 0;
    font-size: 14px;
  }
  .gallery-body {
    padding: 22px;
  }
  .gallery-toggle {
    min-height: 44px;
    font-size: 14px;
  }
  .gallery-tag {
    font-size: 14px;
  }
  .gallery-controls {
    margin-top: 16px;
  }
  .gallery-explainer {
    font-size: 14px !important;
    line-height: 1.6;
  }
  .result-notes {
    gap: 12px;
  }
  .result-notes p {
    font-size: 14px;
    padding-right: 0;
    line-height: 1.5;
  }
  .result-notes p + p {
    padding-left: 12px;
  }
  .result-notes span {
    font-size: 28px;
  }
  .calculator-options {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .calc-preview {
    aspect-ratio: 1.35;
    max-height: none;
  }
  .calculator-options legend {
    font-size: 19px;
    line-height: 1.4;
  }
  .calculator-options legend > span {
    margin-right: 10px;
  }
  .choice-row {
    gap: 10px;
  }
  .choice > span {
    font-size: 14px;
    padding: 14px 13px;
    min-height: 48px;
  }
  .thread-choices .choice > span {
    min-width: 90px;
    padding: 16px 14px;
  }
  .thread-choices {
    gap: 12px;
  }
  .heat-choice {
    display: block;
  }
  .heat-choice label {
    display: block;
    margin: 20px 0 12px;
  }
  .heat-choice select {
    max-width: 100%;
    width: 100%;
    font-size: 14px;
  }
  .extra-line {
    gap: 10px;
  }
  .extra-line strong {
    font-size: 14px;
  }
  .extra-line small {
    font-size: 14px;
  }
  .extra-price {
    font-size: 14px;
    white-space: nowrap;
  }
  .quote-receipt {
    padding: 24px;
    border-radius: 9px;
  }
  .quote-amount {
    font-size: 64px;
  }
  .quote-receipt .cta {
    font-size: 15px;
    line-height: 1.4;
  }
  .receipt-spec {
    font-size: 14px;
  }
  .receipt-note {
    font-size: 14px;
  }
  .phone-input-wrap input {
    font-size: 18px;
  }
  .process-section .section-heading > p {
    width: auto;
    margin-top: 20px;
  }
  .process-steps {
    gap: 26px 20px;
    margin: 30px 0;
  }
  .process-steps h3 {
    font-size: 19px;
    line-height: 1.3;
    margin: 16px 0 10px;
  }
  .process-steps p {
    font-size: 14px;
  }
  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .delivery-card {
    padding: 26px;
  }
  .delivery-card h3 {
    font-size: 29px;
  }
  .time-band {
    display: block;
    padding-top: 30px;
  }
  .time-value {
    font-size: 54px;
  }
  .warranty-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .warranty-visual > img {
    height: auto;
    aspect-ratio: 1.1;
    object-fit: cover;
  }
  .warranty-badge {
    right: 10px;
    bottom: 35px;
  }
  .warranty-visual figcaption {
    font-size: 14px;
    left: 10px;
  }
  .warranty-points p {
    font-size: 15px;
  }
  .faq-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-list summary {
    min-height: 80px;
    font-size: 16px;
    padding: 22px 0;
  }
  .faq-answer p {
    font-size: 15px;
  }
  .faq-grid h2 {
    font-size: 35px;
  }
  .footer-top {
    margin-bottom: 30px;
  }
  .footer-top .identity {
    width: 100%;
  }
  .footer-heading {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .footer-actions {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .footer-actions .pill,
  .footer-actions .cta {
    height: 66px;
    min-height: 66px;
    font-size: 14px;
    padding: 13px 14px;
    gap: 8px;
  }
  .footer-phone {
    font-size: 8.8vw;
    letter-spacing: -1.5px;
    padding: 26px 0 30px;
    width: 100%;
  }
  .footer-phone:hover {
    letter-spacing: -1.5px;
  }
  .footer-info {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 0;
  }
  .footer-info > div:last-child {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }
  .footer-info a {
    font-size: 16px;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .blog-preview .blog-card:last-child {
    display: block;
  }
  .blog-card h3 {
    font-size: 23px;
  }
  .blog-header {
    padding: 16px 20px;
  }
  .blog-main h1 {
    font-size: 38px;
  }
  .article-body h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .article-body h2 {
    font-size: 26px !important;
  }
  .article-body p,
  .article-body li {
    font-size: 17px;
  }
  .article-body ul {
    padding-left: 22px;
  }
  .article-note {
    padding: 12px 16px;
  }
  .pagination {
    gap: 10px;
  }
  .pagination button {
    width: 43px;
    height: 43px;
  }
  .scroll-rail {
    display: none;
  }
  .custom-scroll {
    scrollbar-width: thin;
  }
  dialog {
    max-width: calc(100vw - 32px);
    padding: 30px 24px;
  }
  .tooltip.portal-tooltip {
    max-width: calc(100vw - 32px);
  }
  .mobile-contact {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 12px 20px;
    background: #11160e;
    border-bottom: 1px solid #30382a;
    font-size: 14px;
  }
  .mobile-contact a:first-child {
    color: var(--accent);
    font-weight: 700;
  }
}
@media (prefers-reduced-motion: reduce) {
  .auto-new .gallery-new {
    transition: none;
  }
}
@media (hover: none) {
  .gallery-photo:hover .gallery-new {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  .gallery-card.is-new .gallery-new,
  .gallery-card.auto-new .gallery-new {
    opacity: 1;
    clip-path: inset(0);
  }
}
.gallery-photo:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -4px;
}

/* Stable controls and a shared fill animation */
.heat-choice select,
.heat-choice select:hover,
.heat-choice select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%23556542' stroke-width='2'/%3E%3C/svg%3E");
  background-position: right 18px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  transition:
    background-color 0.3s,
    border-color 0.3s;
}
.heat-choice select:hover {
  background-color: #e3e9d9;
}
.extra-line {
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.extra-line .extra-price {
  margin-left: 0;
  font-size: 16px;
}
.installation-switch {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 45px;
  height: 26px;
  flex: 0 0 45px;
}
.installation-switch input {
  inset: 0;
  width: 45px;
  height: 26px;
  margin: 0;
}
.extra-line .toggle {
  flex-shrink: 0;
}
.calc-preview {
  aspect-ratio: 1;
  height: auto;
  max-height: none;
  background: #e0e1d9;
}
.calc-preview canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.calc-preview > small {
  font-size: 14px;
  padding: 9px 14px;
}
.material-option,
.material-option.active,
.material-option:hover,
.material-option.active:hover {
  height: 84px;
  min-height: 84px;
  padding: 24px 18px;
  gap: 13px;
  transform: none;
}
.material-option > strong,
.material-option > span,
.faq-question {
  transition: transform 0.45s var(--ease);
}
.material-option:hover > strong,
.material-option:hover > span,
.faq-list summary:hover .faq-question {
  transform: translateX(-4px);
}
.faq-list {
  row-gap: 0;
  column-gap: 48px;
}
.faq-list details {
  border-top: 1px solid #c6d0b8;
  border-bottom: 0;
}
.faq-list details:nth-last-child(-n + 2) {
  border-bottom: 1px solid #c6d0b8;
}
.faq-list summary,
.faq-list summary:hover {
  isolation: isolate;
  overflow: hidden;
  padding: 24px 18px;
  min-height: 96px;
  background: transparent;
  transition: color 0.35s;
}
.faq-list summary:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #d9e8b8;
  opacity: 0;
  transform: translateY(80%);
  transition:
    transform 0.55s var(--ease),
    opacity 0.4s;
}
.faq-list summary:hover:before {
  opacity: 1;
  transform: translateY(0);
}
.faq-list summary .faq-question {
  font-size: 16px;
  font-weight: 400;
  flex: 1 1 auto;
  text-align: left;
  line-height: 1.5;
}
.faq-list summary .faq-plus {
  font-size: 25px;
  flex: 0 0 24px;
}
.faq-answer p {
  padding: 0 18px 20px;
  margin-bottom: 0;
}
.footer-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
}
.footer-actions {
  display: flex;
  gap: 20px;
}
.footer-actions .cta {
  height: auto;
  min-height: 74px;
  padding: 23px 38px;
  font-size: 19px;
  white-space: nowrap;
  gap: 20px;
}
.footer-actions .pill {
  min-height: 74px;
  height: auto;
  padding: 23px 30px;
  font-size: 19px;
  white-space: nowrap;
}
.footer-actions .cta .arrow,
.footer-actions .pill .arrow {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
}
.footer-actions .cta:hover .arrow,
.footer-actions .pill:hover .arrow {
  transform: translate(4px, -4px);
}
.footer-phone {
  width: calc(100% - 660px);
}
.blog-all {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
.blog-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1.7;
}
.blog-card .blog-image img {
  height: 100%;
  width: 100%;
  border-radius: 0;
  transition: transform 0.8s var(--ease);
  object-fit: cover;
}
.blog-card:hover .blog-image img {
  transform: scale(1.055);
}
.blog-card:hover {
  transform: none;
}
.blog-card h3 {
  transition: color 0.35s;
  margin-top: 22px;
}
.blog-card:hover h3 {
  color: #668530;
}
.blog-card small {
  display: block;
  font-size: 14px;
  margin-top: 22px;
  color: #737970;
}
.blog-card p {
  color: #777c73;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog-card .read-more {
  font-size: 16px;
  margin-top: 22px;
}
.developer-credit a {
  transition: color 0.3s;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.developer-credit a:hover {
  color: var(--accent);
}
.success-main {
  min-height: 68svh;
  display: flex;
  align-items: center;
}
.success-card {
  max-width: 800px;
  margin: auto;
  width: 100%;
}
.success-card h1 {
  font-size: clamp(38px, 5vw, 72px);
  white-space: normal;
  line-height: 1.08;
  letter-spacing: -2px;
  text-shadow: none;
  margin: 24px 0;
}
.success-card p {
  font-size: 18px;
  line-height: 1.7;
}
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}
.success-social {
  padding: 28px;
  border: 1px solid #b9c5aa;
  border-radius: 8px;
  margin-top: 32px;
}
.success-social h2 {
  font-size: 28px;
  text-transform: none;
  letter-spacing: -0.7px;
}
.success-social[hidden] {
  display: none;
}
/* Mobile overlay is portalled outside the hero stacking context. */
.menu-overlay {
  display: none;
}
@media (max-width: 1200px) {
  .footer-actions .cta {
    padding: 22px 28px;
    font-size: 17px;
  }
  .footer-actions .pill {
    padding: 22px 26px;
    font-size: 17px;
  }
  .footer-phone {
    width: calc(100% - 560px);
  }
}
@media (max-width: 900px) {
  .material-option,
  .material-option.active,
  .material-option:hover,
  .material-option.active:hover {
    height: 56px;
    min-height: 56px;
    padding: 14px 18px;
    gap: 8px;
  }
  .footer-heading {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-phone {
    width: 100%;
  }
}
@media (max-width: 600px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  body {
    font-size: 16px;
  }
  .eyebrow,
  .brand small,
  .identity .location {
    font-size: 14px;
  }
  .brand small {
    letter-spacing: 1.5px;
  }
  .identity {
    width: calc(100% - 58px);
  }
  .identity .location {
    white-space: normal;
    max-width: 270px;
  }
  .mobile-contact {
    font-size: 16px;
    gap: 20px;
    padding: 15px 0;
  }
  .intro,
  .cta-note,
  .section p,
  .service-row small,
  .material-care p,
  .gallery-body p,
  .gallery-toggle,
  .result-notes p,
  .receipt-spec,
  .receipt-note,
  .phone-help,
  .faq-answer p,
  .footer-info p,
  .footer-info a {
    font-size: 16px;
  }
  .section .fineprint,
  .section .field-note,
  .section .tiny-label,
  .section-kicker,
  .section .consent,
  .section .form-status,
  .footer-info > div > span,
  .footer-bottom,
  .gallery-explainer,
  .gallery-tag,
  .material-preview-caption,
  .warranty-visual figcaption {
    font-size: 14px !important;
  }
  .section h2 {
    font-size: 34px;
  }
  .facts {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 0;
  }
  .fact {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    min-height: 0;
  }
  .fact + .fact {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .metric {
    font-size: 36px;
    margin: 0;
  }
  .metric small {
    font-size: 17px;
  }
  .fact p,
  .fact b {
    font-size: 16px;
    line-height: 1.5;
  }
  .fact a {
    font-size: 14px;
    margin-top: 5px;
  }
  .material-option,
  .material-option.active,
  .material-option:hover,
  .material-option.active:hover {
    height: 56px;
    min-height: 56px;
    max-height: 56px;
    padding: 14px 18px;
    gap: 8px;
    box-sizing: border-box;
    align-items: center;
    line-height: 24px;
  }
  .material-option strong {
    font-size: 16px;
    line-height: 24px;
  }
  .material-option:hover > strong,
  .material-option:hover > span {
    transform: none;
  }
  .material-menu {
    align-items: flex-start;
  }
  .result-notes {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }
  .result-notes p,
  .result-notes p + p {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20px 0;
    border-left: 0;
    border-bottom: 1px solid #344129;
    margin: 0;
  }
  .result-notes span {
    display: block;
    flex: 0 0 36px;
    font-size: 30px;
    margin: 0;
  }
  .calc-preview {
    width: 100%;
    aspect-ratio: 1;
    max-height: none;
    height: auto;
  }
  .calc-preview > small {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
  .extra-line {
    gap: 12px;
  }
  .extra-line > span:first-child {
    flex: 1 1 100%;
  }
  .extra-line strong {
    font-size: 16px;
  }
  .extra-line small {
    font-size: 14px;
  }
  .heat-choice select {
    font-size: 16px;
  }
  .choice > span {
    font-size: 16px;
  }
  .calculator-options legend {
    font-size: 20px;
  }
  .faq-list {
    gap: 0;
  }
  .faq-list details:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .faq-list details:last-child {
    border-bottom: 1px solid #c6d0b8;
  }
  .faq-list summary,
  .faq-list summary:hover {
    padding: 24px 14px;
    min-height: 92px;
  }
  .faq-list summary .faq-question {
    font-size: 16px;
  }
  .footer-heading {
    display: contents;
  }
  .site-footer > .section-inner {
    display: flex;
    flex-direction: column;
  }
  .footer-top {
    order: 0;
  }
  .footer-heading > h2 {
    order: 1;
  }
  .footer-phone {
    order: 2;
    font-size: 8.8vw;
    padding: 26px 0;
  }
  .footer-actions {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 0 14px;
  }
  .footer-actions .pill,
  .footer-actions .cta {
    width: 100%;
    padding: 22px 26px;
    min-height: 68px;
    font-size: 17px;
    gap: 18px;
    white-space: nowrap;
  }
  .footer-info {
    order: 4;
  }
  .footer-bottom {
    order: 5;
  }
  .footer-info > div > span {
    margin-bottom: 12px;
  }
  .footer-info a {
    line-height: 1.7;
    padding: 4px 0;
  }
  .footer-bottom {
    line-height: 1.6;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 48px;
    height: 48px;
    z-index: 5001;
    flex-shrink: 0;
    overflow: hidden;
  }
  .burger-lines {
    position: relative;
    width: 22px;
    height: 18px;
    display: block;
  }
  .burger-lines i {
    position: absolute;
    height: 2px;
    width: 22px;
    background: var(--accent);
    left: 0;
    top: 8px;
    border-radius: 2px;
    transition:
      transform 0.45s var(--ease),
      opacity 0.3s;
  }
  .burger-lines i:first-child {
    transform: translateY(-7px);
  }
  .burger-lines i:last-child {
    transform: translateY(7px);
  }
  .mobile-menu-toggle[aria-expanded="true"] .burger-lines i:first-child {
    transform: rotate(45deg);
  }
  .mobile-menu-toggle[aria-expanded="true"] .burger-lines i:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .mobile-menu-toggle[aria-expanded="true"] .burger-lines i:last-child {
    transform: rotate(-45deg);
  }
  .mobile-menu-toggle.menu-floating {
    position: fixed;
    background: #172010;
    z-index: 5002;
  }
  .menu-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: #121a0c;
    clip-path: circle(0 at var(--menu-x, 90%) var(--menu-y, 40px));
    visibility: hidden;
    transition:
      clip-path 0.75s var(--ease),
      visibility 0.75s;
    align-items: center;
    justify-content: center;
    padding: 80px 26px 40px;
    overflow: auto;
    height: 100dvh;
    overscroll-behavior: contain;
  }
  .menu-overlay.is-open {
    clip-path: circle(150vmax at var(--menu-x, 90%) var(--menu-y, 40px));
    visibility: visible;
  }
  .menu-overlay .nav,
  .menu-overlay .nav.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    width: 100%;
    order: 0;
  }
  .menu-overlay .nav > a {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.35s,
      transform 0.45s var(--ease);
    min-height: 52px;
    text-align: center;
  }
  .menu-overlay.is-open .nav > a {
    opacity: 1;
    transform: none;
    transition-delay: calc(0.15s + var(--menu-order) * 0.055s);
  }
  .menu-overlay .nav .text-link {
    font-size: 26px;
    line-height: 1.25;
    padding: 10px 0;
    overflow: visible;
  }
  .menu-overlay .nav .phone {
    font-size: 29px;
    margin: 20px 0 0;
    color: var(--accent);
  }
  .menu-overlay .nav .pill {
    display: flex;
    font-size: 19px;
    min-height: 58px;
    margin-top: 4px;
    padding: 17px 28px;
  }
  .menu-overlay .roll,
  .menu-overlay .text-link:hover .roll {
    transform: none;
  }
  .menu-overlay .roll:after {
    display: none;
  }
  .menu-overlay .text-link > span {
    height: auto !important;
    overflow: visible !important;
  }
  .menu-overlay .text-link:after {
    display: none;
  }
  body.menu-open .scroll-rail {
    visibility: hidden;
  }
  .blog-all {
    margin-top: 30px;
  }
  .blog-all .inline-action {
    width: 100%;
  }
  .blog-card small {
    margin-top: 24px;
    font-size: 14px;
  }
  .blog-card p {
    font-size: 16px;
  }
  .success-card h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }
  .success-card p {
    font-size: 17px;
  }
  .success-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.faq-list details[open] summary .faq-question {
  transform: none;
}
.faq-list details[open] summary:hover .faq-question {
  transform: translateX(-4px);
}

/* Desktop preview: full-width matching backdrop, uncropped wheel up to 400px tall. */
@media (min-width: 901px) {
  .calculator-options .calc-preview {
    height: 400px;
    max-height: 400px;
    aspect-ratio: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .calculator-options .calc-preview canvas {
    width: min(100%, 400px);
    height: auto;
    max-height: 400px;
    aspect-ratio: 1;
    object-fit: contain;
    mask-image: linear-gradient(
      to right,
      transparent,
      black 5%,
      black 95%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      black 5%,
      black 95%,
      transparent
    );
  }
}
