:root {
  color-scheme: dark;
  --bg: #080706;
  --panel: #15110e;
  --panel-soft: #1c1510;
  --cream: #e5d8c7;
  --cream-strong: #f0e7da;
  --muted: #a99c8d;
  --rust: #b85a32;
  --rust-hot: #d07442;
  --rust-deep: #6d2819;
  --line: rgba(229, 216, 199, 0.14);
  --line-hot: rgba(208, 116, 66, 0.45);
  --glow-x: 56%;
  --glow-y: 34%;
  --shell-max: 1536px;
  --topbar-height: 4.25rem;
  --bottom-bar-height: 2.05rem;
  --chrome-edge: 0rem;
  --chrome-radius: 0rem;
  --chrome-bg: rgba(8, 7, 6, 0.76);
  --chrome-border: rgba(255, 255, 255, 0.1);
  --chrome-shadow: 0 0.45rem 1.5rem rgba(0, 0, 0, 0.18);
  --chrome-blur: 10px;
  --brand-mark-width: clamp(2.36rem, 3vw, 3rem);
  --brand-wordmark-width: clamp(8.15rem, 13.2vw, 11.7rem);
  --nav-link-height: 1.86rem;
  --chrome-transition: 260ms cubic-bezier(0.22, 1, 0.36, 1);
  --font-body: "Segoe UI", "Trebuchet MS", "Bahnschrift", sans-serif;
  --font-display: "Segoe UI", "Trebuchet MS", "Bahnschrift", sans-serif;
  --expanded-footer-height: clamp(12.25rem, 23svh, 14.25rem);
  --mobile-expanded-footer-space: clamp(16.25rem, 42svh, 21.5rem);
}

html.is-scrolled {
  --chrome-bg: rgba(12, 9, 7, 0.46);
  --chrome-border: rgba(229, 216, 199, 0.18);
  --chrome-shadow: 0 0.9rem 2.2rem rgba(0, 0, 0, 0.3), 0 0.1rem 0 rgba(255, 255, 255, 0.045) inset;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--topbar-height);
  scroll-padding-bottom: calc(var(--bottom-bar-height) + 1.25rem);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--cream);
  font-family: var(--font-body);
  text-wrap: pretty;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(183, 84, 45, 0.24), transparent 30rem),
    linear-gradient(180deg, #100d0a 0%, #0b0806 52%, #070504 100%);
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.055) 0 1px, transparent 1.2px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 8px 8px, 5rem 5rem;
  opacity: 0.45;
}

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

.site-frame {
  width: min(100%, var(--shell-max));
  margin: 0 auto;
  border-right: 1px solid rgba(255,255,255,0.05);
  border-left: 1px solid rgba(255,255,255,0.05);
  background: rgba(12,9,7,0.28);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  width: calc(100% + 2px);
  min-height: var(--topbar-height);
  margin-left: -1px;
  padding: 0;
  isolation: isolate;
  transition:
    min-height var(--chrome-transition),
    padding var(--chrome-transition);
}

.topbar::before {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--topbar-height);
  z-index: -1;
  pointer-events: none;
  content: "";
  border: 1px solid var(--chrome-border);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0)),
    var(--chrome-bg);
  box-shadow: var(--chrome-shadow);
  backdrop-filter: blur(var(--chrome-blur)) saturate(135%);
  -webkit-backdrop-filter: blur(var(--chrome-blur)) saturate(135%);
  transition:
    background var(--chrome-transition),
    border-color var(--chrome-transition),
    box-shadow var(--chrome-transition);
}

.topbar-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) auto auto;
  align-items: center;
  gap: clamp(0.72rem, 2.2vw, 2.15rem);
  width: min(100%, var(--shell-max));
  min-height: var(--topbar-height);
  margin: 0 auto;
  padding: 0 clamp(0.85rem, 3.1vw, 2.75rem);
  transition:
    min-height var(--chrome-transition),
    padding var(--chrome-transition),
    gap var(--chrome-transition);
}

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

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.52rem, 0.92vw, 0.78rem);
  min-width: 0;
  filter: drop-shadow(0 0.9rem 0.95rem rgba(0,0,0,0.72));
  transition: gap var(--chrome-transition), filter var(--chrome-transition);
}

.brand-logo picture {
  display: block;
  line-height: 0;
}

.brand-mark-img,
.brand-wordmark-img {
  display: block;
  height: auto;
  object-fit: contain;
}

.brand-mark-img {
  width: var(--brand-mark-width);
  transition: width var(--chrome-transition);
}

.brand-wordmark-img {
  width: var(--brand-wordmark-width);
  transition: width var(--chrome-transition);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(0.68rem, 1.72vw, 1.68rem);
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-height: var(--nav-link-height);
  color: #ded2c2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  transition: min-height var(--chrome-transition), color var(--chrome-transition);
}

.nav-links a::after {
  position: absolute;
  bottom: 0.28rem;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--rust-hot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-links a[aria-current="page"] {
  color: #f1d3bb;
}

.nav-links a[aria-current="page"]::after {
  background: linear-gradient(90deg, rgba(208,116,66,0.88), rgba(242,178,120,0.9));
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(18rem, 0.72fr);
  align-items: center;
  min-height: clamp(39rem, calc(100vh - 7.25rem), 52rem);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(4.6rem, 8vw, 7.4rem) clamp(1rem, 5vw, 6rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #0a0705;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  z-index: 1;
  background:
    radial-gradient(circle at 73% 27%, rgba(229,137,74,0.09), transparent 20rem),
    linear-gradient(90deg, rgba(0,0,0,0.54) 0%, rgba(0,0,0,0.31) 35%, rgba(0,0,0,0.04) 62%, rgba(0,0,0,0.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.3) 100%);
}

.hero::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(208,116,66,0.42), transparent 18rem) left bottom / 100% 1px no-repeat,
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,192,128,0.25) 0, rgba(208,116,66,0.12) 8rem, transparent 22rem);
  mix-blend-mode: screen;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  transform: scale(1.012);
}

.hero-scene__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 43rem;
}

.hero-content::before {
  position: absolute;
  top: 0.1rem;
  bottom: 0.35rem;
  left: clamp(-1.35rem, -1.2vw, -0.75rem);
  width: 2px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(208,116,66,0.86) 20% 72%, transparent);
  box-shadow: 0 0 1.8rem rgba(208,116,66,0.44);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--rust-hot);
  font-size: clamp(0.74rem, 1vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
.section-heading h2,
.realization-section h2,
.manifest-title {
  font-family: var(--font-display);
  font-stretch: normal;
  text-transform: uppercase;
}

h1 {
  max-width: 20ch;
  margin-bottom: 1.05rem;
  color: #eadcc8;
  font-size: clamp(3.4rem, 6.2vw, 6.35rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.035em;
  overflow-wrap: normal;
  text-shadow:
    0 0.065em 0 rgba(0,0,0,0.95),
    0 0 2.2rem rgba(0,0,0,0.72),
    0 0 2.8rem rgba(184,90,50,0.14);
}

h1 span {
  display: block;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(2.95rem, 5.35vw, 5.35rem);
  line-height: 0.98;
}

.hero-title-lock {
  white-space: nowrap;
}

.hero-lead {
  max-width: 35rem;
  margin-bottom: 1.45rem;
  color: #f5e8d8;
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  font-weight: 600;
  line-height: 1.62;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow:
    0 0.06rem 0 rgba(0,0,0,0.96),
    0 0.18rem 0.34rem rgba(0,0,0,0.86),
    0 0 1.15rem rgba(0,0,0,0.76);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  margin-top: 1.28rem;
}

.hero-trust span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding-left: 1.1rem;
  color: #d8b18f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 0.06rem 0 rgba(0,0,0,0.88),
    0 0 0.8rem rgba(0,0,0,0.72);
}

.hero-trust span::before {
  position: absolute;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--rust-hot);
  box-shadow: 0 0 1.1rem rgba(208,116,66,0.76);
  transform: rotate(45deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.primary-action,
.secondary-action {
  display: inline-grid;
  place-items: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(229,216,199,0.42);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-action {
  border-color: rgba(208,116,66,0.88);
  color: #fff4e7;
  background: linear-gradient(135deg, #a8481f, #82321a);
}

.secondary-action {
  color: #efe1cf;
  background: rgba(0,0,0,0.24);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.primary-action:focus-visible,
.secondary-action:focus-visible {
  outline: 2px solid rgba(245,194,143,0.9);
  outline-offset: 3px;
  box-shadow:
    0 0 0 4px rgba(80,35,20,0.58),
    0 0 1.25rem rgba(226,154,91,0.34);
}

.secondary-action:hover {
  border-color: rgba(208,116,66,0.72);
}

.hero-emblem {
  position: relative;
  z-index: 3;
  justify-self: end;
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(100%, 24rem);
  min-height: 21rem;
  padding: clamp(1.2rem, 2vw, 2rem);
  border: 1px solid rgba(229,216,199,0.14);
  background:
    radial-gradient(circle at 50% 18%, rgba(208,116,66,0.2), transparent 45%),
    linear-gradient(145deg, rgba(12,9,7,0.62), rgba(12,9,7,0.24));
  box-shadow:
    0 2.6rem 5rem rgba(0,0,0,0.58),
    inset 0 0 0 1px rgba(255,255,255,0.03);
  backdrop-filter: blur(1.5px);
}

.hero-emblem::before {
  position: absolute;
  inset: 0.7rem;
  content: "";
  border: 1px solid rgba(208,116,66,0.18);
  opacity: 0.8;
}

.hero-emblem__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 20.6rem);
  height: auto;
  filter:
    drop-shadow(0 1.2rem 1.2rem rgba(0,0,0,0.72))
    drop-shadow(0 0 1.6rem rgba(177,81,43,0.22));
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(90deg, rgba(15,10,7,0.94), rgba(24,16,11,0.9), rgba(13,10,8,0.94));
}

.promise-strip article {
  display: grid;
  grid-template-columns: 3.3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 6rem;
  padding: 1rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.promise-strip article:last-child {
  border-right: 0;
}

.promise-strip .strip-title {
  display: block;
  margin: 0 0 0.2rem;
  color: #e4d7c8;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promise-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.strip-icon {
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  color: var(--rust-hot);
}

.icon-bricks {
  background:
    linear-gradient(currentColor,currentColor) 0.15rem 1.05rem / 1.2rem 0.5rem,
    linear-gradient(currentColor,currentColor) 1.5rem 1.05rem / 1.2rem 0.5rem,
    linear-gradient(currentColor,currentColor) 0.82rem 1.75rem / 1.2rem 0.5rem,
    linear-gradient(currentColor,currentColor) 2.15rem 1.75rem / 0.7rem 0.5rem;
  background-repeat: no-repeat;
}

.icon-shield {
  filter: drop-shadow(0 0 0.75rem rgba(208,116,66,0.18));
}

.icon-shield::before {
  position: absolute;
  inset: 0.18rem 0.54rem 0.14rem;
  content: "";
  background: currentColor;
  clip-path: polygon(50% 3%, 90% 18%, 83% 70%, 50% 96%, 17% 70%, 10% 18%);
}

.icon-shield::after {
  position: absolute;
  top: 1.22rem;
  left: 1.06rem;
  width: 0.92rem;
  height: 0.48rem;
  content: "";
  border-bottom: 2px solid #080706;
  border-left: 2px solid #080706;
  transform: rotate(-45deg);
}

.icon-home::before {
  position: absolute;
  inset: 0.65rem 0.45rem 0.4rem;
  content: "";
  border: 2px solid currentColor;
  border-top: 0;
}

.icon-home::after {
  position: absolute;
  top: 0.42rem;
  left: 0.58rem;
  width: 1.85rem;
  height: 1.85rem;
  content: "";
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-truck::before {
  position: absolute;
  left: 0.15rem;
  bottom: 1rem;
  width: 1.9rem;
  height: 1rem;
  content: "";
  border: 2px solid currentColor;
}

.icon-truck::after {
  position: absolute;
  right: 0.1rem;
  bottom: 1rem;
  width: 0.85rem;
  height: 0.75rem;
  content: "";
  border: 2px solid currentColor;
  box-shadow:
    -1.55rem 0.9rem 0 -0.33rem var(--bg),
    -1.55rem 0.9rem 0 -0.18rem currentColor,
    -0.12rem 0.9rem 0 -0.33rem var(--bg),
    -0.12rem 0.9rem 0 -0.18rem currentColor;
}

.products-section,
.curated-gallery-section,
.realization-section,
.manifest-section,
.faq-section,
.inquiry-section {
  position: relative;
  isolation: isolate;
  padding: clamp(3.7rem, 7vw, 6.4rem) clamp(1rem, 5vw, 6rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.products-section {
  background:
    radial-gradient(circle at 50% 6%, rgba(176,84,43,0.2), transparent 26rem),
    linear-gradient(180deg, rgba(20,14,10,0.84), rgba(10,8,6,0.96));
}

.section-heading {
  max-width: 58rem;
  margin: 0 auto 1.7rem;
  text-align: center;
}

.section-heading h2,
.realization-section h2,
.manifest-title,
.faq-section h2,
.inquiry-intro h2 {
  margin: 0;
  color: #e7ded2;
  font-size: clamp(1.82rem, 3.45vw, 3.12rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.105em;
}

.section-heading p {
  max-width: 43rem;
  margin: 0.9rem auto 0;
  color: #b8aa99;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.product-tile {
  position: relative;
  display: flex;
  min-height: 23.5rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(229,216,199,0.18);
  background: #17110d;
  box-shadow: 0 1.1rem 2.6rem rgba(0,0,0,0.22);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.product-tile:hover {
  border-color: rgba(226,154,91,0.66);
  box-shadow:
    0 1.1rem 2.6rem rgba(0,0,0,0.24),
    0 0 0 1px rgba(226,154,91,0.26),
    0 0 1.35rem rgba(208,116,66,0.14);
  filter: saturate(1.04) brightness(1.03);
}

.tile-media {
  position: relative;
  display: block;
  min-height: 9.4rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-color: #17110d;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 26%, rgba(0,0,0,0.3)),
    radial-gradient(circle at 50% 38%, rgba(212,128,74,0.22), transparent 68%);
}

.tile-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 48%, transparent 0 52%, rgba(0,0,0,0.24) 100%),
    linear-gradient(180deg, transparent, rgba(0,0,0,0.18));
  opacity: 0.86;
}

.tile-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04) brightness(0.88);
  transition: transform 220ms ease, filter 220ms ease;
}

.product-tile:hover .tile-media img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.07) brightness(0.94);
}

.tile-copy {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.68rem;
  min-height: 0;
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent),
    rgba(12,9,7,0.93);
}

.tile-copy h3,
.tile-copy p {
  margin: 0;
  text-transform: none;
}

.tile-copy h3 {
  color: #eee3d5;
  font-size: 1rem;
  line-height: 1.22;
  letter-spacing: 0.08em;
}

.tile-copy p {
  color: #bcae9d;
  font-size: 0.82rem;
  line-height: 1.48;
  letter-spacing: 0;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  margin-top: auto;
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(226,154,91,0.42);
  color: #f0e0cd;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(209,116,66,0.1);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.product-card-cta:hover,
.product-card-cta:focus-visible {
  border-color: rgba(242,176,113,0.78);
  color: #fff6ea;
  background: rgba(209,116,66,0.2);
}

.product-card-cta:focus-visible {
  outline: 2px solid rgba(245,194,143,0.9);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(80,35,20,0.52);
}

.curated-gallery-section {
  overflow: hidden;
  padding-top: clamp(2.4rem, 4.6vw, 4.25rem);
  padding-bottom: clamp(2.4rem, 4.6vw, 4.25rem);
  background:
    radial-gradient(circle at 80% 8%, rgba(208,116,66,0.14), transparent 28rem),
    radial-gradient(circle at 16% 42%, rgba(184,90,50,0.08), transparent 22rem),
    linear-gradient(180deg, rgba(9,7,6,0.98), rgba(8,6,5,0.96));
}

.curated-gallery-section::before {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.052) 0 1px, transparent 1.2px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 8px 8px, 5rem 5rem;
  opacity: 0.52;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 86%);
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.curated-gallery-section > * {
  position: relative;
  z-index: 1;
}

.curated-gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(18rem, 0.42fr);
  gap: clamp(1.2rem, 4.2vw, 3.6rem);
  align-items: end;
  margin-bottom: clamp(1.2rem, 2.8vw, 2.15rem);
  padding-bottom: clamp(1.05rem, 2.3vw, 1.65rem);
  border-bottom: 1px solid rgba(229,216,199,0.14);
}

.curated-gallery-header h2 {
  max-width: 40rem;
  color: #f1e7da;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.35vw, 3.15rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.curated-gallery-intro {
  display: grid;
  gap: 1rem;
}

.curated-gallery-intro > p:first-child {
  max-width: 39rem;
  margin: 0;
  color: #cbbba8;
  font-size: clamp(0.98rem, 1.28vw, 1.12rem);
  line-height: 1.58;
}

.curated-count {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 0.62rem;
  align-items: baseline;
  width: fit-content;
  margin: 0;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(208,116,66,0.5);
  color: #f1dfcc;
  text-transform: uppercase;
}

.curated-count strong {
  color: #f7c18c;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 0.86;
  letter-spacing: 0.04em;
}

.curated-count span {
  max-width: 14rem;
  color: #f1dfcc;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.12em;
}

/* Globalna kotwica cenowa + dostępność (intro galerii). */
.curated-anchor {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0.2rem 0 0;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(208,116,66,0.5);
}

.curated-anchor strong {
  color: #ffcf9e;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 850;
  letter-spacing: 0.01em;
}

.curated-anchor .ca-avail {
  color: #d7c4ad;
  font-size: 0.84rem;
  font-weight: 700;
}

.curated-anchor .ca-note {
  color: #a99c8d;
  font-size: 0.76rem;
  line-height: 1.4;
}

.curated-gallery-stage {
  --curated-stage-height: 43.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(21rem, 0.56fr);
  grid-template-areas:
    "hero panel"
    "shelf shelf";
  gap: clamp(1rem, 2.4vw, 1.5rem);
  align-items: stretch;
}

.curated-hero {
  position: relative;
  grid-area: hero;
  min-width: 0;
  min-height: var(--curated-stage-height);
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(229,216,199,0.18);
  background: #0d0a08;
  box-shadow: 0 1.1rem 3rem rgba(0,0,0,0.3);
  cursor: zoom-in;
}

.curated-hero:focus-visible {
  outline: 2px solid #ffc890;
  outline-offset: 3px;
}

.curated-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, transparent 38%, rgba(0,0,0,0.48) 100%),
    radial-gradient(circle at 15% 92%, rgba(208,116,66,0.16), transparent 28rem);
  transition: opacity 220ms ease;
}

