:root {
  --bg: #f5f1ea;
  --bg-strong: #e8e1d7;
  --surface: rgba(255, 255, 255, 0.55);
  --paper-line: rgba(17, 17, 17, 0.08);
  --text: #111111;
  --muted: #5f5a53;
  --accent: #ff6a00;
  --accent-soft: rgba(255, 106, 0, 0.16);
  --steel: #5a5f62;
  --graphite: #1a1a1a;
  --sand: #ddd6cc;
  --ring: rgba(17, 17, 17, 0.1);
  --shadow: 0 20px 70px rgba(17, 17, 17, 0.12);
  --border: 1px solid rgba(17, 17, 17, 0.11);
  --radius: 28px;
  --fs-micro: 0.6875rem;
  --fs-label: 0.75rem;
  --fs-body: 1rem;
  --fs-title-md: clamp(1.4rem, 2vw, 1.95rem);
  --fs-display-sm: clamp(2rem, 4vw, 3rem);
  --fs-display: clamp(2.8rem, 6vw, 5rem);
  --fs-hero: clamp(4.8rem, 11.2vw, 9rem);
  --fs-hero-mobile: clamp(3.8rem, 22vw, 5.8rem);
  --fs-stat: clamp(2.4rem, 4vw, 3rem);
  --fs-contact: clamp(1.9rem, 4vw, 2.9rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: var(--fs-body);
  -webkit-text-size-adjust: 100%;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 106, 0, 0.12), transparent 25%),
    radial-gradient(circle at 80% 30%, rgba(90, 95, 98, 0.12), transparent 30%),
    linear-gradient(180deg, #f8f4ed 0%, #f2ede5 40%, #ece5da 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 65%, transparent 100%);
}

.site-header,
.site-footer,
.section {
  width: min(1280px, calc(100vw - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 10px;
  mix-blend-mode: multiply;
  border: 1px solid transparent;
  border-radius: 26px;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease,
    padding 220ms ease;
}

.site-header.is-scrolled {
  padding: 12px 14px;
  background:
    linear-gradient(180deg, rgba(248, 244, 237, 0.94), rgba(241, 234, 224, 0.9));
  border-color: rgba(97, 84, 70, 0.2);
  box-shadow: 0 10px 24px rgba(32, 24, 18, 0.1);
  backdrop-filter: blur(12px);
  mix-blend-mode: normal;
}

.site-header.is-scrolled .site-nav {
  background: rgba(248, 244, 237, 0.58);
  border-color: rgba(97, 84, 70, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.site-header.is-scrolled .brand-mark {
  background: rgba(248, 244, 237, 0.72);
  border-color: rgba(97, 84, 70, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-transform: uppercase;
}

.brand-copy strong,
.site-nav a,
.section-label,
.eyebrow,
.meta-key,
.flow-step span,
.surface-card h3,
.site-footer,
.contact-data p {
  font-family: "Azeret Mono", monospace;
}

.brand-copy strong {
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
}

.brand-copy span {
  color: var(--muted);
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  color: var(--graphite);
  cursor: pointer;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(32, 24, 18, 0.12);
}

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

.site-header.is-scrolled .menu-toggle,
.site-header.is-menu-open .menu-toggle {
  background: rgba(248, 244, 237, 0.72);
  border-color: rgba(97, 84, 70, 0.16);
}

.site-header.is-menu-open {
  padding: 12px 14px;
  background:
    linear-gradient(180deg, rgba(248, 244, 237, 0.94), rgba(241, 234, 224, 0.9));
  border-color: rgba(97, 84, 70, 0.2);
  box-shadow: 0 10px 24px rgba(32, 24, 18, 0.1);
  backdrop-filter: blur(12px);
  mix-blend-mode: normal;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--graphite);
  color: #fff;
  transform: translateY(-1px);
}

.site-nav a.is-active {
  background: var(--graphite);
  color: #fff;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.18);
}

.section {
  position: relative;
  padding: 42px 0 88px;
}

.section-label {
  position: absolute;
  left: -42px;
  top: 120px;
  transform: rotate(-90deg);
  transform-origin: left top;
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.45);
}

.hero {
  padding-top: 58px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.34fr);
  gap: clamp(16px, 2.2vw, 34px);
  align-items: start;
}

.hero-copy,
.review-card,
.process-track,
.surface-card,
.contact-panel {
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title,
.section-heading h2,
.process-copy h2,
.objects-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.hero-title {
  font-size: var(--fs-hero);
  max-width: 7ch;
}

.hero-break-mobile {
  display: none;
}

.hero-lead,
.review-card blockquote,
.process-intro,
.objects-copy p,
.contact-copy p,
.surface-card p,
.flow-step p,
.signal-copy span {
  color: var(--muted);
  line-height: 1.7;
  font-size: var(--fs-body);
}

.hero-lead {
  max-width: 54ch;
  margin: 24px 0 0;
}

.hero-copy {
  position: relative;
  min-width: 0;
  z-index: 3;
}

.hero-visual {
  margin: 0;
  display: flex;
  align-self: start;
  align-items: flex-start;
  justify-content: flex-end;
  margin-left: clamp(-28px, -1.8vw, 0px);
  pointer-events: none;
  z-index: 1;
}

.hero-media {
  display: block;
}

.hero-image {
  width: clamp(620px, 54vw, 980px);
  max-width: 100%;
  max-height: 86vh;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  transform: translate(36px, -20px);
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
}

.button-primary {
  background: var(--graphite);
  color: #fff;
}

.button-secondary {
  border-color: rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.45);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.hero-meta div {
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.meta-key {
  display: block;
  margin-bottom: 8px;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.58);
}

.meta-value {
  font-size: var(--fs-body);
  font-weight: 800;
}

.signal-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  padding-top: 0;
}

.signal-copy {
  padding: 28px 32px;
  border-radius: 26px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.48);
}

.signal-copy p {
  margin: 0 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: var(--fs-display-sm);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.signal-stats article {
  padding: 26px 18px;
  border-radius: 24px;
  border: var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.22));
}

