:root {
  --brand: #e2ad42;
  --brand-strong: #c98b1f;
  --brand-soft: #f5dfad;
  --ink: #171918;
  --ink-soft: #292c2a;
  --paper: #f4f0e8;
  --paper-2: #ebe5da;
  --white: #ffffff;
  --muted: #676a65;
  --line: rgba(23, 25, 24, .16);
  --line-light: rgba(255, 255, 255, .18);
  --shadow: 0 28px 70px rgba(16, 18, 17, .14);
  --font-body: "Segoe UI", Aptos, Arial, sans-serif;
  --font-heading: Bahnschrift, "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --font-button: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  --font-size-base: 18px;
  --font-size-small: 14px;
  --font-size-h1: 96px;
  --font-size-h2: 58px;
  --radius: 0px;
  --section-spacing: 112px;
  --container: 1240px;
  --header-height: 94px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

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

p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 .45em;
  color: inherit;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.4rem, 8.1vw, var(--font-size-h1));
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.5rem, 5vw, var(--font-size-h2));
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--brand);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -100px;
  padding: 12px 18px;
  background: var(--brand);
  color: var(--ink);
  font-family: var(--font-button);
  font-weight: 800;
  text-transform: uppercase;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(calc(100% - 48px), 1460px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-spacing);
}

.section-compact {
  padding-block: 82px;
}

.section-dark {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 66%, rgba(226, 173, 66, .08) 66% 67%, transparent 67%),
    radial-gradient(circle at 83% 14%, rgba(226, 173, 66, .15), transparent 28%);
}

.section-paper-2 {
  background: var(--paper-2);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}

.section-head > p {
  max-width: 650px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .section-head > p {
  color: rgba(255, 255, 255, .69);
}

.kicker {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--brand-strong);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 42px;
  height: 3px;
  flex: 0 0 auto;
  background: currentColor;
}

.section-dark .kicker,
.hero .kicker,
.subhero .kicker {
  color: var(--brand);
}

.lead {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.6;
}

.text-muted {
  color: var(--muted);
}

.text-brand {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border: 2px solid var(--brand);
  border-radius: 0;
  background: var(--brand);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-button);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

.btn::after {
  content: "";
  width: 18px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skewX(-38deg) rotate(-3deg);
  transition: transform .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--white);
  border-color: var(--white);
}

.btn:hover::after {
  transform: translateX(4px) skewX(-38deg) rotate(-3deg);
}

.btn-dark:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .46);
  background: transparent;
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font-button);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--brand-strong);
  transition: width .25s ease;
}

.text-link:hover::after {
  width: 50px;
}

.site-topbar {
  position: relative;
  z-index: 1002;
  background: #0f1110;
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-copy {
  margin: 0;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-links a {
  transition: color .2s ease;
}

.topbar-links a:hover {
  color: var(--brand);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(23, 25, 24, .97);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: 145px;
  max-width: 100%;
  align-items: center;
  padding-block: 3px;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, .22));
}

.desktop-nav {
  justify-self: end;
}

.menu-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 2vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list a {
  position: relative;
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, .84);
  font-family: var(--font-button);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease;
}

.menu-list a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.menu-list a:hover,
.menu-list a[aria-current="page"] {
  color: var(--white);
}

.menu-list a:hover::after,
.menu-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 46px;
  padding: 12px 18px;
  font-size: .78rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  background: currentColor;
  transition: transform .28s ease, opacity .28s ease;
}

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

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

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

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 34px));
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: #101211;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 48%;
  transform: scale(1.035);
  animation: heroZoom 16s ease-in-out alternate infinite;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 11, .95) 0%, rgba(10, 12, 11, .80) 43%, rgba(10, 12, 11, .26) 73%, rgba(10, 12, 11, .42) 100%),
    linear-gradient(0deg, rgba(10, 12, 11, .62), transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: repeating-linear-gradient(118deg, transparent 0 118px, rgba(255, 255, 255, .035) 118px 119px);
  pointer-events: none;
}

.hero-inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 58px;
  align-items: center;
  padding-block: 96px 126px;
}

.hero-copy {
  max-width: 940px;
}

.hero h1 {
  max-width: 970px;
  margin-bottom: 28px;
  text-shadow: 0 8px 36px rgba(0, 0, 0, .32);
}

.hero h1 span {
  color: var(--brand);
}

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

.hero-aside {
  align-self: end;
  margin-bottom: 88px;
  padding: 28px 0 4px 28px;
  border-left: 3px solid var(--brand);
}