/* Przy aktywnej lupie gaśnie dolny gradient — czystsze oglądanie tekstury. */
.curated-hero.is-loupe-active::after {
  opacity: 0;
}

.curated-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.06);
  transition:
    opacity 180ms ease,
    transform 260ms ease,
    filter 260ms ease;
}

.curated-hero.is-switching .curated-hero-image {
  opacity: 0.62;
  transform: scale(1.015);
}

/* Lupa (szkło powiększające) — DESKTOP only, zawsze na hover; okrągłe szkło
   podążające za kursorem pokazuje ostry, powiększony fragment. Tworzona w JS
   tylko dla precyzyjnego wskaźnika z hoverem (mysz/pióro). */
.curated-hero-loupe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: clamp(7rem, 33%, 17rem);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  border: 2px solid rgba(255,200,144,0.72);
  box-shadow:
    0 0.5rem 1.4rem rgba(0,0,0,0.55),
    inset 0 0 1.6rem rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  transition: opacity 140ms ease;
  will-change: transform;
}

.curated-hero.is-loupe-active .curated-hero-loupe {
  opacity: 1;
}

.curated-hero-loupe-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.06);
}

/* Wskazówka „powiększ": ikona lupy w rogu zdjęcia (zwłaszcza dla dotyku, gdzie
   nie ma hovera). Gaśnie, gdy aktywna jest lupa na desktopie. */
.curated-hero-zoom-cue {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(229,216,199,0.3);
  background: rgba(12,9,7,0.6);
  color: #ffd9af;
  pointer-events: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: opacity 160ms ease;
}

.curated-hero.is-loupe-active .curated-hero-zoom-cue {
  opacity: 0;
}

/* Pełnoekranowy podgląd z własnym pinch-zoom (mobile) / Enter (klawiatura).
   touch-action:none jest tu OK — to modal, który SAM dostarcza zoom i da się
   zamknąć, więc nie odbiera użytkownikowi powiększania (inaczej niż na stronie). */
.hero-zoom-viewer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  overflow: hidden;
  background: rgba(8,6,5,0.96);
  touch-action: none;
  overscroll-behavior: contain;
}

.hero-zoom-viewer.is-open {
  display: grid;
}

.hero-zoom-viewer__img {
  max-width: 100%;
  max-height: 100%;
  transform-origin: center center;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
}

.hero-zoom-viewer__close {
  position: absolute;
  top: max(0.75rem, env(safe-area-inset-top));
  right: max(0.75rem, env(safe-area-inset-right));
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  min-height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(229,216,199,0.3);
  border-radius: 50%;
  background: rgba(12,9,7,0.72);
  color: #f3e7d6;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-zoom-viewer__close:focus-visible {
  outline: 2px solid #ffc890;
  outline-offset: 3px;
}

.hero-zoom-viewer__hint {
  position: absolute;
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 2rem);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(12,9,7,0.7);
  color: #e8d7c5;
  font-size: 0.72rem;
  text-align: center;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.curated-hero-overlay {
  position: absolute;
  inset: auto 1.25rem 1.25rem;
  z-index: 2;
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
  min-width: 0;
  margin: 0;
  transition: opacity 200ms ease, visibility 200ms ease;
}

/* Przy aktywnej lupie opis gaśnie — czystsze oglądanie tekstury (desktop). */
.curated-hero.is-loupe-active .curated-hero-overlay {
  opacity: 0;
  visibility: hidden;
}

.curated-hero-copy {
  display: grid;
  width: min(30rem, calc(100% - 4.65rem));
  max-width: 100%;
  padding: 0.66rem 0.78rem;
  border: 1px solid rgba(229,216,199,0.22);
  background:
    linear-gradient(180deg, rgba(32,23,17,0.88), rgba(12,9,7,0.82)),
    rgba(0,0,0,0.56);
  box-shadow: 0 0.9rem 2rem rgba(0,0,0,0.32);
  backdrop-filter: blur(9px) saturate(112%);
  -webkit-backdrop-filter: blur(9px) saturate(112%);
}

.curated-hero-copy strong {
  display: flex;
  align-items: center;
  min-height: calc(1.16em * 2);
  color: #fff4e8;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.18rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.curated-hero-copy > span:not(.curated-hero-price) {
  display: flex;
  align-items: center;
  min-height: 1.32em;
  margin-top: 0.34rem;
  color: #e8d7c5;
  font-size: clamp(0.58rem, 0.82vw, 0.7rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

/* Cena na głównym kaflu (wybrany wzór) — większa niż na miniaturach,
   główny punkt wzroku. szt mocny rdzawy + ~m² wyszarzone obok. */
.curated-hero-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.curated-hero-price .hp-szt {
  color: #ffcf9e;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  font-weight: 850;
  letter-spacing: 0.02em;
}

.curated-hero-price .hp-m2 {
  color: #e8d7c5;
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 700;
}

.curated-hero-number {
  display: grid;
  place-items: center;
  width: 3.45rem;
  min-width: 3.45rem;
  height: 3.45rem;
  border: 1px solid rgba(229,216,199,0.32);
  color: #ffc890;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  background: rgba(12,9,7,0.78);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.035);
}

.curated-panel {
  grid-area: panel;
  display: flex;
  min-width: 0;
  min-height: var(--curated-stage-height);
  height: 100%;
  flex-direction: column;
  gap: clamp(0.72rem, 1vw, 0.92rem);
  overflow: hidden;
  padding: clamp(0.9rem, 1.25vw, 1.08rem);
  border: 1px solid rgba(229,216,199,0.17);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent),
    rgba(11,8,6,0.78);
  box-shadow: 0 1.1rem 3rem rgba(0,0,0,0.24);
}

.curated-panel-head,
.curated-panel-section,
.curated-cta {
  margin: 0;
}

.curated-panel-head {
  display: grid;
  gap: 0.56rem;
}

.curated-panel-head h3 {
  margin: 0;
  color: #f5ecdf;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.45vw, 2.35rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  min-height: calc(1.05em * 2);
  overflow-wrap: anywhere;
}

/* Cena wybranego wzoru: szt = jednostka bazowa (sprzedaż na szt),
   m² = przelicznik dla klienta/SEO. min-height rezerwuje miejsce na 2 linie
   (anty-shift przy przełączaniu wzorów). */
.curated-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-height: 1.55rem;
  margin: 0;
}

.curated-price .pv-szt {
  color: #ffcf9e;
  font-weight: 850;
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  letter-spacing: 0.01em;
}