.signal-stats strong {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: var(--fs-stat);
  font-weight: 400;
  line-height: 1;
}

.signal-stats span,
.contact-data a {
  line-height: 1.65;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2,
.process-copy h2,
.objects-copy h2,
.contact-copy h2 {
  font-size: var(--fs-display);
}

.flow-step h3,
.surface-card h3,
.contact-data a {
  margin: 0 0 14px;
  font-size: var(--fs-title-md);
  line-height: 1.06;
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
}

.calc-form,
.calc-result {
  padding: 24px;
  border-radius: 30px;
  border: var(--border);
}

.calc-form {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.28));
}

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

.calc-row + .calc-row,
.calc-field + .calc-row {
  margin-top: 12px;
}

.calc-field {
  display: grid;
  gap: 8px;
}

.calc-field label {
  font-family: "Azeret Mono", monospace;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.62);
}

.calc-field input,
.calc-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  font-size: var(--fs-body);
}

.calc-field input:focus-visible,
.calc-field select:focus-visible {
  outline: 2px solid rgba(255, 106, 0, 0.45);
  outline-offset: 1px;
}

.calc-result {
  background:
    linear-gradient(130deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.86)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent);
  color: #fff;
}

.calc-caption {
  margin: 0;
  font-family: "Azeret Mono", monospace;
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.calc-total {
  margin: 8px 0 20px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

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

.calc-metrics div {
  min-height: 88px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.calc-metrics span {
  display: block;
  margin-bottom: 8px;
  font-family: "Azeret Mono", monospace;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.calc-metrics strong {
  font-size: 1.1rem;
  line-height: 1.35;
}

.calc-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.calc-sources {
  margin: 10px 0 0;
  font-family: "Azeret Mono", monospace;
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.reviews {
  padding-top: 0;
}

.reviews-carousel {
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reviews-marquee 34s linear infinite;
}

.reviews-carousel:hover .reviews-track,
.reviews-carousel:focus-within .reviews-track {
  animation-play-state: paused;
}

.reviews-group {
  display: flex;
  gap: 18px;
}

.review-card {
  position: relative;
  flex: 0 0 clamp(280px, 30vw, 360px);
  min-height: 260px;
  padding: 24px;
  border-radius: 28px;
  border: var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.24));
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.12);
}

.review-card::after {
  content: "“";
  position: absolute;
  top: 15px;
  right: 29px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(17, 17, 17, 0.32);
}

.review-card-accent {
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.84)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent);
  color: #fff;
}

