:root {
  --color-ink: #2f2e2c;
  --color-muted: #6d675f;
  --color-surface: #f4f1eb;
  --color-panel: #fbfaf7;
  --color-charcoal: #171716;
  --color-charcoal-deep: #10100f;
  --color-bronze: #c69355;
  --color-bronze-dark: #9d6f39;
  --color-bronze-pale: #e4c99f;
  --color-hairline: #d9d0c4;
  --shadow-soft: 0 18px 45px rgba(20, 17, 13, 0.16);
  --container: min(100% - 48px, 1180px);
  --hero-container: min(100% - 64px, 1200px);
  --focus-ring: 0 0 0 3px rgba(198, 147, 85, 0.35);
  font-family: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-surface);
  color: var(--color-ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

.page-shell {
  min-width: 0;
  overflow-x: clip;
}

.hero {
  position: relative;
  min-height: 590px;
  color: #fff;
  background: var(--color-charcoal-deep);
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: -3;
}

.hero__media::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.34), rgba(16, 16, 15, 0.05) 45%, rgba(16, 16, 15, 0.2)),
    linear-gradient(180deg, rgba(16, 16, 15, 0.08), rgba(16, 16, 15, 0.22));
  z-index: 1;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.02);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 63% 48%, rgba(198, 147, 85, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(16, 16, 15, 0.44) 0%, rgba(16, 16, 15, 0.2) 34%, rgba(16, 16, 15, 0.02) 62%, rgba(16, 16, 15, 0.28) 100%);
  z-index: -2;
}