.hero-brand-logo {
  width: 226px;
  max-width: 100%;
  height: auto;
  margin: 0 0 24px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .34));
}

.hero-aside strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 1.42rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-aside p {
  color: rgba(255, 255, 255, .7);
  font-size: .94rem;
  line-height: 1.55;
}

.hero-scroll {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .64);
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-scroll::before {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--brand);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -68px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--brand);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 136px;
  padding: 28px;
  border-right: 1px solid rgba(23, 25, 24, .2);
}

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

.trust-index {
  display: block;
  margin-bottom: 18px;
  color: rgba(23, 25, 24, .54);
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.14rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .24);
  transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(23, 25, 24, .12);
  transform: translateY(-8px);
}

.service-number {
  margin-bottom: 50px;
  color: var(--brand-strong);
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.service-card h3 {
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: .97rem;
}

.service-card .text-link {
  margin-top: auto;
}

.split-showcase {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  min-height: 680px;
}

.split-media {
  position: relative;
  overflow: hidden;
}

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

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(226, 173, 66, .24));
}

.split-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 108px);
  background: var(--ink);
  color: var(--white);
}

.split-content p:not(.kicker) {
  color: rgba(255, 255, 255, .68);
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 17px 0 17px 38px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 4px;
  width: 14px;
  height: 8px;
  border-right: 3px solid var(--brand);
  border-bottom: 3px solid var(--brand);
  transform: rotate(-45deg) skewX(-12deg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 300px;
  padding: 32px 32px 38px;
  border-top: 4px solid var(--ink);
  border-right: 1px solid var(--line);
  counter-increment: process;
}

.process-step::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 70px;
  color: var(--brand-strong);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
}

.process-step h3 {
  font-size: 1.55rem;
  text-transform: uppercase;
}

.process-step p {
  color: var(--muted);
  font-size: .93rem;
}

.materials-panel {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 64px;
  align-items: start;
}

.material-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.material-tag {
  min-height: 130px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color .25s ease, color .25s ease;
}

.material-tag:hover {
  background: var(--brand);
  color: var(--ink);
}

.material-tag:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}


.guarantee-banner {
  position: relative;
  overflow: hidden;
  padding: 72px clamp(32px, 7vw, 96px);
  background: var(--brand);
  color: var(--ink);
}

.guarantee-banner::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 420px;
  height: 320px;
  border: 46px solid rgba(23, 25, 24, .08);
  transform: rotate(45deg);
}

.guarantee-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.guarantee-banner h2 {
  max-width: 880px;
  margin-bottom: 14px;
}

.guarantee-banner p {
  max-width: 720px;
}

.subhero {
  position: relative;
  min-height: 500px;
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.subhero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

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

.subhero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(92deg, rgba(15, 17, 16, .95) 0%, rgba(15, 17, 16, .77) 51%, rgba(15, 17, 16, .25) 100%);
}

.subhero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 7vw;
  bottom: -160px;
  width: 390px;
  height: 390px;
  border: 54px solid rgba(226, 173, 66, .13);
  transform: rotate(45deg);
}

.subhero-inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 52px;
  align-items: end;
  padding-block: 100px 88px;
}

.subhero-copy {
  max-width: 970px;
}

.subhero h1 {
  margin-bottom: 24px;
}

.subhero-note {
  padding: 25px 0 8px 26px;
  border-left: 3px solid var(--brand);
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
}

.breadcrumbs {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .64);
  font-family: var(--font-heading);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--brand);
}

.breadcrumbs span {
  margin-inline: 9px;
  color: var(--brand);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: 76px;
  align-items: start;
}

.about-statement {
  position: sticky;
  top: 126px;
}

.about-statement h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
}

.about-copy {
  display: grid;
  gap: 28px;
}

.about-copy p {
  font-size: 1.08rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  min-height: 300px;
  padding: 36px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, .035);
}

.value-card strong {
  display: block;
  margin-bottom: 62px;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.value-card h3 {
  text-transform: uppercase;
}

.value-card p {
  color: rgba(255, 255, 255, .67);
  font-size: .94rem;
}

.image-offset-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 22px;
  align-items: stretch;
}

.image-offset-main,
.image-offset-side {
  overflow: hidden;
  min-height: 580px;
}

.image-offset-main img,
.image-offset-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.image-offset-side {
  min-height: 420px;
  margin-top: 86px;
}

.image-offset-main:hover img,
.image-offset-side:hover img {
  transform: scale(1.035);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.offer-item {
  position: relative;
  min-height: 255px;
  padding: 34px 38px 38px 94px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .2);
  transition: background-color .25s ease;
}