.curated-price .pv-m2 {
  color: #c9b9a6;
  font-weight: 600;
  font-size: 0.82em;
}

.curated-panel-head p:last-child,
.curated-grout-lead,
.curated-note p {
  margin: 0;
  color: #c9b9a6;
  font-size: clamp(0.86rem, 0.94vw, 0.94rem);
  line-height: 1.45;
}

#curated-panel-copy {
  min-height: calc(1.45em * 4);
}

.curated-cta {
  display: grid;
  width: 100%;
  min-height: 3rem;
  margin-top: auto;
  color: #1d0f08;
  font-weight: 900;
  background: linear-gradient(180deg, #f4b577, #ce6c37);
}

.curated-panel-section {
  border-top: 1px solid rgba(229,216,199,0.12);
  padding-top: 0.72rem;
}

.curated-panel-section summary {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  list-style: none;
  cursor: pointer;
  color: #d07442;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (hover: hover) and (min-width: 881px) {
  .curated-panel-section summary {
    cursor: default;
    pointer-events: none;
  }
}

.curated-panel-section summary::-webkit-details-marker {
  display: none;
}

.curated-panel-section summary span:last-child {
  display: none;
}

.curated-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.38rem;
  margin: 0.54rem 0 0;
}

.curated-meta-grid div,
.curated-grout,
.curated-note {
  border: 1px solid rgba(229,216,199,0.12);
  background: rgba(0,0,0,0.18);
}

.curated-meta-grid div {
  min-width: 0;
  min-height: 3.35rem;
  padding: 0.46rem;
}

.curated-meta-grid dt,
.curated-meta-grid dd {
  margin: 0;
}

.curated-meta-grid dt {
  color: #d07442;
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.curated-meta-grid dd {
  margin-top: 0.2rem;
  color: #e7dac9;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.18;
  overflow-wrap: anywhere;
  hyphens: auto;
  /* Rezerwuj miejsce na 2 linie zawsze — stała wysokość komórki niezależnie
     od długości wartości, eliminuje skok layoutu przy przełączaniu wzorów. */
  min-height: calc(1.18em * 2);
}

.curated-grout-lead {
  margin-top: 0.5rem;
}

.curated-grout-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.curated-grout {
  display: grid;
  grid-template-columns: clamp(2.2rem, 3.2vw, 2.55rem) minmax(0, 1fr);
  gap: 0.36rem;
  align-items: center;
  min-height: 0;
  padding: 0.36rem;
}

.curated-grout img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(229,216,199,0.18);
}

.curated-grout span {
  min-width: 0;
  color: #efe2d0;
  font-size: clamp(0.68rem, 0.76vw, 0.72rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.curated-shelf {
  grid-area: shelf;
  display: grid;
  gap: 0.8rem;
  padding-top: clamp(0.95rem, 2vw, 1.3rem);
}

.curated-shelf-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.curated-shelf-head h3 {
  margin: 0;
  color: #d8c5b2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.16;
  text-transform: uppercase;
}

.curated-shelf-head p {
  max-width: 35rem;
  margin: 0;
  color: #b5a693;
  font-size: 0.86rem;
  line-height: 1.42;
  text-align: right;
}

.curated-thumb-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.48rem;
}

.curated-thumb {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(229,216,199,0.14);
  color: inherit;
  cursor: pointer;
  background: #110d0a;
}

.curated-thumb[aria-selected="true"] {
  border-color: rgba(240,152,88,0.9);
  box-shadow: 0 0 0 1px rgba(208,116,66,0.26), 0 0.55rem 1.5rem rgba(0,0,0,0.28);
}

.curated-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.82);
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.curated-thumb:hover img,
.curated-thumb:focus-visible img,
.curated-thumb[aria-selected="true"] img {
  filter: saturate(1.04) brightness(0.98);
}

.curated-thumb:hover img,
.curated-thumb:focus-visible img {
  transform: scale(1.035);
}

.curated-thumb:focus-visible {
  outline: 2px solid rgba(245,194,143,0.9);
  outline-offset: 3px;
}

.curated-thumb-label {
  position: absolute;
  right: 0.34rem;
  bottom: 0.34rem;
  left: 0.34rem;
  display: flex;
  gap: 0.36rem;
  align-items: center;
  min-width: 0;
  padding: 0.28rem 0.34rem;
  background: rgba(12,9,7,0.82);
}

.curated-thumb-label span:first-child,
.curated-thumb-label span:last-child {
  color: #f0e4d6;
  font-size: 0.56rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.curated-thumb-label span:first-child {
  color: #d07442;
}

.curated-thumb-label span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Cena (zł/szt) na miniaturze — widoczna od razu, bez klikania.
   Górny-prawy róg; label nazwy jest w dolnym pasie, więc nie kolidują. */
.curated-thumb-price {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  z-index: 2;
  padding: 0.16rem 0.36rem;
  border-radius: 0.2rem;
  color: #fff4e7;
  font-size: 0.58rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: rgba(168,72,31,0.92);
  box-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.4);
}

@media (max-width: 520px) {
  .curated-thumb-price {
    font-size: 0.62rem;
    padding: 0.18rem 0.4rem;
  }
}

.curated-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  margin-top: clamp(0.9rem, 2vw, 1.35rem);
}

.curated-note {
  padding: 0.9rem;
}

.curated-note strong {
  display: block;
  margin-bottom: 0.42rem;
  color: #f2e4d2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.16;
  text-transform: uppercase;
}

.bottom-trust-bar {
  display: block;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(90deg, rgba(12,8,6,0.98), rgba(20,13,9,0.96), rgba(10,8,7,0.98));
}

.bottom-trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--shell-max));
  margin: 0 auto;
}

.bottom-trust-bar article > div {
  min-width: 0;
}

.bottom-trust-bar article {
  position: relative;
  display: grid;
  grid-template-columns: 1.12rem minmax(0, 1fr);
  gap: 0.36rem;
  align-items: center;
  min-height: var(--bottom-bar-height);
  padding: 0.16rem clamp(0.62rem, 1.25vw, 0.96rem);
  border-right: 1px solid rgba(255,255,255,0.1);
  transition:
    min-height var(--chrome-transition),
    padding var(--chrome-transition),
    gap var(--chrome-transition);
}

.bottom-trust-bar article:last-child {
  border-right: 0;
}

.bottom-trust-bar h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: none;
}

.bottom-trust-bar h3 {
  color: #eee2d3;
  overflow: hidden;
  font-size: clamp(0.58rem, 0.68vw, 0.68rem);
  letter-spacing: 0.026em;
  line-height: 1.28;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition:
    font-size var(--chrome-transition),
    letter-spacing var(--chrome-transition);
}

.trust-detail {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: #d6c8b8;
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.5;
  opacity: 0;
  transition:
    max-height var(--chrome-transition),
    margin-top var(--chrome-transition),
    opacity var(--chrome-transition);
}

.trust-accordion-toggle {
  display: none;
}

.trust-contact,
.trust-company {
  display: none;
  margin: 0;
}

.trust-contact a {
  color: #f1d3bb;
  text-decoration: underline;
  text-decoration-color: rgba(208,116,66,0.58);
  text-underline-offset: 0.18rem;
}

.trust-contact .trust-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  white-space: nowrap;
}

.trust-social-icon {
  display: inline-flex;
  width: 1.05em;
  height: 1.05em;
  color: #e0905b;
}

.trust-social-icon svg {
  width: 100%;
  height: 100%;
}

.trust-company strong {
  color: #f1d3bb;
}

.trust-company__segment {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  word-break: keep-all;
}

.bottom-trust-footer-space {
  display: none;
}

/* Telefon kontaktowy — numer jest dekodowany i odsłaniany przez scripts.js
   (anty-bot). Dopóki element ma atrybut [hidden], MUSI pozostać ukryty,
   nawet jeśli inne reguły (np. .trust-social-link) deklarują display. */
[data-phone][hidden] {
  display: none !important;
}

.phone-glyph-wrap {
  display: inline-flex;
  align-items: center;
  width: 1.05em;
  height: 1.05em;
}

.phone-glyph-wrap svg {
  width: 100%;
  height: 100%;
}

.phone-number {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.trust-contact-phone {
  white-space: nowrap;
}

/* Header click-to-call. Wolna, trzecia kolumna grida topbara istnieje dopiero
   od 1181px (niżej grid jest 2-kolumnowy), więc tylko tam pokazujemy link —
   inaczej zawijałby się do nowego wiersza nagłówka. */
.topbar-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  justify-self: end;
  padding: 0.34rem 0.74rem;
  border: 1px solid rgba(224, 144, 91, 0.42);
  border-radius: 999px;
  color: #f1d3bb;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color var(--chrome-transition),
    color var(--chrome-transition),
    background-color var(--chrome-transition);
}

.topbar-phone .phone-glyph-wrap {
  color: #e0905b;
}

.topbar-phone:hover,
.topbar-phone:focus-visible {
  color: #fff;
  border-color: rgba(224, 144, 91, 0.85);
  background-color: rgba(224, 144, 91, 0.12);
}

@media (min-width: 1181px) {
  .topbar-phone:not([hidden]) {
    display: inline-flex;
  }
}

/* Intro formularza: wyraźna alternatywa „zadzwoń" tuż przy formularzu. */
.inquiry-phone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.7rem;
  margin: 0.95rem 0 0;
  font-size: 1rem;
}

.inquiry-phone__prompt {
  color: #cbb9a6;
}

.inquiry-phone__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(224, 144, 91, 0.5);
  border-radius: 999px;
  background: rgba(224, 144, 91, 0.14);
  color: #f7e6d8;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color var(--chrome-transition),
    color var(--chrome-transition),
    background-color var(--chrome-transition);
}

.inquiry-phone__link .phone-glyph-wrap {
  color: #e89a63;
}

.inquiry-phone__link:hover,
.inquiry-phone__link:focus-visible {
  color: #fff;
  border-color: rgba(224, 144, 91, 0.9);
  background: rgba(224, 144, 91, 0.24);
}

.trust-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  color: var(--rust-hot);
  transition: width var(--chrome-transition), height var(--chrome-transition), color var(--chrome-transition);
}

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

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  justify-content: center;
  padding: 1.2rem clamp(1rem, 3vw, 2rem);
  border-top: 1px solid rgba(229,216,199,0.12);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer a {
  color: #f1d3bb;
  text-decoration: underline;
  text-decoration-color: rgba(208,116,66,0.5);
  text-underline-offset: 0.2rem;
}