.site-header {
  width: var(--hero-container);
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.brand__mark {
  width: 36px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--color-bronze-pale);
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

.brand__text {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
  letter-spacing: 0.19em;
}

.brand__text strong {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.14em;
}

.brand__text span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  gap: 4px;
  padding: 0;
  color: #fff;
  background: rgba(18, 18, 17, 0.62);
  border: 1px solid rgba(228, 201, 159, 0.34);
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 1.5px;
  display: block;
  background: currentColor;
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle[aria-expanded="true"] {
  background: rgba(18, 18, 17, 0.82);
  border-color: rgba(228, 201, 159, 0.62);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.header-contact {
  display: grid;
  justify-items: end;
  gap: 2px;
  white-space: nowrap;
}

.header-contact a {
  min-height: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.link-button {
  min-height: 24px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 11px;
  transition: color 180ms ease;
}

.link-button:hover {
  color: #fff;
}

.hero__content {
  width: var(--hero-container);
  min-height: 518px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 545px) minmax(220px, 285px);
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 46px 0 66px;
}

.hero__copy {
  max-width: 545px;
}

.hero h1 {
  max-width: 540px;
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__notes {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
}

.hero__notes p {
  max-width: 420px;
  margin: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.42;
}

.note-icon,
.feature-icon {
  color: var(--color-bronze);
}

.note-icon {
  width: 30px;
  height: 30px;
  margin-top: 1px;
}

.note-icon svg,
.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  min-height: 50px;
  min-width: 198px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

.button--primary {
  color: #fff;
  background: linear-gradient(180deg, #d1a160, var(--color-bronze));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(73, 46, 18, 0.32);
}

.button--primary:hover {
  background: linear-gradient(180deg, #dbad6d, #bf8849);
}

.button--ghost {
  color: #fff;
  background: rgba(16, 16, 15, 0.18);
  border-color: rgba(255, 255, 255, 0.64);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.hero-features {
  display: grid;
  gap: 24px;
  justify-self: end;
}

.hero-feature {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.feature-icon {
  width: 38px;
  height: 38px;
}

.feature-icon svg {
  stroke-width: 1.75;
}

.hero-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.38;
}

.trust-strip {
  background: var(--color-panel);
  border-bottom: 1px solid var(--color-hairline);
}

.trust-strip__inner {
  width: var(--container);
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
}

.trust-item {
  min-height: 64px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  position: relative;
}

.trust-item:first-child {
  padding-left: 18px;
}

.trust-item:last-child {
  padding-right: 18px;
}

.trust-item + .trust-item::before {
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--color-hairline) 18%, var(--color-hairline) 82%, transparent);
}

.trust-icon {
  width: 34px;
  height: 34px;
  color: var(--color-bronze);
}

.trust-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.28;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item p {
  margin: 0;
  display: grid;
  gap: 2px;
  color: var(--color-ink);
  font-size: 12px;
  line-height: 1.38;
}

.trust-item strong {
  font-size: 12px;
  font-weight: 700;
}

.trust-item p span {
  color: #34312d;
  font-weight: 500;
}

.catalog-section {
  background: var(--color-panel);
  border-bottom: 1px solid var(--color-hairline);
}

.catalog-section__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0 16px;
}

.catalog-section h2 {
  margin: 0 0 18px;
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

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

.product-card {
  min-width: 0;
  min-height: 320px;
  padding: 9px 9px 12px;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  align-content: start;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid #d6d0c8;
  border-radius: 4px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 147, 85, 0.7);
  box-shadow: 0 16px 28px rgba(45, 38, 30, 0.09);
}

.product-card h3 {
  margin: 0 0 8px;
  color: #373431;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.17 / 1;
  object-fit: cover;
  background: #e8e5df;
}

.product-card p {
  margin: 10px 0 8px;
  color: #2f2e2c;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.product-card strong {
  margin-bottom: 14px;
  color: #1f1e1c;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.product-card__button {
  width: 122px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  color: #fff;
  background: linear-gradient(180deg, #c79558, #ad7840);
  border: 0;
  border-radius: 3px;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.product-card__button:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #d0a064, #a96f35);
}

.product-card__button:focus-visible,
.button:focus-visible,
.projects-carousel__arrow:focus-visible,
.projects-carousel__viewport:focus-visible,
.product-modal__close:focus-visible,
.product-modal__cta:focus-visible,
.sample-order-form input:focus-visible,
.product-order-form input:focus-visible,
.product-modal__thumb:focus-visible {
  outline: 2px solid var(--color-bronze);
  outline-offset: 3px;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 28px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.product-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.product-modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 15, 0.72);
  backdrop-filter: blur(5px);
}

.product-modal__dialog {
  width: min(100%, 1180px);
  max-height: min(92vh, 760px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  overflow: hidden;
  color: #302f2e;
  background: #f8f6f1;
  border: 1px solid rgba(228, 201, 159, 0.38);
  border-radius: 8px;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.42);
  transform: translateY(12px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-modal.is-open .product-modal__dialog {
  transform: translateY(0) scale(1);
}

.product-modal__close {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(17, 17, 16, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.product-modal__media {
  min-height: 0;
  padding: 24px 24px 20px;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(232, 226, 216, 0.34)),
    #ebe7df;
}

.product-modal__image {
  width: 100%;
  height: clamp(300px, 50vh, 430px);
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  display: block;
  object-fit: cover;
  background: #e7e3dc;
  border: 1px solid rgba(166, 151, 132, 0.34);
}

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

.product-modal__thumb {
  height: 76px;
  padding: 0;
  overflow: hidden;
  background: #e8e4dc;
  border: 1px solid rgba(166, 151, 132, 0.44);
  border-radius: 4px;
  cursor: pointer;
}

.product-modal__thumb[aria-current="true"] {
  border-color: var(--color-bronze);
  box-shadow: inset 0 0 0 1px var(--color-bronze);
}

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

.product-modal__content {
  padding: 28px 30px 24px;
  overflow: auto;
}

.product-modal__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-bronze-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.product-modal__content h2 {
  margin: 0;
  padding-right: 42px;
  color: #272624;
  font-size: clamp(24px, 2.75vw, 32px);
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

.product-modal__subtitle {
  margin: 8px 0 16px;
  color: #6a635a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.product-modal__specs {
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #d8cfc2;
  border-left: 1px solid #d8cfc2;
}

.product-modal__specs div {
  min-height: 50px;
  padding: 9px 12px;
  border-right: 1px solid #d8cfc2;
  border-bottom: 1px solid #d8cfc2;
}

.product-modal__specs dt {
  margin: 0 0 5px;
  color: #8a8176;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.product-modal__specs dd {
  margin: 0;
  color: #342f2a;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.28;
}

.product-modal__copy {
  display: grid;
  gap: 8px;
}

.product-modal__copy p {
  margin: 0;
  color: #5e574f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
}

.product-modal__footer {
  margin-top: 14px;
  padding-top: 14px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d8cfc2;
}

.product-modal__footer span {
  display: block;
  margin-bottom: 3px;
  color: #8a8176;
  font-size: 12px;
  font-weight: 700;
}

.product-modal__price {
  display: block;
  color: #242321;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.product-order-form {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.product-order-form label {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.product-order-form label span {
  color: #8a8176;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.product-order-form input {
  width: 100%;
  height: 42px;
  padding: 0 13px;
  color: #2d2a26;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d8cfc2;
  border-radius: 3px;
  font: inherit;
  font-size: 13px;
  outline: 0;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.product-order-form input::placeholder {
  color: #8f877c;
}

.product-order-form input:focus {
  border-color: var(--color-bronze);
  background: #fff;
}

.product-modal__cta {
  min-width: 188px;
  min-height: 42px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(180deg, #d1a160, #ad7840);
  border: 0;
  border-radius: 3px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.product-modal__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.product-order-form__status {
  grid-column: 1 / -1;
  min-height: 14px;
  margin: 0;
  color: #70665c;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.product-modal__chips {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-modal__chips span {
  padding: 5px 8px;
  color: #6b6157;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid #d8cfc2;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.sample-modal__dialog {
  width: min(100%, 760px);
  max-height: min(92vh, 660px);
  grid-template-columns: 1fr;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 236, 226, 0.92)),
    #f8f6f1;
}

.sample-modal__content {
  padding: 38px 42px 34px;
}

.sample-modal__content h2 {
  margin: 0;
  padding-right: 54px;
  color: #272624;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

.sample-modal__info {
  margin: 22px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d8cfc2;
  border-left: 1px solid #d8cfc2;
}

.sample-modal__info div {
  min-height: 76px;
  padding: 14px 15px;
  border-right: 1px solid #d8cfc2;
  border-bottom: 1px solid #d8cfc2;
}

.sample-modal__info span {
  display: block;
  margin-bottom: 8px;
  color: #8a8176;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.sample-modal__info strong {
  display: block;
  color: #342f2a;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.24;
}

.sample-order-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.sample-order-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.sample-order-form label span {
  color: #8a8176;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.sample-order-form input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  color: #2d2a26;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #d8cfc2;
  border-radius: 3px;
  font: inherit;
  font-size: 14px;
  outline: 0;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.sample-order-form input:focus {
  border-color: var(--color-bronze);
  background: #fff;
}

.sample-order-form .product-modal__cta {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
}

.sample-order-form__status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: #70665c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.38;
}

body.modal-open {
  overflow: hidden;
}

.choice-section {
  background: var(--color-panel);
  border-bottom: 1px solid var(--color-hairline);
}

.choice-section__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 20px 0 26px;
}

.choice-section h2 {
  margin: 0 0 24px;
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.choice-item {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.choice-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: var(--color-bronze);
}

.choice-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.24;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice-item h3 {
  min-height: 34px;
  margin: 0 0 10px;
  color: #262421;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.22;
}

.choice-item p {
  max-width: 150px;
  margin: 0;
  color: #4d4944;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.42;
}

.projects-section {
  background: var(--color-panel);
  border-bottom: 1px solid var(--color-hairline);
}

.projects-section__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 12px 0 34px;
  position: relative;
}

.projects-section h2 {
  margin: 0 0 12px;
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.projects-carousel {
  position: relative;
}

.projects-carousel::before,
.projects-carousel::after {
  width: 58px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.projects-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-panel), rgba(251, 250, 247, 0));
}

.projects-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-panel), rgba(251, 250, 247, 0));
}

.projects-carousel__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.projects-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.projects-gallery {
  display: flex;
  gap: 8px;
}

.projects-gallery img {
  flex: 0 0 calc((100% - 24px) / 4);
  min-width: 0;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  border: 0;
  filter: saturate(0.96) contrast(1.02);
  scroll-snap-align: start;
}

.projects-carousel__arrow {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(22, 22, 21, 0.72);
  border: 1px solid rgba(228, 201, 159, 0.42);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.projects-carousel__arrow:hover {
  background: rgba(29, 28, 27, 0.9);
  transform: translateY(-50%) scale(1.04);
}

.projects-carousel__arrow:disabled {
  opacity: 0.42;
  cursor: default;
}

.projects-carousel__arrow:disabled:hover {
  background: rgba(22, 22, 21, 0.72);
  transform: translateY(-50%);
}

.projects-carousel__arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.projects-carousel__arrow--prev {
  left: 10px;
}

.projects-carousel__arrow--next {
  right: 10px;
}

.projects-button {
  width: min(340px, 74vw);
  min-height: 42px;
  margin: -18px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: #fff;
  background: linear-gradient(180deg, #d1a160, var(--color-bronze));
  border-radius: 2px;
  box-shadow: 0 12px 24px rgba(112, 75, 35, 0.22);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.projects-button:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #d8aa6c, #b98348);
}

.about-steps {
  background: #efebe4;
  border-bottom: 1px solid var(--color-hairline);
}

.about-steps__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 38px 0 54px;
}

.about-steps__header {
  margin-bottom: 34px;
  text-align: center;
}

.about-steps__header h2 {
  margin: 0;
  color: #30302f;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-wrap: balance;
}

.about-steps__header p {
  margin: 12px auto 0;
  color: #80796f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  position: relative;
}

.about-steps__header p::after {
  width: 180px;
  height: 2px;
  margin: 14px auto 0;
  display: block;
  content: "";
  background: var(--color-bronze);
}

.about-steps__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 54px;
  align-items: start;
}

.about-copy h3,
.construction-benefits h3 {
  margin: 0 0 14px;
  color: #302f2e;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.about-copy p {
  max-width: 640px;
  margin: 0 0 20px;
  color: #5d5750;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.size-note {
  max-width: 560px;
  margin-top: 10px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid #d2c2ad;
  border-radius: 8px;
}

.size-note h4 {
  margin: 0 0 8px;
  color: #302f2e;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.size-note ul {
  margin: 0;
  padding-left: 16px;
  color: #5d5750;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.42;
}

.construction-benefits ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  counter-reset: benefit;
}

.construction-benefits li {
  min-height: 52px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
  counter-increment: benefit;
}

.construction-benefits li::before {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  content: counter(benefit);
  color: var(--color-bronze-dark);
  border: 1px solid var(--color-bronze);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.construction-benefits strong {
  grid-column: 2;
  display: block;
  color: #302f2e;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
}

.construction-benefits span {
  grid-column: 2;
  display: block;
  margin-top: 4px;
  color: #6c655d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.estimate-section {
  color: #fff;
  background:
    radial-gradient(circle at 72% 30%, rgba(198, 147, 85, 0.16), transparent 28%),
    linear-gradient(180deg, #171716 0%, #10100f 100%);
  overflow: hidden;
}

.estimate-section__inner {
  width: var(--container);
  min-height: 274px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 42px;
  align-items: stretch;
  border-top: 1px solid rgba(228, 201, 159, 0.38);
}

.estimate-form-wrap {
  padding: 28px 0 18px;
  position: relative;
  z-index: 1;
}

.estimate-form-wrap h2 {
  max-width: 460px;
  margin: 0 0 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 11px 16px;
}

.estimate-form label {
  grid-column: span 2;
  min-width: 0;
  display: grid;
  gap: 6px;
}

.estimate-form__wide {
  grid-column: span 3;
}

.estimate-form span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
}

.estimate-form input,
.estimate-form select {
  width: 100%;
  height: 36px;
  padding: 0 13px;
  color: #f6f0e8;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  outline: 0;
  font: inherit;
  font-size: 12px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.estimate-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
  background-position: calc(100% - 15px) 15px, calc(100% - 10px) 15px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.estimate-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.estimate-form input:focus,
.estimate-form select:focus {
  border-color: rgba(198, 147, 85, 0.82);
  background-color: rgba(255, 255, 255, 0.07);
}

.estimate-form__button {
  grid-column: 1 / -1;
  height: 40px;
  margin-top: 4px;
  color: #fff;
  background: linear-gradient(180deg, #d2a361, var(--color-bronze));
  border: 0;
  border-radius: 2px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.estimate-form__button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.estimate-consent {
  margin: 11px 0 0;
  padding-left: 18px;
  position: relative;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  line-height: 1.35;
}

.estimate-consent::before {
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
  border: 1px solid var(--color-bronze);
  border-radius: 50%;
  opacity: 0.8;
}

.estimate-visual {
  min-height: 274px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  isolation: isolate;
}

.estimate-visual::before {
  position: absolute;
  inset: 0 auto 0 -96px;
  width: 220px;
  content: "";
  z-index: -1;
  background: linear-gradient(90deg, #10100f 0%, rgba(16, 16, 15, 0.92) 36%, transparent 100%);
}

.estimate-visual img {
  width: calc(100% + 84px);
  height: 100%;
  min-height: 274px;
  position: absolute;
  inset: 0 -42px 0 auto;
  z-index: -2;
  object-fit: cover;
  object-position: center right;
  opacity: 0.76;
}

.estimate-benefits {
  width: min(300px, 82%);
  margin-left: 4px;
  padding: 22px 24px;
  display: grid;
  gap: 20px;
  background: rgba(18, 18, 17, 0.74);
  border: 1px solid rgba(228, 201, 159, 0.24);
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.estimate-benefits article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.estimate-benefit-icon {
  width: 34px;
  height: 34px;
  color: var(--color-bronze);
}

.estimate-benefit-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.estimate-benefits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.site-footer__inner {
  width: var(--container);
  min-height: 58px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(160px, 0.58fr) minmax(290px, 0.94fr) auto auto;
  gap: 20px;
  align-items: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.brand--footer {
  min-width: 156px;
}

.brand--footer .brand__mark {
  width: 31px;
  font-size: 24px;
}

.brand--footer .brand__text strong {
  font-size: 12px;
}

.brand--footer .brand__text span {
  font-size: 8px;
}

.site-footer__inner p {
  margin: 0;
}

.footer-contacts {
  margin: 0;
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-style: normal;
  line-height: 1.35;
}

.footer-contacts span {
  max-width: 460px;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
}

.footer-links a,
.footer-contacts a {
  color: rgba(255, 255, 255, 0.42);
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contacts a:hover {
  color: var(--color-bronze-pale);
}

.footer-developer {
  justify-self: end;
  color: rgba(228, 201, 159, 0.62);
  font-weight: 650;
  line-height: 1.35;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
  }

  .mobile-menu-toggle {
    grid-column: 3;
    grid-row: 1;
    display: grid;
    justify-self: end;
  }

  .header-contact {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    width: min(292px, calc(100vw - 48px));
    padding: 10px;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: grid;
    gap: 2px;
    justify-content: stretch;
    background: rgba(18, 18, 17, 0.94);
    border: 1px solid rgba(228, 201, 159, 0.26);
    border-radius: 4px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 42px;
    padding: 0 12px;
    justify-content: flex-start;
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
  }

  .main-nav a:hover {
    background: rgba(198, 147, 85, 0.16);
    transform: none;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 285px);
  }

  .trust-strip__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 18px 0;
    gap: 0;
  }

  .trust-item {
    padding: 16px 22px;
  }

  .trust-item:nth-child(4)::before {
    display: none;
  }

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

  .product-modal__dialog {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  }

  .product-modal__content {
    padding: 30px 28px 26px;
  }

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

  .choice-item p {
    max-width: 210px;
  }

  .about-steps__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-copy p,
  .size-note {
    max-width: none;
  }

  .estimate-section__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .estimate-form-wrap {
    padding: 28px 0 20px;
  }

  .estimate-visual {
    min-height: 236px;
  }

  .estimate-visual::before {
    inset: 0;
    width: auto;
    background: linear-gradient(90deg, rgba(16, 16, 15, 0.96), rgba(16, 16, 15, 0.34), rgba(16, 16, 15, 0.12));
  }

  .estimate-visual img {
    width: 100%;
    min-height: 236px;
    inset: 0;
  }

  .site-footer__inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px 26px;
    padding: 14px 0;
  }

  .footer-contacts {
    grid-column: 1 / -1;
  }

  .footer-contacts span {
    max-width: 720px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-developer {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 860px) {
  :root {
    --hero-container: min(100% - 40px, 720px);
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    width: 100%;
    opacity: 0.82;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__scrim {
    background:
      linear-gradient(90deg, rgba(16, 16, 15, 0.58), rgba(16, 16, 15, 0.24) 58%, rgba(16, 16, 15, 0.42)),
      linear-gradient(180deg, rgba(16, 16, 15, 0.18), rgba(16, 16, 15, 0.42));
  }

  .site-header {
    min-height: 68px;
    gap: 18px;
  }

  .header-contact {
    display: grid;
  }

  .header-contact .link-button {
    display: none;
  }

  .header-contact a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 12px;
  }

  .hero__content {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0 48px;
  }

  .hero__copy {
    max-width: 620px;
  }

  .hero h1 {
    max-width: 620px;
    margin-bottom: 24px;
  }

  .hero__notes {
    margin-bottom: 32px;
  }

  .hero-features {
    justify-self: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    padding-top: 4px;
  }

  .hero-feature {
    padding-top: 16px;
    border-top: 1px solid rgba(228, 201, 159, 0.22);
  }

  .trust-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 40px, 720px);
  }

  .trust-item:nth-child(odd)::before {
    display: none;
  }

  .trust-item:nth-child(4)::before {
    display: block;
  }

  .catalog-section__inner {
    width: min(100% - 40px, 720px);
    padding: 22px 0 18px;
  }

  .catalog-section h2 {
    font-size: 18px;
  }

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

  .product-modal {
    padding: 18px;
  }

  .product-modal__dialog {
    max-height: 88vh;
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .sample-modal__dialog {
    width: min(100%, 680px);
  }

  .product-modal__media {
    min-height: 0;
    padding: 18px;
  }

  .product-modal__image {
    min-height: 280px;
    max-height: 360px;
    aspect-ratio: 1.35 / 1;
  }

  .product-modal__content {
    overflow: visible;
  }

  .sample-modal__content {
    padding: 32px 28px 28px;
  }

  .choice-section__inner {
    width: min(100% - 40px, 720px);
  }

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

  .projects-section__inner {
    width: min(100% - 40px, 720px);
  }

  .projects-gallery img {
    flex-basis: calc((100% - 8px) / 2);
  }

  .about-steps__inner {
    width: min(100% - 40px, 720px);
    padding: 34px 0 44px;
  }

  .estimate-section__inner,
  .site-footer__inner {
    width: min(100% - 40px, 720px);
  }

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

  .estimate-form label,
  .estimate-form__wide {
    grid-column: span 1;
  }

  .estimate-form label:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --hero-container: min(100% - 32px, 480px);
  }

  .brand__mark {
    width: 28px;
    font-size: 23px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand__text strong {
    font-size: 12px;
  }

  .brand__text span {
    font-size: 8px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 7px;
  }

  .header-contact a {
    min-height: 40px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    width: min(282px, calc(100vw - 32px));
  }

  .hero__content {
    padding: 42px 0 38px;
  }

  .hero h1 {
    font-size: clamp(29px, 8.7vw, 38px);
    line-height: 1.14;
  }

  .hero__notes p {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    font-size: 15px;
  }

  .note-icon {
    width: 26px;
    height: 26px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-feature {
    grid-template-columns: 34px 1fr;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 480px);
    padding: 14px 0;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    min-height: 58px;
    padding: 12px 0;
  }

  .trust-item + .trust-item::before,
  .trust-item:nth-child(4)::before {
    display: block;
    top: 0;
    bottom: auto;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-hairline) 12%, var(--color-hairline) 88%, transparent);
  }

  .catalog-section__inner {
    width: min(100% - 32px, 480px);
    padding: 20px 0 18px;
  }

  .catalog-section h2 {
    margin-bottom: 14px;
    font-size: 16px;
  }

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

  .product-card {
    min-height: 0;
    grid-template-columns: 118px minmax(0, 1fr);
    grid-template-rows: auto 1fr auto auto;
    column-gap: 12px;
    padding: 10px;
  }

  .product-card h3 {
    grid-column: 2;
    margin-bottom: 4px;
  }

  .product-card img {
    grid-row: 1 / 5;
    width: 118px;
    height: 118px;
    aspect-ratio: auto;
  }

  .product-card p {
    grid-column: 2;
    margin: 0 0 8px;
  }

  .product-card strong {
    grid-column: 2;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .product-card__button {
    grid-column: 2;
    width: 116px;
    min-height: 34px;
  }

  .product-modal {
    padding: 10px;
    align-items: end;
  }

  .product-modal__dialog {
    max-height: 92vh;
    border-radius: 7px 7px 0 0;
    background: #f8f6f1;
  }

  .sample-modal__dialog {
    max-height: 90vh;
  }

  .product-modal__close {
    width: 42px;
    height: 42px;
    top: 10px;
    right: 10px;
  }

  .product-modal__media {
    padding: 12px;
    gap: 10px;
    background: #eee9df;
  }

  .product-modal__image {
    min-height: 220px;
    max-height: 260px;
    background-color: #eee9df;
  }

  .product-modal__thumb {
    height: 62px;
  }

  .product-modal__content {
    padding: 22px 16px 20px;
    background: #f8f6f1;
  }

  .sample-modal__content {
    padding: 24px 16px 22px;
  }

  .product-modal__content h2 {
    padding-right: 42px;
    font-size: 22px;
  }

  .sample-modal__content h2 {
    padding-right: 42px;
    font-size: 25px;
  }

  .product-modal__subtitle {
    font-size: 14px;
  }

  .sample-modal__info {
    margin: 18px 0;
    grid-template-columns: 1fr;
  }

  .sample-modal__info div {
    min-height: 58px;
    padding: 12px 13px;
  }

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

  .product-modal__copy p {
    font-size: 14px;
  }

  .product-modal__footer {
    display: grid;
    gap: 14px;
  }

  .product-order-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sample-order-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-modal__cta {
    width: 100%;
  }

  .choice-section__inner {
    width: min(100% - 32px, 480px);
    padding: 20px 0 22px;
  }

  .choice-section h2 {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .choice-item {
    min-height: 78px;
    grid-template-columns: 44px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    column-gap: 14px;
    padding: 14px 0;
    text-align: left;
    border-top: 1px solid rgba(217, 208, 196, 0.78);
  }

  .choice-item:first-child {
    border-top: 0;
  }

  .choice-icon {
    width: 34px;
    height: 34px;
    margin: 0;
    grid-row: 1 / 3;
  }

  .choice-item h3 {
    min-height: 0;
    margin-bottom: 4px;
  }

  .choice-item p {
    max-width: none;
  }

  .projects-section__inner {
    width: min(100% - 32px, 480px);
    padding: 12px 0 28px;
  }

  .projects-section h2 {
    font-size: 16px;
  }

  .projects-carousel {
    margin-inline: -8px;
  }

  .projects-gallery img {
    flex-basis: 82%;
    scroll-snap-align: start;
    aspect-ratio: 1.45 / 1;
  }

  .projects-carousel__viewport {
    padding-inline: 8px;
  }

  .projects-carousel::before,
  .projects-carousel::after {
    width: 34px;
  }

  .projects-carousel__arrow {
    width: 36px;
    height: 36px;
    top: calc(50% - 21px);
    background: rgba(22, 22, 21, 0.78);
  }

  .projects-carousel__arrow--prev {
    left: 2px;
  }

  .projects-carousel__arrow--next {
    right: 2px;
  }

  .projects-button {
    width: 100%;
    margin-top: 10px;
  }

  .about-steps__inner {
    width: min(100% - 32px, 480px);
    padding: 30px 0 38px;
  }

  .about-steps__header {
    margin-bottom: 26px;
  }

  .about-steps__header h2 {
    font-size: 25px;
    letter-spacing: 0.03em;
  }

  .about-steps__header p {
    font-size: 14px;
  }

  .about-steps__grid {
    gap: 30px;
  }

  .about-copy h3,
  .construction-benefits h3 {
    font-size: 20px;
  }

  .about-copy p {
    font-size: 14px;
  }

  .size-note {
    padding: 16px;
  }

  .size-note h4 {
    font-size: 18px;
  }

  .size-note ul {
    font-size: 14px;
  }

  .construction-benefits li {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 12px;
  }

  .construction-benefits strong {
    font-size: 18px;
  }

  .construction-benefits span {
    font-size: 13px;
  }

  .estimate-section__inner,
  .site-footer__inner {
    width: min(100% - 32px, 480px);
  }

  .estimate-form-wrap {
    padding: 24px 0 18px;
  }

  .estimate-form-wrap h2 {
    font-size: 18px;
  }

  .estimate-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .estimate-form label,
  .estimate-form__wide,
  .estimate-form label:nth-child(3) {
    grid-column: 1;
  }

  .estimate-form input,
  .estimate-form select {
    height: 40px;
  }

  .estimate-form__button {
    height: 44px;
  }

  .estimate-visual {
    min-height: 330px;
    align-items: end;
    padding-bottom: 18px;
  }

  .estimate-visual::before {
    background: linear-gradient(180deg, rgba(16, 16, 15, 0.12), rgba(16, 16, 15, 0.92) 72%, #10100f 100%);
  }

  .estimate-visual img {
    min-height: 330px;
    object-position: 68% center;
  }

  .estimate-benefits {
    width: 100%;
    margin: 0;
    padding: 18px;
    gap: 15px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0 20px;
  }

  .footer-links {
    display: grid;
    gap: 9px;
    white-space: normal;
  }

  .footer-developer {
    justify-self: start;
    text-align: left;
    white-space: normal;
  }
}

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

/* White Box landing rebuild - stage 1: header, hero, metrics */
:root {
  --wb-ink: #111214;
  --wb-text: #232426;
  --wb-muted: #74777c;
  --wb-soft: #f4f5f6;
  --wb-line: #dcdee2;
  --wb-panel: rgba(255, 255, 255, 0.92);
  --wb-shadow: 0 24px 70px rgba(19, 22, 27, 0.18);
  --container: min(100% - 48px, 1200px);
  --hero-container: min(100% - 64px, 1200px);
  --focus-ring: 0 0 0 3px rgba(17, 18, 20, 0.18);
  font-family: "Manrope", Arial, sans-serif;
}

body {
  background: #fff;
  color: var(--wb-text);
  font-family: "Manrope", Arial, sans-serif;
}

.whitebox-hero {
  min-height: 520px;
  color: var(--wb-ink);
  background: #f7f8f8;
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
}

.whitebox-hero .hero__media::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.83) 31%, rgba(255, 255, 255, 0.35) 61%, rgba(255, 255, 255, 0.62) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.78));
}

.whitebox-hero .hero__media img {
  object-position: center;
  filter: saturate(0.82) contrast(1.03) brightness(1.04);
}

.whitebox-hero .hero__scrim {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0.2) 19%, rgba(255, 255, 255, 0.66) 100%),
    radial-gradient(circle at 78% 44%, rgba(255, 255, 255, 0.2), transparent 31%);
}

.whitebox-hero .site-header {
  min-height: 70px;
  grid-template-columns: auto 1fr auto auto;
  gap: clamp(18px, 2vw, 34px);
}

.whitebox-hero .brand {
  gap: 10px;
}

.whitebox-hero .brand__mark {
  width: 78px;
  height: 32px;
  border: 1px solid var(--wb-ink);
  color: var(--wb-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.whitebox-hero .brand__text {
  display: none;
}

.whitebox-hero .main-nav {
  gap: clamp(16px, 2.1vw, 28px);
}

.whitebox-hero .main-nav a {
  color: #2e3033;
  font-size: 12px;
  font-weight: 600;
}

.whitebox-hero .main-nav a:hover {
  color: var(--wb-ink);
}

.whitebox-hero .header-contact {
  gap: 0;
}

.whitebox-hero .header-contact a {
  color: var(--wb-ink);
  font-size: 14px;
  font-weight: 800;
}

.whitebox-hero .header-contact span {
  color: #64676d;
  font-size: 10px;
  font-weight: 600;
}

.header-estimate {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--wb-ink);
  border-radius: 12px;
  color: var(--wb-ink);
  background: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease;
}

.header-estimate:hover {
  background: #fff;
  transform: translateY(-1px);
}

.whitebox-hero .mobile-menu-toggle {
  color: var(--wb-ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(17, 18, 20, 0.2);
}

.whitebox-hero .hero__content {
  min-height: 430px;
  grid-template-columns: minmax(360px, 520px) minmax(280px, 330px);
  align-items: center;
  padding: 36px 0 42px;
}

.hero__badge {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #60636a;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.whitebox-hero h1 {
  max-width: 560px;
  margin: 22px 0 18px;
  color: var(--wb-ink);
  font-size: clamp(36px, 3.65vw, 50px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.whitebox-hero .hero__notes {
  max-width: 455px;
  margin: 0 0 27px;
}

.whitebox-hero .hero__notes p {
  max-width: 455px;
  display: block;
  color: #2e3033;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.62;
}

.whitebox-hero .hero__actions {
  gap: 12px;
}

.whitebox-hero .button {
  min-height: 52px;
  border-radius: 13px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.whitebox-hero .button--primary {
  border-color: #08090a;
  color: #fff;
  background: #08090a;
  box-shadow: 0 16px 34px rgba(8, 9, 10, 0.16);
}

.whitebox-hero .button--ghost {
  gap: 10px;
  border-color: rgba(17, 18, 20, 0.11);
  color: var(--wb-ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(22, 24, 28, 0.08);
}

.whitebox-hero .button--ghost svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__fineprint {
  margin: 13px 0 0;
  color: #71747a;
  font-size: 11px;
  font-weight: 600;
}

.hero__fineprint::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: -2px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.hero-calc {
  width: 100%;
  padding: 34px 32px 30px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 12px;
  background: var(--wb-panel);
  box-shadow: var(--wb-shadow);
  backdrop-filter: blur(10px);
}

.calc-field,
.calc-object {
  display: block;
}

.calc-field > span,
.calc-object > span {
  display: block;
  margin-bottom: 10px;
  color: #6d7076;
  font-size: 12px;
  font-weight: 700;
}

.calc-field strong {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--wb-ink);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.calc-field em {
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.calc-field input[type="range"] {
  width: 100%;
  height: 3px;
  margin: 19px 0 8px;
  accent-color: var(--wb-ink);
}

.calc-field small {
  display: flex;
  justify-content: space-between;
  color: #96999f;
  font-size: 10px;
  font-weight: 700;
}

.calc-object {
  margin-top: 24px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--wb-line);
}

.calc-object label {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 23px;
  color: #4c4f55;
  font-size: 12px;
  font-weight: 800;
}

.calc-object input {
  width: 17px;
  height: 17px;
  accent-color: var(--wb-ink);
}

.calc-result {
  margin: 0;
}

.calc-result div {
  padding: 21px 0 20px;
  border-bottom: 1px solid var(--wb-line);
}

.calc-result dt {
  margin-bottom: 7px;
  color: #7a7d83;
  font-size: 12px;
  font-weight: 700;
}

.calc-result dd {
  margin: 0;
  color: var(--wb-ink);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
}

.calc-result div:last-child dd {
  font-size: 28px;
}

.hero-calc > p {
  margin: 20px 0 0;
  color: #8a8d93;
  font-size: 11px;
  font-weight: 700;
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
}

.trust-strip__inner {
  width: var(--container);
  min-height: 95px;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}

.trust-item {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  padding: 0 20px;
  border-right: 1px solid rgba(17, 18, 20, 0.12);
}

.trust-item::before {
  display: none;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item p {
  gap: 4px;
  text-align: center;
}

.trust-item strong {
  white-space: nowrap;
  color: var(--wb-ink);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.trust-item span {
  color: #71747a;
  font-size: 12px;
  font-weight: 600;
}

.rating-stars {
  color: #f0c65c !important;
  font-size: 22px !important;
  letter-spacing: 0;
  vertical-align: 2px;
}

@media (max-width: 1120px) {
  .whitebox-hero .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .header-estimate {
    justify-self: end;
  }
}

@media (max-width: 860px) {
  :root {
    --hero-container: min(100% - 32px, 720px);
    --container: min(100% - 32px, 720px);
  }

  .whitebox-hero {
    min-height: auto;
  }

  .whitebox-hero .hero__media {
    opacity: 0.62;
  }

  .whitebox-hero .site-header {
    grid-template-columns: auto auto;
    min-height: 66px;
  }

  .whitebox-hero .mobile-menu-toggle {
    display: grid;
    justify-self: end;
  }

  .whitebox-hero .main-nav {
    top: calc(100% + 8px);
    border-color: rgba(17, 18, 20, 0.1);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 38px rgba(17, 18, 20, 0.14);
  }

  .whitebox-hero .main-nav a,
  .whitebox-hero .main-nav a:hover {
    color: var(--wb-ink);
  }

  .whitebox-hero .header-contact,
  .header-estimate {
    display: none;
  }

  .whitebox-hero .hero__content {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 42px 0 40px;
  }

  .whitebox-hero h1 {
    max-width: 660px;
    font-size: clamp(34px, 8.4vw, 48px);
  }

  .whitebox-hero .hero__notes p {
    font-size: 16px;
  }

  .hero-calc {
    max-width: 460px;
    padding: 26px 24px 24px;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 0;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 18, 20, 0.1);
  }
}

@media (max-width: 560px) {
  .whitebox-hero .brand__mark {
    width: 72px;
    height: 30px;
  }

  .whitebox-hero .hero__content {
    padding-top: 32px;
  }

  .whitebox-hero h1 {
    margin-top: 18px;
    font-size: clamp(31px, 9.4vw, 40px);
  }

  .whitebox-hero .hero__actions {
    display: grid;
  }

  .whitebox-hero .button {
    width: 100%;
    justify-content: center;
    padding: 0 18px;
  }

  .hero-calc {
    border-radius: 10px;
    padding: 23px 18px 21px;
  }

  .calc-object label {
    margin-right: 13px;
  }

  .calc-result dd {
    font-size: 26px;
  }

  .trust-strip__inner {
    width: 100%;
  }

  .trust-item {
    padding: 14px 8px;
  }

  .trust-item strong {
    font-size: 23px;
  }
}

/* White Box landing rebuild - stage 2: scope and before/after */
.work-scope {
  background: #fff;
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
}

.work-scope__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 26px 0 30px;
}

.work-scope h2,
.whitebox-explain h2 {
  margin: 0;
  color: var(--wb-ink);
  font-size: clamp(24px, 2.25vw, 32px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  text-wrap: balance;
}

.scope-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}

.scope-card {
  min-width: 0;
  min-height: 126px;
  padding: 18px 10px 15px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 9px;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(25, 28, 32, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.scope-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 18, 20, 0.22);
  box-shadow: 0 18px 34px rgba(25, 28, 32, 0.08);
}

.scope-card svg {
  width: 31px;
  height: 31px;
  color: #55585d;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scope-card h3 {
  margin: 0;
  color: var(--wb-ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.scope-card p {
  max-width: 112px;
  margin: 0;
  color: #6f7278;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.scope-link {
  width: max-content;
  min-height: 36px;
  margin: 16px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d2f33;
  font-size: 12px;
  font-weight: 800;
}

.scope-link::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
}

.whitebox-explain {
  background: #fff;
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
}

.whitebox-explain__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 20px 0 36px;
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.whitebox-explain h2 {
  text-align: left;
}

.whitebox-explain__copy p {
  max-width: 230px;
  margin: 18px 0 0;
  color: #4c4f55;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.before-after {
  min-width: 0;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #e9eaeb;
  box-shadow: 0 18px 46px rgba(24, 27, 31, 0.11);
  isolation: isolate;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.before-after::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), inset 0 -70px 70px rgba(0, 0, 0, 0.22);
}

.before-after__pane {
  min-width: 0;
  height: clamp(260px, 31vw, 330px);
  margin: 0;
  position: relative;
}

.before-after__pane--after {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(0 0 0 var(--split, 50%));
}

.before-after__pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after__pane:first-child img {
  object-position: center;
}

.before-after__pane--after img {
  object-position: center;
}

.before-after__pane figcaption {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 2;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 18, 20, 0.45);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
}

.before-after__pane--after figcaption {
  left: auto;
  right: 18px;
  color: #fff;
  background: rgba(17, 18, 20, 0.42);
}

.before-after__handle {
  width: 48px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split, 50%);
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.before-after__handle::before {
  width: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 1px rgba(17, 18, 20, 0.08);
  transform: translateX(-50%);
}

.before-after__handle:focus-visible span {
  outline: 3px solid rgba(17, 18, 20, 0.22);
  outline-offset: 3px;
}

.before-after__handle span {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #6c7076;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(17, 18, 20, 0.16);
  transform: translate(-50%, -50%);
}

.before-after__handle span::before {
  content: "‹ ›";
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

@media (max-width: 1120px) {
  .scope-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .work-scope__inner {
    padding: 24px 0 26px;
  }

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

  .scope-card {
    min-height: 116px;
  }

  .whitebox-explain__inner {
    padding: 26px 0 32px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .whitebox-explain h2,
  .whitebox-explain__copy p {
    max-width: 620px;
  }

  .before-after__pane {
    height: clamp(240px, 54vw, 310px);
  }
}

@media (max-width: 560px) {
  .work-scope h2,
  .whitebox-explain h2 {
    font-size: 24px;
  }

  .scope-grid {
    gap: 7px;
  }

  .scope-card {
    min-height: 126px;
    padding: 16px 8px 14px;
  }

  .scope-card p {
    max-width: 128px;
  }

  .before-after__pane {
    height: 214px;
  }

  .before-after__pane--after figcaption {
    left: auto;
    right: 18px;
  }
}

/* White Box landing rebuild - stage 3: pricing and calculator */
.anchor-target {
  position: relative;
  top: -72px;
  display: block;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.pricing-section {
  color: var(--wb-ink);
  background: #fff;
  overflow: visible;
}

.pricing-section .estimate-section__inner {
  width: var(--container);
  min-height: 0;
  padding: 36px 0 0;
  display: block;
  border-top: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  min-height: 282px;
  padding: 28px 38px 24px;
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(25, 28, 32, 0.055);
}

.pricing-card--featured {
  border-color: var(--wb-ink);
  box-shadow: 0 20px 52px rgba(25, 28, 32, 0.09);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border-radius: 999px;
  color: #fff;
  background: #08090a;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.pricing-card h3 {
  margin: 0;
  color: var(--wb-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.pricing-card p {
  margin: 8px 0 18px;
  color: var(--wb-ink);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.pricing-card p strong {
  font-size: 21px;
  font-weight: 900;
}

.pricing-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 21px;
  color: #34373c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.32;
}

.pricing-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  color: #4b4e54;
  font-weight: 900;
}

.pricing-card a {
  min-height: 42px;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 18, 20, 0.18);
  border-radius: 8px;
  color: var(--wb-ink);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.pricing-card--featured a {
  color: #fff;
  border-color: #08090a;
  background: #08090a;
}

.pricing-card a:hover {
  transform: translateY(-1px);
}

.pricing-section .estimate-form-wrap {
  margin-top: 26px;
  padding: 0 0 28px;
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.estimate-form__intro h2 {
  max-width: none;
  margin: 0 0 9px;
  color: var(--wb-ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
  text-transform: none;
}

.estimate-form__intro p {
  max-width: 240px;
  margin: 0;
  color: #6d7076;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.pricing-section .estimate-form {
  display: grid;
  grid-template-columns: minmax(132px, 1.05fr) repeat(3, minmax(120px, 1fr)) minmax(140px, 0.95fr);
  gap: 10px;
  align-items: stretch;
}

.pricing-section .estimate-form label,
.pricing-section .estimate-form fieldset {
  grid-column: auto;
  min-width: 0;
  min-height: 76px;
  margin: 0;
  padding: 13px 15px;
  display: grid;
  align-content: center;
  gap: 9px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(25, 28, 32, 0.045);
}

.pricing-section .estimate-form fieldset {
  grid-template-columns: 1fr;
}

.pricing-section .estimate-form legend,
.pricing-section .estimate-form span {
  padding: 0;
  color: #6f7278;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
}

.pricing-section .estimate-form fieldset label {
  min-height: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #34373c;
  font-size: 11px;
  font-weight: 800;
}

.pricing-section .estimate-form fieldset input {
  width: 14px;
  height: 14px;
  accent-color: var(--wb-ink);
}

.pricing-section .estimate-form input,
.pricing-section .estimate-form select {
  width: 100%;
  height: 32px;
  padding: 0;
  color: var(--wb-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  font-weight: 800;
}

.pricing-section .estimate-form input:focus,
.pricing-section .estimate-form select:focus {
  background: transparent;
  box-shadow: none;
}

.pricing-section .estimate-form select {
  appearance: auto;
}

.pricing-section .estimate-form__button {
  grid-column: auto;
  min-height: 52px;
  height: auto;
  margin: 0;
  align-self: center;
  color: #fff;
  background: #08090a;
  border: 1px solid #08090a;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(8, 9, 10, 0.12);
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
}

.pricing-section .estimate-consent {
  grid-column: 5;
  margin: -12px 0 0;
  padding: 0;
  color: #7b7e84;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.pricing-section .estimate-consent::before {
  display: none;
}

.pricing-section .site-footer {
  display: block;
}

/* White Box landing rebuild - stage 5: reviews, FAQ, final form, footer */
.reviews-section,
.faq-section,
.final-cta {
  color: var(--wb-ink);
  background: #fff;
}

.reviews-section,
.faq-section {
  border-top: 1px solid rgba(17, 18, 20, 0.08);
}

.reviews-section__inner,
.faq-section__inner,
.final-cta__inner {
  width: var(--container);
  margin: 0 auto;
}

.reviews-section__inner {
  padding: 28px 0 26px;
}

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

.review-card {
  min-width: 0;
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(25, 28, 32, 0.055);
}

.review-card__person {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.review-card__person span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--wb-ink);
  font-size: 11px;
  font-weight: 900;
}

.review-card__person strong {
  color: var(--wb-ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.review-card p {
  margin: 0;
  color: #41444a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.review-card img {
  width: 100%;
  aspect-ratio: 2.15 / 1;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(0.86) contrast(1.03);
}

.faq-section__inner {
  padding: 24px 0 30px;
}

.faq-section h2 {
  margin: 0 0 18px;
  color: var(--wb-ink);
  font-size: clamp(24px, 2.15vw, 31px);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

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

.faq-grid details {
  min-width: 0;
  border: 1px solid rgba(17, 18, 20, 0.09);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(25, 28, 32, 0.04);
}

.faq-grid summary {
  min-height: 48px;
  padding: 0 44px 0 16px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--wb-ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  list-style: none;
}

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

.faq-grid summary::after {
  position: absolute;
  right: 16px;
  content: "+";
  color: #5f6369;
  font-size: 18px;
  font-weight: 500;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid p {
  margin: -4px 16px 16px;
  color: #565a61;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.final-cta {
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78)),
    url("../assets/whitebox-hero-v1.png") center / cover no-repeat;
}

.final-cta__inner {
  min-height: 190px;
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.final-cta h2 {
  margin: 0 0 10px;
  color: var(--wb-ink);
  font-size: clamp(28px, 3.1vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  text-wrap: balance;
}

.final-cta p {
  margin: 0;
  color: #4f5359;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.contact-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: #62666d;
  font-size: 11px;
  font-weight: 800;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  color: var(--wb-ink);
  background: #fff;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}

.contact-form button {
  min-height: 50px;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 8px;
  color: var(--wb-ink);
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-form button:hover {
  transform: translateY(-1px);
  background: #f7f8f8;
}

.contact-form__status {
  grid-column: 1 / -1;
  min-height: 16px;
  color: #5f6369 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

.pricing-section .site-footer {
  color: var(--wb-ink);
  background: #fff;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
}

.pricing-section .site-footer__inner {
  min-height: 104px;
  grid-template-columns: minmax(120px, 0.6fr) minmax(160px, 0.65fr) minmax(230px, 1fr) auto auto;
  color: #5d6168;
}

.pricing-section .brand--footer .brand__mark {
  width: 78px;
  height: 32px;
  border: 1px solid var(--wb-ink);
  color: var(--wb-ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pricing-section .brand--footer .brand__text {
  display: none;
}

.pricing-section .footer-contacts,
.pricing-section .footer-contacts a,
.pricing-section .footer-links a {
  color: #555960;
}

.pricing-section .footer-links a:hover,
.pricing-section .footer-contacts a:hover {
  color: var(--wb-ink);
}

.pricing-section .footer-developer {
  color: #555960;
}

/* White Box landing rebuild - stage 4: works, process, reasons */
.works-section,
.process-section,
.reasons-section {
  color: var(--wb-ink);
  background: #fff;
}

.works-section {
  border-top: 1px solid rgba(17, 18, 20, 0.08);
}

.works-section__inner,
.process-section__inner,
.reasons-section__inner {
  width: var(--container);
  margin: 0 auto;
}

.works-section__inner {
  padding: 28px 0 24px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.section-head h2,
.process-section h2,
.reasons-section h2 {
  margin: 0;
  color: var(--wb-ink);
  font-size: clamp(24px, 2.15vw, 31px);
  font-weight: 900;
  line-height: 1.12;
  text-transform: none;
  text-align: left;
}

.section-head a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #60636a;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.section-head a::after {
  content: "→";
  color: var(--wb-ink);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.work-card {
  min-width: 0;
  aspect-ratio: 1.72 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe1e3;
  box-shadow: 0 14px 32px rgba(24, 27, 31, 0.1);
}

.work-card::after {
  position: absolute;
  inset: 38% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.66));
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
  transition: transform 260ms ease;
}

.work-card:hover img {
  transform: scale(1.035);
}

.work-card div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
}

.work-card h3 {
  margin: 0 0 7px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}

.work-card p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 800;
}

.process-section {
  border-top: 1px solid rgba(17, 18, 20, 0.08);
}

.process-section__inner {
  padding: 22px 0 26px;
}

.process-section h2,
.reasons-section h2 {
  text-align: center;
}

.process-steps {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  list-style: none;
}

.process-steps li {
  min-height: 104px;
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 11px;
  padding: 0 10px;
  text-align: center;
}

.process-steps li:not(:last-child)::after {
  width: calc(100% - 34px);
  height: 1px;
  position: absolute;
  top: 16px;
  left: calc(50% + 17px);
  content: "";
  background: var(--wb-ink);
  opacity: 0.78;
}

.process-steps span {
  width: 33px;
  height: 33px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 18, 20, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--wb-ink);
  font-size: 11px;
  font-weight: 900;
}

.process-steps strong {
  max-width: 116px;
  color: var(--wb-ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.18;
}

.reasons-section {
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
}

.reasons-section__inner {
  padding: 22px 0 28px;
}

.reasons-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.reasons-grid article {
  min-height: 82px;
  padding: 16px 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  background: #fff;
  border-right: 1px solid rgba(17, 18, 20, 0.08);
}

.reasons-grid article:last-child {
  border-right: 0;
}

.reasons-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 18, 20, 0.16);
  border-radius: 50%;
  color: #6c7076;
  font-size: 10px;
  font-weight: 900;
}

.reasons-grid p {
  margin: 0;
  color: #303338;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 1120px) {
  .pricing-card {
    padding: 26px 24px 22px;
  }

  .pricing-section .estimate-form-wrap {
    grid-template-columns: 1fr;
  }

  .pricing-section .estimate-form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pricing-section .estimate-form__button,
  .pricing-section .estimate-consent {
    grid-column: span 2;
  }

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

  .process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 0;
  }

  .process-steps li:nth-child(4)::after {
    display: none;
  }

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

  .reasons-grid article:nth-child(3) {
    border-right: 0;
  }

  .reasons-grid article:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  }

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

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

  .final-cta__inner {
    grid-template-columns: 1fr;
  }

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

  .pricing-section .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    padding: 20px 0;
  }
}

@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 0;
  }

  .pricing-section .estimate-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-section .estimate-form__button,
  .pricing-section .estimate-consent {
    grid-column: 1 / -1;
  }

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

  .process-steps li::after {
    display: none;
  }

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

  .reasons-grid article,
  .reasons-grid article:nth-child(3) {
    border-right: 1px solid rgba(17, 18, 20, 0.08);
  }

  .reasons-grid article:nth-child(even) {
    border-right: 0;
  }

  .reasons-grid article:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pricing-section .estimate-section__inner {
    padding-top: 28px;
  }

  .pricing-card {
    padding: 24px 20px 20px;
  }

  .pricing-section .estimate-form {
    grid-template-columns: 1fr;
  }

  .pricing-section .estimate-form label,
  .pricing-section .estimate-form fieldset,
  .pricing-section .estimate-form__button,
  .pricing-section .estimate-consent {
    grid-column: 1;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    aspect-ratio: 1.55 / 1;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-steps li {
    min-height: 68px;
    grid-template-columns: 36px minmax(0, 1fr);
    justify-items: start;
    align-content: center;
    text-align: left;
  }

  .process-steps strong {
    max-width: none;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .reasons-grid article,
  .reasons-grid article:nth-child(even),
  .reasons-grid article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  }

  .reasons-grid article:last-child {
    border-bottom: 0;
  }

  .reviews-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .final-cta__inner {
    padding: 30px 0;
  }

  .pricing-section .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  .pricing-section .footer-links {
    justify-content: flex-start;
  }

  .pricing-section .footer-developer {
    justify-self: start;
    text-align: left;
  }
}