.offer-item:hover {
  background: var(--white);
}

.offer-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}


.offer-item .offer-index {
  position: absolute;
  top: 39px;
  left: 34px;
  color: var(--brand-strong);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 800;
}

.offer-item h3 {
  text-transform: uppercase;
}

.offer-item p {
  color: var(--muted);
  font-size: .95rem;
}

.diagnostic-panel {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.diagnostic-copy {
  padding: clamp(50px, 7vw, 90px);
}

.diagnostic-copy p:not(.kicker) {
  color: rgba(255, 255, 255, .7);
}

.diagnostic-media {
  min-height: 500px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 4;
  overflow: hidden;
  min-height: 360px;
  cursor: zoom-in;
  background: var(--ink-soft);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  grid-column: span 7;
  grid-row: span 5;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(6) {
  grid-column: span 5;
  grid-row: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.gallery-item::after {
  content: "+";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: brightness(.82);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-note {
  margin: 28px 0 0;
  padding: 22px 26px;
  border-left: 4px solid var(--brand);
  background: rgba(255, 255, 255, .5);
  color: var(--muted);
  font-size: .94rem;
}

.lightbox {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: none;
  padding: 34px;
  place-items: center;
  background: rgba(10, 12, 11, .96);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 1.6rem;
}

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

.project-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(23, 25, 24, .08);
}

.project-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

.project-content {
  padding: 36px;
}

.project-content h3 {
  text-transform: uppercase;
}

.project-content p {
  color: var(--muted);
}

.project-type {
  display: block;
  margin-bottom: 16px;
  color: var(--brand-strong);
  font-family: var(--font-heading);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
  text-transform: uppercase;
}

.faq-icon {
  width: 42px;
  height: 42px;
  position: relative;
  border: 1px solid var(--line);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--brand-strong);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  max-width: 880px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .66fr) minmax(0, 1.34fr);
  gap: 70px;
  align-items: start;
}

.contact-details {
  position: sticky;
  top: 126px;
}

.contact-card {
  display: block;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.contact-card:first-of-type {
  margin-top: 32px;
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-strong);
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-value {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
}

.contact-card:hover .contact-value {
  color: var(--brand-strong);
}

.contact-form-wrap {
  padding: clamp(34px, 5vw, 64px);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.form-field {
  display: grid;
  gap: 9px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(23, 25, 24, .25);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 13px 0;
  outline: none;
  transition: border-color .2s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--brand-strong);
}

.form-consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand-strong);
}

.form-consent a {
  text-decoration: underline;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  grid-column: 1 / -1;
  display: none;
  padding: 16px 18px;
  border-left: 4px solid var(--brand);
  background: var(--paper);
  font-size: .92rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-left-color: #b33d32;
  color: #7e241c;
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 8px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #101211;
  color: var(--white);
}

.footer-main {
  padding-block: 84px 68px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .72fr .72fr 1fr;
  gap: 48px;
}

.footer-brand img {
  width: 280px;
  max-width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, .28));
}

.footer-brand p {
  max-width: 390px;
  color: rgba(255, 255, 255, .58);
  font-size: .92rem;
}

.footer-title {
  margin: 0 0 22px;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, .7);
  font-size: .91rem;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a {
  color: rgba(255, 255, 255, .74);
  overflow-wrap: anywhere;
}

.footer-contact a:hover {
  color: var(--brand);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.footer-bottom-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: rgba(255, 255, 255, .48);
  font-size: .75rem;
}

.footer-bottom a:hover {
  color: var(--brand);
}

.privacy-page {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 72px 24px;
  background: var(--paper);
}

.privacy-document {
  width: min(100%, 860px);
  text-align: center;
}

.privacy-document h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  margin-bottom: 34px;
}