.legal-page {
  background:
    radial-gradient(circle at 72% 12%, rgba(184,90,50,0.18), transparent 28rem),
    linear-gradient(180deg, #100d0a 0%, #090706 54%, #070504 100%);
}

.legal-site-frame {
  min-height: 100svh;
}

.legal-main {
  padding:
    clamp(2.6rem, 6vw, 5.2rem)
    clamp(1rem, 4vw, 3.2rem)
    clamp(2.8rem, 7vw, 5.8rem);
}

.legal-document {
  width: min(100%, 58rem);
  margin: 0 auto;
}

.legal-hero {
  padding-bottom: clamp(1.6rem, 3.2vw, 2.6rem);
  border-bottom: 1px solid rgba(229,216,199,0.16);
}

.legal-hero h1 {
  max-width: 13ch;
  margin: 0.28rem 0 0;
  font-size: clamp(2.55rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0.012em;
}

.legal-lead {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: #d7c7b5;
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: clamp(1.4rem, 3vw, 2.2rem) 0 0;
  border: 1px solid rgba(229,216,199,0.14);
  background: rgba(18,12,9,0.68);
}

.legal-summary div {
  min-width: 0;
  padding: 0.9rem 1rem;
  border-right: 1px solid rgba(229,216,199,0.1);
  border-bottom: 1px solid rgba(229,216,199,0.1);
}

.legal-summary div:nth-child(2n),
.legal-summary div:last-child {
  border-right: 0;
}

.legal-summary div:nth-last-child(-n + 1) {
  border-bottom: 0;
}

.legal-summary dt {
  margin: 0 0 0.28rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-summary dd {
  margin: 0;
  color: #efe3d5;
  font-size: 0.95rem;
  line-height: 1.5;
}

.legal-summary a,
.legal-section a {
  color: #f1d3bb;
  text-decoration: underline;
  text-decoration-color: rgba(208,116,66,0.55);
  text-underline-offset: 0.18rem;
}

.legal-section {
  padding: clamp(1.35rem, 2.8vw, 2.2rem) 0;
  border-bottom: 1px solid rgba(229,216,199,0.11);
}

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

.legal-section h2 {
  max-width: 42rem;
  margin: 0 0 0.85rem;
  color: #efe3d5;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
}

.legal-section p,
.legal-section li {
  color: #d6c8b8;
  font-size: clamp(0.96rem, 1.04vw, 1.05rem);
  line-height: 1.75;
}

.legal-section p {
  margin: 0;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section p + ul,
.legal-section blockquote {
  margin-top: 0.88rem;
}

.legal-section ul {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
}

.legal-section li + li {
  margin-top: 0.42rem;
}

.legal-section li::marker {
  color: var(--rust-hot);
}

.legal-section--intro {
  margin-top: 0.4rem;
}

.legal-footer {
  padding-bottom: calc(1.2rem + env(safe-area-inset-bottom));
}

.cookie-consent {
  position: fixed;
  right: clamp(0.75rem, 2vw, 1.35rem);
  bottom: clamp(0.75rem, 2vw, 1.35rem);
  left: clamp(0.75rem, 2vw, 1.35rem);
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  max-width: 58rem;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid rgba(229,216,199,0.18);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(255,238,212,0.06), transparent 46%),
    rgba(12,8,6,0.94);
  box-shadow: 0 1.2rem 3rem rgba(0,0,0,0.44);
  backdrop-filter: blur(18px) saturate(128%);
  -webkit-backdrop-filter: blur(18px) saturate(128%);
}

.cookie-consent__copy p {
  margin: 0;
}

.cookie-consent__title {
  color: #f0e4d6;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cookie-consent__copy p:last-child {
  margin-top: 0.24rem;
  color: #d7c7b5;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.cookie-consent__button {
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(208,116,66,0.7);
  border-radius: 999px;
  color: #150d09;
  font: 800 0.78rem/1 var(--font-body);
  letter-spacing: 0.045em;
  background: linear-gradient(135deg, #f1c39f, #d07442);
  cursor: pointer;
}

.cookie-consent__button:focus-visible {
  outline: 2px solid rgba(245,194,143,0.92);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(80,35,20,0.55);
}

.cookie-consent__button--muted {
  color: #efe3d5;
  border-color: rgba(229,216,199,0.24);
  background: rgba(255,255,255,0.04);
}

@media (max-width: 720px) {
  .legal-main {
    padding-top: 2rem;
  }

  .legal-hero h1 {
    max-width: 10ch;
  }

  .legal-summary {
    grid-template-columns: 1fr;
  }

  .legal-summary div,
  .legal-summary div:nth-child(2n),
  .legal-summary div:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(229,216,199,0.1);
  }

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

  .cookie-consent {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 0.88rem;
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent__button {
    flex: 1 1 12rem;
  }
}

@media (min-width: 1024px) {
  body {
    padding-bottom: var(--bottom-bar-height);
    transition: padding-bottom var(--chrome-transition);
  }

  .desktop-first-screen {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-rows: auto auto auto;
    min-height: calc(100svh - var(--topbar-height));
    overflow: visible;
    padding-bottom: var(--bottom-bar-height);
    background:
      radial-gradient(circle at 53% 28%, rgba(190,85,43,0.14), transparent 26rem),
      linear-gradient(
        180deg,
        transparent 0,
        transparent calc(100% - var(--bottom-bar-height)),
        rgba(18,12,8,0.94) calc(100% - var(--bottom-bar-height)),
        rgba(13,9,7,0.96) 100%
      ),
      linear-gradient(180deg, rgba(10,7,5,0.96), rgba(8,6,5,0.98));
    transition:
      height var(--chrome-transition),
      padding-bottom var(--chrome-transition);
  }

  .desktop-first-screen::before {
    position: absolute;
    inset: 0 calc((100% - 100vw) / 2);
    z-index: 0;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(8,6,5,0.98), rgba(8,6,5,0.48) 15%, rgba(8,6,5,0.1) 34%, rgba(8,6,5,0.1) 66%, rgba(8,6,5,0.55) 86%, rgba(8,6,5,0.98)),
      linear-gradient(180deg, rgba(8,6,5,0.38), rgba(8,6,5,0.72)),
      url("assets/banner-hero-lit.webp") center center / cover no-repeat,
      radial-gradient(circle at 53% 28%, rgba(190,85,43,0.14), transparent 26rem),
      linear-gradient(
        180deg,
        transparent 0,
        transparent calc(100% - var(--bottom-bar-height)),
        rgba(18,12,8,0.94) calc(100% - var(--bottom-bar-height)),
        rgba(13,9,7,0.96) 100%
      ),
      linear-gradient(180deg, rgba(10,7,5,0.96), rgba(8,6,5,0.98));
  }

  .desktop-first-screen > * {
    position: relative;
    z-index: 1;
  }

  .desktop-first-screen .hero {
    grid-template-columns: minmax(0, 0.98fr) minmax(14rem, 0.5fr);
    min-height: 0;
    height: 100%;
    padding: clamp(1.15rem, 2.7vh, 2rem) clamp(2.6rem, 4.6vw, 5rem);
  }

  .desktop-first-screen .hero-content {
    max-width: 38rem;
  }

  .desktop-first-screen .hero-content::before {
    top: 0.2rem;
    bottom: 0.2rem;
  }

  .desktop-first-screen .eyebrow {
    margin-bottom: 0.42rem;
    font-size: clamp(0.6rem, 0.68vw, 0.72rem);
  }

  .desktop-first-screen h1 {
    margin-bottom: 0.58rem;
    font-size: clamp(2.05rem, 3.48vw, 3.65rem);
    line-height: 1;
  }

  .desktop-first-screen .hero-lead {
    max-width: 29rem;
    margin-bottom: 0.72rem;
    font-size: clamp(0.8rem, 1.02vw, 0.92rem);
    line-height: 1.36;
  }

  .desktop-first-screen .hero-actions {
    margin-bottom: 0.74rem;
  }

  .desktop-first-screen .hero-trust {
    gap: 0.36rem 0.78rem;
    margin-top: 0;
  }

  .desktop-first-screen .hero-trust span {
    min-height: 1.18rem;
    padding-left: 0.86rem;
    font-size: 0.61rem;
    letter-spacing: 0.07em;
  }

  .desktop-first-screen .hero-trust span::before {
    width: 0.34rem;
    height: 0.34rem;
  }

  .desktop-first-screen .primary-action,
  .desktop-first-screen .secondary-action {
    min-height: 2.75rem;
    padding: 0.64rem 1.05rem;
    font-size: 0.66rem;
  }

  .desktop-first-screen .hero-emblem {
    width: min(100%, 19.4rem);
    min-height: 15.8rem;
    padding: 1rem;
  }

  .desktop-first-screen .hero-emblem__logo {
    width: min(100%, 16.5rem);
  }

  .desktop-first-screen .promise-strip article {
    grid-template-columns: 2.35rem minmax(0, 1fr);
    gap: 0.46rem;
    min-height: 3.35rem;
    padding: 0.36rem clamp(0.82rem, 1.6vw, 1.25rem);
  }

  .desktop-first-screen .promise-strip .strip-title {
    margin-bottom: 0.08rem;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .desktop-first-screen .promise-strip p {
    font-size: 0.66rem;
    line-height: 1.16;
  }

  .desktop-first-screen .strip-icon {
    width: 3rem;
    height: 3rem;
    transform: scale(0.66);
    transform-origin: center;
  }

  .desktop-first-screen .products-section {
    position: relative;
    isolation: isolate;
    padding: 0.34rem clamp(2.2rem, 4.2vw, 4.6rem) 0.42rem;
  }

  .desktop-first-screen .products-section::after {
    position: absolute;
    right: calc((100% - 100vw) / 2);
    bottom: calc(-1 * var(--bottom-bar-height));
    left: calc((100% - 100vw) / 2);
    z-index: 0;
    height: var(--bottom-bar-height);
    content: "";
    pointer-events: none;
    background:
      radial-gradient(circle at 50% 6%, rgba(176,84,43,0.2), transparent 26rem),
      linear-gradient(180deg, rgba(20,14,10,0.84), rgba(10,8,6,0.96));
  }

  .desktop-first-screen .products-section > * {
    position: relative;
    z-index: 1;
  }

  .desktop-first-screen .section-heading {
    display: block;
    max-width: none;
    margin-bottom: 0.32rem;
    text-align: center;
  }

  .desktop-first-screen .section-heading h2 {
    font-size: clamp(0.88rem, 1.12vw, 1.14rem);
    line-height: 1;
    letter-spacing: 0.145em;
  }

  .desktop-first-screen .products-section .section-heading {
    margin-bottom: clamp(0.22rem, 0.32vw, 0.4rem);
  }

  .desktop-first-screen .products-section .section-heading h2 {
    font-size: clamp(0.88rem, 1.12vw, 1.14rem);
    line-height: 1.4;
  }

  .desktop-first-screen .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.72rem, 1vw, 1rem);
    max-width: 92rem;
    margin: 0 auto;
  }

  .desktop-first-screen .product-tile {
    animation: none;
    min-height: clamp(17rem, 30vw, 21.5rem);
  }

  .desktop-first-screen .tile-media {
    min-height: 7.6rem;
    aspect-ratio: 16 / 8.7;
  }

  .desktop-first-screen .tile-copy {
    gap: 0.46rem;
    padding: 0.72rem 0.72rem 0.78rem;
    background:
      linear-gradient(180deg, rgba(12,9,7,0.2), rgba(12,9,7,0.46)),
      rgba(12,9,7,0.74);
    box-shadow: 0 -0.8rem 1.45rem rgba(0,0,0,0.16);
  }

  .desktop-first-screen .tile-copy h3 {
    min-width: 0;
    font-size: clamp(0.68rem, 0.76vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.045em;
    line-height: 1.28;
  }

  .desktop-first-screen .tile-copy p {
    font-size: clamp(0.62rem, 0.7vw, 0.74rem);
    line-height: 1.36;
  }

  .desktop-first-screen .product-card-cta {
    min-height: 2.75rem;
    padding: 0.58rem 0.58rem;
    font-size: clamp(0.55rem, 0.62vw, 0.66rem);
    letter-spacing: 0.052em;
  }

  .desktop-first-screen .bottom-trust-bar article {
    grid-template-columns: 1rem minmax(0, 1fr);
    gap: 0.34rem;
    min-height: var(--bottom-bar-height);
    padding: 0.14rem clamp(0.58rem, 1.08vw, 0.84rem);
  }

  .desktop-first-screen .trust-icon {
    width: 0.94rem;
    height: 0.94rem;
  }

  .desktop-first-screen .bottom-trust-bar h3 {
    overflow: hidden;
    font-size: clamp(0.55rem, 0.61vw, 0.63rem);
    letter-spacing: 0.034em;
    line-height: 1.16;
    text-overflow: ellipsis;
  }

  .desktop-first-screen .bottom-trust-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 35;
    min-height: var(--bottom-bar-height);
    overflow: hidden;
    border: 1px solid var(--chrome-border);
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0)),
      var(--chrome-bg);
    box-shadow: var(--chrome-shadow);
    backdrop-filter: blur(var(--chrome-blur)) saturate(135%);
    -webkit-backdrop-filter: blur(var(--chrome-blur)) saturate(135%);
    transition:
      right var(--chrome-transition),
      bottom var(--chrome-transition),
      left var(--chrome-transition),
      background var(--chrome-transition),
      border-color var(--chrome-transition),
      box-shadow var(--chrome-transition);
  }

  .desktop-first-screen .bottom-trust-bar__inner {
    min-height: var(--bottom-bar-height);
    transition: min-height var(--chrome-transition);
  }
}

.realization-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(28rem, 1fr);
  align-items: start;
  gap: clamp(2.2rem, 5vw, 5.6rem);
  background:
    radial-gradient(circle at 76% 24%, rgba(198,91,45,0.22), transparent 25rem),
    linear-gradient(135deg, rgba(18,12,9,0.95), rgba(9,7,6,0.88));
}

.realization-section::before {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 24%, rgba(198,91,45,0.22), transparent 25rem),
    linear-gradient(135deg, rgba(18,12,9,0.95), rgba(9,7,6,0.88));
}

.realization-section > * {
  position: relative;
  z-index: 1;
}

.realization-section__intro {
  display: grid;
  align-content: start;
}

.realization-section__lead {
  max-width: 38rem;
  margin: 1.15rem 0 0;
  color: #d6c6b5;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.62;
}

.section-kicker {
  margin-bottom: 0.8rem;
}

.process-board-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.05rem, 2vw, 1.45rem);
}

.process-board {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 1rem;
}

