:root {
  --ink: #17130f;
  --muted: #6b6258;
  --paper: #f8f5ef;
  --panel: #fffdf8;
  --line: rgba(43, 33, 23, 0.13);
  --gold: #bd8950;
  --gold-dark: #83552e;
  --gold-text: #7f4f27;
  --forest: #1f3d36;
  --sage: #d8ded0;
  --clay: #a86648;
  --cream-glass: rgba(255, 250, 241, 0.72);
  --shadow: 0 28px 90px rgba(37, 28, 18, 0.16);
  --shadow-soft: 0 18px 50px rgba(37, 28, 18, 0.1);
  --radius: 28px;
  --radius-lg: 42px;
  --pill: 999px;
}

@font-face {
  font-family: "Google Sans Local";
  src: url("assets/fonts/profa-font-family/GoogleSans-Medium-latin.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 32px), 1180px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--pill);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.54),
      rgba(255, 250, 241, 0.22)
    ),
    rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(1.45);
  -webkit-backdrop-filter: blur(24px) saturate(1.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    0 18px 60px rgba(13, 10, 7, 0.18);
  transition:
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(
      135deg,
      rgba(255, 253, 248, 0.92),
      rgba(246, 238, 225, 0.78)
    ),
    rgba(255, 253, 248, 0.9);
  border-color: rgba(43, 33, 23, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 54px rgba(37, 28, 18, 0.16);
}

.site-header.is-scrolled .main-nav {
  border-color: rgba(43, 33, 23, 0.12);
  background: rgba(255, 255, 255, 0.42);
}

.site-header.is-scrolled .main-nav a {
  color: rgba(23, 19, 15, 0.82);
}

.site-header.is-scrolled .main-nav .nav-cta {
  color: #fff9ef;
}

section[id] {
  scroll-margin-top: 104px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 38px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.94rem;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--pill);
  padding: 4px;
  background: rgba(255, 255, 255, 0.18);
}

.main-nav a,
.nav-link {
  border-radius: var(--pill);
  padding: 9px 12px;
  color: rgba(23, 19, 15, 0.74);
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.main-nav a:hover,
.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.7;
  transition: transform 180ms ease;
}

.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 238px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 253, 248, 0.94),
    rgba(244, 235, 222, 0.84)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 24px 64px rgba(24, 18, 12, 0.18);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto;
  height: 14px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  min-height: 38px;
  border-radius: 16px;
  padding: 9px 12px;
  color: rgba(23, 19, 15, 0.76);
  font-size: 0.84rem;
}

.nav-dropdown a:hover {
  background: rgba(189, 137, 80, 0.14);
  color: var(--ink);
}

.main-nav .nav-cta {
  background: linear-gradient(135deg, #241a13, #0f0c09);
  color: #fff9ef;
  padding-inline: 15px;
  box-shadow: 0 10px 28px rgba(23, 19, 15, 0.2);
}

.main-nav .nav-cta:hover {
  background: var(--gold-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 48px;
  isolation: isolate;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  overflow: hidden;
}

.sub-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 790px) minmax(320px, 360px);
  gap: clamp(28px, 3.4vw, 42px);
  align-items: end;
  padding: 128px max(24px, calc((100vw - 1180px) / 2)) 48px;
  overflow: hidden;
  isolation: isolate;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  background: var(--ink);
  color: #fffaf1;
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(15, 12, 9, 0.82),
      rgba(15, 12, 9, 0.5) 48%,
      rgba(15, 12, 9, 0.18)
    ),
    linear-gradient(180deg, rgba(15, 12, 9, 0.12), rgba(15, 12, 9, 0.72));
}

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

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

.sub-hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.sub-hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  padding-bottom: 8px;
}

.sub-hero-content h1 {
  max-width: 790px;
  font-size: clamp(3rem, 4.65vw, 4.8rem);
  line-height: 0.98;
}

.sub-hero-content h1 span {
  display: block;
  white-space: nowrap;
}