.privacy-document h2 {
  margin-top: 46px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.privacy-document p,
.privacy-document li {
  color: #3c3f3c;
  text-align: left;
}

.privacy-document ul {
  display: inline-block;
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}

.privacy-back {
  display: inline-flex;
  margin-top: 44px;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 24px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.error-page-inner {
  max-width: 800px;
}

.error-code {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: clamp(7rem, 22vw, 16rem);
  font-weight: 800;
  line-height: .8;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal-ready [data-reveal="left"] {
  transform: translateX(-36px);
}

.reveal-ready [data-reveal="right"] {
  transform: translateX(36px);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes heroZoom {
  from { transform: scale(1.035); }
  to { transform: scale(1.095); }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleX(.5); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

@media (max-width: 1120px) {
  :root {
    --section-spacing: 96px;
  }

  .header-inner {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .header-cta {
    display: none;
  }

  .menu-list {
    gap: 17px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .trust-item {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr .8fr .8fr;
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
    --section-spacing: 82px;
  }

  .site-topbar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    min-height: 78px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .brand {
    width: 108px;
    padding-block: 2px;
  }

  .brand img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex: 0 0 48px;
    margin-left: auto;
  }

  .mobile-menu {
    position: fixed;
    z-index: 999;
    top: 78px;
    right: 0;
    left: 0;
    width: 100vw;
    height: calc(100dvh - 78px);
    display: block;
    overflow-y: auto;
    padding: 26px 24px 38px;
    background: #151817;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: opacity .26s ease, visibility .26s ease, transform .26s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu .menu-list {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .mobile-menu .menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .mobile-menu .menu-list a {
    padding: 20px 2px;
    font-size: 1.06rem;
  }

  .mobile-menu .menu-list a::after {
    display: none;
  }

  .mobile-menu-cta {
    width: 100%;
    margin-top: 28px;
  }

  .mobile-menu-contact {
    display: grid;
    gap: 10px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .68);
    font-size: .9rem;
  }

  .hero {
    min-height: calc(100svh - 78px);
  }

  .hero-inner,
  .subhero-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-content: center;
    padding-block: 92px 108px;
  }

  .hero-aside,
  .subhero-note {
    display: none;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(10, 12, 11, .94), rgba(10, 12, 11, .54));
  }

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

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

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(23, 25, 24, .2);
  }

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

  .split-showcase,
  .diagnostic-panel {
    grid-template-columns: 1fr;
  }

  .split-media,
  .diagnostic-media {
    min-height: 480px;
  }

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

  .materials-panel,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-statement,
  .contact-details {
    position: static;
  }

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

  .image-offset-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-offset-main,
  .image-offset-side {
    min-height: 450px;
  }

  .image-offset-side {
    margin-top: 50px;
  }

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

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

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

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

  .footer-grid > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --font-size-base: 16px;
    --section-spacing: 68px;
  }

  .container,
  .container-wide {
    width: min(calc(100% - 32px), var(--container));
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .hero-inner {
    padding-block: 76px 108px;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(10, 12, 11, .94), rgba(10, 12, 11, .68));
  }

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

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-scroll {
    right: 16px;
    bottom: 22px;
  }

  .trust-strip {
    margin-top: 0;
  }

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

  .trust-item,
  .trust-item:nth-child(n) {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 25, 24, .2);
    padding: 22px 24px;
  }

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

  .trust-index {
    margin-bottom: 9px;
  }

  .services-grid,
  .offer-list,
  .projects-grid,
  .process-grid,
  .material-tags,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
    padding: 30px 26px;
  }

  .service-number {
    margin-bottom: 35px;
  }

  .split-media,
  .diagnostic-media {
    min-height: 360px;
  }

  .split-content,
  .diagnostic-copy {
    padding: 52px 26px;
  }

  .process-step {
    min-height: 230px;
    padding: 26px 20px 30px;
  }

  .process-step::before {
    margin-bottom: 42px;
  }

  .material-tag {
    min-height: 96px;
  }

  .guarantee-banner {
    padding: 54px 26px;
  }

  .subhero {
    min-height: 430px;
  }

  .subhero-inner {
    padding-block: 74px 62px;
  }

  .image-offset-grid {
    grid-template-columns: 1fr;
  }

  .image-offset-main,
  .image-offset-side {
    min-height: 360px;
  }

  .image-offset-side {
    margin-top: 0;
  }

  .offer-item {
    min-height: 235px;
    padding: 30px 25px 32px 72px;
  }

  .offer-item .offer-index {
    top: 34px;
    left: 24px;
  }

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

  .project-content {
    padding: 28px 24px;
  }

  .faq-question {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 14px;
    padding: 22px 0;
  }

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

  .contact-form-wrap {
    padding: 34px 24px;
  }

  .form-field-full,
  .form-consent,
  .form-status,
  .form-submit {
    grid-column: auto;
  }

  .form-submit {
    width: 100%;
  }

  .footer-main {
    padding-block: 64px 50px;
  }

  .footer-bottom-inner {
    min-height: 90px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
  }

  .privacy-page {
    padding: 48px 18px;
  }
}

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-topbar,
  .site-header,
  .site-footer,
  .hero-scroll,
  .btn,
  .lightbox {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.privacy-document p,
.privacy-document li,
.privacy-document ul {
  text-align: center;
}

.privacy-document ul {
  list-style-position: inside;
  padding-left: 0;
}