.review-card-accent::before {
  background: rgba(255, 255, 255, 0.08);
}

.review-card-accent::after,
.review-card-accent .review-kicker,
.review-card-accent .review-author span {
  color: rgba(255, 255, 255, 0.72);
}

.review-kicker,
.review-author span {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Azeret Mono", monospace;
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-kicker {
  margin-bottom: 22px;
  color: rgba(17, 17, 17, 0.5);
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: none;
}

.review-author {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.review-author strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.review-author span {
  color: rgba(17, 17, 17, 0.52);
}

.review-card-accent .review-author {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.objects-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.objects-copy {
  position: sticky;
  top: 108px;
  align-self: start;
  padding-right: clamp(8px, 1.2vw, 18px);
}

.objects-copy h2 {
  max-width: 9ch;
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}

.process-track {
  padding: 20px;
  border-radius: 30px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.flow-step + .flow-step {
  margin-top: 10px;
}

.flow-step span {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 48px;
  padding-top: 3px;
  color: rgba(17, 17, 17, 0.48);
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
}

.flow-step.is-active {
  background: rgba(255, 106, 0, 0.12);
  transform: translateX(10px);
}

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

.surface-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 28px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.42);
}

.surface-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 106, 0, 0.94), rgba(255, 106, 0, 0.84));
  color: #fff;
}

.surface-card-accent p {
  color: rgba(255, 255, 255, 0.76);
}