.process-board::before {
  position: absolute;
  top: 1.6rem;
  bottom: 1.6rem;
  left: 2.35rem;
  z-index: 1;
  width: 1px;
  content: "";
  background:
    linear-gradient(180deg, transparent, rgba(255,198,146,0.72) 20%, rgba(208,116,66,0.62) 52%, transparent),
    linear-gradient(180deg, transparent, rgba(0,0,0,0.78), transparent);
  box-shadow:
    0 0 1.2rem rgba(208,116,66,0.28),
    0 0 0.02rem rgba(255,229,204,0.45);
}

.process-board::after {
  position: absolute;
  inset: -0.72rem -0.82rem;
  z-index: 0;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(208,116,66,0.055);
  background-image:
    radial-gradient(circle at 18% 12%, rgba(226,133,77,0.16), transparent 15rem),
    radial-gradient(circle at 86% 62%, rgba(86,36,22,0.32), transparent 16rem),
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(229,180,138,0.13) 0),
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(229,180,138,0.09) 0),
    repeating-linear-gradient(180deg, transparent 0 34px, rgba(229,180,138,0.1) 35px 36px, transparent 37px 72px),
    linear-gradient(145deg, rgba(37,21,14,0.54), rgba(8,6,5,0.3));
  background-size:
    100% 100%,
    100% 100%,
    184px 36px,
    184px 36px,
    100% 72px,
    100% 100%;
  background-position:
    0 0,
    0 0,
    0 0,
    92px 36px,
    0 0,
    0 0;
  opacity: 0.58;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 0.8rem, #000 calc(100% - 0.8rem), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 0.8rem, #000 calc(100% - 0.8rem), transparent 100%);
}

.process-step {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  grid-template-columns: clamp(4.1rem, 5vw, 4.75rem) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.45rem);
  align-items: stretch;
  min-height: 7.25rem;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(226,151,98,0.24);
  background:
    linear-gradient(115deg, rgba(255,238,212,0.075), rgba(255,255,255,0.016) 26%, transparent 52%),
    linear-gradient(180deg, rgba(34,22,16,0.76), rgba(11,8,6,0.86)),
    rgba(255,255,255,0.035);
  box-shadow:
    0 1.15rem 2.7rem rgba(0,0,0,0.34),
    inset 0 0.08rem 0 rgba(255,239,219,0.055),
    inset 0 -1.2rem 2rem rgba(0,0,0,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.018);
  backdrop-filter: blur(10px) saturate(118%);
  -webkit-backdrop-filter: blur(10px) saturate(118%);
}

.process-step::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(0,0,0,0.02), rgba(0,0,0,0.22) 58%, rgba(0,0,0,0.34)),
    radial-gradient(circle at 12% 16%, rgba(226,126,70,0.12), transparent 12rem),
    linear-gradient(180deg, rgba(255,238,212,0.06), transparent 38%);
  opacity: 0.9;
}

.process-step::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 2px;
  content: "";
  background:
    linear-gradient(90deg, rgba(235,151,91,0.92), rgba(208,116,66,0.34) 44%, transparent 76%);
  opacity: 0.6;
}

.process-step__number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(229,216,199,0.22);
  color: #f6e7d4;
  font-family: "Agency FB", "Bahnschrift Condensed", "Arial Narrow", "Trebuchet MS", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow:
    0 0.08rem 0 rgba(0,0,0,0.44),
    0 0 1rem rgba(255,190,130,0.16);
  background:
    radial-gradient(circle at 26% 18%, rgba(255,226,190,0.24), transparent 22%),
    radial-gradient(circle at 78% 76%, rgba(0,0,0,0.28), transparent 38%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.026) 0 1px, transparent 1px 11px),
    linear-gradient(145deg, #b65933 0%, #873721 46%, #35150e 100%);
  box-shadow:
    0 0.55rem 1.25rem rgba(0,0,0,0.32),
    inset 0.12rem 0.12rem 0 rgba(255,231,196,0.18),
    inset -0.18rem -0.22rem 0.7rem rgba(0,0,0,0.42);
}

.process-step__number::before {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(255,240,214,0.16), transparent 38%),
    linear-gradient(315deg, rgba(0,0,0,0.24), transparent 42%);
  opacity: 0.72;
}

.process-step__copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 0.42rem;
  min-width: 0;
}

.process-board h3,
.process-board p {
  margin: 0;
}

.process-board h3 {
  color: #efe3d4;
  font-size: clamp(1.08rem, 1.55vw, 1.38rem);
  letter-spacing: 0.1em;
  line-height: 1.08;
  text-transform: uppercase;
}

.process-board p {
  color: #b7aa99;
  max-width: 34rem;
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.48;
}

.detail-section-cta {
  display: inline-grid;
  justify-self: start;
  place-items: center;
  min-height: 3rem;
  padding: 0.82rem 1.05rem;
  border: 1px solid rgba(226,154,91,0.48);
  color: #f0e0cd;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(208,116,66,0.2), rgba(118,52,31,0.18)),
    rgba(255,255,255,0.035);
  box-shadow:
    0 0.8rem 1.8rem rgba(0,0,0,0.22),
    inset 0 0.08rem 0 rgba(255,239,219,0.06);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.detail-section-cta:hover,
.detail-section-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242,176,113,0.8);
  color: #fff6ea;
  background:
    linear-gradient(135deg, rgba(208,116,66,0.28), rgba(118,52,31,0.22)),
    rgba(255,255,255,0.05);
}

.detail-section-cta:focus-visible {
  outline: 2px solid rgba(245,194,143,0.9);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(80,35,20,0.52);
}

.manifest-section {
  background:
    radial-gradient(circle at 13% 18%, rgba(184,90,50,0.22), transparent 22rem),
    linear-gradient(180deg, rgba(18,12,9,0.9), rgba(10,8,6,0.86));
}

.manifest-section::before {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 13% 18%, rgba(184,90,50,0.22), transparent 22rem),
    linear-gradient(180deg, rgba(18,12,9,0.9), rgba(10,8,6,0.86));
}

.manifest-section > * {
  position: relative;
  z-index: 1;
}

.manifest-title {
  max-width: 60rem;
  margin-bottom: 1.1rem;
}

.manifest-section > p:last-of-type,
.manifest-section > p:last-child {
  max-width: 58rem;
  margin-bottom: 0;
  color: #d7c8b7;
  font-size: clamp(1.04rem, 1.7vw, 1.25rem);
  line-height: 1.62;
}

/* Definicja marki (dezambiguacja encji dla Google/AI). Oddzielona od manifestu
   subtelną górną linią, ale w tej samej sekcji — nie tworzy nowego H2. */
.manifest-whatis {
  max-width: 58rem;
  margin-top: clamp(1.5rem, 3vw, 2.3rem);
  padding-top: clamp(1.1rem, 2.2vw, 1.6rem);
  border-top: 1px solid rgba(208,116,66,0.4);
}

.manifest-whatis__label {
  margin: 0 0 0.5rem;
  color: #ffcf9e;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.manifest-whatis__body {
  margin: 0;
  color: #d7c8b7;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.62;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(17rem, 0.56fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3.7rem);
  align-items: start;
  background:
    radial-gradient(circle at 82% 16%, rgba(208,116,66,0.18), transparent 24rem),
    linear-gradient(135deg, rgba(13,9,7,0.96), rgba(8,7,6,0.94));
}

.faq-section::before {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255,244,231,0.03), transparent 36%),
    repeating-linear-gradient(90deg, rgba(229,216,199,0.028) 0 1px, transparent 1px 5.5rem);
}

.faq-section > * {
  position: relative;
  z-index: 1;
}

.faq-section__intro {
  position: sticky;
  top: calc(var(--topbar-height) + 1.1rem);
  max-width: 34rem;
}

#faq-title {
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-section__lead {
  max-width: 31rem;
  margin: 1rem 0 0;
  color: #d6c6b5;
  font-size: clamp(0.98rem, 1.24vw, 1.1rem);
  line-height: 1.58;
}

.faq-list {
  display: grid;
  gap: 0.72rem;
}

.faq-item {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 1.9vw, 1.28rem);
  border: 1px solid rgba(229,216,199,0.15);
  border-radius: 0.35rem;
  background:
    linear-gradient(145deg, rgba(255,244,231,0.058), rgba(255,244,231,0.018)),
    rgba(10,7,5,0.62);
  box-shadow:
    0 0.9rem 2.2rem rgba(0,0,0,0.2),
    inset 0 0.08rem 0 rgba(255,239,219,0.045);
}

.faq-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, rgba(226,154,91,0.78), rgba(208,116,66,0.24));
}

.faq-item h3 {
  margin: 0 0 0.55rem;
  color: #f0e4d6;
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
  line-height: 1.32;
  letter-spacing: 0.02em;
}

.faq-item p {
  margin: 0;
  color: #cdbca8;
  font-size: clamp(0.94rem, 1.08vw, 1.02rem);
  line-height: 1.56;
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.35rem, 4vw, 3.35rem);
  align-items: start;
  padding-top: clamp(2.8rem, 5.6vw, 5.2rem);
  padding-bottom: clamp(2.9rem, 5.8vw, 5.3rem);
  background:
    radial-gradient(circle at 20% 18%, rgba(208,116,66,0.25), transparent 24rem),
    linear-gradient(140deg, rgba(12,8,6,0.98), rgba(22,14,10,0.94) 48%, rgba(8,7,6,0.98));
}

.inquiry-section::before {
  position: absolute;
  inset: 0 calc((100% - 100vw) / 2);
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(208,116,66,0.18), transparent 30%),
    repeating-linear-gradient(0deg, rgba(229,216,199,0.035) 0 1px, transparent 1px 3.8rem);
}

.inquiry-section > * {
  position: relative;
  z-index: 1;
}

.inquiry-intro {
  position: sticky;
  top: calc(var(--topbar-height) + 1.1rem);
  max-width: 32rem;
}

.inquiry-intro h2 {
  margin-bottom: 0.72rem;
  text-transform: uppercase;
}

.inquiry-intro__headline {
  margin: 0 0 0.72rem;
  color: #eadcc8;
  font-size: clamp(1.08rem, 1.75vw, 1.28rem);
  font-weight: 700;
  line-height: 1.35;
}

.inquiry-intro p:last-child {
  margin: 0;
  color: #d7c8b7;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.58;
}

.inquiry-form {
  display: grid;
  gap: 0.68rem;
  padding: clamp(0.78rem, 1.8vw, 1.15rem);
  border: 1px solid rgba(229,216,199,0.16);
  border-radius: 0.35rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    rgba(13,9,7,0.82);
  box-shadow: 0 1.4rem 4rem rgba(0,0,0,0.32);
}

.form-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.inquiry-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.inquiry-fieldset legend,
.form-field {
  color: #efe1cf;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.inquiry-fieldset legend {
  margin-bottom: 0.42rem;
}

.inquiry-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.38rem;
}

.inquiry-choice {
  position: relative;
  display: grid;
  min-height: 2.75rem;
  cursor: pointer;
}

.inquiry-choice input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
}

.inquiry-choice span {
  display: grid;
  align-items: center;
  min-width: 0;
  padding: 0.46rem 0.6rem;
  border: 1px solid rgba(229,216,199,0.15);
  border-radius: 0.28rem;
  color: #decfbd;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.25;
  background: rgba(0,0,0,0.2);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.inquiry-choice input:checked + span {
  border-color: rgba(208,116,66,0.82);
  color: #fff4e7;
  background: linear-gradient(135deg, rgba(184,90,50,0.38), rgba(109,40,25,0.3));
  box-shadow: 0 0 0 1px rgba(208,116,66,0.18), 0 0.8rem 1.7rem rgba(0,0,0,0.22);
}

.inquiry-choice input:focus-visible + span {
  outline: 2px solid rgba(240,231,218,0.72);
  outline-offset: 2px;
}

.inquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem 0.56rem;
}

.form-field {
  position: relative;
  display: grid;
  gap: 0.32rem;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 0.32rem;
}

.field-optional {
  color: #c9b8a4;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.field-label--visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.form-field--wide {
  min-width: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(229,216,199,0.16);
  border-radius: 0.28rem;
  color: #fff4e7;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  background: rgba(0,0,0,0.28);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.form-field select {
  color-scheme: dark;
  background:
    linear-gradient(180deg, rgba(255,244,231,0.028), rgba(255,244,231,0)),
    #080605;
}

.form-field select option {
  color: #f3e7d8;
  background: #080605;
}

.form-field select option:checked {
  color: #fff4e7;
  background: #2a120b;
}

.form-field input,
.form-field select {
  min-height: 2.75rem;
  padding: 0.5rem 0.64rem;
}

