@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../fonts/sora-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Material Symbols Rounded";
  src: url("../fonts/material-symbols-rounded.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

:root {
  color-scheme: light;
  --text: #18211d;
  --text-soft: #59615d;
  --canvas: #f3f4f2;
  --surface: #fcfcfa;
  --surface-soft: #e9ebe8;
  --field: #f7f8f6;
  --line: rgba(17, 37, 30, 0.15);
  --line-strong: rgba(17, 37, 30, 0.28);
  --deep: #0b1e17;
  --deep-soft: #0b1e17;
  --on-deep: #f6faf7;
  --on-deep-soft: rgba(246, 250, 247, 0.7);
  --accent: #c98f4b;
  --accent-strong: #8b5825;
  --accent-soft: #efe0cc;
  --moss: #3f765f;
  --danger: #a7352b;
  --header-bg: rgba(242, 244, 241, 0.72);
  --header-scrolled: rgba(252, 253, 251, 0.8);
  --menu-bg: rgba(7, 19, 15, 0.76);
  --shadow-small: 0 12px 34px rgba(17, 37, 30, 0.08);
  --shadow-large: 0 28px 80px rgba(17, 37, 30, 0.14);
  --radius-shell: 8px;
  --radius-control: 5px;
  --radius-detail: 3px;
  --signature-angle: 102deg;
  --signature-gap: 48px;
  --loader-bg: #07130e;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --text: #f0f4f1;
  --text-soft: #adb7b1;
  --canvas: #131513;
  --surface: #1a1c1a;
  --surface-soft: #242724;
  --field: #111512;
  --line: rgba(237, 244, 240, 0.13);
  --line-strong: rgba(237, 244, 240, 0.25);
  --deep: #07130e;
  --deep-soft: #07130e;
  --on-deep: #f4faf6;
  --on-deep-soft: rgba(244, 250, 246, 0.68);
  --accent: #d9a15e;
  --accent-strong: #f1c988;
  --accent-soft: #3a2d1e;
  --moss: #78b59b;
  --danger: #ff8a7e;
  --header-bg: rgba(11, 21, 18, 0.68);
  --header-scrolled: rgba(11, 24, 19, 0.8);
  --menu-bg: rgba(7, 19, 15, 0.76);
  --shadow-small: 0 14px 38px rgba(0, 0, 0, 0.2);
  --shadow-large: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.material-symbols-rounded,
.material-symbol {
  display: inline-block;
  overflow: visible;
  font-family: "Material Symbols Rounded";
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--canvas);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 450;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

.site-page {
  min-height: 100svh;
}

.site-page--utility {
  display: flex;
  flex-direction: column;
}

.site-page--utility > main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.site-page--utility .legal-page {
  min-height: 0;
  flex: 1;
}

::selection {
  background: color-mix(in srgb, var(--accent) 48%, #ffffff);
  color: #172019;
}

h1,
h2 {
  margin: 0;
  overflow-wrap: break-word;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 650;
  text-wrap: balance;
}

h3,
p {
  overflow-wrap: break-word;
}

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

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

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

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 75%, transparent);
  outline-offset: 4px;
}

h1:focus {
  outline: none;
}

.theme-ready body,
.theme-ready .site-header,
.theme-ready .service-focus,
.theme-ready .service-selector__tab,
.theme-ready .faq-item,
.theme-ready .contact-form,
.theme-ready .legal-content,
.theme-ready .quality-section,
.theme-ready .project-option,
.theme-ready input,
.theme-ready textarea {
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 10000;
  visibility: hidden;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  overflow: hidden;
  transform: translateY(100%);
  background: var(--loader-bg);
  pointer-events: none;
  transition: none;
}

.page-transition::before {
  content: "";
  position: absolute;
  inset: -18%;
  opacity: 0.11;
  background: repeating-linear-gradient(var(--signature-angle), rgba(217, 161, 94, 0.55) 0 1px, transparent 1px var(--signature-gap));
  filter: blur(0.3px);
  transform: translate3d(8%, 0, 0);
}

.page-transition__wordmark {
  position: relative;
  z-index: 1;
  color: rgba(244, 250, 246, 0.92);
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 700;
  line-height: 0.95;
}

.page-transition__identity {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.35rem);
}

.page-transition__identity > img {
  width: clamp(44px, 6vw, 64px);
  height: clamp(44px, 6vw, 64px);
  flex: 0 0 auto;
  border-radius: var(--radius-control);
  background: #f4f3ef;
  object-fit: contain;
}

.page-transition__wordmark span {
  color: var(--accent);
}

.page-transition__track {
  position: relative;
  z-index: 1;
  width: min(300px, 54vw);
  height: 2px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 22px rgba(241, 201, 136, 0.16);
}

.page-transition__track span {
  width: 100%;
  height: 100%;
  display: block;
  transform: translateX(-100%);
  background: #f1c988;
  box-shadow: 0 0 14px rgba(241, 201, 136, 0.62);
}