.sub-hero-content > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.6;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: var(--pill);
  padding: 8px 13px;
  background: rgba(255, 250, 241, 0.1);
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.sub-hero-panel {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 2;
  width: 100%;
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  padding: 18px;
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(239, 194, 127, 0.2),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 250, 241, 0.21),
      rgba(255, 250, 241, 0.08)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(1.32);
  -webkit-backdrop-filter: blur(22px) saturate(1.32);
}

.panel-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-kicker span,
.sub-hero-panel p,
.panel-tags span,
.panel-metrics span {
  color: rgba(255, 250, 241, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-kicker strong {
  border-radius: var(--pill);
  padding: 7px 10px;
  background: rgba(255, 250, 241, 0.12);
  color: #fffaf1;
  font-size: 0.72rem;
  line-height: 1;
}

.sub-hero-panel h2 {
  max-width: 300px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.52rem;
  line-height: 1.02;
  color: #fffaf1;
}

.sub-hero-panel p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.86rem;
  line-height: 1.45;
  text-transform: none;
  font-weight: 700;
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.panel-tags span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pill);
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.7rem;
}

.panel-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.panel-metrics div {
  border-radius: 20px;
  padding: 12px;
  background: rgba(20, 15, 11, 0.22);
}

.panel-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: #efc27f;
  font-size: 1.15rem;
  line-height: 1;
}

.panel-metrics span {
  display: block;
  color: rgba(255, 250, 241, 0.66);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

.panel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.panel-call-button,
.panel-mail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--pill);
  padding: 0 14px;
  font-size: 0.78rem;
  font-weight: 900;
}

.panel-call-button {
  background: #efc27f;
  color: #20140b;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.panel-mail-button {
  border: 1px solid rgba(255, 250, 241, 0.22);
  background: rgba(255, 250, 241, 0.1);
  color: #fffaf1;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-media picture,
.service-card.feature picture,
.process-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(14, 12, 9, 0.74) 0%,
      rgba(14, 12, 9, 0.42) 46%,
      rgba(14, 12, 9, 0.16) 100%
    ),
    linear-gradient(180deg, rgba(14, 12, 9, 0.1), rgba(14, 12, 9, 0.7));
}

.hero-content {
  min-width: 0;
  width: 100%;
  max-width: 680px;
  color: #fffaf1;
}

.hero .reveal {
  transform: none;
  opacity: 1;
  animation: heroIn 720ms ease both;
}

.hero .hero-card {
  animation-delay: 140ms;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-text);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #efc27f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-family:
    "Google Sans Local",
    Montserrat,
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(2.8rem, 6.2vw, 5.45rem);
  font-weight: 500;
}

.hero-content h1 span {
  display: block;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3.35vw, 3.15rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 24px;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  line-height: 1.62;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--pill);
  padding: 0 18px;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(23, 19, 15, 0.14);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(23, 19, 15, 0.2);
}

.button.primary {
  background: var(--gold);
  color: #1f140b;
}

.button.primary:hover {
  background: #d09d63;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fffaf1;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  margin-top: 18px;
}

.hero-proof-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: var(--pill);
  padding: 7px 12px;
  background: rgba(255, 250, 241, 0.1);
  color: rgba(255, 250, 241, 0.84);
  font-size: 0.74rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.proof-duplicate {
  display: none;
}

.hero-card {
  align-self: end;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 250, 241, 0.2),
    rgba(255, 250, 241, 0.08)
  );
  color: #fffaf1;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.hero-card div {
  display: grid;
  gap: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 14px;
}