.form-field textarea {
  height: 6.55rem;
  min-height: 6.55rem;
  max-height: 6.55rem;
  resize: none;
  padding: 0.6rem 0.64rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(229,216,199,0.45);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(208,116,66,0.84);
  box-shadow: 0 0 0 3px rgba(208,116,66,0.14);
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid rgba(245,194,143,0.88);
  outline-offset: 2px;
  border-color: rgba(242,176,113,0.88);
  box-shadow:
    0 0 0 4px rgba(80,35,20,0.48),
    0 0 1rem rgba(226,154,91,0.18);
}

.form-field input:focus,
.form-field textarea:focus {
  background: rgba(0,0,0,0.38);
}

.form-field select:focus {
  background:
    linear-gradient(180deg, rgba(255,244,231,0.04), rgba(255,244,231,0)),
    #060504;
}

.form-field [aria-invalid="true"],
.inquiry-fieldset.is-invalid .inquiry-choice span {
  border-color: rgba(255,122,93,0.74);
}

.field-meta {
  justify-self: end;
  color: #a99c8d;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-transform: none;
}

.form-error {
  margin: 0;
  color: #ffd3c2;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.form-error:empty {
  display: none;
}

.form-error:not(:empty) {
  display: block;
  margin-top: 0.04rem;
}

.turnstile-row {
  display: grid;
  /* Pełna szerokość siatki formularza. Widget Turnstile ma stałe 300px,
     więc w połowie kolumny (~232px na 1024-1300px) wyjeżdżał poza komórkę.
     grid-column: 1 / -1 daje mu całą szerokość — mieści się na każdym viewporcie. */
  grid-column: 1 / -1;
  align-self: center;
  justify-self: stretch;
  width: 100%;
  gap: 0.24rem;
  min-width: 0;
}

.turnstile-widget {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  min-height: 4.0625rem;
  overflow: hidden;
}

.turnstile-widget iframe {
  display: block;
  max-width: 100%;
}

.attachment-note,
.inquiry-submit-note,
.form-status {
  margin: 0;
  color: #cdbca8;
  font-size: 0.78rem;
  line-height: 1.36;
}

.inquiry-submit {
  justify-self: start;
  min-height: 2.75rem;
  min-width: min(100%, 16rem);
  border: 0;
  cursor: pointer;
  scroll-margin-bottom: calc(var(--bottom-bar-height) + 1.25rem);
}

.inquiry-submit:focus-visible {
  outline: 2px solid rgba(245,194,143,0.9);
  outline-offset: 3px;
  box-shadow:
    0 0 0 4px rgba(80,35,20,0.58),
    0 0 1.25rem rgba(226,154,91,0.34);
}

.inquiry-submit:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.inquiry-submit-note {
  max-width: 35rem;
  color: #d8c9b7;
}

.form-status {
  min-height: 1.2rem;
  font-weight: 700;
  scroll-margin-bottom: calc(var(--bottom-bar-height) + 1.25rem);
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: #d7f0cf;
}

.form-status.is-error {
  color: #ffb59b;
}

@media (max-width: 1180px) {
  .curated-gallery-header {
    grid-template-columns: minmax(0, 1fr);
  }

  .curated-gallery-stage {
    /* Pierwsza kolumna jako czyste 1fr pochłania całą wolną przestrzeń;
       druga ma stałą szerokość. Wcześniejsze dwie kolumny fr z dużym min
       (minmax(25rem,0.62fr)) zostawiały ~55px pustki po prawej w zakresie
       1024-1100px, bo fr liczy się dopiero po odjęciu minimów. */
    grid-template-columns: minmax(0, 1fr) 24rem;
  }

  .curated-meta-grid div {
    min-height: 3.25rem;
  }

  .curated-meta-grid dt {
    font-size: 0.58rem;
  }

  .curated-meta-grid dd {
    font-size: 0.7rem;
  }

  #curated-panel-copy {
    min-height: calc(1.45em * 6);
  }

  .curated-hero-copy span {
    min-height: calc(1.32em * 2);
  }

  .curated-grout {
    grid-template-columns: 2.22rem minmax(0, 1fr);
  }

  .curated-grout span {
    font-size: 0.68rem;
  }

  .curated-thumb-label span:first-child,
  .curated-thumb-label span:last-child {
    font-size: 0.54rem;
  }
}

@media (max-width: 980px) {
  .curated-thumb-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.44rem;
  }
}

@media (max-width: 880px) {
  .curated-gallery-stage {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "hero"
      "shelf"
      "panel";
    gap: 1rem;
  }

  .curated-hero {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .curated-panel {
    min-height: 0;
    height: auto;
  }

  #curated-panel-copy {
    min-height: calc(1.45em * 3);
  }

  .curated-note-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .curated-gallery-section {
    padding-top: 2.25rem;
    padding-right: clamp(0.92rem, 4vw, 1.2rem);
    padding-left: clamp(0.92rem, 4vw, 1.2rem);
  }

  .curated-gallery-header {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.05rem;
  }

  .curated-gallery-header h2 {
    font-size: clamp(1.72rem, 7vw, 2.15rem);
    line-height: 1.08;
    letter-spacing: 0.052em;
  }

  .curated-gallery-intro {
    gap: 0.84rem;
  }

  .curated-gallery-stage {
    gap: 1rem;
  }

  .curated-hero-overlay {
    inset: auto 0.72rem 0.72rem;
    gap: 0.72rem;
  }

  .curated-hero-copy {
    width: calc(100% - 3.7rem);
    padding: 0.5rem 0.58rem;
  }

  .curated-hero-copy strong {
    font-size: clamp(1.35rem, 7.2vw, 1.72rem);
    line-height: 1.08;
    letter-spacing: 0.08em;
    min-height: calc(1.16em * 2);
  }

  .curated-hero-copy span {
    font-size: 0.66rem;
    line-height: 1.16;
    min-height: calc(1.32em * 3);
  }

  .curated-hero-number {
    width: 2.8rem;
    min-width: 2.8rem;
    height: 2.8rem;
  }

  .curated-shelf-head {
    display: grid;
    gap: 0.32rem;
  }

  .curated-shelf-head p {
    max-width: 22rem;
    font-size: 0.78rem;
    text-align: left;
  }

  .curated-thumb {
    scroll-snap-align: start;
  }

  .curated-thumb-label span:last-child {
    font-size: 0.56rem;
  }

  .curated-panel {
    padding: 1rem;
  }

  .curated-panel-head h3 {
    font-size: clamp(1.72rem, 7.4vw, 2.18rem);
    letter-spacing: 0.09em;
  }

  .curated-panel-section {
    padding-top: 0;
    border-bottom: 1px solid rgba(229,216,199,0.12);
  }

  .curated-panel-section summary {
    align-items: center;
    min-height: 3.2rem;
  }

  .curated-panel-section summary span:last-child {
    display: grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border: 1px solid rgba(229,216,199,0.18);
    color: #f1d2b2;
    font-size: 1rem;
  }

  .curated-panel-section[open] summary span:last-child {
    transform: rotate(45deg);
  }

  .curated-meta-grid,
  .curated-grout-list {
    padding-bottom: 1rem;
  }

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

@media (max-width: 640px) {
  .curated-thumb-strip {
    grid-auto-flow: column;
    grid-auto-columns: minmax(8.2rem, 42vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding: 0.16rem 0 0.48rem;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(208,116,66,0.58) rgba(255,255,255,0.08);
  }
}

@media (max-width: 520px) {
  #curated-panel-copy {
    min-height: calc(1.45em * 6);
  }

  .curated-grout-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .curated-meta-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .curated-meta-grid dd {
    font-size: 0.74rem;
  }

  .curated-grout {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .curated-grout span {
    font-size: 0.68rem;
  }
}

@media (max-width: 380px) {
  .curated-grout span {
    font-size: 0.68rem;
  }
}

@supports (content-visibility: auto) {
  .curated-gallery-section,
  .realization-section,
  .manifest-section,
  .faq-section,
  .inquiry-section,
  .bottom-trust-footer-space {
    content-visibility: auto;
    contain-intrinsic-size: auto 42rem;
  }

  .realization-section {
    contain-intrinsic-size: auto 41rem;
  }

  .curated-gallery-section {
    contain-intrinsic-size: auto 109rem;
  }

  .manifest-section {
    contain-intrinsic-size: auto 41rem;
  }

  .faq-section {
    contain-intrinsic-size: auto 71rem;
  }

  .inquiry-section {
    contain-intrinsic-size: auto 64rem;
  }

  .bottom-trust-footer-space {
    contain-intrinsic-size: auto var(--expanded-footer-height);
  }
}

@media (max-width: 720px) {
  @supports (content-visibility: auto) {
    .realization-section {
      contain-intrinsic-size: auto 53rem;
    }

    /* Estymaty zmierzone do realnych wysokości (mobile ~360-390px), żeby
       natywny smooth-scroll do #zapytanie nie dryfował: sekcje NAD celem nie
       zmieniają wtedy wysokości w trakcie animacji. Patrz też desktop wyżej. */
    .curated-gallery-section {
      contain-intrinsic-size: auto 120rem;
    }

    .manifest-section {
      contain-intrinsic-size: auto 48rem;
    }

    .inquiry-section {
      contain-intrinsic-size: auto 95rem;
    }

    .faq-section {
      contain-intrinsic-size: auto 96rem;
    }
  }
}

@media (max-width: 1180px) {
  .topbar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

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

  .bottom-trust-bar article:nth-child(2n) {
    border-right: 0;
  }
}

@media (min-width: 721px) {
  body {
    padding-bottom: var(--bottom-bar-height);
    transition: padding-bottom var(--chrome-transition);
  }

  .bottom-trust-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 35;
    min-height: var(--bottom-bar-height);
    overflow: hidden;
    border: 1px solid var(--chrome-border);
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
      var(--chrome-bg);
    box-shadow: var(--chrome-shadow);
    backdrop-filter: blur(var(--chrome-blur)) saturate(138%);
    -webkit-backdrop-filter: blur(var(--chrome-blur)) saturate(138%);
    transition:
      right var(--chrome-transition),
      bottom var(--chrome-transition),
      left var(--chrome-transition),
      background var(--chrome-transition),
      border-color var(--chrome-transition),
      box-shadow var(--chrome-transition);
  }

  .bottom-trust-bar__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: var(--bottom-bar-height);
    transition: min-height var(--chrome-transition);
  }

  .bottom-trust-footer-space {
    display: block;
    height: var(--expanded-footer-height);
    background:
      radial-gradient(circle at 82% 18%, rgba(184,90,50,0.14), transparent 28rem),
      linear-gradient(180deg, rgba(12,8,6,0.72), rgba(6,5,4,0.92));
  }

  .bottom-trust-bar article,
  .bottom-trust-bar article:nth-child(2n) {
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 0;
  }

  .bottom-trust-bar article:last-child {
    border-right: 0;
  }

  html.is-at-page-end .bottom-trust-bar {
    min-height: 0;
    height: auto;
    max-height: calc(100svh - var(--topbar-height));
    overflow-y: auto;
    background:
      radial-gradient(circle at 84% 14%, rgba(208,116,66,0.18), transparent 27rem),
      linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
      rgba(10,7,5,0.86);
    box-shadow:
      0 -1.2rem 3rem rgba(0,0,0,0.42),
      0 0.1rem 0 rgba(255,255,255,0.05) inset;
    backdrop-filter: blur(22px) saturate(138%);
    -webkit-backdrop-filter: blur(22px) saturate(138%);
  }

  html.is-at-page-end .bottom-trust-bar__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
    min-height: auto;
    padding:
      clamp(0.72rem, 1.2vw, 1rem)
      clamp(0.95rem, 2.1vw, 1.7rem)
      clamp(0.38rem, 0.72vw, 0.58rem);
  }

  html.is-at-page-end .bottom-trust-bar article,
  html.is-at-page-end .bottom-trust-bar article:nth-child(2n) {
    grid-template-columns: 1rem minmax(0, 1fr);
    gap: 0.46rem;
    align-items: start;
    min-height: auto;
    padding: clamp(0.52rem, 0.85vw, 0.78rem) clamp(0.56rem, 0.95vw, 0.9rem);
    border: 0;
    border-right: 1px solid rgba(229,216,199,0.12);
    background: transparent;
    box-shadow: none;
  }

  html.is-at-page-end .trust-icon {
    width: 0.82rem;
    height: 0.82rem;
    margin-top: 0.12rem;
  }

  html.is-at-page-end .bottom-trust-bar h3 {
    color: #f0e4d6;
    font-size: clamp(0.68rem, 0.8vw, 0.84rem);
    letter-spacing: 0.048em;
    line-height: 1.3;
    text-overflow: clip;
    white-space: normal;
  }

  html.is-at-page-end .trust-detail {
    max-height: 18rem;
    margin-top: 0.38rem;
    font-size: clamp(0.75rem, 0.8vw, 0.86rem);
    line-height: 1.45;
    opacity: 1;
  }

  html.is-at-page-end .trust-contact {
    display: flex;
    grid-column: 1 / -1;
    justify-content: center;
    gap: 0.32rem;
    padding: clamp(0.34rem, 0.65vw, 0.52rem) 0 0;
    border-top: 1px solid rgba(229,216,199,0.11);
    color: #dfd0bf;
    font-size: clamp(0.84rem, 0.96vw, 1.02rem);
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  html.is-at-page-end .trust-company {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem 0.34rem;
    padding: 0.18rem 0 0;
    color: #bfae9c;
    font-size: clamp(0.7rem, 0.82vw, 0.84rem);
    line-height: 1.34;
    text-align: center;
    letter-spacing: 0.018em;
  }
}