.is-page-transitioning .page-transition {
  visibility: visible;
  transform: translateY(0);
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-page-revealing .page-transition {
  visibility: visible;
  transform: translateY(-100%);
  transition: transform 400ms cubic-bezier(0.7, 0, 0.84, 0);
}

.is-page-transitioning .page-transition__identity {
  animation: transition-wordmark 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.is-page-transitioning .page-transition::before {
  animation: transition-slats 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.is-page-revealing .page-transition::before {
  transform: translate3d(0, 0, 0);
}

.is-page-transitioning .page-transition__track span {
  animation: transition-line 480ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.is-page-revealing .page-transition__track span {
  transform: translateX(0);
}

@keyframes transition-wordmark {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes transition-line {
  0% { transform: translateX(-100%); }
  72%, 100% { transform: translateX(0); }
}

@keyframes transition-slats {
  from { opacity: 0.045; transform: translate3d(8%, 0, 0); }
  to { opacity: 0.11; transform: translate3d(0, 0, 0); }
}

.container {
  width: min(1240px, calc(100% - 4rem));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-small);
}

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

.site-header {
  --nav-glass-background: var(--header-bg);
  --nav-glass-border: var(--line);
  --nav-glass-overlay: linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 38%, rgba(217, 161, 94, 0.045));
  --nav-glass-filter: blur(24px) saturate(1.35);
  position: fixed;
  top: 12px;
  right: 0;
  left: 0;
  z-index: 20;
  border: 0;
  background: transparent;
  pointer-events: none;
  transition: opacity 440ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .site-header {
  opacity: 0;
  transform: translateY(-14px);
}

.js.theme-ready .site-header {
  opacity: 1;
  transform: translateY(0);
}

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

.nav-shell {
  position: relative;
  width: min(2100px, calc(100% - 2rem));
  min-height: 64px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
  padding: 0.48rem 0.55rem 0.48rem 0.7rem;
  border: 1px solid var(--nav-glass-border);
  border-radius: var(--radius-shell);
  background-color: var(--nav-glass-background);
  background-image: var(--nav-glass-overlay);
  box-shadow: 0 14px 44px rgba(4, 13, 9, 0.08);
  -webkit-backdrop-filter: var(--nav-glass-filter);
  backdrop-filter: var(--nav-glass-filter);
  pointer-events: auto;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header--compact .nav-shell {
  grid-template-columns: minmax(0, 1fr) auto;
}

.site-header.is-scrolled .nav-shell {
  --nav-glass-background: var(--header-scrolled);
  box-shadow: 0 16px 48px rgba(4, 13, 9, 0.16);
}

body:has(.hero) .site-header {
  --nav-glass-background: rgba(7, 19, 15, 0.72);
  --nav-glass-border: rgba(255, 255, 255, 0.16);
  --nav-glass-overlay: linear-gradient(125deg, rgba(255, 255, 255, 0.09), transparent 38%, rgba(217, 161, 94, 0.045));
  --nav-glass-filter: blur(24px) saturate(1.35);
}

body:has(.hero) .site-header .nav-shell {
  box-shadow: 0 18px 54px rgba(2, 9, 6, 0.2);
}

body:has(.hero) .site-header .brand strong,
body:has(.hero) .site-header .nav-links,
body:has(.hero) .site-header .theme-toggle,
body:has(.hero) .site-header .nav-toggle {
  color: #ffffff;
}

body:has(.hero) .site-header .brand small,
body:has(.hero) .site-header .nav-links {
  color: rgba(255, 255, 255, 0.72);
}

body:has(.hero) .site-header .theme-toggle,
body:has(.hero) .site-header .nav-toggle,
body:has(.hero) .site-header .language-switch {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

body:has(.hero) .site-header .language-switch a {
  color: rgba(255, 255, 255, 0.7);
}

body:has(.hero) .site-header .language-switch a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.94);
  color: #10251e;
}

body:has(.hero) .site-header .nav-cta {
  border-color: color-mix(in srgb, var(--accent) 82%, transparent);
  background: color-mix(in srgb, var(--accent) 88%, transparent);
  color: #181108;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: start;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-control);
  background: #f4f3ef;
  overflow: hidden;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__copy,
.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  font-weight: 650;
}

.brand small {
  margin-top: 0.12rem;
  color: var(--text-soft);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--text-soft);
  counter-reset: primary-nav;
  font-size: 0.88rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 0.38rem;
  align-items: baseline;
  padding: 0.5rem clamp(0.55rem, 1vw, 0.95rem);
  counter-increment: primary-nav;
  transition: color 220ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a::before {
  content: "0" counter(primary-nav);
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

body:has(.hero) .site-header .nav-links a:hover,
body:has(.hero) .site-header .nav-links a:focus-visible {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, 32px);
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.language-switch a {
  min-width: 32px;
  min-height: 30px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-detail);
  color: var(--text-soft);
  font-size: 0.7rem;
  font-weight: 800;
  transition: background-color 220ms ease, color 220ms ease;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--text);
}

.language-switch a[aria-current="page"] {
  background: var(--deep);
  color: var(--on-deep);
}

.theme-toggle,
.nav-toggle {
  width: 40px;
  height: 38px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  color: var(--text);
  cursor: pointer;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.theme-toggle {
  display: grid;
  place-items: center;
}

.theme-toggle .material-symbol {
  font-size: 1.02rem;
  line-height: 1;
  animation: theme-icon-in 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.is-theme-switching .theme-toggle {
  animation: theme-control-shift 340ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes theme-icon-in {
  from { opacity: 0; transform: rotate(-24deg) scale(0.72); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes theme-control-shift {
  0%, 100% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-1px) scale(0.94); }
}

.theme-toggle:hover,
.theme-toggle:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent-strong);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

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

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-weight: 750;
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

.nav-cta {
  min-height: 40px;
  padding: 0.64rem 0.9rem;
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  background: color-mix(in srgb, var(--accent) 78%, transparent);
  color: #181108;
  font-size: 0.82rem;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.nav-cta__icon {
  display: none;
  font-size: 1rem;
  line-height: 1;
}

.button--primary {
  background: var(--accent);
  color: #181108;
  box-shadow: 0 16px 38px rgba(137, 86, 36, 0.2);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button--primary:hover,
.button--primary:focus-visible {
  filter: brightness(1.045) saturate(0.96);
  box-shadow: 0 20px 46px rgba(137, 86, 36, 0.28);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--accent);
  background: rgba(217, 161, 94, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.button__icon {
  min-width: 1rem;
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.button__icon .material-symbol {
  font-size: 1.05rem;
}

.button:hover .button__icon,
.button:focus-visible .button__icon {
  transform: translateX(4px);
}

.button--ghost:hover .button__icon,
.button--ghost:focus-visible .button__icon {
  transform: translateY(3px);
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 9rem 0 clamp(3rem, 5vw, 5rem);
  background: var(--deep);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(34vw, 520px);
  height: 4px;
  z-index: 1;
  background: var(--accent);
  pointer-events: none;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media {
  background-image: url("../assets/hero-craft.jpg");
  background-position: center calc(50% + var(--hero-offset, 0px));
  background-size: cover;
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 17, 12, 0.95) 0%, rgba(5, 17, 12, 0.69) 44%, rgba(5, 17, 12, 0.1) 78%),
    linear-gradient(0deg, rgba(5, 17, 12, 0.72) 0%, rgba(5, 17, 12, 0.02) 58%);
}

.hero__stage {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1840px, calc(100% - 5rem));
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.4fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: end;
  min-width: 0;
}

.hero__content {
  min-width: 0;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--moss);
}

.hero h1 {
  width: min(1040px, 100%);
  color: #ffffff;
  font-size: 5.25rem;
  line-height: 0.98;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.hero__lead {
  width: min(650px, 100%);
  margin: 1.45rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.68;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__facts {
  position: relative;
  align-self: end;
  justify-self: end;
  width: min(100%, 340px);
  padding-inline: 0.35rem;
  border-block: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(105deg, rgba(6, 17, 13, 0.56), rgba(6, 17, 13, 0.2));
  color: #ffffff;
  box-shadow: 18px 22px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(9px) saturate(1.1);
}

.hero__facts::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  width: 2px;
  background: var(--accent);
}

.hero__facts > div {
  min-height: 96px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__facts > div:last-child {
  border-bottom: 0;
}

.hero__fact-index {
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.hero__facts strong,
.hero__facts small {
  display: block;
}

.hero__facts strong {
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
}

.hero__facts small {
  margin-top: 0.32rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
  line-height: 1.45;
}

.section {
  position: relative;
  padding: clamp(6rem, 10vw, 9rem) 0;
  border-top: 1px solid var(--line);
}

.section--dark,
.projects-section,
.contact-section {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.section--muted {
  background: var(--surface);
}

.section--dark {
  overflow: hidden;
  background: var(--deep);
  color: var(--on-deep);
}

.intro-section {
  overflow: hidden;
  background: var(--canvas);
}

.material-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: #0a1511;
  color: rgba(255, 255, 255, 0.68);
}

.material-marquee:hover .material-marquee__track {
  animation-play-state: paused;
}

.material-marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: material-marquee-scroll 118s linear infinite;
  will-change: transform;
}

.material-marquee__group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.material-marquee__item {
  min-width: 310px;
  min-height: 82px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 62px;
  gap: 1rem;
  align-items: center;
  padding: 0 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 320ms ease, color 320ms ease;
}

.material-marquee__item small {
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.59rem;
  font-weight: 700;
}

.material-marquee__item span {
  font-family: "Sora", sans-serif;
  font-size: 0.74rem;
  font-weight: 650;
  text-transform: uppercase;
  white-space: nowrap;
}

.material-marquee__sample {
  position: relative;
  width: 62px;
  height: 12px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  filter: brightness(0.68) saturate(0.72) contrast(1.04);
  transform-origin: right;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 320ms ease;
}

.material-marquee__sample::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(108deg, transparent 22%, rgba(217, 161, 94, 0.74) 48%, rgba(241, 201, 136, 0.92) 52%, transparent 78%);
  transform: translateX(-130%);
  pointer-events: none;
}

.material-marquee__sample--1 {
  background-image: url("../assets/material-parkett.svg");
}

.material-marquee__sample--2 {
  background-image: url("../assets/material-vinyl.svg");
}

.material-marquee__sample--3 {
  background-image: url("../assets/material-laminat.svg");
}

.material-marquee__sample--4 {
  background-image: url("../assets/material-renovation.svg");
}

.material-marquee__sample--5 {
  background-image: url("../assets/material-stairs.svg");
}

.material-marquee__sample--6 {
  background-image: url("../assets/material-subfloor.svg");
}

.material-marquee__item:hover {
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
}

.material-marquee__item:hover .material-marquee__sample {
  transform: scaleX(1.12);
  filter: brightness(1) saturate(0.94) contrast(1.02);
}

.material-marquee__item:hover .material-marquee__sample::after {
  animation: material-marquee-sheen 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes material-marquee-scroll {
  to { transform: translateX(-50%); }
}

@keyframes material-marquee-sheen {
  0% { opacity: 0; transform: translateX(-130%); }
  28% { opacity: 0.34; }
  100% { opacity: 0; transform: translateX(130%); }
}

.intro-grid,
.section-heading--split,
.contact-grid,
.faq-grid,
.quality-grid,
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.intro-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
}

.intro-grid h2,
.section-heading h2,
.process-copy h2,
.quality-panel h2,
.faq-grid h2,
.contact-copy h2 {
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.07;
}

.intro-grid h2 {
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 1.01;
}

.intro-grid__headline {
  max-width: 650px;
}

.intro-grid__body {
  max-width: 600px;
  padding-top: 1.9rem;
}

.material-line {
  width: min(156px, 42vw);
  height: 1px;
  display: block;
  margin-bottom: 2rem;
  border: 0;
  background: linear-gradient(90deg, var(--accent) 0 38%, var(--line-strong) 38% 100%);
}

.section-lead,
.section-heading--split > p,
.process-copy > p:last-child,
.quality-panel > p:last-child,
.faq-item p,
.contact-copy > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 3.5rem;
}

.section-heading--split {
  width: 100%;
  align-items: end;
}

.services-section .section-heading {
  width: min(980px, 100%);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.service-explorer {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  border-block: 1px solid var(--line-strong);
}

.service-selector {
  border-right: 1px solid var(--line-strong);
}

.service-selector__tab {
  width: 100%;
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 1rem 1.25rem 1rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background-color 180ms ease, padding 180ms ease;
}

.service-selector__tab:last-child {
  border-bottom: 0;
}

.service-selector__number {
  color: var(--accent-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.service-selector__tab > span:nth-child(2) {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.service-selector__tab:hover,
.service-selector__tab:focus-visible {
  color: var(--text);
}

.service-selector__tab.is-active {
  padding-left: 1.15rem;
  background: var(--deep);
  color: var(--on-deep);
}

.service-selector__tab.is-active .service-selector__number {
  color: var(--accent);
}

.service-focus {
  height: 500px;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr);
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--canvas);
}

.service-focus__index {
  font-family: "Sora", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-focus__index {
  color: var(--accent-strong);
}

.service-focus__controls {
  grid-column: 2;
  justify-self: end;
  display: grid;
  grid-template-columns: 36px auto 36px;
  gap: 0.65rem;
  align-items: center;
}

.service-focus__controls button {
  width: 36px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-focus__controls button:hover,
.service-focus__controls button:focus-visible {
  border-color: var(--accent);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.service-focus__body {
  grid-column: 1 / -1;
  min-height: 370px;
  display: flex;
  flex-direction: column;
}

.service-focus__body h3,
.service-focus__body p {
  animation: service-detail-rise 580ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-focus__body p {
  animation-delay: 55ms;
}

.service-focus__body h3 {
  margin: auto 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.03;
}

.service-focus__body p {
  max-width: 680px;
  margin: 1.15rem 0 2rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.service-focus__sample-stage {
  position: relative;
  height: 104px;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.26), inset 0 -14px 28px rgba(20, 12, 6, 0.1);
}

.service-focus__sample {
  position: absolute;
  inset: 0;
  display: block;
  background-color: color-mix(in srgb, var(--accent) 68%, var(--surface));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(0.9) contrast(1.02);
}

.service-focus__sample.is-incoming.is-next {
  animation: service-material-in-next 760ms cubic-bezier(0.16, 1, 0.3, 1) 90ms both;
}

.service-focus__sample.is-incoming.is-previous {
  animation: service-material-in-previous 760ms cubic-bezier(0.16, 1, 0.3, 1) 90ms both;
}

.service-focus__sample.is-outgoing.is-next {
  animation: service-material-out-next 760ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.service-focus__sample.is-outgoing.is-previous {
  animation: service-material-out-previous 760ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.service-focus__sample::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  background: repeating-linear-gradient(var(--signature-angle), rgba(255, 255, 255, 0.16) 0 1px, transparent 1px var(--signature-gap));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.service-focus__sample.is-incoming::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background: linear-gradient(108deg, transparent 22%, rgba(217, 161, 94, 0.36) 44%, rgba(241, 201, 136, 0.58) 50%, rgba(217, 161, 94, 0.3) 56%, transparent 78%);
  transform: translateX(-125%);
  animation: material-sheen 980ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.service-focus__sample--1 {
  background-image: url("../assets/material-parkett.svg");
}

.service-focus__sample--2 {
  background-image: url("../assets/material-vinyl.svg");
}

.service-focus__sample--3 {
  background-image: url("../assets/material-laminat.svg");
}

.service-focus__sample--4 {
  background-image: url("../assets/material-renovation.svg");
}

.service-focus__sample--5 {
  background-image: url("../assets/material-stairs.svg");
}

.service-focus__sample--6 {
  background-image: url("../assets/material-subfloor.svg");
}

@keyframes service-detail-rise {
  from { clip-path: inset(100% 0 0); opacity: 0; transform: translateY(16px); }
  to { clip-path: inset(0); opacity: 1; transform: translateY(0); }
}

@keyframes service-material-in-next {
  from { clip-path: inset(0 12% 0 0); opacity: 0.62; filter: brightness(0.48) saturate(0.62) contrast(1.08); transform: translateX(16px); }
  to { clip-path: inset(0); opacity: 1; filter: saturate(0.9) contrast(1.02); transform: translateX(0); }
}

@keyframes service-material-in-previous {
  from { clip-path: inset(0 0 0 12%); opacity: 0.62; filter: brightness(0.48) saturate(0.62) contrast(1.08); transform: translateX(-16px); }
  to { clip-path: inset(0); opacity: 1; filter: saturate(0.9) contrast(1.02); transform: translateX(0); }
}

@keyframes service-material-out-next {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(-8px) scale(0.997); }
}

@keyframes service-material-out-previous {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(8px) scale(0.997); }
}

@keyframes material-sheen {
  0% { opacity: 0; transform: translateX(-125%); }
  34% { opacity: 0.42; }
  100% { opacity: 0; transform: translateX(125%); }
}

.projects-section {
  padding-bottom: clamp(6rem, 10vw, 9rem);
  overflow: clip;
  background: var(--deep);
  color: var(--on-deep);
}

.projects-section .section-heading {
  margin-bottom: 2.5rem;
}

.projects-section .section-heading h2 {
  color: var(--on-deep);
}

.projects-section .section-heading--split > p {
  color: var(--on-deep-soft);
}

.project-shell {
  width: min(1900px, calc(100% - 4rem));
}

.project-filters {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  scrollbar-width: none;
}

.project-filters::-webkit-scrollbar {
  display: none;
}

.project-filter {
  position: relative;
  min-width: max-content;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 750;
  transition: color 220ms ease;
}

.project-filter > span:not(.project-filter__grid) {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-filter::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform 220ms ease;
}

.project-filter small {
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.62rem;
}

.project-filter--overview {
  margin-right: 0.5rem;
  padding-right: 2rem;
}

.project-filter--overview::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 24px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
}

.project-filter__grid {
  width: 13px;
  height: 13px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.project-filter__grid i {
  border: 1px solid currentColor;
}

.project-filter:hover,
.project-filter:focus-visible,
.project-filter.is-active {
  color: #ffffff;
}

.project-filter:hover > span:not(.project-filter__grid),
.project-filter:focus-visible > span:not(.project-filter__grid) {
  transform: translateX(4px);
}

.project-filter:hover::after,
.project-filter:focus-visible::after,
.project-filter.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.project-showcase {
  height: clamp(650px, 43vw, 820px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 26%);
  margin-top: 2.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #08120e;
}

.project-showcase__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  background: #07130f;
}

.project-showcase__media > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.project-showcase__image.is-incoming.is-next {
  animation: project-image-in-next 760ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.project-showcase__image.is-incoming.is-previous {
  animation: project-image-in-previous 760ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.project-showcase__image.is-outgoing.is-next {
  animation: project-image-out-next 760ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.project-showcase__image.is-outgoing.is-previous {
  animation: project-image-out-previous 760ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.project-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(3, 12, 8, 0.58), transparent 48%),
    linear-gradient(90deg, rgba(3, 12, 8, 0.22), transparent 42%);
  pointer-events: none;
}

.project-showcase__counter {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(5, 16, 12, 0.28);
  color: #ffffff;
  backdrop-filter: blur(10px);
  font-family: "Sora", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
}

.project-showcase__open {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  min-width: 190px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(5, 16, 12, 0.36);
  color: #ffffff;
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background-color 240ms ease, border-color 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.project-showcase__open span:last-child {
  color: var(--accent);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.project-showcase__open:hover,
.project-showcase__open:focus-visible {
  border-color: var(--accent);
  background: rgba(217, 161, 94, 0.18);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.project-showcase__open:hover span:last-child,
.project-showcase__open:focus-visible span:last-child {
  color: var(--accent);
  transform: translate(3px, -3px);
}

.project-showcase__panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.project-showcase__copy {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 4rem);
}

.project-showcase__copy-content {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.project-showcase__copy-content > span {
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-showcase__copy-content h3 {
  margin: auto 0 1rem;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 2.55rem;
  font-weight: 600;
  line-height: 1.02;
}

.project-showcase__copy-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.project-showcase__controls {
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
}

.project-showcase__copy-content > span,
.project-showcase__copy-content h3,
.project-showcase__copy-content p,
.project-lightbox__copy > span,
.project-lightbox__copy > strong,
.project-lightbox__copy > p {
  animation: project-copy-rise 580ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-showcase__copy-content h3,
.project-lightbox__copy > strong {
  animation-delay: 55ms;
}

.project-showcase__copy-content p,
.project-lightbox__copy > p {
  animation-delay: 105ms;
}

.project-showcase__controls button,
.project-lightbox__controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.project-showcase__controls button:hover,
.project-showcase__controls button:focus-visible,
.project-lightbox__controls button:hover,
.project-lightbox__controls button:focus-visible {
  border-color: var(--accent);
  background: rgba(217, 161, 94, 0.14);
  color: #ffffff;
  transform: translateY(-2px);
}

.project-index {
  max-height: 312px;
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  scrollbar-color: var(--accent) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.project-index.is-category-next {
  animation: project-index-next 440ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-index.is-category-previous {
  animation: project-index-previous 440ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-index__item {
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 70px;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem 0 0.6rem 1rem;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  text-align: left;
  transition: background-color 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.project-index__item:last-child {
  border-bottom: 0;
}

.project-index__item > span {
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.62rem;
}

.project-index__item strong {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-index__item img {
  width: 70px;
  height: 54px;
  object-fit: cover;
  filter: saturate(0.45) brightness(0.68);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 260ms ease;
}

.project-index__item:hover,
.project-index__item:focus-visible,
.project-index__item.is-active {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.project-index__item:hover img,
.project-index__item:focus-visible img,
.project-index__item.is-active img {
  filter: none;
  transform: scale(1.045);
}

.project-index__item:hover strong,
.project-index__item:focus-visible strong {
  transform: translateX(4px);
}

.project-index__item.is-active {
  box-shadow: inset 2px 0 var(--accent);
}

@keyframes project-image-in-next {
  from { clip-path: inset(0 2.5% 0 0); opacity: 0.04; transform: translateX(8px) scale(1.004); }
  to { clip-path: inset(0); opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes project-image-in-previous {
  from { clip-path: inset(0 0 0 2.5%); opacity: 0.04; transform: translateX(-8px) scale(1.004); }
  to { clip-path: inset(0); opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes project-image-out-next {
  from { clip-path: inset(0); opacity: 1; transform: translateX(0) scale(1); }
  to { clip-path: inset(0 0 0 2%); opacity: 0; transform: translateX(-6px) scale(1.002); }
}

@keyframes project-image-out-previous {
  from { clip-path: inset(0); opacity: 1; transform: translateX(0) scale(1); }
  to { clip-path: inset(0 2% 0 0); opacity: 0; transform: translateX(6px) scale(1.002); }
}

@keyframes project-copy-rise {
  from { clip-path: inset(100% 0 0); opacity: 0; transform: translateY(16px); }
  to { clip-path: inset(0); opacity: 1; transform: translateY(0); }
}

@keyframes project-index-next {
  from { opacity: 0; clip-path: inset(0 0 0 12%); transform: translateX(12px); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: translateX(0); }
}

@keyframes project-index-previous {
  from { opacity: 0; clip-path: inset(0 12% 0 0); transform: translateX(-12px); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: translateX(0); }
}

.project-lightbox {
  width: calc(100% - 2rem);
  height: calc(100svh - 2rem);
  max-width: none;
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: #07130f;
  color: #ffffff;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.project-lightbox[open] {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 168px;
  animation: lightbox-in 340ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-lightbox[open].is-closing {
  animation: lightbox-out 220ms ease both;
}

.project-lightbox::backdrop {
  background: rgba(3, 9, 7, 0.82);
  backdrop-filter: blur(10px);
}

.project-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(5, 17, 12, 0.55);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  backdrop-filter: blur(10px);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, background-color 220ms ease;
}

.project-lightbox__close:hover,
.project-lightbox__close:focus-visible {
  border-color: var(--accent);
  background: rgba(217, 161, 94, 0.22);
  transform: translateY(-2px);
}

.project-lightbox__media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #050a08;
}

.project-lightbox__image.is-incoming {
  animation: lightbox-image-in 820ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.project-lightbox__image.is-outgoing {
  animation: lightbox-image-out 820ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.project-lightbox__media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
}

.project-lightbox__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  min-height: 0;
  overflow: hidden;
  padding: 1.35rem clamp(1.25rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.project-lightbox__copy {
  min-width: 0;
}

.project-lightbox__copy > span,
.project-lightbox__controls > span {
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
}

.project-lightbox__copy > span {
  text-transform: uppercase;
}

.project-lightbox__footer strong {
  display: block;
  margin-top: 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2.2rem);
  font-weight: 600;
}

.project-lightbox__footer p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.project-lightbox__controls {
  display: grid;
  grid-template-columns: 42px auto 42px;
  gap: 0.65rem;
  align-items: center;
}

.project-lightbox__controls button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

@keyframes lightbox-in {
  from { opacity: 0; transform: translateY(22px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lightbox-out {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(14px) scale(0.99); }
}

@keyframes lightbox-image-in {
  from { clip-path: inset(0 3% 0 3%); opacity: 0.04; transform: scale(1.006); }
  to { clip-path: inset(0); opacity: 1; transform: scale(1); }
}

@keyframes lightbox-image-out {
  from { clip-path: inset(0); opacity: 1; transform: scale(1); }
  to { clip-path: inset(0 2.25% 0 2.25%); opacity: 0; transform: scale(0.996); }
}

@keyframes lightbox-image-in-next {
  from { clip-path: inset(0 3.5% 0 0); opacity: 0.04; transform: translateX(8px) scale(1.003); }
  to { clip-path: inset(0); opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes lightbox-image-in-previous {
  from { clip-path: inset(0 0 0 3.5%); opacity: 0.04; transform: translateX(-8px) scale(1.003); }
  to { clip-path: inset(0); opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes lightbox-image-out-next {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-6px); }
}

@keyframes lightbox-image-out-previous {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(6px); }
}

.section--dark::before {
  content: "";
  position: absolute;
  top: 0;
  right: -4rem;
  width: min(42vw, 620px);
  height: 100%;
  opacity: 0.055;
  background: repeating-linear-gradient(var(--signature-angle), #ffffff 0 1px, transparent 1px var(--signature-gap));
  filter: blur(0.25px);
  mask-image: linear-gradient(90deg, transparent, #000 26%, #000 88%, transparent);
  pointer-events: none;
}

.process-layout {
  position: relative;
  z-index: 1;
  display: block;
}

.process-copy {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  column-gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.process-copy .eyebrow,
.process-copy h2 {
  grid-column: 1;
}

.process-copy .eyebrow {
  grid-row: 1;
}

.process-copy h2 {
  grid-row: 2;
}

.process-copy h2,
.contact-copy h2 {
  color: var(--on-deep);
}

.process-copy > p:last-child {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--on-deep-soft);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  margin: clamp(3.5rem, 7vw, 6rem) 0 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.process-list li {
  position: relative;
  min-height: 230px;
  display: block;
  padding: 0;
}

.process-list li > span {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(221, 167, 96, 0.6);
  background: var(--deep);
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
}

.process-list h3 {
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  color: var(--on-deep);
  font-family: "Sora", sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
}

.process-list p {
  margin: 0.5rem 0 0;
  color: var(--on-deep-soft);
}

.quality-section {
  background: var(--surface-soft);
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.quality-panel {
  position: sticky;
  top: 118px;
  max-width: 540px;
}

.quality-panel > p:last-child {
  margin-top: 1.4rem;
}

.quality-points {
  display: block;
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.quality-points > div {
  min-height: 136px;
  display: grid;
  grid-template-columns: 46px minmax(150px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.quality-points__number {
  color: var(--accent-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.quality-points strong,
.quality-points > div > span:last-child {
  display: block;
}

.quality-points strong {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.quality-points > div > span:last-child {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

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

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

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

.faq-item__question {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 38px 1fr 32px;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 750;
  text-align: left;
}

.faq-item__question strong {
  font-weight: 750;
}

.faq-item__question:focus-visible {
  outline: none;
  background: color-mix(in srgb, var(--accent) 5%, transparent);
  box-shadow: inset 2px 0 var(--accent);
}

.faq-item__icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 220ms ease, background-color 220ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item__icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--moss);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item__icon i:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: scale(0.96);
}

.faq-item.is-open .faq-item__icon i:last-child {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-item__number {
  color: var(--accent-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-8px);
  transition: grid-template-rows 420ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item__answer > div {
  overflow: hidden;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.faq-item__answer p {
  max-width: 680px;
  padding: 0 3.9rem 1.7rem 3.4rem;
  font-size: 0.96rem;
}

.contact-section {
  overflow: hidden;
  background: var(--deep-soft);
  color: var(--on-deep);
}

.contact-section::before {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -1rem;
  width: 560px;
  height: 460px;
  opacity: 0.055;
  background: repeating-linear-gradient(var(--signature-angle), #ffffff 0 1px, transparent 1px var(--signature-gap));
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 58%, transparent 100%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 clamp(1rem, 2vw, 2rem);
}

.contact-copy {
  position: static;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 clamp(1rem, 2vw, 2rem);
  align-items: end;
}

.contact-copy .eyebrow,
.contact-copy h2 {
  grid-column: 1 / span 8;
}

.contact-copy .eyebrow {
  grid-row: 1;
}

.contact-copy h2 {
  grid-row: 2;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 1.01;
}

.contact-copy > p {
  grid-column: 9 / -1;
  grid-row: 2;
  margin: 0;
  color: var(--on-deep-soft);
}

.contact-copy .eyebrow--dark {
  color: var(--accent);
}

.contact-methods {
  grid-column: 9 / -1;
  grid-row: 3;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.contact-methods a {
  display: inline-block;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--accent);
  color: var(--on-deep);
  font-weight: 750;
}

.contact-form {
  grid-column: 4 / -1;
  display: grid;
  gap: 1.4rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  border-radius: var(--radius-shell);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-large);
}

.contact-form__header {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.contact-form__index {
  color: var(--accent-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-form__header strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.form-row {
  display: grid;
  gap: 1rem;
  align-items: start;
}

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

.form-field {
  min-width: 0;
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.form-field--floating {
  position: relative;
}

.form-field > label,
.form-field legend {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 750;
}

.form-field > label > span:last-child,
.form-field legend > span:last-child {
  color: var(--text-soft);
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
}

.form-field--project {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form input:not([type="radio"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  outline: none;
  background: var(--field);
  color: var(--text);
}

.contact-form input:not([type="radio"]) {
  min-height: 54px;
  padding: 0.8rem 0.95rem;
}

.form-field--floating input:not([type="radio"]) {
  padding: 1.2rem 0.95rem 0.35rem;
}

.form-field--floating textarea {
  padding: 2.05rem 0.95rem 0.75rem;
}

.form-field--floating > label {
  position: absolute;
  top: 17px;
  right: 0.95rem;
  left: 0.95rem;
  width: auto;
  z-index: 1;
  color: var(--text-soft);
  pointer-events: none;
  transform-origin: left top;
  transition: top 160ms ease, color 160ms ease, font-size 160ms ease;
}

.form-field--floating:has(input:focus) > label,
.form-field--floating:has(input:not(:placeholder-shown)) > label,
.form-field--floating:has(textarea:focus) > label,
.form-field--floating:has(textarea:not(:placeholder-shown)) > label {
  top: 6px;
  color: var(--moss);
  font-size: 0.64rem;
}

.form-field--floating:has(input.invalid) > label,
.form-field--floating:has(textarea.invalid) > label {
  color: var(--danger);
}

.contact-form textarea {
  min-height: 124px;
  padding: 0.9rem 0.95rem;
  line-height: 1.55;
  resize: vertical;
}

.contact-form .form-field--floating textarea {
  padding: 1.2rem 0.95rem 0.85rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--text-soft) 66%, transparent);
}

.form-field--floating input::placeholder,
.form-field--floating textarea::placeholder {
  color: transparent;
  transition: color 180ms ease;
}

.form-field--floating input:focus::placeholder,
.form-field--floating textarea:focus::placeholder {
  color: color-mix(in srgb, var(--text-soft) 58%, transparent);
}

.contact-form input:not([type="radio"]):focus,
.contact-form textarea:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--moss) 13%, transparent);
}

.project-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.project-option {
  position: relative;
  min-width: 0;
  min-height: 94px;
  display: grid;
  grid-template-rows: 42px 1fr;
  gap: 0.6rem;
  align-content: start;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--field);
  color: var(--text-soft);
  cursor: pointer;
}

.project-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.project-option:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.project-option:has(input:focus-visible) {
  outline: 3px solid color-mix(in srgb, var(--accent) 70%, transparent);
  outline-offset: 3px;
}

.project-option__swatch {
  display: block;
  border: 1px solid color-mix(in srgb, var(--line-strong) 70%, transparent);
  border-radius: var(--radius-detail);
  background-color: var(--surface-soft);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(0.88) contrast(1.03);
  transition: filter 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-option__swatch--parquet {
  background-image: url("../assets/material-parkett.svg");
}

.project-option__swatch--vinyl {
  background-image: url("../assets/material-vinyl.svg");
}

.project-option__swatch--laminate {
  background-image: url("../assets/material-laminat.svg");
}

.project-option__swatch--renovation {
  background-image: url("../assets/material-renovation.svg");
}

.project-option__swatch--stairs {
  background-image: url("../assets/material-stairs.svg");
}

.project-option:hover .project-option__swatch,
.project-option:has(input:checked) .project-option__swatch {
  filter: saturate(0.72) contrast(1.06);
  transform: scale(1.018);
}

.project-option__label {
  min-width: 0;
  align-self: center;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.25;
}

.validation-message {
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 750;
  animation: validation-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-form .invalid:not([type="radio"]) {
  border-color: var(--danger);
  animation: invalid-field-in 320ms ease both;
}

@keyframes validation-in {
  from { clip-path: inset(0 100% 0 0); transform: translateY(-4px); }
  to { clip-path: inset(0 0 0 0); transform: translateY(0); }
}

@keyframes invalid-field-in {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--danger) 0%, transparent); }
  50% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--danger) 12%, transparent); }
}

.form-submit {
  display: grid;
  grid-template-columns: minmax(190px, 0.62fr) minmax(0, 1.38fr);
  gap: 1.25rem;
  align-items: center;
  padding-top: 0.2rem;
}

.contact-form .button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.5;
}

.site-footer {
  position: relative;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--deep);
  color: var(--on-deep);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: -4%;
  width: 46%;
  height: 100%;
  opacity: 0.09;
  background: repeating-linear-gradient(var(--signature-angle), rgba(217, 161, 94, 0.52) 0 1px, transparent 1px var(--signature-gap));
  mask-image: linear-gradient(90deg, transparent, #000 34%);
  pointer-events: none;
}

.footer-shell {
  width: min(1900px, calc(100% - 4rem));
}

.footer-contact-row {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: end;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-contact-lead span {
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-contact-lead h2 {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: var(--on-deep);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 600;
  line-height: 0.98;
}

.footer-contact-action {
  min-width: 0;
}

.footer-email {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 0 0 1.15rem;
  border: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 2.35vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
  transition: color 260ms ease;
}

.footer-email::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(84px, 18%, 170px);
  height: 1px;
  background: var(--accent);
  opacity: 0.66;
  transition: width 420ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.footer-email span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: var(--accent);
}

.footer-email:hover::after,
.footer-email:focus-visible::after {
  width: clamp(120px, 28%, 250px);
  opacity: 1;
}

.footer-contact-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.5rem;
}

.footer-contact-meta p {
  margin: 0;
  color: var(--on-deep-soft);
  font-size: 0.78rem;
}

.footer-contact-details {
  display: grid;
  gap: 0.3rem;
}

.footer-contact-details a {
  width: max-content;
  color: var(--on-deep);
  font-weight: 700;
  transition: color 220ms ease;
}

.footer-contact-details a:hover,
.footer-contact-details a:focus-visible {
  color: var(--accent);
}

.footer-inquiry {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.045);
  color: var(--on-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms ease, color 240ms ease, background-color 240ms ease;
}

.footer-inquiry > span:last-child {
  color: var(--accent);
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.footer-inquiry .material-symbol {
  width: 1em;
  height: 1em;
  display: grid;
  place-items: center;
  overflow: visible;
}

.footer-inquiry:hover,
.footer-inquiry:focus-visible {
  border-color: var(--accent);
  background: rgba(217, 161, 94, 0.12);
  color: var(--on-deep);
  transform: translateY(-2px);
}

.footer-inquiry:hover > span:last-child,
.footer-inquiry:focus-visible > span:last-child {
  transform: translateX(4px);
}

.footer-directory {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr) auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 132px;
  padding: 2rem 0;
}

.footer-scope {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.8rem;
  color: var(--on-deep-soft);
  font-size: 0.8rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
}

.site-footer--compact .footer-directory {
  min-height: 132px;
}

.footer-utility-email {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--on-deep-soft);
  transition: color 220ms ease;
}

.footer-utility-email:hover,
.footer-utility-email:focus-visible {
  color: var(--accent);
}

.footer-utility-contact {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}

.footer-utility-contact a {
  color: var(--on-deep-soft);
  transition: color 220ms ease;
}

.footer-utility-contact a:hover,
.footer-utility-contact a:focus-visible {
  color: var(--accent);
}

.legal-page {
  min-height: calc(100svh - 220px);
  padding: clamp(8.5rem, 12vw, 11rem) 0 clamp(5rem, 9vw, 8rem);
  background: var(--canvas);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.legal-heading {
  position: sticky;
  top: 118px;
  max-width: 430px;
}

.legal-heading h1,
.not-found-page h1 {
  font-size: clamp(2.8rem, 4.4vw, 4.5rem);
  line-height: 1.03;
}

.legal-heading h1 {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.legal-heading > p:last-child,
.not-found-page .container > p {
  max-width: 600px;
  margin: 1.2rem 0 0;
  color: var(--text-soft);
  font-size: 1.04rem;
}

.legal-content {
  padding: clamp(1.35rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-shell);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.legal-section {
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 0.65rem;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.legal-content p {
  margin: 0;
  color: var(--text-soft);
  white-space: pre-line;
}

.legal-placeholder {
  padding: 1rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.not-found-page .button {
  margin-top: 1.8rem;
}

.loading-shell {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.5rem;
  overflow: hidden;
  padding: 2rem;
  background: var(--loader-bg);
  color: var(--on-deep);
}

.loading-shell::before {
  content: "";
  position: absolute;
  inset: -15%;
  opacity: 0.14;
  background: repeating-linear-gradient(var(--signature-angle), rgba(223, 168, 98, 0.6) 0 1px, transparent 1px var(--signature-gap));
  filter: blur(0.35px);
  animation: loading-slats 2.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.loading-shell__meta,
.loading-shell__status {
  position: relative;
  z-index: 1;
  color: rgba(244, 250, 246, 0.78);
  font-size: 0.7rem;
  font-weight: 800;
}

.loading-wordmark {
  position: relative;
  z-index: 1;
  color: var(--on-deep);
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
}

.loading-identity {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.5rem);
  animation: loading-wordmark 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.loading-identity > img {
  width: clamp(48px, 7vw, 72px);
  height: clamp(48px, 7vw, 72px);
  flex: 0 0 auto;
  border-radius: var(--radius-control);
  background: #f4f3ef;
  object-fit: contain;
}

.loading-wordmark span {
  color: var(--accent);
}

.loading-track {
  position: relative;
  z-index: 1;
  width: min(360px, 72vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 18px rgba(223, 168, 98, 0.12);
}

.loading-track span {
  width: 100%;
  height: 100%;
  display: block;
  transform: translateX(-100%);
  background: var(--accent);
  animation: loading-track 2.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes loading-wordmark {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loading-track {
  0% { transform: translateX(-100%); }
  58%, 100% { transform: translateX(100%); }
}

@keyframes loading-slats {
  from { opacity: 0.025; transform: translateX(10%); }
  to { opacity: 0.14; transform: translateX(0); }
}

#blazor-error-ui {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1000;
  display: none;
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 3.25rem 1rem 1rem;
  border: 1px solid rgba(167, 53, 43, 0.3);
  border-radius: var(--radius-shell);
  background: #fff3f1;
  color: #701b15;
  box-shadow: var(--shadow-large);
}

#blazor-error-ui .reload {
  margin-left: 0.5rem;
  font-weight: 800;
  text-decoration: underline;
}

#blazor-error-ui .dismiss {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.5rem;
  cursor: pointer;
}

@keyframes process-step-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    clip-path: inset(100% 0 0 0);
    transform: translateY(26px);
    transition: clip-path 680ms cubic-bezier(0.16, 1, 0.3, 1), transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: clip-path, transform;
  }

  .js [data-reveal].is-visible {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }

  .js .process-list[data-reveal] {
    clip-path: none;
    transform: none;
    transition: none;
  }

  .js .process-list[data-reveal] li {
    opacity: 0;
  }

  .js .process-list[data-reveal].is-visible li {
    animation: process-step-rise 640ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .js .process-list[data-reveal].is-visible li:nth-child(2) { animation-delay: 110ms; }
  .js .process-list[data-reveal].is-visible li:nth-child(3) { animation-delay: 220ms; }
  .js .process-list[data-reveal].is-visible li:nth-child(4) { animation-delay: 330ms; }

  .button,
  .nav-cta,
  .faq-item__question {
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease, filter 200ms ease;
  }

  .button:hover,
  .nav-cta:hover {
    transform: translateY(-2px);
  }

  .hero__media {
    animation: hero-settle 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes hero-settle {
    from { transform: scale(1.045); }
    to { transform: scale(1); }
  }
}

@media (hover: none) {
  .project-showcase__controls button:hover,
  .project-lightbox__controls button:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #ffffff;
    transform: none;
  }

  .service-focus__controls button:hover {
    border-color: var(--line-strong);
    color: var(--text);
    transform: none;
  }
}

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

  .material-marquee {
    overflow-x: auto;
  }

  .material-marquee__track {
    animation: none !important;
    transform: none !important;
  }

  .material-marquee__group:nth-child(2) {
    display: none;
  }
}

@media (min-width: 1700px) {
  .container {
    width: min(1500px, calc(100% - 8rem));
  }

  .hero__stage {
    width: min(1840px, calc(100% - 8rem));
  }

  .project-shell,
  .footer-shell {
    width: min(1900px, calc(100% - 8rem));
  }

  .hero h1 {
    font-size: 6.2rem;
  }

  .project-showcase {
    height: clamp(760px, 42vw, 900px);
    grid-template-columns: minmax(0, 1fr) minmax(420px, 25%);
  }

  .project-showcase__copy h3 {
    font-size: 3rem;
  }

  .project-lightbox {
    width: calc(100% - 3rem);
    height: calc(100svh - 3rem);
  }

  .footer-contact-row {
    min-height: 480px;
  }

  .footer-email {
    font-size: 2.7rem;
  }
}

@media (min-width: 1081px) and (max-width: 1200px) {
  .hero__stage {
    grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.45fr);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: 4.35rem;
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    display: flex;
    min-height: 60px;
    padding: 0.4rem 0.5rem 0.4rem 0.65rem;
  }

  .brand {
    margin-right: auto;
  }

  .header-tools {
    order: 1;
  }

  .nav-cta {
    order: 2;
  }

  .nav-toggle {
    order: 3;
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0.45rem;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--nav-glass-border);
    border-radius: var(--radius-shell);
    background-color: var(--nav-glass-background);
    background-image: var(--nav-glass-overlay);
    color: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 24px 70px rgba(2, 9, 6, 0.34);
    -webkit-backdrop-filter: var(--nav-glass-filter);
    backdrop-filter: var(--nav-glass-filter);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top;
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 220ms;
  }

  .nav-links::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 28% 72%, rgba(217, 161, 94, 0.045));
    pointer-events: none;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
  }

  .is-nav-breakpoint-changing .nav-links {
    transition: none !important;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.65rem 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a::after {
    display: none;
  }

  body:has(.hero) .site-header .nav-links.is-open a {
    color: rgba(255, 255, 255, 0.8);
  }

  body:has(.hero) .site-header .nav-links.is-open a:hover,
  body:has(.hero) .site-header .nav-links.is-open a:focus-visible {
    color: #ffffff;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__stage {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero__facts {
    width: 100%;
    justify-self: stretch;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero__facts > div {
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero__facts > div + div {
    padding-left: 1rem;
  }

  .intro-grid,
  .section-heading--split,
  .contact-grid,
  .faq-grid,
  .quality-grid,
  .process-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .section-heading--split {
    gap: 2.5rem;
  }

  .intro-grid__body {
    padding-top: 0;
  }

  .legal-heading {
    position: static;
  }

  .service-explorer {
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  }

  .project-showcase {
    height: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .project-showcase__media {
    min-height: 540px;
  }

  .project-showcase__panel {
    min-height: 456px;
    grid-template-rows: minmax(300px, 1fr) auto;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .project-showcase__copy {
    min-height: 300px;
  }

  .project-index {
    min-height: 156px;
    max-height: 156px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-index__item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .footer-contact-row {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 4.5rem 0;
  }

  .footer-contact-lead {
    grid-column: auto;
  }

  .footer-email {
    font-size: clamp(1.9rem, 5vw, 2.8rem);
  }

  .footer-directory {
    grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.3fr);
  }

  .footer-meta {
    grid-column: 1 / -1;
    justify-content: flex-end;
    padding-bottom: 1.5rem;
  }

  .contact-grid {
    gap: 0;
  }

  .contact-form {
    grid-column: 1;
  }

  .quality-panel {
    position: static;
  }

  .quality-points {
    margin-top: 3rem;
  }

  .faq-grid,
  .legal-layout {
    gap: 3rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 3rem);
  }

  .nav-shell {
    width: calc(100% - 1.25rem);
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 7.25rem 0 2.5rem;
    align-items: flex-start;
  }

  .hero__media {
    background-position: 67% calc(50% + var(--hero-offset, 0px));
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(8, 24, 18, 0.94), rgba(8, 24, 18, 0.52)),
      linear-gradient(0deg, rgba(8, 24, 18, 0.62), rgba(8, 24, 18, 0.12));
  }

  .hero h1 {
    max-width: 100%;
    font-size: 3rem;
    overflow-wrap: normal;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__stage {
    gap: 2.5rem;
  }

  .hero__content {
    min-height: calc(100svh - 9.75rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

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

  .hero__facts > div,
  .hero__facts > div + div {
    min-height: 68px;
    padding: 0.72rem 0.9rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero__facts small {
    display: none;
  }

  .section {
    padding: 5.5rem 0;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .intro-grid h2,
  .contact-copy h2 {
    font-size: clamp(2.65rem, 11vw, 4rem);
  }

  .material-marquee__item {
    min-width: 270px;
    min-height: 72px;
    grid-template-columns: 25px minmax(0, 1fr) 46px;
    gap: 0.75rem;
    padding: 0 1.25rem;
  }

  .material-marquee__item span {
    font-size: 0.66rem;
  }

  .material-marquee__sample {
    width: 46px;
    height: 10px;
  }

  .service-explorer {
    grid-template-columns: 1fr;
  }

  .service-selector {
    display: none;
  }

  .service-focus {
    height: 570px;
    min-height: 570px;
    padding: 1.5rem;
  }

  .service-focus__body {
    min-height: 0;
  }

  .service-focus__body h3 {
    margin-top: auto;
    font-size: 2.35rem;
  }

  .service-focus__sample {
    height: 68px;
  }

  .service-focus__sample-stage {
    height: 68px;
  }

  .project-showcase__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .project-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: visible;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 0;
  }

  .project-filter {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    justify-content: space-between;
    padding: 0.7rem 0.75rem 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .project-filter:nth-child(even) {
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .project-filter--overview {
    margin-right: 0;
    padding-right: 0.75rem;
  }

  .project-filter--overview::before {
    display: none;
  }

  .project-showcase__copy {
    min-height: 300px;
    padding: 1.5rem;
  }

  .project-showcase__copy h3 {
    font-size: 2rem;
  }

  .project-index {
    min-height: 92px;
    max-height: 92px;
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 11vw;
    scrollbar-width: none;
  }

  .project-index::-webkit-scrollbar {
    display: none;
  }

  .project-index__item,
  .project-index__item:nth-child(odd) {
    min-width: min(280px, 78vw);
    min-height: 92px;
    flex: 0 0 min(280px, 78vw);
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 0;
    scroll-snap-align: center;
  }

  .project-lightbox {
    width: 100%;
    height: 100svh;
    border: 0;
    border-radius: 0;
  }

  .project-lightbox[open] {
    grid-template-rows: minmax(0, 1fr) 230px;
  }

  .project-lightbox__image.is-incoming.is-next {
    animation-name: lightbox-image-in-next;
  }

  .project-lightbox__image.is-incoming.is-previous {
    animation-name: lightbox-image-in-previous;
  }

  .project-lightbox__image.is-outgoing.is-next {
    animation-name: lightbox-image-out-next;
  }

  .project-lightbox__image.is-outgoing.is-previous {
    animation-name: lightbox-image-out-previous;
  }

  .project-lightbox__footer {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .project-lightbox__controls {
    justify-self: start;
  }

  .process-copy,
  .quality-panel,
  .contact-copy {
    display: block;
  }

  .process-copy > p:last-child,
  .quality-panel > p:last-child,
  .contact-copy > p {
    margin-top: 1.35rem;
  }

  .contact-methods {
    margin-top: 1.5rem;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 3rem;
  }

  .process-list::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 16px;
    width: 1px;
    height: auto;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(2) {
    min-height: 0;
    padding: 0 0 2.75rem;
    border: 0;
  }

  .process-list li > span {
    position: absolute;
    top: 0;
    left: -3rem;
  }

  .process-list h3 {
    margin: 0;
  }

  .quality-points > div,
  .quality-points > div:nth-child(even) {
    min-height: 0;
    grid-template-columns: 36px 1fr;
    gap: 0.35rem 1rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--line);
  }

  .quality-points > div > span:last-child {
    grid-column: 2;
  }

  .quality-points strong {
    margin: 0;
  }

  .form-row--two {
    grid-template-columns: 1fr;
  }

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

  .footer-contact-row {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 2.75rem;
    padding: 3.75rem 0;
  }

  .footer-contact-lead {
    grid-column: auto;
  }

  .footer-email {
    max-width: 100%;
    font-size: 1.45rem;
    overflow-wrap: anywhere;
  }

  .footer-contact-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .footer-inquiry {
    width: fit-content;
    min-width: 0;
  }

  .footer-directory {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.75rem 0 2.5rem;
  }

  .footer-meta {
    grid-column: auto;
    justify-content: space-between;
    padding-bottom: 0;
  }
}

@media (max-width: 540px) {
  .nav-shell {
    gap: 0.5rem;
  }

  .nav-cta {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
  }

  .nav-cta__label {
    display: none;
  }

  .nav-cta__icon {
    display: block;
  }

  .theme-toggle,
  .nav-toggle {
    width: 38px;
  }

  .language-switch {
    grid-template-columns: repeat(2, 29px);
  }

  .language-switch a {
    min-width: 29px;
  }

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

  .hero h1 {
    font-size: 2.5rem;
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
  }

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

  .project-option:last-child {
    grid-column: 1 / -1;
  }

  .form-submit {
    grid-template-columns: 1fr;
  }

  .contact-form__header {
    grid-template-columns: 32px 1fr;
  }

  .faq-item__question {
    grid-template-columns: 30px 1fr 30px;
    gap: 0.65rem;
  }

  .faq-item__answer p {
    padding: 0 0 1.5rem 2.55rem;
  }
}

@media (max-width: 430px) {
  .container {
    width: calc(100% - 2rem);
  }

  .nav-shell {
    width: calc(100% - 0.9rem);
  }

  .brand__copy {
    display: none;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .project-showcase__media {
    min-height: 0;
  }

}