.surface-swatch {
  display: block;
  width: 100%;
  height: 132px;
  margin-bottom: 18px;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.swatch-graphite {
  background:
    linear-gradient(145deg, #202020, #3e4347 55%, #171717);
}

.swatch-sand {
  background:
    linear-gradient(145deg, #ded4c9, #f7f2eb 60%, #cbbca7);
}

.swatch-oxide {
  background:
    linear-gradient(145deg, #56595b, #767b7f 55%, #35393b);
}

.swatch-signal {
  background:
    linear-gradient(145deg, #ff7f29, #ff5c00 55%, #c64100);
}

.objects-gallery {
  position: relative;
  display: block;
  isolation: isolate;
}

.object-card {
  position: sticky;
  top: 108px;
  min-height: clamp(280px, 62vh, 540px);
  margin: 0 0 clamp(72px, 16vh, 180px);
  border-radius: 22px;
  overflow: hidden;
  border: var(--border);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.object-card-wide {
  min-height: clamp(280px, 62vh, 540px);
}

.object-card:last-child {
  margin-bottom: 0;
}

.objects-gallery .object-card:first-child {
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.18);
}

.objects-gallery .object-card:nth-child(1) {
  z-index: 1;
}

.objects-gallery .object-card:nth-child(2) {
  z-index: 2;
}

.objects-gallery .object-card:nth-child(3) {
  z-index: 3;
}

.objects-gallery .object-card:nth-child(4) {
  z-index: 4;
}

.objects-gallery .object-card:nth-child(5) {
  z-index: 5;
}

.objects-gallery .object-card:nth-child(6) {
  z-index: 6;
}

.object-photo {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, #8e8780, #d4cdc3 55%, #b7b0a6);
  transform: none;
}

.object-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 78%, rgba(255, 106, 0, 0.28), transparent 40%);
  pointer-events: none;
}

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

.object-info {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.object-kicker {
  margin: 0 0 6px;
  font-family: "Azeret Mono", monospace;
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 2px 14px rgba(17, 17, 17, 0.34);
}

.object-info h3 {
  margin: 0;
  font-size: var(--fs-title-md);
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 3px 18px rgba(17, 17, 17, 0.42);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  padding: 30px;
  border-radius: 32px;
  border: var(--border);
  background:
    linear-gradient(130deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.82)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-data {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-data a {
  font-family: "Bebas Neue", sans-serif;
  font-size: var(--fs-contact);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.contact-data p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 34px;
  color: var(--muted);
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes reviews-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .signal-band,
  .section-heading,
  .calculator-grid,
  .process-grid,
  .objects-grid,
  .surfaces-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-label {
    position: static;
    transform: none;
    margin-bottom: 20px;
  }

  .hero-visual {
    margin-left: 0;
    justify-content: flex-end;
  }

  .hero-image {
    width: min(96vw, 760px);
    max-height: 74vh;
    transform: none;
    opacity: 1;
    filter: none;
  }

  .objects-copy {
    position: static;
  }

}

@media (max-width: 780px) {
  .site-header {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    padding: 12px 10px 10px;
    mix-blend-mode: normal;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(248, 244, 237, 0.88), rgba(241, 234, 224, 0.82));
    border-color: rgba(97, 84, 70, 0.16);
    box-shadow: 0 10px 24px rgba(32, 24, 18, 0.08);
    backdrop-filter: blur(12px);
  }

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

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .brand-copy span {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 8px;
    max-height: 0;
    padding: 0;
    border-color: transparent;
    border-radius: 20px;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 240ms ease,
      opacity 180ms ease,
      transform 220ms ease,
      padding 220ms ease,
      background 220ms ease,
      border-color 220ms ease,
      box-shadow 220ms ease;
  }

  .site-header.is-scrolled .site-nav {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .site-header.is-menu-open .site-nav,
  .site-header.is-scrolled.is-menu-open .site-nav {
    max-height: 320px;
    padding: 8px;
    border-color: rgba(97, 84, 70, 0.16);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 44px;
    padding: 12px 14px;
    text-align: left;
    letter-spacing: 0.06em;
  }

  .section {
    width: min(100vw - 24px, 1280px);
    padding: 24px 0 56px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.6rem, 17vw, 4.5rem);
    line-height: 0.88;
    letter-spacing: 0.01em;
  }

  .hero-image {
    width: min(112vw, 640px);
    max-height: 62vh;
  }

  .hero-visual {
    justify-content: center;
    margin-top: 6px;
  }

  .hero-lead {
    max-width: 100%;
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

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

  .hero-meta {
    margin-top: 28px;
    gap: 12px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 22px;
  }

  .reviews-carousel {
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-mask-image: none;
    mask-image: none;
    scroll-snap-type: x mandatory;
  }

  .reviews-track {
    animation: none;
  }

  .reviews-group {
    gap: 12px;
  }

  .reviews-group[aria-hidden="true"] {
    display: none;
  }

  .hero-meta,
  .signal-stats,
  .calc-row,
  .calc-metrics {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex-basis: min(82vw, 320px);
    min-height: 0;
    padding: 20px;
    border-radius: 22px;
    scroll-snap-align: start;
  }

  .calc-form,
  .calc-result {
    padding: 18px;
    border-radius: 22px;
  }

  .calc-total {
    font-size: clamp(2.5rem, 15vw, 3.4rem);
  }

  .calc-field input,
  .calc-field select {
    min-height: 48px;
  }

  .process-track {
    padding: 16px;
    border-radius: 22px;
  }

  .flow-step {
    gap: 12px;
    padding: 14px 12px;
    border-radius: 16px;
  }

  .flow-step span {
    min-width: 40px;
  }

  .flow-step.is-active {
    transform: none;
  }

  .objects-copy h2 {
    font-size: clamp(2.2rem, 14vw, 3.4rem);
  }

  .objects-gallery {
    display: grid;
    gap: 18px;
  }

  .object-card,
  .object-card-wide {
    position: relative;
    top: auto;
    min-height: 0;
    margin-bottom: 0;
    border-radius: 18px;
  }

  .object-photo {
    position: relative;
    inset: auto;
  }

  .object-photo img {
    height: auto;
    object-fit: contain;
  }

  .object-info {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .object-card:last-child {
    margin-bottom: 0;
  }

  .contact-panel {
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
  }

  .contact-data {
    gap: 10px;
    padding: 16px;
    border-radius: 18px;
  }

  .contact-data a {
    font-size: clamp(1.2rem, 8vw, 1.7rem);
  }

  .contact-data p {
    font-size: 0.68rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0 24px;
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 460px) {
  .section {
    width: calc(100vw - 16px);
    padding: 18px 0 48px;
  }

  .hero {
    padding-top: 6px;
  }

  .section-label,
  .eyebrow {
    letter-spacing: 0.11em;
  }

  .hero-title {
    font-size: clamp(2.35rem, 16vw, 4rem);
    line-height: 0.9;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .button {
    min-height: 46px;
    padding-inline: 16px;
  }

  .hero-break-mobile {
    display: inline;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: clamp(1.9rem, 13vw, 3.1rem);
    line-height: 0.92;
  }

  .hero-lead {
    font-size: 0.88rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