@media (min-width: 721px) and (max-width: 1023px) {
  .product-tile {
    min-height: 21rem;
  }

  .tile-media {
    min-height: 8.5rem;
    aspect-ratio: 16 / 9;
  }

  .tile-copy {
    padding: 0.82rem 0.84rem 0.9rem;
  }

  .tile-copy h3 {
    font-size: 0.92rem;
    line-height: 1.34;
    letter-spacing: 0.055em;
  }

  .tile-copy p {
    font-size: 0.78rem;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  :root {
    --expanded-footer-height: clamp(17.5rem, 34svh, 20rem);
  }

  html.is-at-page-end .bottom-trust-bar__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html.is-at-page-end .trust-detail {
    max-height: 20rem;
  }
}

@media (min-width: 721px) and (max-width: 920px) and (max-height: 520px) {
  :root {
    --expanded-footer-height: clamp(9.5rem, 42svh, 11rem);
  }

  html.is-at-page-end .bottom-trust-bar {
    max-height: min(46svh, 12rem);
  }

  html.is-at-page-end .bottom-trust-bar__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.42rem 0.72rem 0.34rem;
  }

  html.is-at-page-end .bottom-trust-bar article,
  html.is-at-page-end .bottom-trust-bar article:nth-child(2n) {
    grid-template-columns: 0.74rem minmax(0, 1fr);
    gap: 0.32rem;
    padding: 0.32rem 0.42rem;
  }

  html.is-at-page-end .bottom-trust-bar h3 {
    overflow: hidden;
    font-size: 0.62rem;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  html.is-at-page-end .trust-detail {
    display: -webkit-box;
    max-height: none;
    margin-top: 0.14rem;
    overflow: hidden;
    font-size: 0.66rem;
    line-height: 1.2;
    opacity: 1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  html.is-at-page-end .trust-contact {
    padding: 0.32rem 0.24rem 0.02rem;
    font-size: 0.78rem;
    line-height: 1.2;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  :root {
    --expanded-footer-height: clamp(14.75rem, 31svh, 16rem);
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .desktop-first-screen .hero {
    grid-template-columns: 1fr;
  }

  .desktop-first-screen .hero-emblem {
    display: none;
  }

  .desktop-first-screen h1 {
    font-size: clamp(2.35rem, 4.8vw, 3.25rem);
  }

  .desktop-first-screen .hero-content {
    max-width: 41rem;
  }

  .desktop-first-screen .hero-lead {
    max-width: 31rem;
  }

  .desktop-first-screen .bottom-trust-bar__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .desktop-first-screen .bottom-trust-bar article:nth-child(2n) {
    border-right: 1px solid rgba(255,255,255,0.1);
  }

  .desktop-first-screen .bottom-trust-bar article:last-child {
    border-right: 0;
  }
}

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

  .hero {
    min-height: clamp(37rem, calc(100svh - 7.25rem), 45rem);
    padding-bottom: clamp(3.4rem, 7vw, 5rem);
  }

  .hero-content {
    max-width: min(100%, 43rem);
  }

  .hero-emblem {
    display: none;
  }
}

@media (max-width: 920px) {
  .realization-section,
  .faq-section,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

  .faq-section__intro,
  .inquiry-intro {
    position: relative;
    top: auto;
    max-width: 48rem;
  }

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

@media (orientation: landscape) and (max-height: 480px) and (max-width: 1080px) {
  :root {
    --topbar-height: 3.35rem;
    --bottom-bar-height: 1.55rem;
    --brand-mark-width: 2rem;
    --brand-wordmark-width: 8rem;
    --nav-link-height: 1.26rem;
  }

  .topbar-inner {
    min-height: var(--topbar-height);
    padding-right: clamp(0.9rem, 3vw, 1.55rem);
    padding-left: clamp(0.9rem, 3vw, 1.55rem);
  }

  .brand-logo {
    gap: 0.42rem;
  }

  .nav-links {
    gap: clamp(0.42rem, 1.8vw, 0.8rem);
  }

  .nav-links a {
    min-height: var(--nav-link-height);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: calc(100svh - var(--topbar-height) - var(--bottom-bar-height));
    padding: 0.95rem clamp(1.25rem, 4.8vw, 2.5rem) calc(var(--bottom-bar-height) + 0.85rem);
  }

  .hero-content {
    max-width: 39rem;
  }

  .hero-content::before {
    top: 0.08rem;
    bottom: 0.08rem;
  }

  .eyebrow {
    margin-bottom: 0.34rem;
    font-size: 0.64rem;
  }

  .hero h1,
  h1 {
    max-width: 19ch;
    margin-bottom: 0.42rem;
    font-size: clamp(2.1rem, 6vw, 3.05rem);
    line-height: 0.9;
  }

  .hero-lead {
    max-width: 35rem;
    margin-bottom: 0.45rem;
    font-size: clamp(0.66rem, 1.6vw, 0.78rem);
    line-height: 1.28;
  }

  .hero-actions {
    margin-bottom: 0.5rem;
  }

  .hero-trust {
    gap: 0.2rem 0.58rem;
    margin-top: 0;
  }

  .hero-trust span {
    min-height: 1rem;
    padding-left: 0.74rem;
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .hero-trust span::before {
    width: 0.3rem;
    height: 0.3rem;
  }

  .primary-action,
  .secondary-action {
    min-height: 2.75rem;
    padding: 0.62rem 0.86rem;
    font-size: 0.58rem;
  }

  .bottom-trust-bar article {
    grid-template-columns: 0.78rem minmax(0, 1fr);
    gap: 0.24rem;
    padding: 0.08rem 0.42rem;
  }

  .bottom-trust-bar h3 {
    font-size: 0.6rem;
    line-height: 1.16;
  }

  .trust-icon {
    width: 0.74rem;
    height: 0.74rem;
  }
}

@media (max-width: 720px) {
  :root {
    --topbar-height: 4.78rem;
    --brand-mark-width: clamp(2.14rem, 6vw, 2.4rem);
    --brand-wordmark-width: clamp(9.6rem, 43vw, 10.9rem);
    --nav-link-height: 1.34rem;
  }

  .detail-section-cta {
    justify-self: stretch;
  }

  .bottom-trust-footer-space {
    display: block;
    height: var(--mobile-expanded-footer-space);
    background:
      radial-gradient(circle at 82% 22%, rgba(184,90,50,0.14), transparent 20rem),
      linear-gradient(180deg, rgba(12,8,6,0.66), rgba(6,5,4,0.94));
  }

  .bottom-trust-bar {
    transition:
      min-height var(--chrome-transition),
      max-height var(--chrome-transition),
      background var(--chrome-transition),
      border-color var(--chrome-transition),
      box-shadow var(--chrome-transition);
  }

  html.is-at-page-end .bottom-trust-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 35;
    max-height: min(46svh, 23rem);
    overflow-y: auto;
    border: 1px solid var(--chrome-border);
    background:
      radial-gradient(circle at 82% 10%, rgba(208,116,66,0.18), transparent 18rem),
      linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
      rgba(10,7,5,0.88);
    box-shadow:
      0 -1rem 2.6rem rgba(0,0,0,0.42),
      0 0.08rem 0 rgba(255,255,255,0.05) inset;
    backdrop-filter: blur(20px) saturate(136%);
    -webkit-backdrop-filter: blur(20px) saturate(136%);
  }

  html.is-at-page-end .bottom-trust-bar__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
    padding: clamp(0.62rem, 2.8vw, 0.9rem) clamp(0.82rem, 4vw, 1.2rem) clamp(0.48rem, 2.5vw, 0.72rem);
  }

  html.is-at-page-end .bottom-trust-bar article {
    grid-template-columns: 0.82rem minmax(0, 1fr);
    gap: 0.38rem;
    align-items: start;
    min-height: auto;
    padding: 0.52rem 0.5rem;
    cursor: pointer;
    border-right: 1px solid rgba(229,216,199,0.11);
    border-bottom: 1px solid rgba(229,216,199,0.1);
    transition:
      background-color var(--chrome-transition),
      border-color var(--chrome-transition),
      box-shadow var(--chrome-transition);
  }

  html.is-at-page-end .bottom-trust-bar article > div {
    padding-right: 2.75rem;
  }

  html.is-at-page-end .bottom-trust-bar article:nth-child(2n),
  html.is-at-page-end .bottom-trust-bar article:last-child {
    border-right: 0;
  }

  html.is-at-page-end .bottom-trust-bar article:nth-last-of-type(-n + 2) {
    border-bottom: 0;
  }

  html.is-at-page-end .trust-accordion-toggle {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
    width: 100%;
    padding: 0;
    cursor: pointer;
    border: 0;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
  }

  html.is-at-page-end .trust-accordion-toggle::after {
    position: absolute;
    top: 0.64rem;
    right: 0.52rem;
    width: 0.42rem;
    height: 0.42rem;
    content: "";
    border-right: 1.5px solid rgba(240,214,190,0.8);
    border-bottom: 1.5px solid rgba(240,214,190,0.8);
    transform: rotate(45deg);
    transform-origin: 50% 50%;
    transition:
      transform var(--chrome-transition),
      border-color var(--chrome-transition);
  }

  html.is-at-page-end .trust-accordion-toggle::before {
    position: absolute;
    top: 0.5rem;
    right: 1.08rem;
    content: "więcej";
    padding: 0.16rem 0.34rem 0.18rem;
    color: rgba(240,226,211,0.78);
    font-size: 0.46rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border: 1px solid rgba(229,216,199,0.16);
    border-radius: 999px;
    background: rgba(10,7,5,0.42);
    backdrop-filter: blur(10px) saturate(128%);
    -webkit-backdrop-filter: blur(10px) saturate(128%);
    transition:
      color var(--chrome-transition),
      border-color var(--chrome-transition),
      background-color var(--chrome-transition);
  }

  html.is-at-page-end .trust-accordion-toggle[aria-expanded="true"]::after {
    border-color: rgba(235,139,77,0.95);
    transform: translateY(0.14rem) rotate(225deg);
  }

  html.is-at-page-end .trust-accordion-toggle[aria-expanded="true"]::before {
    content: "zwiń";
    color: rgba(245,191,147,0.96);
    border-color: rgba(226,154,91,0.34);
    background: rgba(92,46,24,0.36);
  }

  html.is-at-page-end .trust-accordion-toggle:focus-visible {
    outline: 1px solid rgba(235,139,77,0.78);
    outline-offset: -0.18rem;
  }

  html.is-at-page-end .bottom-trust-bar article.is-open {
    background: rgba(255,255,255,0.035);
    box-shadow: inset 0 0 0 1px rgba(226,154,91,0.16);
  }

  html.is-at-page-end .trust-icon {
    width: 0.78rem;
    height: 0.78rem;
    margin-top: 0.08rem;
  }

  html.is-at-page-end .bottom-trust-bar h3 {
    color: #f0e4d6;
    font-size: clamp(0.66rem, 2.6vw, 0.8rem);
    letter-spacing: 0.042em;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
  }

  html.is-at-page-end .trust-detail {
    display: -webkit-box;
    max-height: none;
    margin-top: 0.22rem;
    overflow: hidden;
    color: rgba(214,200,184,0.82);
    font-size: clamp(0.7rem, 2.6vw, 0.84rem);
    line-height: 1.32;
    opacity: 1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  html.is-at-page-end .bottom-trust-bar article.is-open .trust-detail {
    display: block;
    max-height: none;
    overflow: visible;
    opacity: 1;
    -webkit-line-clamp: unset;
  }

  html.is-at-page-end .trust-contact {
    z-index: 4;
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.18rem 0.34rem;
    padding: 0.58rem 0.4rem 0.3rem;
    border-top: 1px solid rgba(229,216,199,0.12);
    color: #dfd0bf;
    font-size: clamp(0.8rem, 3.3vw, 0.92rem);
    font-weight: 700;
    line-height: 1.34;
    text-align: center;
    letter-spacing: 0.018em;
    background:
      linear-gradient(180deg, rgba(16,10,7,0.72), rgba(10,7,5,0.95)),
      rgba(10,7,5,0.92);
    box-shadow: 0 -0.58rem 1.1rem rgba(0,0,0,0.25);
  }

  html.is-at-page-end .trust-company {
    display: block;
    grid-column: 1 / -1;
    padding: 0.2rem 0.46rem 0.58rem;
    color: #bfae9c;
    font-size: clamp(0.68rem, 2.9vw, 0.78rem);
    line-height: 1.34;
    text-align: center;
    background:
      linear-gradient(180deg, rgba(10,7,5,0.95), rgba(9,6,5,0.98)),
      rgba(10,7,5,0.96);
  }

  html.is-at-page-end .trust-contact a {
    white-space: nowrap;
  }

  .topbar-inner {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0.16rem;
    min-height: var(--topbar-height);
    padding: 0.34rem clamp(0.78rem, 4.25vw, 1.4rem) 0.36rem;
  }

  .brand {
    justify-content: flex-start;
  }

  .brand-logo {
    gap: clamp(0.44rem, 1.8vw, 0.58rem);
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    width: 100%;
    gap: clamp(0.16rem, 1.4vw, 0.36rem);
    padding-top: 0.1rem;
    border-top: 1px solid rgba(229, 216, 199, 0.08);
  }

  .nav-links a {
    align-content: start;
    justify-items: center;
    min-width: 0;
    min-height: var(--nav-link-height);
    padding: 0.08rem 0.08rem 0.2rem;
    font-size: clamp(0.64rem, 2.5vw, 0.71rem);
    line-height: 1;
    text-align: center;
    letter-spacing: 0.078em;
    white-space: nowrap;
    transition:
      min-height var(--chrome-transition),
      padding var(--chrome-transition),
      transform var(--chrome-transition),
    color var(--chrome-transition);
  }

  .legal-nav-links a[aria-current="page"] {
    line-height: 1.05;
    white-space: normal;
  }

  .nav-links a::after {
    bottom: 0.02rem;
    height: 1px;
  }

  .hero {
    min-height: auto;
    padding: clamp(2.45rem, 8vw, 3.3rem) clamp(1rem, 5vw, 2rem) clamp(3.05rem, 10vw, 4rem);
  }

  .hero::before {
    background:
      radial-gradient(circle at 73% 27%, rgba(229,137,74,0.08), transparent 18rem),
      linear-gradient(90deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.48) 48%, rgba(0,0,0,0.2) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.42) 100%);
  }

  .hero-scene {
    transform: scale(1.012);
  }

  .hero-scene__image {
    object-position: center top;
  }

  .hero h1,
  h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.3vw, 2.82rem);
    line-height: 1.02;
    letter-spacing: 0.01em;
  }

  .hero-lead {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.52;
    letter-spacing: 0;
    text-shadow:
      0 0.06rem 0 rgba(0,0,0,0.98),
      0 0.18rem 0.32rem rgba(0,0,0,0.9),
      0 0 1rem rgba(0,0,0,0.84);
  }

  .hero-trust {
    gap: 0.5rem 0.82rem;
    margin-top: 1.15rem;
  }

  .hero-trust span {
    color: #ecc9a8;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }

  .hero-actions {
    gap: 0.82rem;
  }

  .hero-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .promise-strip,
  .product-grid,
  .inquiry-form-grid,
  .bottom-trust-bar__inner {
    grid-template-columns: 1fr;
  }

  .product-tile {
    min-height: 0;
  }

  .tile-media {
    min-height: 10rem;
    aspect-ratio: 16 / 9;
  }

  .tile-copy {
    padding: 0.95rem;
  }

  .inquiry-section {
    padding-top: clamp(2.35rem, 8vw, 3.25rem);
    padding-right: clamp(0.9rem, 4.5vw, 1.5rem);
    padding-bottom: clamp(2.55rem, 9vw, 3.65rem);
    padding-left: clamp(0.9rem, 4.5vw, 1.5rem);
  }

  .faq-section {
    padding-top: clamp(2.45rem, 8vw, 3.4rem);
    padding-right: clamp(0.9rem, 4.5vw, 1.5rem);
    padding-bottom: clamp(2.55rem, 9vw, 3.65rem);
    padding-left: clamp(0.9rem, 4.5vw, 1.5rem);
  }

  .faq-list {
    gap: 0.58rem;
  }

  .faq-item {
    padding: 0.9rem;
  }

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

  .inquiry-form {
    gap: 0.58rem;
    padding: clamp(0.68rem, 3.2vw, 0.9rem);
  }

  .inquiry-intro h2 {
    margin-bottom: 0.58rem;
  }

  .inquiry-intro p:last-child {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .inquiry-fieldset legend {
    margin-bottom: 0.42rem;
  }

  .inquiry-choice {
    min-height: 2.75rem;
  }

  .inquiry-choice span {
    padding: 0.42rem 0.54rem;
  }

  .form-field input,
  .form-field select {
    min-height: 2.75rem;
  }

  .form-field textarea {
    height: 5.9rem;
    min-height: 5.9rem;
    max-height: 5.9rem;
  }

  .turnstile-row {
    justify-self: stretch;
    width: 100%;
    padding-left: 0;
  }

  .attachment-note,
  .inquiry-submit-note,
  .form-status {
    font-size: 0.86rem;
    line-height: 1.36;
  }

  .inquiry-submit {
    justify-self: stretch;
    scroll-margin-bottom: 2.75rem;
  }

  .form-status {
    scroll-margin-bottom: 2.75rem;
  }

  .promise-strip article,
  .bottom-trust-bar article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .promise-strip article:last-child,
  .bottom-trust-bar article:last-child {
    border-bottom: 0;
  }

  .process-board::after {
    inset: -0.45rem;
    opacity: 0.42;
  }

  .process-step {
    background:
      linear-gradient(115deg, rgba(255,238,212,0.058), transparent 46%),
      linear-gradient(180deg, rgba(30,19,14,0.82), rgba(10,7,6,0.9));
    box-shadow:
      0 0.8rem 1.8rem rgba(0,0,0,0.28),
      inset 0 0.08rem 0 rgba(255,239,219,0.045),
      inset 0 -0.9rem 1.4rem rgba(0,0,0,0.16);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading p {
    margin-right: 0;
    margin-left: 0;
    font-size: 1rem;
    line-height: 1.55;
  }

  .realization-section__lead,
  .faq-section__lead,
  .manifest-section p:last-child,
  .inquiry-intro p:last-child {
    font-size: 1rem;
    line-height: 1.54;
  }

  .product-tile {
    min-height: 12.2rem;
  }
}

@media (min-width: 560px) and (max-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.05rem;
  }

  .product-tile {
    min-height: 0;
  }

  .tile-media {
    min-height: 8.8rem;
    aspect-ratio: 16 / 9;
  }

  .tile-copy {
    padding: 0.8rem;
  }

  .tile-copy h3 {
    font-size: 0.86rem;
    line-height: 1.34;
    letter-spacing: 0.055em;
  }

  .tile-copy p {
    font-size: 0.74rem;
  }

  .product-card-cta {
    font-size: 0.64rem;
    letter-spacing: 0.048em;
  }
}

@media (max-width: 430px) {
  :root {
    --mobile-expanded-footer-space: clamp(17.5rem, 44svh, 22rem);
    --brand-mark-width: clamp(2.04rem, 9.8vw, 2.28rem);
    --brand-wordmark-width: clamp(8.95rem, 51vw, 10.6rem);
  }

  html.is-at-page-end .bottom-trust-bar__inner {
    grid-template-columns: 1fr;
    padding: 0.72rem clamp(0.78rem, 5vw, 1.05rem) 0.62rem;
  }

  html.is-at-page-end .bottom-trust-bar article,
  html.is-at-page-end .bottom-trust-bar article:nth-child(2n),
  html.is-at-page-end .bottom-trust-bar article:nth-last-of-type(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(229,216,199,0.1);
  }

  html.is-at-page-end .bottom-trust-bar article:last-of-type {
    border-bottom: 0;
  }

  html.is-at-page-end .bottom-trust-bar h3 {
    font-size: clamp(0.68rem, 3.5vw, 0.8rem);
  }

  html.is-at-page-end .trust-detail {
    -webkit-line-clamp: 1;
  }

  html.is-at-page-end .trust-contact {
    padding-top: 0.62rem;
    font-size: clamp(0.82rem, 3.6vw, 0.92rem);
  }

  .brand {
    gap: 0.74rem;
  }

  .brand-logo {
    gap: 0.46rem;
  }

  .brand-mark-img {
    width: var(--brand-mark-width);
  }

  .brand-wordmark-img {
    width: min(100%, var(--brand-wordmark-width));
  }

  .nav-links {
    gap: 0.12rem;
  }

  .nav-links a {
    padding-right: 0.04rem;
    padding-left: 0.04rem;
    font-size: clamp(0.6rem, 2.9vw, 0.67rem);
    letter-spacing: 0.056em;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    letter-spacing: 0.004em;
  }

  .section-heading h2,
  .curated-gallery-section h2,
  .realization-section h2,
  .manifest-title,
  .inquiry-intro h2 {
    font-size: clamp(1.62rem, 8.5vw, 2.2rem);
    line-height: 1.16;
    letter-spacing: 0.075em;
  }

  .curated-gallery-header h2 {
    font-size: clamp(1.7rem, 7vw, 2rem);
    line-height: 1.08;
    letter-spacing: 0.052em;
  }

  .process-board article {
    grid-template-columns: 3.35rem minmax(0, 1fr);
    min-height: 6.4rem;
    padding: 0.88rem;
  }

  .process-board::before {
    left: 1.68rem;
  }

  .process-step__number {
    font-size: 1.45rem;
  }
}

@media (min-width: 721px) {
  html.is-scrolled.is-at-page-end .bottom-trust-bar h3 {
    font-size: clamp(0.68rem, 0.8vw, 0.84rem);
    letter-spacing: 0.048em;
    line-height: 1.3;
    text-overflow: clip;
    white-space: normal;
  }

  html.is-scrolled.is-at-page-end .trust-detail {
    font-size: clamp(0.75rem, 0.8vw, 0.86rem);
    line-height: 1.45;
  }

  html.is-scrolled.is-at-page-end .trust-contact {
    font-size: clamp(0.84rem, 0.96vw, 1.02rem);
  }
}

@media (max-width: 720px) {
  html.is-scrolled.is-at-page-end .bottom-trust-bar h3 {
    font-size: clamp(0.66rem, 2.6vw, 0.8rem);
    letter-spacing: 0.042em;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
  }

  html.is-scrolled.is-at-page-end .trust-detail {
    font-size: clamp(0.7rem, 2.6vw, 0.84rem);
    line-height: 1.32;
  }

  html.is-scrolled.is-at-page-end .trust-contact {
    font-size: clamp(0.8rem, 3.3vw, 0.92rem);
  }
}

@media (max-width: 430px) {
  html.is-scrolled.is-at-page-end .bottom-trust-bar h3 {
    font-size: clamp(0.68rem, 3.5vw, 0.8rem);
  }

  html.is-scrolled.is-at-page-end .trust-contact {
    font-size: clamp(0.82rem, 3.6vw, 0.92rem);
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .process-step,
  .process-step__number {
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 220ms ease,
      box-shadow 220ms ease,
      background-color 220ms ease;
  }

  .process-step:hover {
    transform: translateY(-3px);
    border-color: rgba(235,151,91,0.43);
    box-shadow:
      0 1.5rem 3.1rem rgba(0,0,0,0.42),
      0 0 2.8rem rgba(208,116,66,0.08),
      inset 0 0.08rem 0 rgba(255,239,219,0.075),
      inset 0 -1.2rem 2rem rgba(0,0,0,0.18),
      inset 0 0 0 1px rgba(255,255,255,0.024);
  }

  .process-step:hover .process-step__number {
    transform: translateY(-1px);
    box-shadow:
      0 0.72rem 1.55rem rgba(0,0,0,0.38),
      0 0 1.8rem rgba(208,116,66,0.13),
      inset 0.12rem 0.12rem 0 rgba(255,231,196,0.22),
      inset -0.18rem -0.22rem 0.7rem rgba(0,0,0,0.38);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .process-board article {
    animation: rise-in 560ms ease both;
  }

  .process-board article:nth-child(2) {
    animation-delay: 70ms;
  }

  .process-board article:nth-child(3) {
    animation-delay: 140ms;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}