.hero-card div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-card span {
  color: rgba(255, 250, 241, 0.62);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card a,
.hero-card strong {
  font-size: 0.92rem;
}

.section-pad {
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 44px;
  background:
    radial-gradient(
      circle at 12% 22%,
      rgba(189, 137, 80, 0.12),
      transparent 28%
    ),
    var(--panel);
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: 48px;
  background:
    radial-gradient(
      circle at 12% 22%,
      rgba(189, 137, 80, 0.1),
      transparent 28%
    ),
    var(--panel);
}

.rich-copy {
  align-self: end;
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.rich-copy p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 730px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.intro-text {
  align-self: end;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

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

.quality-card,
.service-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.quality-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.quality-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(189, 137, 80, 0.1);
}

.quality-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 14px 0 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0c17e, #a96f3e);
  color: #21150c;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(131, 85, 46, 0.22);
}

.quality-card span,
.steps span {
  color: var(--gold-dark);
  font-weight: 900;
}

.quality-card p,
.service-card p,
.steps p,
.faq-list p,
.site-footer p,
address {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.services {
  background:
    radial-gradient(circle at 86% 18%, rgba(31, 61, 54, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(31, 61, 54, 0.07), transparent 34%),
    var(--paper);
}

.image-feature {
  background:
    radial-gradient(circle at 86% 18%, rgba(31, 61, 54, 0.1), transparent 26%),
    var(--paper);
}

.image-feature-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  background: var(--cream-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.image-feature-card img {
  width: 100%;
  min-height: 320px;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.image-feature-card div {
  padding: 18px 22px 18px 0;
}

.image-feature-card p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

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

.benefit-card,
.type-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.benefit-card {
  padding: 20px;
}

.benefit-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0c17e, #a96f3e);
  color: #21150c;
  font-size: 0.82rem;
  font-weight: 900;
}

.benefit-card p,
.type-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.parkett-types {
  background: var(--panel);
}

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

.type-card {
  overflow: hidden;
  padding: 14px;
}

.type-card img,
.pattern-card {
  width: 100%;
  aspect-ratio: 1.18;
  border-radius: 24px;
  object-fit: cover;
}

.type-card h3,
.type-card p {
  margin-inline: 10px;
}

.type-card h3 {
  margin-top: 16px;
}

.gallery-section {
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(189, 137, 80, 0.1),
      transparent 28%
    ),
    var(--panel);
}

.gallery-section .section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: 36px;
}

.gallery-item {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf1;
  box-shadow: var(--shadow-soft);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 656px;
}

.gallery-item-tall {
  grid-row: span 2;
  min-height: 656px;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 18px;
  padding: 9px 11px;
  background: rgba(23, 19, 15, 0.66);
  color: #fffaf1;
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.gallery-contact {
  margin-top: 0;
  margin-bottom: 92px;
}

.pattern-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 16px;
  background: linear-gradient(135deg, var(--forest), #15110d);
}

.pattern-card span {
  display: block;
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 36%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0 2px,
      transparent 2px 16px
    ),
    linear-gradient(160deg, #c98c4c, #5a2f18);
}

.pattern-card span:nth-child(2),
.pattern-card span:nth-child(3) {
  transform: rotate(90deg);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  padding: 22px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(189, 137, 80, 0.44);
  box-shadow: var(--shadow);
}

.service-card.feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1fr);
  gap: 28px;
  min-height: 320px;
  padding: 14px;
  background: #fffaf1;
}

.service-card.feature img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 22px;
  object-fit: cover;
}

.service-card.feature div {
  align-self: center;
  padding: 18px 18px 18px 0;
}

.service-mark {
  display: block;
  width: 38px;
  height: 5px;
  margin-bottom: 28px;
  border-radius: var(--pill);
  background: linear-gradient(90deg, var(--gold), rgba(31, 61, 54, 0.9));
}

.atelier {
  padding-top: 0;
  background: var(--paper);
}

.atelier-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(31, 61, 54, 0.98), rgba(23, 19, 15, 0.94)),
    var(--forest);
  color: #fffaf1;
  box-shadow: var(--shadow);
}

.atelier-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}

.atelier-copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.25rem);
}

.material-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 310px;
}

.material-swatch {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  padding: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 46px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease;
}

.material-swatch:hover {
  transform: translateY(-8px);
}

.material-swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.08),
      transparent 28%,
      rgba(0, 0, 0, 0.1) 64%,
      transparent
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.1) 0 2px,
      transparent 2px 18px
    );
  mix-blend-mode: soft-light;
}

.material-swatch span {
  position: relative;
  z-index: 1;
  border-radius: var(--pill);
  padding: 8px 12px;
  background: rgba(23, 19, 15, 0.44);
  color: #fffaf1;
  font-size: 0.75rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.material-swatch.oak {
  background: linear-gradient(160deg, #d6a15d, #7c4d25);
}

.material-swatch.walnut {
  transform: translateY(30px);
  background: linear-gradient(160deg, #7a4425, #25130d);
}

.material-swatch.walnut:hover {
  transform: translateY(22px);
}

.material-swatch.smoked {
  background: linear-gradient(160deg, #9a8772, #3a332c);
}

.process {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
  background:
    linear-gradient(
      180deg,
      rgba(255, 253, 248, 0.9),
      rgba(248, 245, 239, 0.94)
    ),
    var(--panel);
}

.process-image {
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.process-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin: 0 max(24px, calc((100vw - 1180px) / 2));
  border-radius: var(--radius-lg);
  padding: 46px;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(239, 194, 127, 0.2),
      transparent 28%
    ),
    linear-gradient(135deg, var(--forest), #18231d 70%);
  color: #fffaf1;
}

.contact-band h2 {
  max-width: 700px;
  font-size: clamp(1.9rem, 3.4vw, 3.3rem);
}

.contact-band p {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.76);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(189, 137, 80, 0.1),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 253, 248, 0.9),
      rgba(248, 245, 239, 0.96)
    ),
    var(--paper);
}

.contact-form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.contact-form-card .section-heading {
  margin-bottom: 28px;
}

.contact-form-card .section-heading p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(43, 33, 23, 0.14);
  border-radius: 18px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(189, 137, 80, 0.62);
  background: #fffdf8;
  box-shadow: 0 0 0 4px rgba(189, 137, 80, 0.14);
}

.form-consent {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  min-width: 18px;
  padding: 0;
  border-radius: 4px;
  appearance: auto;
  accent-color: var(--gold-dark);
  cursor: pointer;
}

.form-consent span {
  color: var(--muted);
  font-weight: 700;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.form-call {
  border: 1px solid rgba(43, 33, 23, 0.15);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
}

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

.contact-info-block,
.contact-direct {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 253, 248, 0.68);
  box-shadow: var(--shadow-soft);
}

.contact-info-block span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0c17e, #a96f3e);
  color: #21150c;
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-info-block p,
.contact-direct p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

.contact-direct {
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(239, 194, 127, 0.2),
      transparent 30%
    ),
    linear-gradient(135deg, var(--forest), #17130f);
  color: #fffaf1;
}

.contact-direct h3 {
  max-width: 260px;
  margin-bottom: 18px;
  color: #fffaf1;
  font-size: 1.25rem;
}

.contact-direct .eyebrow {
  color: #efc27f;
}

.contact-mail {
  display: inline-flex;
  margin-top: 14px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.button.dark.secondary {
  border-color: rgba(255, 250, 241, 0.34);
}

.faq {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(189, 137, 80, 0.09),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 253, 248, 0.9),
      rgba(248, 245, 239, 0.96)
    ),
    var(--paper);
  color: var(--ink);
}

.faq .section-heading {
  position: sticky;
  top: 118px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  background: var(--cream-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.faq .section-heading .eyebrow {
  color: #efc27f;
}

.faq .section-heading h2 {
  color: var(--ink);
}

.faq .section-heading > p:not(.eyebrow) {
  max-width: 330px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-contact-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(189, 137, 80, 0.22);
  border-radius: var(--pill);
  padding: 10px 14px;
  background: rgba(189, 137, 80, 0.1);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.faq-contact-link:hover {
  background: #efc27f;
  color: #20150d;
}

.faq-list {
  counter-reset: faq;
  display: grid;
  gap: 14px;
}

.faq-list details {
  counter-increment: faq;
  position: relative;
  overflow: hidden;
  border-color: var(--line);
  border-radius: 26px;
  padding: 0;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(239, 194, 127, 0.42);
  background:
    linear-gradient(
      135deg,
      rgba(255, 253, 248, 0.92),
      rgba(239, 194, 127, 0.1)
    ),
    var(--panel);
}

.faq-list details:hover {
  transform: translateY(-2px);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 32px;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::before {
  content: counter(faq, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(239, 194, 127, 0.16);
  color: #efc27f;
  font-size: 0.72rem;
  font-weight: 900;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(189, 137, 80, 0.2);
  border-radius: 50%;
  color: #efc27f;
  font-size: 1.2rem;
  line-height: 1;
}

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

.faq-list p {
  margin: -4px 20px 20px 78px;
  max-width: 650px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.legal-page {
  background: var(--panel);
}

.legal-layout {
  max-width: 980px;
  margin-inline: auto;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 46px);
  background: var(--cream-glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.legal-card h2 {
  margin-bottom: 26px;
}

.legal-copy {
  display: grid;
  gap: 22px;
}

.legal-copy h3 {
  margin: 0 0 -10px;
  font-size: 0.98rem;
}

.legal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

.legal-copy a {
  color: var(--gold-dark);
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 30px;
  padding: 52px max(24px, calc((100vw - 1180px) / 2)) 28px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(31, 61, 54, 0.96), rgba(23, 19, 15, 0.98)),
    var(--forest);
  color: #fffaf1;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
}

.footer-main {
  display: grid;
  grid-template-columns:
    minmax(280px, 1.35fr) minmax(150px, 0.7fr) minmax(140px, 0.58fr)
    minmax(220px, 0.78fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer .brand strong,
.site-footer .brand small,
.site-footer a {
  color: #fffaf1;
}

.footer-company p {
  max-width: 390px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span {
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: var(--pill);
  padding: 7px 10px;
  background: rgba(255, 250, 241, 0.08);
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 8px;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #efc27f;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 250, 241, 0.74);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: #efc27f;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 250, 241, 0.13);
  padding-top: 22px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 250, 241, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-bottom a {
  color: #efc27f;
  font-weight: 900;
}

address {
  font-style: normal;
  text-align: right;
}

address a {
  color: inherit;
  font-weight: 800;
}

.reveal {
  transform: translateY(18px);
  opacity: 1;
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes heroIn {
  from {
    transform: translateY(14px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes proofMarquee {
  from {
    transform: translateX(0);
  }

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

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

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

@media (max-width: 920px) {
  .site-header {
    top: 10px;
    gap: 12px;
    padding: 7px 8px 7px 12px;
  }

  .main-nav {
    border-radius: 24px;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(
      145deg,
      rgba(36, 26, 19, 0.94),
      rgba(12, 10, 8, 0.96)
    );
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 10px 24px rgba(23, 19, 15, 0.22);
    cursor: pointer;
  }

  .nav-toggle span {
    position: absolute;
    width: 15px;
    height: 2px;
    border-radius: var(--pill);
    background: #fffaf1;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .nav-toggle span:first-child {
    transform: translateY(-5px);
  }

  .nav-toggle span:nth-child(2) {
    transform: translateY(0);
  }

  .nav-toggle span:last-child {
    transform: translateY(5px);
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(0) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.3);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(0) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 62px 0 auto;
    display: grid;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(43, 33, 23, 0.13);
    border-radius: 26px;
    background: linear-gradient(
      135deg,
      rgba(255, 253, 248, 0.96),
      rgba(244, 235, 222, 0.9)
    );
    box-shadow: 0 20px 70px rgba(24, 18, 12, 0.18);
    backdrop-filter: blur(20px) saturate(1.25);
    -webkit-backdrop-filter: blur(20px) saturate(1.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.is-scrolled .main-nav {
    border-color: rgba(43, 33, 23, 0.16);
    background: linear-gradient(135deg, #fffdf8, #f3eadc), #fffdf8;
    box-shadow: 0 22px 76px rgba(24, 18, 12, 0.24);
  }

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

  .main-nav a {
    padding: 11px 13px;
    font-size: 0.86rem;
  }

  .nav-item {
    display: grid;
  }

  .nav-link {
    justify-content: space-between;
    padding: 11px 13px;
    font-size: 0.86rem;
  }

  .nav-link::after {
    transform: translateY(-2px) rotate(45deg);
  }

  .nav-dropdown {
    position: static;
    width: auto;
    margin: 0 4px 4px;
    padding: 6px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 124px;
  }

  .sub-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 124px;
  }

  .sub-hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 24px;
    grid-template-columns: 1fr;
  }

  .panel-metrics {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-card {
    max-width: 520px;
  }

  .intro,
  .content-split,
  .contact-section,
  .image-feature-card,
  .process,
  .atelier-panel,
  .faq,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

  .contact-direct {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .quality-grid,
  .service-grid,
  .benefit-row,
  .type-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-large,
  .gallery-item-tall,
  .gallery-item-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 420px;
  }

  .image-feature-card div {
    padding: 8px 10px 18px;
  }

  .service-card.feature {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .service-card.feature div {
    padding: 10px 10px 18px;
  }

  .contact-actions {
    justify-self: start;
  }

  .faq .section-heading {
    position: relative;
    top: auto;
  }

  .material-board {
    min-height: 300px;
  }

  address {
    text-align: left;
  }
}

@media (max-width: 640px) {
  section[id] {
    scroll-margin-top: 76px;
  }

  .site-header {
    width: calc(100% - 18px);
    padding: 6px 7px 6px 10px;
    border-radius: 22px;
  }

  .brand img {
    width: 34px;
    height: 30px;
  }

  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .brand small {
    font-size: 0.55rem;
  }

  .nav-toggle {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .nav-toggle span {
    width: 14px;
  }

  .hero {
    padding: 96px 18px 32px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .sub-hero {
    padding: 92px 18px 32px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .sub-hero-panel {
    padding: 18px;
  }

  .sub-hero-panel h2 {
    font-size: 1.35rem;
  }

  .panel-metrics {
    grid-template-columns: 1fr;
  }

  .panel-actions,
  .form-grid,
  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    border-radius: 30px;
    padding: 22px;
  }

  .form-actions {
    width: 100%;
  }

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

  .contact-direct {
    grid-column: auto;
  }

  h1 {
    font-size: clamp(2.25rem, 11.8vw, 3.35rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(1.58rem, 7.6vw, 2.25rem);
  }

  .sub-hero-content h1 {
    font-size: clamp(2.15rem, 11.2vw, 3.2rem);
  }

  .sub-hero-content h1 span {
    white-space: normal;
  }

  .sub-hero-content > p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  h3 {
    font-size: 0.96rem;
  }

  .hero-copy {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .faq {
    gap: 20px;
  }

  .faq .section-heading {
    border-radius: 30px;
    padding: 22px;
  }

  .faq-list summary {
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 10px;
    min-height: 64px;
    padding: 16px;
    font-size: 0.9rem;
  }

  .faq-list summary::before {
    width: 32px;
    height: 32px;
    font-size: 0.66rem;
  }

  .faq-list summary::after {
    width: 28px;
    height: 28px;
  }

  .faq-list p {
    margin: -2px 16px 18px 60px;
    font-size: 0.86rem;
  }

  .hero-proof span {
    font-size: 0.7rem;
  }

  .hero-proof {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-block: 2px;
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 12%,
      #000 88%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent,
      #000 12%,
      #000 88%,
      transparent
    );
  }

  .hero-proof-track {
    width: max-content;
    max-width: none;
    flex-wrap: nowrap;
    gap: 8px;
    animation: proofMarquee 16s linear infinite;
  }

  .hero-proof span {
    white-space: nowrap;
  }

  .proof-duplicate {
    display: inline-flex;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .section-pad {
    padding: 66px 18px;
  }

  .quality-card,
  .service-card {
    min-height: auto;
  }

  .quality-grid,
  .service-grid,
  .benefit-row,
  .type-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .image-feature-card {
    padding: 10px;
    border-radius: 30px;
  }

  .image-feature-card img {
    min-height: 260px;
    border-radius: 24px;
  }

  .type-card img,
  .pattern-card {
    aspect-ratio: 1.35;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-tall,
  .gallery-item-wide {
    min-height: 380px;
  }

  .gallery-item figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .form-consent {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .form-consent input {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .process-image,
  .process-image img {
    min-height: 360px;
  }

  .contact-band {
    margin-inline: 18px;
    padding: 30px 22px;
    border-radius: 30px;
  }

  .atelier-panel {
    padding: 22px;
    border-radius: 30px;
  }

  .material-board {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .material-swatch {
    min-height: 120px;
    border-radius: 26px;
  }

  .material-swatch.walnut,
  .material-swatch.walnut:hover {
    transform: none;
  }

  .site-footer {
    padding-inline: 18px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-bottom {
    display: grid;
  }
}
