/*
Theme Name: Modurra v1
Theme URI: https://modurra-preview.avismedical.de
Author: Codex
Description: Lekki motyw startowy dla pierwszej wersji strony Modurra.
Version: 0.3.75
Text Domain: modurra
*/

:root {
  --bg: #ede6dc;
  --bg-deep: #d9cfc3;
  --surface: rgba(248, 242, 234, 0.88);
  --surface-strong: rgba(255, 251, 246, 0.94);
  --surface-dark: #11161a;
  --surface-dark-alt: #1c2228;
  --text: #12171b;
  --text-soft: #5c625e;
  --text-inverse: rgba(247, 241, 232, 0.78);
  --line: rgba(18, 23, 27, 0.1);
  --line-strong: rgba(18, 23, 27, 0.18);
  --bronze: #af7f4c;
  --bronze-deep: #765130;
  --sand: #d4b492;
  --stone: #c8beb2;
  --shadow-xl: 0 34px 90px rgba(18, 23, 27, 0.16);
  --shadow-lg: 0 24px 64px rgba(18, 23, 27, 0.12);
  --shadow-md: 0 18px 42px rgba(18, 23, 27, 0.1);
  --radius-xl: 36px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.82), transparent 24%),
    radial-gradient(circle at right 10%, rgba(175, 127, 76, 0.12), transparent 20%),
    linear-gradient(180deg, #f6f1ea 0%, var(--bg) 44%, var(--bg-deep) 100%);
  font-family: var(--sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(118, 81, 48, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 81, 48, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.48), transparent 24%),
    radial-gradient(circle at 84% 72%, rgba(175, 127, 76, 0.08), transparent 22%);
}

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

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

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

::selection {
  color: var(--text);
  background: rgba(212, 180, 146, 0.58);
}

.shell {
  width: min(1440px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  padding: 18px 0 0;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  padding: 16px 22px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(244, 238, 230, 0.76);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 18px 44px rgba(18, 23, 27, 0.08);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  transition: transform 0.24s ease;
}

.brand-lockup:hover {
  transform: translateY(-1px);
}

.brand-lockup__mark {
  width: 50px;
  height: 50px;
}

.brand-lockup__wordmark {
  width: auto;
  height: 30px;
}

.brand-lockup--header-pilot {
  gap: 0;
}

.brand-lockup__wordmark--header-pilot {
  display: block;
  height: 78px;
  width: auto;
}

.site-nav {
  justify-self: center;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0 8px;
  list-style: none;
}

.site-nav__list li {
  position: relative;
}

.site-nav__list li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 16px;
  background: rgba(18, 23, 27, 0.12);
  transform: translateY(-50%);
}

.site-nav__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px 2px;
  border: none;
  background: transparent;
  color: rgba(18, 23, 27, 0.76);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform 0.24s ease,
    color 0.24s ease,
    opacity 0.24s ease;
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 11px;
  left: 22px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 180, 146, 0.18) 18%, rgba(212, 180, 146, 0.92) 50%, rgba(212, 180, 146, 0.18) 82%, transparent 100%);
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a,
.site-nav__list .current-page-ancestor > a {
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after,
.site-nav__list .current-page-ancestor > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-main {
  padding: 0 0 84px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

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

.button--primary {
  color: #f8f3ea;
  background: linear-gradient(135deg, #12171b 0%, #2a3138 52%, #8f6840 145%);
  box-shadow: 0 18px 42px rgba(18, 23, 27, 0.24);
}

.button--primary:hover {
  box-shadow: 0 22px 48px rgba(18, 23, 27, 0.28);
}

.site-header__cta {
  min-height: 52px;
  padding: 0 22px 0 24px;
  border: 1px solid rgba(18, 23, 27, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(237, 230, 220, 0.96) 100%);
  color: var(--text);
  box-shadow: 0 16px 34px rgba(18, 23, 27, 0.12);
}

.site-header__cta::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  opacity: 0.84;
  transform: rotate(45deg);
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.site-header__cta-text--mobile {
  display: none;
}

.site-header__cta:hover {
  border-color: rgba(18, 23, 27, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 238, 230, 1) 100%);
  box-shadow: 0 20px 38px rgba(18, 23, 27, 0.14);
}

.site-header__cta:hover::after {
  opacity: 1;
  transform: translateX(2px) rotate(45deg);
}

.button--secondary {
  color: var(--text);
  border-color: rgba(18, 23, 27, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(18, 23, 27, 0.08);
}

.button--ghost {
  color: #f7f1e8;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button:focus-visible,
.site-nav__list a:focus-visible,
.inline-link:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.section-card,
.page-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(244, 238, 230, 0.96) 100%);
  box-shadow: var(--shadow-xl);
}

.section-card {
  padding: clamp(26px, 3vw, 42px);
}

.page-card {
  padding: clamp(28px, 3vw, 44px);
}

.section-card::after,
.page-card::after {
  content: "";
  position: absolute;
  inset: -28% auto auto 42%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.section-card--dark {
  color: #f7f1e8;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, #11161a 0%, #1c2329 48%, #171c20 100%);
}

.section-card--dark::before {
  content: "";
  position: absolute;
  inset: -24% 40% auto -10%;
  height: 280px;
  background: radial-gradient(circle, rgba(175, 127, 76, 0.22) 0%, transparent 72%);
  pointer-events: none;
}

.section-kicker,
.eyebrow,
.hero-floating strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-deep);
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.section-kicker--light,
.section-card--dark .section-kicker,
.section-card--dark .eyebrow {
  color: rgba(247, 241, 232, 0.72);
}

.section-title,
.story-hero h1,
.page-hero h1,
.section-intro h2,
.category-spotlight h3,
.feature-card h3,
.composition-card h3,
.b2b-capability h3,
.placeholder-card h3 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-title {
  max-width: 13ch;
  font-size: clamp(2.5rem, 4.6vw, 5.1rem);
}

.section-title--hero {
  max-width: 16ch;
  font-size: clamp(3rem, 5vw, 5.2rem);
  letter-spacing: 0;
  line-height: 1.02;
}

.section-title--hero .hero-title__lead,
.section-title--hero .hero-title__support {
  display: block;
}

.section-title--hero .hero-title__support {
  max-width: 38ch;
  margin-top: clamp(12px, 1.4vw, 18px);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.15vw, 1.22rem);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: 0;
}

.story-hero h1,
.page-hero h1,
.section-intro h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 4.5vw, 4.7rem);
}

.category-spotlight h3 {
  font-size: clamp(2.1rem, 2.6vw, 2.85rem);
}

.feature-card h3,
.composition-card h3,
.b2b-capability h3,
.placeholder-card h3 {
  font-size: clamp(1.7rem, 2vw, 2.1rem);
}

.section-copy,
.page-intro,
.section-intro p,
.hero-brand__copy p,
.structure-board__cells p,
.site-footer__brand p,
.site-footer__aside p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.78;
}

.section-copy--hero {
  max-width: 44ch;
}

.section-card--dark .section-copy,
.section-card--dark .section-intro p,
.section-card--dark .hero-brand__copy p,
.section-card--dark .structure-board__cells p,
.section-card--dark .b2b-capability p,
.section-card--dark .process-card p,
.section-card--dark .story-step p,
.section-card--dark .story-metric span,
.section-card--dark .feature-card p,
.section-card--dark .feature-card li,
.site-footer__brand p,
.site-footer__aside p {
  color: var(--text-inverse);
}

.inline-link {
  color: var(--bronze-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.inline-link--light {
  color: #f4d7b4;
}

.home {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.home-hero__intro {
  display: grid;
  align-content: space-between;
  gap: 34px;
  min-height: 860px;
}

.hero-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.hero-brand__mark {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
}

.hero-brand__copy {
  max-width: 36ch;
}

.hero-brand__lockup {
  width: min(280px, 100%);
  height: auto;
}

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

.hero-metric,
.process-card,
.b2b-capability,
.composition-card,
.feature-card,
.story-metric,
.story-step,
.placeholder-card {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.hero-metric {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-metric strong,
.process-card strong,
.story-metric strong,
.story-step strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.hero-metric span,
.process-card p,
.story-metric span,
.story-step p {
  display: block;
  margin: 10px 0 0;
  color: rgba(247, 241, 232, 0.74);
  font-size: 0.92rem;
  line-height: 1.64;
}

.home-hero__stage {
  position: relative;
  overflow: hidden;
  min-height: 860px;
  border-radius: var(--radius-xl);
  background: #baaea0;
  box-shadow: var(--shadow-xl);
}

.home-hero__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 20, 24, 0.06) 0%, rgba(16, 20, 24, 0.26) 100%),
    linear-gradient(118deg, rgba(16, 20, 24, 0.28) 0%, rgba(16, 20, 24, 0) 42%, rgba(16, 20, 24, 0.48) 100%);
}

.home-film {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.film-scene {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  animation: modurra-film-still 42.5s linear infinite;
  will-change: opacity;
}

.film-scene img,
.film-scene video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
}

.film-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 20, 24, 0.1) 0%, rgba(16, 20, 24, 0.28) 100%),
    linear-gradient(120deg, rgba(16, 20, 24, 0.34) 0%, rgba(16, 20, 24, 0) 42%, rgba(16, 20, 24, 0.52) 100%);
}

.film-scene figcaption {
  position: absolute;
  left: 28px;
  bottom: 174px;
  z-index: 2;
  max-width: 300px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 20, 24, 0.48);
  color: #f7f1e8;
  backdrop-filter: blur(12px);
}

.film-scene figcaption span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.72);
}

.film-scene figcaption p {
  margin: 10px 0 0;
  color: rgba(247, 241, 232, 0.86);
  font-size: 0.92rem;
  line-height: 1.6;
}

.film-scene--video {
  animation-name: modurra-film-video;
  animation-delay: 0s;
}

.home-film__video {
  transform-origin: 52% 48%;
  animation: modurra-pan-video 42.5s linear infinite;
  animation-fill-mode: both;
}

.film-scene--raw img {
  transform-origin: 18% 52%;
  animation: modurra-pan-raw 42.5s linear infinite;
  animation-delay: 26.2s;
  animation-fill-mode: both;
}

.film-scene--raw {
  animation-delay: 26.2s;
}

.film-scene--stone img {
  transform-origin: 78% 48%;
  animation: modurra-pan-stone 42.5s linear infinite;
  animation-delay: 29.8s;
  animation-fill-mode: both;
}

.film-scene--stone {
  animation-delay: 29.8s;
}

.film-scene--deck img {
  transform-origin: 32% 54%;
  animation: modurra-pan-deck 42.5s linear infinite;
  animation-delay: 33.4s;
  animation-fill-mode: both;
}

.film-scene--deck {
  animation-delay: 33.4s;
}

.film-scene--final img {
  transform-origin: 70% 46%;
  animation: modurra-pan-final 42.5s linear infinite;
  animation-delay: 37s;
  animation-fill-mode: both;
}

.film-scene--final {
  animation-delay: 37s;
}

.home-hero__image,
.category-spotlight > img,
.sample-showcase__visual img,
.granite-showcase__main img,
.granite-showcase__mini img,
.b2b-showcase__map img,
.story-hero__visual img,
.story-media img,
.sample-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-plaque {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 20, 24, 0.58);
  color: #f7f1e8;
  backdrop-filter: blur(14px);
}

.stage-plaque img {
  width: 42px;
  height: 42px;
}

.stage-plaque div {
  display: grid;
  gap: 4px;
}

.stage-plaque strong {
  font-size: 0.84rem;
  letter-spacing: 0.18em;
}

.stage-plaque span {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.72);
}

.stage-dossier {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  max-width: 350px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(247, 241, 232, 0.12);
  color: #f7f1e8;
  backdrop-filter: blur(16px);
}

.stage-dossier h2 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.dossier-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.dossier-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(247, 241, 232, 0.84);
  font-size: 0.95rem;
  line-height: 1.64;
}

.dossier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244, 215, 180, 0.92);
  transform: translateY(-50%);
}

.stage-band {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 16px;
}

.stage-band__story,
.stage-band__chips {
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 20, 24, 0.58);
  color: #f7f1e8;
  backdrop-filter: blur(14px);
}

.stage-band__story strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.stage-band__story p {
  margin: 12px 0 0;
  color: rgba(247, 241, 232, 0.78);
  line-height: 1.7;
}

.stage-band__chips {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
}

.stage-band__chips span,
.category-spotlight__specs span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-band__chips span {
  color: #f7f1e8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.home-structure {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
}

.home-structure__intro {
  display: grid;
  align-content: end;
  min-height: 360px;
}

.home-structure__board {
  display: grid;
  gap: 28px;
  align-content: space-between;
}

.structure-board__logo {
  width: min(320px, 72%);
  height: auto;
}

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

.structure-board__cells article {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.06);
}

.structure-board__cells strong {
  display: block;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
}

.structure-board__cells p {
  margin-top: 12px;
  font-size: 0.95rem;
}

.home-section,
.home-composition,
.home-closing,
.section-grid {
  display: grid;
  gap: 18px;
}

.section-head,
.section-intro {
  max-width: 980px;
}

.business-page .section-intro {
  max-width: 100%;
}

.business-page .section-intro h2 {
  max-width: min(1180px, 100%);
}

.business-page .section-intro p {
  max-width: min(1040px, 100%);
}

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

.category-grid--expanded {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.category-grid--expanded .category-spotlight:nth-child(1),
.category-grid--expanded .category-spotlight:nth-child(2) {
  grid-column: span 3;
  min-height: 560px;
}

.category-grid--expanded .category-spotlight:nth-child(n + 3) {
  grid-column: span 2;
  min-height: 700px;
}

.category-grid--expanded .category-spotlight:nth-child(n + 3) .category-spotlight__content {
  inset: auto 18px 18px 18px;
  padding: 20px;
  border-radius: 22px;
}

.category-grid--expanded .category-spotlight:nth-child(n + 3) .category-spotlight__content p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 10px;
  line-height: 1.45;
}

.category-grid--expanded .category-spotlight:nth-child(n + 3) .category-spotlight__specs {
  gap: 7px;
  margin-top: 12px;
}

.category-grid--expanded .category-spotlight:nth-child(n + 3) .category-spotlight__specs span {
  min-height: 42px;
  padding: 7px 8px;
  border-radius: 16px;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.category-grid--expanded .category-spotlight:nth-child(n + 3) .category-spotlight__cta {
  margin-top: 12px;
}

.category-grid--expanded .category-spotlight:nth-child(4) > img,
.category-grid--expanded .category-spotlight:nth-child(5) > img {
  object-position: center 32%;
}

.category-spotlight {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #c9beb2;
  box-shadow: var(--shadow-xl);
  isolation: isolate;
}

.category-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 20, 24, 0.06) 0%, rgba(16, 20, 24, 0.18) 48%, rgba(16, 20, 24, 0.82) 100%);
}

.category-spotlight > img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-spotlight:hover > img {
  transform: scale(1.04);
}

.category-spotlight__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.category-spotlight__content {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 4;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(17, 20, 24, 0.36) 0%, rgba(17, 20, 24, 0.8) 100%);
  backdrop-filter: blur(14px);
  color: #f7f1e8;
  pointer-events: none;
  transition: transform 0.28s ease;
}

.category-spotlight:hover .category-spotlight__content {
  transform: translateY(-4px);
}

.category-spotlight__index {
  display: block;
  color: rgba(247, 241, 232, 0.64);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.category-spotlight__content p {
  margin: 14px 0 0;
  color: rgba(247, 241, 232, 0.8);
  line-height: 1.68;
}

.category-spotlight__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  width: min(100%, 450px);
}

.category-spotlight__specs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 8px 12px;
  border-radius: 22px;
  color: #f7f1e8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.12;
  text-transform: uppercase;
}

.category-spotlight__specs .category-spotlight__spec--compact {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.category-spotlight__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 28px;
  margin-top: 16px;
  padding: 0 0 3px;
  color: rgba(247, 241, 232, 0.86);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    color 0.24s ease,
    opacity 0.24s ease;
}

.category-spotlight__cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 180, 146, 0.18) 18%, rgba(212, 180, 146, 0.92) 50%, rgba(212, 180, 146, 0.18) 82%, transparent 100%);
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.category-spotlight:hover .category-spotlight__cta,
.category-spotlight:focus-within .category-spotlight__cta {
  color: #f7f1e8;
}

.category-spotlight:hover .category-spotlight__cta::after,
.category-spotlight:focus-within .category-spotlight__cta::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-composition {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.home-composition__lead {
  display: grid;
  align-content: space-between;
  gap: 28px;
  min-height: 420px;
}

.home-composition__stack {
  display: grid;
  gap: 16px;
}

.composition-card,
.story-metric,
.story-step,
.feature-card,
.placeholder-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(18, 23, 27, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(18, 23, 27, 0.06);
}

.composition-card:hover,
.process-card:hover,
.b2b-capability:hover,
.feature-card:hover,
.story-metric:hover,
.story-step:hover,
.placeholder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(18, 23, 27, 0.12);
}

.composition-card p,
.feature-card p,
.placeholder-card p,
.b2b-capability p {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.sample-showcase,
.sample-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
  align-items: stretch;
}

.sample-showcase__copy,
.sample-copy,
.granite-showcase__copy,
.b2b-showcase__copy,
.story-hero__copy {
  display: grid;
  align-content: space-between;
  gap: 28px;
}

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

.process-card,
.b2b-capability {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.sample-showcase__visuals,
.sample-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 16px;
  align-items: end;
}

.sample-showcase__visual,
.sample-visual,
.granite-showcase__main,
.granite-showcase__mini,
.b2b-showcase__map,
.story-hero__visual,
.story-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d0c4b5;
  box-shadow: var(--shadow-lg);
}

.sample-showcase__visual,
.sample-visual {
  min-height: 430px;
}

.sample-showcase__visual--technical,
.sample-visual--alt {
  min-height: 360px;
  margin-top: 56px;
}

.sample-showcase__visual::after,
.sample-visual::after,
.granite-showcase__main::after,
.granite-showcase__mini::after,
.b2b-showcase__map::after,
.story-hero__visual::after,
.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 20, 24, 0.03) 0%, rgba(16, 20, 24, 0.18) 100%),
    linear-gradient(115deg, rgba(16, 20, 24, 0.18) 0%, rgba(16, 20, 24, 0) 38%, rgba(16, 20, 24, 0.24) 100%);
  pointer-events: none;
}

.granite-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  align-items: start;
}

.granite-showcase__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
}

.granite-showcase__main {
  min-height: 620px;
}

.granite-showcase__side {
  display: grid;
  gap: 16px;
}

.granite-showcase__mini {
  min-height: 300px;
}

.granite-showcase__modules,
.granite-modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border-radius: 28px;
  border: 1px solid rgba(18, 23, 27, 0.08);
  background: rgba(255, 255, 255, 0.58);
}

.granite-showcase__modules {
  grid-column: 1 / -1;
}

.granite-showcase__film {
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0f13;
  box-shadow: var(--shadow-lg);
}

.granite-showcase__film-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  background: #0b0f13;
}

.granite-showcase__modules img,
.granite-modules img {
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(231, 224, 214, 0.94));
}

.b2b-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: stretch;
}

.b2b-capabilities {
  display: grid;
  gap: 14px;
}

.b2b-showcase__map {
  min-height: 640px;
}

.home-closing {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
}

.home-closing__primary {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: 360px;
}

.home-closing__secondary {
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.home-closing__logo {
  width: min(300px, 80%);
  height: auto;
}

.story-page,
.page-shell {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.story-hero,
.story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: stretch;
}

.story-hero__copy {
  min-height: 720px;
}

.story-hero__copy::before,
.page-hero::before {
  content: "";
  display: block;
  width: min(240px, 58vw);
  height: 42px;
  background: url("assets/brand/modurra-lockup-dark.svg") no-repeat left center / contain;
  opacity: 0.96;
}

.page-hero {
  display: grid;
  gap: 4px;
  max-width: 880px;
}

.story-hero__visual {
  min-height: 720px;
}

.hero-floating {
  position: absolute;
  z-index: 3;
  max-width: 320px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 20, 24, 0.58);
  color: #f7f1e8;
  backdrop-filter: blur(14px);
}

.hero-floating--top {
  top: 28px;
  right: 28px;
}

.hero-floating p {
  margin: 10px 0 0;
  color: rgba(247, 241, 232, 0.78);
  font-size: 0.92rem;
  line-height: 1.62;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(18, 23, 27, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 232, 224, 0.92));
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pill--light {
  background: rgba(255, 255, 255, 0.76);
}

.story-metrics,
.story-steps,
.story-gallery,
.feature-grid,
.placeholder-grid {
  display: grid;
  gap: 16px;
}

.story-metrics,
.story-steps,
.feature-grid,
.placeholder-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.section-card--dark .process-card,
.section-card--dark .b2b-capability,
.section-card--dark .story-metric,
.section-card--dark .story-step,
.section-card--dark .feature-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.feature-card ul,
.placeholder-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.feature-card li,
.placeholder-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.feature-card li + li,
.placeholder-card li + li {
  margin-top: 8px;
}

.feature-card li::before,
.placeholder-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bronze);
  transform: translateY(-50%);
}

.story-media {
  min-height: 560px;
}

.story-media--sm {
  min-height: 320px;
}

.story-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-copy {
  margin-top: 32px;
  color: #394047;
  font-size: 1.02rem;
  line-height: 1.84;
}

.page-copy > :first-child {
  margin-top: 0;
}

.page-copy > * {
  max-width: 75ch;
}

.page-copy h2,
.page-copy h3 {
  font-family: var(--serif);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}

.page-copy h2 {
  margin: 2.2em 0 0.4em;
  font-size: clamp(2rem, 3vw, 3rem);
}

.page-copy h3 {
  margin: 1.8em 0 0.45em;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.page-copy p,
.page-copy ul,
.page-copy ol {
  margin: 1em 0 0;
}

.page-copy ul,
.page-copy ol {
  padding-left: 1.25em;
}

.page-copy a {
  color: var(--bronze-deep);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.contact-page .page-hero {
  max-width: none;
  padding-bottom: 8px;
}

.contact-page .page-hero h1 {
  max-width: min(1180px, 100%);
  letter-spacing: -0.035em;
}

.contact-page .page-intro {
  max-width: min(1060px, 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  margin-top: 22px;
}

.contact-layout--quote {
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.42fr);
  align-items: start;
  gap: clamp(18px, 2vw, 28px);
}

.contact-card {
  align-content: start;
}

.contact-card:hover {
  transform: none;
}

.contact-card--form {
  overflow: hidden;
  padding: clamp(22px, 2.3vw, 34px);
  border-color: rgba(18, 23, 27, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(247, 242, 235, 0.9) 100%);
  box-shadow: 0 28px 74px rgba(18, 23, 27, 0.1);
}

.contact-guide {
  position: sticky;
  top: 112px;
  padding: clamp(22px, 2vw, 30px);
  color: #f7f1e8;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(150deg, rgba(17, 22, 26, 0.98) 0%, rgba(29, 34, 38, 0.96) 58%, rgba(64, 45, 29, 0.95) 100%);
  box-shadow: 0 30px 80px rgba(18, 23, 27, 0.22);
}

.contact-guide .section-kicker,
.contact-guide h3 {
  color: #f7f1e8;
}

.contact-guide .section-kicker::before {
  background: rgba(212, 180, 146, 0.9);
}

.contact-guide p {
  margin: 12px 0 0;
  color: rgba(247, 241, 232, 0.72);
  line-height: 1.65;
}

.contact-guide__steps {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-guide__steps div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(247, 241, 232, 0.12);
}

.contact-guide__steps strong {
  color: var(--sand);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.contact-guide__steps span {
  color: rgba(247, 241, 232, 0.78);
  font-size: 0.94rem;
  line-height: 1.5;
}

.contact-guide__note {
  margin-top: 24px !important;
  padding: 16px 18px;
  border: 1px solid rgba(212, 180, 146, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7f1e8 !important;
  font-weight: 800;
}

.contact-product-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.contact-product-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(118, 81, 48, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(18, 23, 27, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.contact-form__section {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(18, 23, 27, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 42px rgba(18, 23, 27, 0.045);
}

.contact-form__section::before {
  content: var(--section-index);
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(118, 81, 48, 0.16);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 0.8;
  pointer-events: none;
}

.contact-form__section-head {
  display: grid;
  gap: 6px;
  max-width: min(680px, calc(100% - 92px));
}

.contact-form__section-head span {
  color: rgba(118, 81, 48, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form__section-head p {
  max-width: 720px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.contact-form__product-fields {
  display: none;
}

.contact-form__product-fields.is-active {
  display: grid;
}

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

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

.contact-field > span {
  min-height: 1.1em;
}

.contact-field span {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-field__hint {
  display: inline-flex;
  width: fit-content;
  margin-top: 2px;
  padding: 7px 10px;
  border: 1px solid rgba(176, 130, 79, 0.16);
  border-radius: 999px;
  background: rgba(212, 180, 146, 0.12);
  color: rgba(118, 81, 48, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 23, 27, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.contact-form__product-fields .contact-field textarea {
  min-height: 116px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: 2px solid rgba(176, 130, 79, 0.28);
  outline-offset: 2px;
  border-color: rgba(176, 130, 79, 0.42);
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 23, 27, 0.07);
}

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

.contact-choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 23, 27, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  line-height: 1.35;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(176, 130, 79, 0.34);
  background: rgba(255, 255, 255, 0.82);
}

.contact-choice input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 0;
  accent-color: var(--bronze-deep);
}

.contact-choice span {
  color: var(--text);
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form__notice {
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.contact-form__notice--success {
  border: 1px solid rgba(77, 123, 87, 0.18);
  background: rgba(225, 241, 228, 0.92);
  color: #26402d;
}

.contact-form__notice--error {
  border: 1px solid rgba(137, 78, 65, 0.16);
  background: rgba(246, 230, 225, 0.92);
  color: #62352d;
}

.contact-form__submit {
  justify-self: end;
  min-width: min(100%, 260px);
  min-height: 56px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(118, 81, 48, 0.18);
}

.site-footer {
  padding: 0 0 34px;
}

.site-footer__frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.5fr) minmax(260px, 0.8fr);
  gap: 24px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #11161a 0%, #1a2026 50%, #12171a 100%);
  color: #f7f1e8;
  box-shadow: var(--shadow-xl);
}

.site-footer__brand,
.site-footer__aside {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer__logo {
  width: min(360px, 100%);
  height: auto;
}

.site-footer__lockup {
  width: min(184px, 100%);
  height: auto;
  margin-top: 12px;
}

.site-footer__brand p,
.site-footer__aside p {
  margin: 0;
}

.site-footer__contact-copy {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.site-footer__nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer__actions {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(247, 241, 232, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    color 0.24s ease,
    transform 0.24s ease;
}

.site-footer__nav a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.site-footer__subtle-link {
  color: rgba(247, 241, 232, 0.76);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.24s ease;
}

.site-footer__subtle-link:hover {
  color: #ffffff;
}

.site-footer__trust {
  color: rgba(247, 241, 232, 0.62);
  font-size: 0.8rem;
  line-height: 1.5;
}

.site-footer .button--ghost {
  width: fit-content;
}

@media (prefers-reduced-motion: no-preference) {
  .home-hero__intro,
  .home-hero__stage,
  .category-spotlight,
  .story-hero__copy,
  .story-hero__visual,
  .page-card {
    animation: modurra-rise 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .home-hero__stage {
    animation-delay: 0.08s;
  }

  .category-spotlight:nth-child(2) {
    animation-delay: 0.06s;
  }

  .category-spotlight:nth-child(3) {
    animation-delay: 0.12s;
  }
}

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

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

@keyframes modurra-film-video {
  0% {
    opacity: 0;
  }

  1.1% {
    opacity: 0.32;
  }

  2.4% {
    opacity: 1;
  }

  61.8% {
    opacity: 1;
  }

  64.2% {
    opacity: 0.52;
  }

  66.6% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes modurra-film-still {
  0% {
    opacity: 0;
  }

  1.1% {
    opacity: 0.24;
  }

  2.6% {
    opacity: 1;
  }

  8.8% {
    opacity: 1;
  }

  9.8% {
    opacity: 0.62;
  }

  11.2% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes modurra-pan-video {
  0% {
    transform: translate3d(-1.4%, 1.2%, 0) scale(1.035);
  }

  18% {
    transform: translate3d(-0.8%, 0.9%, 0) scale(1.045);
  }

  38% {
    transform: translate3d(-0.1%, 0.4%, 0) scale(1.055);
  }

  61.8% {
    transform: translate3d(1.1%, -0.4%, 0) scale(1.07);
  }

  100% {
    transform: translate3d(1.1%, -0.4%, 0) scale(1.07);
  }
}

@keyframes modurra-pan-raw {
  0% {
    transform: translate3d(-2.8%, 1.8%, 0) scale(1.055);
  }

  3.4% {
    transform: translate3d(-1.6%, 1.1%, 0) scale(1.065);
  }

  6.8% {
    transform: translate3d(-0.2%, 0.2%, 0) scale(1.08);
  }

  9.6% {
    transform: translate3d(1.1%, -0.4%, 0) scale(1.092);
  }

  11.2% {
    transform: translate3d(1.8%, -0.7%, 0) scale(1.1);
  }

  100% {
    transform: translate3d(1.8%, -0.7%, 0) scale(1.1);
  }
}

@keyframes modurra-pan-stone {
  0% {
    transform: translate3d(2.6%, 0.9%, 0) scale(1.095);
  }

  3.2% {
    transform: translate3d(1.2%, 0.6%, 0) scale(1.088);
  }

  6.6% {
    transform: translate3d(-0.2%, 0.1%, 0) scale(1.078);
  }

  9.4% {
    transform: translate3d(-1.4%, -0.5%, 0) scale(1.068);
  }

  11.2% {
    transform: translate3d(-2.1%, -0.8%, 0) scale(1.06);
  }

  100% {
    transform: translate3d(-2.1%, -0.8%, 0) scale(1.06);
  }
}

@keyframes modurra-pan-deck {
  0% {
    transform: translate3d(-1.8%, 2.6%, 0) scale(1.05);
  }

  3.6% {
    transform: translate3d(-0.9%, 1.5%, 0) scale(1.068);
  }

  6.9% {
    transform: translate3d(0.2%, 0.4%, 0) scale(1.086);
  }

  9.8% {
    transform: translate3d(1.4%, -0.6%, 0) scale(1.102);
  }

  11.2% {
    transform: translate3d(2%, -1%, 0) scale(1.11);
  }

  100% {
    transform: translate3d(2%, -1%, 0) scale(1.11);
  }
}

@keyframes modurra-pan-final {
  0% {
    transform: translate3d(2%, -1.8%, 0) scale(1.09);
  }

  3.1% {
    transform: translate3d(1.1%, -1%, 0) scale(1.076);
  }

  6.4% {
    transform: translate3d(0%, -0.2%, 0) scale(1.062);
  }

  9.3% {
    transform: translate3d(-0.9%, 0.5%, 0) scale(1.048);
  }

  11.2% {
    transform: translate3d(-1.5%, 0.9%, 0) scale(1.04);
  }

  100% {
    transform: translate3d(-1.5%, 0.9%, 0) scale(1.04);
  }
}

@media (max-width: 1200px) {
  .home-hero,
  .home-structure,
  .home-composition,
  .sample-showcase,
  .sample-grid,
  .granite-showcase,
  .b2b-showcase,
  .story-hero,
  .story-split,
  .home-closing,
  .site-footer__frame {
    grid-template-columns: 1fr;
  }

  .home-hero__intro,
  .home-hero__stage,
  .story-hero__copy,
  .story-hero__visual {
    min-height: auto;
  }

  .home-hero__stage {
    min-height: 760px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-guide {
    position: static;
  }
}

@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    justify-items: stretch;
    align-items: center;
  }

  .site-nav {
    justify-self: stretch;
    width: auto;
    min-width: 0;
  }

  .site-nav__list {
    justify-content: flex-start;
    padding: 0;
    gap: 6px 12px;
    row-gap: 6px;
  }

  .site-header__cta {
    justify-self: end;
  }

  .hero-metric-grid,
  .structure-board__cells,
  .process-grid,
  .category-grid,
  .feature-grid,
  .story-metrics,
  .story-steps,
  .placeholder-grid,
  .granite-showcase__modules,
  .granite-modules,
  .story-gallery--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .granite-showcase__gallery,
  .stage-band {
    grid-template-columns: 1fr;
  }

  .stage-dossier {
    max-width: 320px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(1440px, calc(100vw - 24px));
  }

  .site-header {
    padding-top: 12px;
  }

  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 28px;
  }

  .section-card,
  .page-card {
    padding: 24px;
    border-radius: 30px;
  }

  .button {
    width: 100%;
  }

  .site-nav__list {
    gap: 4px 10px;
  }

  .site-nav__list li + li::before {
    display: none;
  }

  .site-nav__list a {
    min-height: 28px;
    padding: 0 0 4px;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .site-nav__list a::after {
    right: 0;
    bottom: 0;
    left: 0;
  }

  .site-header__cta {
    width: auto;
    min-height: 28px;
    padding: 0 0 4px;
    justify-self: end;
    justify-content: flex-start;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(247, 241, 232, 0.74);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
  }

  .site-header__cta::after {
    display: none;
  }

  .site-header__cta:hover {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    color: #ffffff;
  }

  .site-header__cta-text--desktop {
    display: none;
  }

  .site-header__cta-text--mobile {
    display: inline;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__section {
    padding: 14px;
    border-radius: 20px;
  }

  .contact-form__section::before {
    opacity: 0.45;
  }

  .contact-form__section-head {
    max-width: none;
  }

  .contact-choice-grid {
    grid-template-columns: 1fr;
  }

  .hero-metric-grid,
  .structure-board__cells,
  .process-grid,
  .category-grid,
  .feature-grid,
  .story-metrics,
  .story-steps,
  .placeholder-grid,
  .granite-showcase__gallery,
  .granite-showcase__modules,
  .granite-modules,
  .sample-showcase__visuals,
  .sample-visuals,
  .story-gallery,
  .story-gallery--three {
    grid-template-columns: 1fr;
  }

  .category-spotlight {
    grid-column: auto;
    min-height: 540px;
  }

  .sample-showcase__visual--technical,
  .sample-visual--alt {
    margin-top: 0;
  }

  .b2b-showcase__map,
  .granite-showcase__main,
  .story-hero__visual,
  .story-media,
  .sample-showcase__visual,
  .sample-visual {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .section-title {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
  }

  .section-title--hero {
    font-size: clamp(3rem, 11vw, 4.6rem);
  }

  .story-hero h1,
  .page-hero h1,
  .section-intro h2 {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
  }

  .home-hero__stage {
    display: grid;
    grid-template-rows: minmax(360px, 60vw) auto auto auto;
    min-height: auto;
  }

  .home-hero__image {
    grid-row: 1;
  }

  .stage-plaque,
  .stage-dossier,
  .stage-band,
  .hero-floating--top {
    position: relative;
    inset: auto;
    max-width: none;
    margin: 16px;
  }

  .stage-plaque {
    margin-bottom: 0;
  }

  .stage-dossier {
    margin-top: 0;
  }

  .stage-band {
    margin-top: 0;
  }

  .home-film {
    position: relative;
    inset: auto;
    min-height: 360px;
  }

  .film-scene figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .hero-floating--top {
    margin-top: 16px;
  }

  .story-hero__visual,
  .story-media,
  .b2b-showcase__map,
  .granite-showcase__main,
  .sample-showcase__visual,
  .sample-visual {
    min-height: 360px;
  }

  .site-footer__frame {
    padding: 26px;
  }

  .site-footer__nav a {
    min-height: 34px;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(1440px, calc(100vw - 18px));
  }

  .brand-lockup__mark {
    width: 44px;
    height: 44px;
  }

  .brand-lockup__wordmark {
    height: 26px;
  }

  .site-nav__list {
    gap: 3px 8px;
  }

  .site-nav__list a {
    width: auto;
    justify-content: flex-start;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .site-header__cta {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .category-spotlight__content {
    inset: auto 16px 16px 16px;
    padding: 22px;
  }

  .stage-plaque,
  .stage-dossier,
  .stage-band,
  .hero-floating--top {
    margin: 12px;
  }
}

/* Official brand + full-bleed hero overrides */

:root {
  --bg: #e5dbce;
  --bg-deep: #cfc1b1;
  --surface: rgba(247, 241, 232, 0.9);
  --surface-strong: rgba(255, 251, 246, 0.96);
  --surface-dark: #0d1216;
  --surface-dark-alt: #171d23;
  --text: #101519;
  --text-soft: #4e575e;
  --bronze: #b0824f;
  --bronze-deep: #785434;
  --sand: #d4b08b;
  --stone: #b8aa99;
  --shadow-xl: 0 38px 96px rgba(7, 10, 12, 0.22);
  --shadow-lg: 0 26px 72px rgba(7, 10, 12, 0.18);
  --shadow-md: 0 20px 46px rgba(7, 10, 12, 0.14);
  --serif: "Helvetica Neue", "Avenir Next", "Arial Narrow", Arial, sans-serif;
  --sans: "Helvetica Neue", "Avenir Next", Arial, sans-serif;
}

body {
  background:
    radial-gradient(circle at 14% 10%, rgba(176, 130, 79, 0.2), transparent 22%),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(180deg, #0b1014 0%, #12181d 18%, #171e24 25%, #ece3d7 25.2%, var(--bg) 62%, var(--bg-deep) 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(118, 81, 48, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 81, 48, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 78%);
}

body::after {
  background:
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 86% 70%, rgba(176, 130, 79, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(24, 28, 32, 0.16) 26%, rgba(255, 255, 255, 0) 56%);
}

.site-header__inner {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 18, 0.74);
  box-shadow: 0 18px 44px rgba(7, 10, 12, 0.22);
}

.brand-lockup__mark {
  width: 56px;
  height: 56px;
}

.brand-lockup__wordmark--plaque,
.home-closing__logo {
  border-radius: 14px;
  box-shadow: 0 20px 46px rgba(7, 10, 12, 0.18);
}

.brand-lockup__wordmark--plaque {
  height: 46px;
}

.site-nav__list li + li::before {
  background: rgba(255, 255, 255, 0.16);
}

.site-nav__list a {
  background: transparent;
  color: rgba(247, 241, 232, 0.74);
}

.site-nav__list a::after {
  background: linear-gradient(90deg, transparent 0%, rgba(212, 180, 146, 0.12) 16%, rgba(212, 180, 146, 0.94) 50%, rgba(255, 255, 255, 0.82) 72%, transparent 100%);
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a,
.site-nav__list .current-page-ancestor > a {
  color: #ffffff;
  box-shadow: none;
}

.button--primary {
  background: linear-gradient(135deg, #1a2026 0%, #2a3139 52%, #8b6540 145%);
  box-shadow: 0 18px 42px rgba(7, 10, 12, 0.26);
}

.site-header__cta {
  color: #f7f1e8;
  border-color: rgba(212, 180, 146, 0.26);
  background: linear-gradient(180deg, rgba(20, 25, 29, 0.78) 0%, rgba(8, 11, 15, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 42px rgba(7, 10, 12, 0.26);
}

.site-header__cta:hover {
  border-color: rgba(212, 180, 146, 0.42);
  background: linear-gradient(180deg, rgba(28, 34, 40, 0.92) 0%, rgba(10, 13, 17, 1) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 48px rgba(7, 10, 12, 0.32);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.section-card,
.page-card {
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.92) 0%, rgba(234, 225, 212, 0.98) 100%);
}

.section-card--dark {
  background: linear-gradient(145deg, #0c1115 0%, #171d23 48%, #202830 100%);
}

.section-title,
.story-hero h1,
.page-hero h1,
.section-intro h2,
.category-spotlight h3,
.feature-card h3,
.composition-card h3,
.b2b-capability h3,
.placeholder-card h3,
.page-copy h2,
.page-copy h3,
.stage-dossier h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.065em;
}

.home {
  gap: 28px;
  margin-top: 18px;
}

.home-hero {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.home-hero__stage {
  min-height: min(980px, calc(100vh - 28px));
  padding: 118px clamp(22px, 4vw, 56px) 32px;
  border-radius: 0;
  background: #0f151a;
  box-shadow: none;
}

.home-hero__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(176, 130, 79, 0.18), transparent 22%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(7, 10, 12, 0.22) 0%, rgba(7, 10, 12, 0) 32%, rgba(7, 10, 12, 0.42) 100%);
  z-index: 0;
}

.home-hero__stage::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 12, 15, 0.18) 0%, rgba(8, 12, 15, 0.28) 52%, rgba(8, 12, 15, 0.64) 100%),
    linear-gradient(118deg, rgba(8, 12, 15, 0.54) 0%, rgba(8, 12, 15, 0.08) 34%, rgba(8, 12, 15, 0.72) 100%);
}

.home-film {
  z-index: 0;
}

.home-film__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-scene::after {
  background:
    linear-gradient(180deg, rgba(16, 20, 24, 0.08) 0%, rgba(16, 20, 24, 0.24) 100%),
    linear-gradient(120deg, rgba(16, 20, 24, 0.24) 0%, rgba(16, 20, 24, 0) 42%, rgba(16, 20, 24, 0.4) 100%);
}

.film-scene figcaption {
  left: clamp(22px, 4vw, 56px);
  bottom: 176px;
}

.home-hero__copy {
  position: absolute;
  left: clamp(22px, 4vw, 56px);
  bottom: 280px;
  z-index: 4;
  width: min(720px, calc(100vw - 100px));
}

.home-hero__copy .section-title {
  max-width: 760px;
  color: #f7f1e8;
}

.home-hero__copy .section-copy {
  color: rgba(247, 241, 232, 0.82);
  max-width: 44ch;
}

.home-hero__note {
  margin: 18px 0 0;
  color: rgba(247, 241, 232, 0.76);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-plaque {
  top: 30px;
  left: clamp(22px, 4vw, 56px);
  z-index: 4;
  gap: 16px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(12, 16, 20, 0.56);
  backdrop-filter: blur(18px);
}

.stage-plaque__mark {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.stage-plaque div {
  gap: 8px;
}

.stage-plaque__wordmark {
  width: min(360px, 48vw);
  height: auto;
  border-radius: 10px;
}

.stage-plaque span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.stage-dossier {
  top: 120px;
  right: clamp(22px, 4vw, 56px);
  z-index: 4;
  width: min(460px, 32vw);
  max-width: none;
  padding: 18px;
  border-radius: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.stage-dossier--board img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(7, 10, 12, 0.22);
}

.stage-band {
  left: clamp(22px, 4vw, 56px);
  right: clamp(22px, 4vw, 56px);
  z-index: 4;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.stage-band__story,
.stage-dossier,
.hero-metric {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 20, 0.58);
  color: #f7f1e8;
  backdrop-filter: blur(14px);
}

.stage-dossier {
  max-width: 420px;
}

.hero-metric {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metric-grid {
  align-items: stretch;
}

.home-structure {
  gap: 28px;
}

.structure-board__identity {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.structure-board__identity-image {
  width: 100%;
  height: auto;
}

.home-closing__logo {
  width: min(420px, 100%);
}

.site-footer__logo {
  width: min(360px, 100%);
}

.site-footer__lockup {
  width: min(184px, 100%);
}

@media (max-width: 1200px) {
  .home-hero__stage {
    min-height: 600px;
    padding-top: 106px;
  }
}

@media (max-width: 1024px) {
  .home-hero__copy {
    width: min(640px, calc(100vw - 64px));
  }
}

@media (max-width: 900px) {
  .home-hero__stage {
    min-height: 530px;
    padding: 94px 18px 18px;
  }
}

@media (max-width: 760px) {
  .home-hero__stage {
    min-height: 474px;
    padding: 82px 16px 14px;
  }

  .home-hero__copy {
    width: 100%;
  }

  .home-hero__copy .section-title {
    max-width: 100%;
    font-size: clamp(2.15rem, 7vw, 3.15rem);
  }
}

@media (max-width: 560px) {
  .brand-lockup__mark {
    width: 46px;
    height: 46px;
  }

  .brand-lockup__wordmark--plaque {
    height: 38px;
  }

  .brand-lockup__wordmark--header-pilot {
    height: 44px;
  }

  .home-hero__stage {
    min-height: 438px;
    padding: 78px 16px 12px;
  }

  .home-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .home-hero__copy .section-title {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .home-hero__copy .section-copy {
    margin-top: 16px;
  }

  .home-hero__copy .cta-row {
    margin-top: 18px;
  }

  .home-hero__note {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }
}

.story-hero__copy::before,
.page-hero::before {
  width: min(320px, 72vw);
  height: 54px;
  background: url("assets/brand/modurra-wordmark-plaque.png") no-repeat left center / contain;
}

/* Dark palette refinement */

:root {
  --bg: #13191f;
  --bg-deep: #090c10;
  --surface: rgba(248, 241, 232, 0.9);
  --surface-strong: rgba(255, 249, 242, 0.97);
  --surface-dark: #0a0f13;
  --surface-dark-alt: #151c22;
  --text: #101519;
  --text-soft: #576068;
  --text-inverse: rgba(247, 241, 232, 0.82);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --shadow-xl: 0 40px 96px rgba(3, 5, 8, 0.28);
  --shadow-lg: 0 28px 76px rgba(3, 5, 8, 0.24);
  --shadow-md: 0 22px 48px rgba(3, 5, 8, 0.2);
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(176, 130, 79, 0.24), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at 50% 120%, rgba(176, 130, 79, 0.12), transparent 30%),
    linear-gradient(180deg, #05070a 0%, #0a0e12 18%, #10161b 42%, #151c22 68%, #1b232a 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(176, 130, 79, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 130, 79, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 78%);
}

body::after {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.06), transparent 20%),
    radial-gradient(circle at 82% 74%, rgba(176, 130, 79, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(5, 7, 10, 0) 0%, rgba(5, 7, 10, 0.3) 48%, rgba(5, 7, 10, 0) 100%);
}

.site-header {
  padding: 10px 0 0;
  background: transparent;
}

.site-header__inner {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(8, 11, 15, 0.76);
  box-shadow: 0 22px 56px rgba(3, 5, 8, 0.34);
}

.home {
  gap: 30px;
  margin-top: 0;
}

.home-hero__stage {
  display: flex;
  align-items: flex-end;
  min-height: min(620px, calc(82svh - 8px));
  padding: clamp(92px, 10vh, 118px) clamp(22px, 4vw, 56px) 22px;
}

.home-hero__stage::before {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(7, 10, 12, 0.22) 0%, rgba(7, 10, 12, 0.08) 30%, rgba(7, 10, 12, 0.42) 100%);
}

.home-hero__stage::after {
  background:
    linear-gradient(180deg, rgba(8, 12, 15, 0.04) 0%, rgba(8, 12, 15, 0.14) 50%, rgba(8, 12, 15, 0.56) 100%),
    linear-gradient(110deg, rgba(8, 12, 15, 0.26) 0%, rgba(8, 12, 15, 0) 38%, rgba(8, 12, 15, 0.48) 100%);
}

.film-scene::after {
  background:
    linear-gradient(180deg, rgba(16, 20, 24, 0.04) 0%, rgba(16, 20, 24, 0.16) 100%),
    linear-gradient(120deg, rgba(16, 20, 24, 0.18) 0%, rgba(16, 20, 24, 0) 42%, rgba(16, 20, 24, 0.3) 100%);
}

.home-film {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__copy {
  position: relative;
  inset: auto;
  z-index: 4;
  width: min(700px, calc(100vw - 88px));
}

.home-hero__eyebrow {
  display: block;
  margin: 0 0 16px;
  color: rgba(247, 241, 232, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero__copy .section-title {
  max-width: 14ch;
  margin-top: 0;
  font-size: clamp(2.95rem, 4.7vw, 4.85rem);
  line-height: 0.92;
}

.home-hero__copy .section-copy {
  margin-top: 18px;
  max-width: 44ch;
}

.home-hero__copy .cta-row {
  margin-top: 20px;
}

.home-hero__note {
  max-width: 46ch;
}

.stage-plaque,
.stage-dossier,
.stage-band {
  display: none;
}

.home-section > .section-head .section-kicker,
.home-section > .section-head .section-kicker::before {
  color: rgba(244, 215, 180, 0.78);
}

.home-section > .section-head .section-title {
  color: #f7f1e8;
}

.home-section > .section-head .section-copy {
  color: rgba(247, 241, 232, 0.72);
}

.section-card,
.page-card,
.composition-card,
.story-metric,
.story-step,
.feature-card,
.placeholder-card,
.granite-showcase__modules {
  box-shadow: 0 24px 56px rgba(3, 5, 8, 0.22);
}

.home .composition-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.home .composition-card h3 {
  color: #f7f1e8;
}

.home .composition-card p {
  color: var(--text-inverse);
}

.home .composition-card .section-kicker,
.home .composition-card .section-kicker::before {
  color: rgba(247, 241, 232, 0.72);
}

.section-card--dark .granite-showcase__modules {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.section-card--dark .granite-showcase__modules img {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(22, 28, 32, 0.96));
}

.line-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 20px;
  align-items: stretch;
}

.line-showcase__copy {
  display: grid;
  align-content: space-between;
  gap: 28px;
}

.line-showcase__media {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 16px;
  align-items: stretch;
}

.line-showcase__main,
.line-showcase__support-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d0c4b5;
  box-shadow: var(--shadow-lg);
}

.line-showcase__main::after,
.line-showcase__support-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 20, 24, 0.03) 0%, rgba(16, 20, 24, 0.18) 100%),
    linear-gradient(115deg, rgba(16, 20, 24, 0.18) 0%, rgba(16, 20, 24, 0) 38%, rgba(16, 20, 24, 0.24) 100%);
  pointer-events: none;
}

.line-showcase__main img,
.line-showcase__support-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.line-showcase__main {
  min-height: 620px;
}

.line-showcase__support {
  display: grid;
  gap: 16px;
}

.line-showcase__support-visual {
  min-height: 302px;
}

.line-showcase__support-visual--technical {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(233, 225, 214, 0.96));
}

.section-card--dark .line-showcase__support-visual--technical {
  background: linear-gradient(180deg, rgba(18, 24, 28, 0.92), rgba(29, 37, 43, 0.98));
}

.line-showcase--composite .line-showcase__main img {
  object-position: center 46%;
}

.line-showcase--composite .line-showcase__support-visual--technical img {
  object-position: center 34%;
}

.line-showcase--composite .line-showcase__support-visual--context img {
  object-position: 58% center;
}

.line-showcase--composite .section-title {
  max-width: 16.8ch;
  font-size: clamp(2.25rem, 3.35vw, 4.2rem);
  line-height: 1.02;
}

.line-showcase--pergolas {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.line-showcase--pergolas .line-showcase__main img {
  object-position: center center;
}

.line-showcase--pergolas .line-showcase__support-visual--context img {
  object-position: 58% center;
}

.line-showcase--pergolas .line-showcase__support-visual--secondary img {
  object-position: center 56%;
}

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

.line-showcase__item {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(18, 23, 27, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(18, 23, 27, 0.08);
}

.line-showcase__item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.line-showcase__item p {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.66;
}

.section-card--dark .line-showcase__item {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.section-card--dark .line-showcase__item strong {
  color: #f7f1e8;
}

.section-card--dark .line-showcase__item p {
  color: var(--text-inverse);
}

.line-showcase--pergolas .line-showcase__item {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.line-showcase--pergolas .line-showcase__item p {
  color: rgba(247, 241, 232, 0.76);
}

@media (max-width: 1200px) {
  .line-showcase,
  .line-showcase--pergolas,
  .line-showcase__media {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .line-showcase__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .line-showcase__media,
  .line-showcase__items {
    grid-template-columns: 1fr;
  }

  .line-showcase__main,
  .line-showcase__support-visual {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .line-showcase__main,
  .line-showcase__support-visual {
    min-height: 360px;
  }

  .line-showcase__item {
    padding: 20px;
  }
}

.sample-showcase__note {
  margin: 0;
  color: rgba(247, 241, 232, 0.62);
  font-size: 0.9rem;
  line-height: 1.7;
}

.line-showcase__support-note {
  margin: 6px 0 0;
  color: rgba(247, 241, 232, 0.62);
  font-size: 0.9rem;
  line-height: 1.7;
}

.sample-showcase__visuals--expanded {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: minmax(250px, 1fr) minmax(250px, 1fr);
  align-items: stretch;
}

.sample-showcase__visuals--expanded .sample-showcase__visual--pack {
  grid-row: 1 / 3;
  min-height: 560px;
}

.sample-showcase__visuals--expanded .sample-showcase__visual--granite {
  min-height: 250px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(18, 24, 28, 0.94), rgba(11, 15, 19, 1));
}

.sample-showcase__visuals--expanded .sample-showcase__visual--granite img {
  object-fit: contain;
  padding: clamp(24px, 3vw, 34px);
}

.sample-showcase__visuals--expanded .sample-showcase__visual--technical {
  min-height: 290px;
  margin-top: 0;
  background: linear-gradient(180deg, rgba(245, 239, 231, 0.96), rgba(216, 206, 192, 0.92));
}

.sample-showcase__visuals--expanded .sample-showcase__visual--technical img {
  object-fit: contain;
  padding: 18px;
}

.sample-showcase__visual--pack img {
  object-position: center 44%;
}

.sample-showcase__caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 15, 19, 0.54);
  backdrop-filter: blur(14px);
}

.sample-showcase__caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: #f7f1e8;
}

.sample-showcase__caption span {
  display: block;
  margin: 10px 0 0;
  color: rgba(247, 241, 232, 0.72);
  font-size: 0.88rem;
  line-height: 1.58;
}

@media (max-width: 900px) {
  .sample-showcase__visuals--expanded {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .sample-showcase__visuals--expanded .sample-showcase__visual--pack,
  .sample-showcase__visuals--expanded .sample-showcase__visual--granite,
  .sample-showcase__visuals--expanded .sample-showcase__visual--technical {
    min-height: 360px;
  }

  .sample-showcase__visuals--expanded .sample-showcase__visual--pack {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .sample-showcase__caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px 16px;
  }

  .sample-showcase__note {
    font-size: 0.84rem;
  }

  .sample-showcase__visuals--expanded .sample-showcase__visual--technical img,
  .sample-showcase__visuals--expanded .sample-showcase__visual--granite img {
    padding: 14px;
  }
}

.b2b-showcase {
  grid-template-columns: 1fr;
  gap: 24px;
}

.b2b-showcase--map-only {
  display: block;
}

.b2b-showcase__map-shell {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 26px 0 18px;
}

.b2b-showcase__map-stack {
  display: none;
}

.b2b-showcase__copy {
  align-content: start;
}

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

.b2b-showcase__map {
  min-height: 0;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 8;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(19, 24, 28, 0.98), rgba(10, 14, 18, 1));
}

.b2b-showcase__map::after {
  background:
    linear-gradient(180deg, rgba(15, 18, 22, 0.04) 0%, rgba(15, 18, 22, 0.14) 100%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 42%, rgba(10, 14, 18, 0.18) 100%);
}

.b2b-showcase__map img {
  object-fit: contain;
  object-position: center;
  padding: clamp(16px, 2.2vw, 24px);
}

.b2b-showcase__map-note {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 7px;
  max-width: min(248px, 26%);
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 19, 23, 0.38);
  color: #f7f1e8;
  box-shadow: 0 18px 34px rgba(6, 9, 12, 0.22);
  backdrop-filter: blur(16px);
}

.b2b-showcase__map-note--intro {
  top: 10px;
  left: -26px;
  z-index: 3;
  transform: none;
  max-width: min(396px, 35.5%);
  gap: 12px;
  padding: 20px 22px;
}

.b2b-showcase__map-note--intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.64rem, 2.18vw, 2.34rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.b2b-showcase__map-note--intro p {
  margin: 0;
  color: rgba(247, 241, 232, 0.76);
  font-size: 0.91rem;
  line-height: 1.62;
}

.b2b-showcase__map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(247, 241, 232, 0.08);
  color: #f7f1e8;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.b2b-showcase__map-note strong {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.b2b-showcase__map-note span {
  color: rgba(247, 241, 232, 0.74);
  font-size: 0.82rem;
  line-height: 1.42;
}

.b2b-showcase__map-note--source {
  top: 10.5%;
  right: 8.5%;
}

.b2b-showcase__map-note--port {
  bottom: 4.5%;
  left: 10.5%;
}

.b2b-showcase__map-note--distribution {
  right: 2.5%;
  bottom: 10%;
}

@media (max-width: 1100px) {
  .b2b-capabilities {
    grid-template-columns: 1fr;
  }

  .b2b-showcase__map-shell {
    width: min(100%, 980px);
    padding: 20px 0 12px;
  }

  .b2b-showcase__map {
    aspect-ratio: 4 / 3.25;
  }

  .b2b-showcase__map-note--intro {
    top: 12px;
    left: -2px;
    max-width: min(356px, 44%);
    padding: 18px 20px;
  }

  .b2b-showcase__map-note--port {
    left: 6%;
  }

  .b2b-showcase__map-note--source {
    top: 11.5%;
    right: 6.5%;
  }
}

@media (max-width: 760px) {
  .b2b-showcase {
    gap: 22px;
  }

  .b2b-showcase__map-shell {
    display: grid;
    gap: 14px;
    padding: 0;
  }

  .b2b-showcase__map {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .b2b-showcase__map img {
    padding: 14px;
  }

  .b2b-showcase__map-note {
    display: none;
  }

  .b2b-showcase__map-stack {
    display: grid;
    gap: 10px;
  }

  .b2b-showcase__stack-card {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    color: #f7f1e8;
  }

  .b2b-showcase__stack-card strong {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #f7f1e8;
  }

  .b2b-showcase__stack-card p {
    margin: 0;
    color: rgba(247, 241, 232, 0.76);
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .b2b-showcase__stack-card--intro {
    gap: 12px;
    padding: 18px 16px;
  }

  .b2b-showcase__stack-card--intro h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.34rem, 6vw, 1.72rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .b2b-showcase__stack-card .b2b-showcase__map-link {
    min-height: 40px;
    padding: 0 15px;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }
}

/* Cosmetic pass: mobile hero, category overlays, section order alignment, sample visuals */

.home-hero-mobile-copy {
  display: none;
}

.home-hero__mobile-teaser {
  display: none;
}

.category-spotlight__content {
  display: grid;
  grid-template-rows: auto minmax(0, auto) minmax(7.4em, 1fr) auto auto;
  align-content: start;
  height: clamp(340px, 24.5vw, 376px);
}

.category-spotlight__content h3 {
  margin: 12px 0 0;
}

.category-spotlight__content p {
  margin-top: 12px;
  min-height: 7.4em;
}

.category-spotlight__specs {
  margin-top: 0;
  padding-top: 18px;
}

.category-spotlight__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 28px;
  margin-top: 16px;
  padding: 0 0 3px;
  gap: 0;
  color: rgba(247, 241, 232, 0.86);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    color 0.24s ease,
    opacity 0.24s ease;
}

.category-spotlight__cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 180, 146, 0.18) 18%, rgba(212, 180, 146, 0.92) 50%, rgba(212, 180, 146, 0.18) 82%, transparent 100%);
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.category-spotlight:hover .category-spotlight__cta {
  color: #f7f1e8;
}

.category-spotlight:hover .category-spotlight__cta::after {
  opacity: 1;
  transform: scaleX(1);
}

.sample-showcase__visuals--line {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 16px;
  align-items: stretch;
}

.sample-showcase__visuals--line .line-showcase__main {
  min-height: 620px;
}

.sample-showcase__visuals--line .line-showcase__support-visual {
  min-height: 302px;
}

.sample-showcase__visuals--line .sample-showcase__visual--technical {
  margin-top: 0;
}

.sample-showcase__visuals--line .sample-showcase__visual--pack img {
  object-position: center 46%;
}

.sample-showcase__visuals--line .sample-showcase__visual--granite img {
  object-position: center center;
}

.sample-showcase__visuals--line .sample-showcase__visual--technical img {
  object-position: center 40%;
}

/* Product template system */

.product-template {
  --product-edge: clamp(18px, 4vw, 72px);
  --product-gap: 18px;
  width: min(100%, 1800px);
  margin: 0 auto;
  padding: 0 var(--product-edge) clamp(56px, 7vw, 112px);
  color: var(--ink);
}

.product-template h1,
.product-template h2,
.product-template h3,
.product-template p,
.product-template a,
.product-template span,
.product-template strong,
.product-template summary,
.product-template label,
.product-template input,
.product-template textarea,
.product-template button {
  overflow-wrap: anywhere;
}

.product-template img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-reveal {
  animation: modurra-rise 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(18px, 2.6vw, 36px);
  align-items: stretch;
  min-height: 0;
  padding: 20px 0;
}

.product-hero__copy,
.product-module-copy,
.product-section__head,
.product-form-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-hero__copy {
  justify-content: center;
  min-height: clamp(560px, calc(100vh - 158px), 760px);
  padding: clamp(34px, 4.6vw, 66px);
  border-radius: var(--radius-xl);
  background: rgba(243, 238, 231, 0.96);
}

.product-hero h1,
.product-full-bleed h2,
.product-macro h2,
.product-final-cta h2 {
  max-width: 17ch;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.85rem, 3.45vw, 3.65rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

.product-hero p,
.product-module-copy p,
.product-section__head p,
.product-full-bleed p,
.product-macro p,
.product-form-panel p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.product-hero .cta-row,
.product-final-cta .cta-row {
  margin-top: 28px;
}

.product-hero__media,
.product-full-bleed,
.product-macro,
.product-final-cta,
.product-render,
.product-color-lab__visual,
.product-b2b,
.product-form-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #d5cec4;
  box-shadow: var(--shadow-xl);
}

.product-hero__media {
  height: clamp(560px, calc(100vh - 158px), 760px);
  min-height: 0;
  margin: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #eee7dc;
}

.product-hero__media img {
  object-fit: cover;
  padding: 0;
  opacity: 0;
}

.product-parallax img {
  transform: none;
  transform-origin: center;
}

.product-section {
  margin-top: clamp(20px, 4vw, 56px);
}

.product-section__head {
  width: min(920px, 100%);
  max-width: 100%;
  margin-bottom: clamp(18px, 2.8vw, 34px);
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(18, 23, 27, 0.08);
  border-radius: 26px;
  background: rgba(255, 250, 242, 0.9);
  box-shadow: 0 18px 44px rgba(18, 23, 27, 0.08);
  backdrop-filter: blur(14px) saturate(120%);
}

.product-section__head p {
  max-width: 58ch;
}

.product-section__head h2,
.product-module-copy h2,
.product-form-panel h2 {
  max-width: 19ch;
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

.product-section__head h2 {
  max-width: 23ch;
  color: var(--text);
}

.product-section__head p {
  color: var(--text-soft);
}

.product-section--applications .product-section__head,
.product-section--elements .product-section__head,
.product-section--decision .product-section__head,
.product-section--gallery .product-section__head,
.product-section--faq .product-section__head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(20px, 2.5vw, 30px) clamp(24px, 3.2vw, 42px);
  border-radius: 24px;
}

.product-section--applications .section-kicker,
.product-section--elements .section-kicker,
.product-section--decision .section-kicker,
.product-section--gallery .section-kicker,
.product-section--faq .section-kicker {
  display: flex;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
}

.product-section--applications .product-section__head h2,
.product-section--elements .product-section__head h2,
.product-section--decision .product-section__head h2,
.product-section--gallery .product-section__head h2,
.product-section--faq .product-section__head h2 {
  max-width: 100%;
  margin-top: 16px;
  font-size: clamp(2.05rem, 2.45vw, 2.6rem);
}

.product-section--applications .product-section__head p,
.product-section--elements .product-section__head p,
.product-section--decision .product-section__head p,
.product-section--gallery .product-section__head p,
.product-section--faq .product-section__head p {
  max-width: 82ch;
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.62;
}

.product-use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--product-gap);
}

.product-use-card {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #151719;
  box-shadow: var(--shadow-lg);
}

.product-use-card::after,
.product-full-bleed::after,
.product-macro::after,
.product-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 16, 19, 0.78) 0%, rgba(13, 16, 19, 0.42) 36%, rgba(13, 16, 19, 0.08) 72%),
    linear-gradient(180deg, rgba(13, 16, 19, 0.08) 0%, rgba(13, 16, 19, 0.22) 44%, rgba(13, 16, 19, 0.72) 100%);
  pointer-events: none;
}

.product-use-card::after {
  background: linear-gradient(180deg, rgba(13, 16, 19, 0.02) 0%, rgba(13, 16, 19, 0.18) 42%, rgba(13, 16, 19, 0.82) 100%);
}

.product-use-card img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-use-card:hover img {
  transform: scale(1.045);
}

.product-use-card > div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  min-height: 0;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 15, 18, 0.78);
  color: #fffaf2;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px) saturate(130%);
}

.product-template .product-use-card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 228px;
  padding: 22px;
}

.product-template .product-use-card h3 {
  margin-top: 0;
}

.product-template .product-use-card p {
  display: -webkit-box;
  min-height: 5.92em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.product-use-card .product-icon {
  flex: 0 0 auto;
}

.product-use-card h3,
.product-element-card h3 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-use-card p,
.product-element-card p {
  margin: 10px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: 0.92rem;
  line-height: 1.48;
}

.product-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f7f1e8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.product-full-bleed,
.product-macro,
.product-final-cta {
  min-height: 760px;
  margin-top: clamp(20px, 4vw, 56px);
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
}

.product-macro {
  min-height: 880px;
}

.product-full-bleed__copy,
.product-macro__copy,
.product-final-cta > div {
  position: absolute;
  left: clamp(24px, 5vw, 86px);
  bottom: clamp(24px, 5vw, 86px);
  z-index: 2;
  width: min(720px, calc(100% - 48px));
  max-width: 720px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(12, 15, 18, 0.72);
  color: #fffaf2;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
  text-shadow: none;
  backdrop-filter: blur(18px) saturate(130%);
}

.product-full-bleed p,
.product-macro p,
.product-final-cta p {
  color: rgba(255, 250, 242, 0.9);
}

.product-full-bleed__copy .section-kicker--light,
.product-macro__copy .section-kicker--light {
  color: rgba(255, 230, 196, 0.92);
}

.product-full-bleed h2,
.product-macro h2,
.product-final-cta h2 {
  max-width: 18ch;
}

.product-split,
.product-b2b,
.product-form-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: var(--product-gap);
  align-items: stretch;
}

.product-color-lab {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.84fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: stretch;
}

.product-color-lab > * {
  min-width: 0;
}

.product-color-lab .product-color-lab__visual,
.product-color-lab .product-module-copy {
  height: clamp(500px, 46vw, 640px);
  min-height: 0;
}

.product-color-lab .product-color-lab__visual {
  aspect-ratio: auto;
  max-height: none;
}

.product-color-lab .product-module-copy {
  justify-content: center;
  padding: clamp(30px, 4vw, 58px);
}

.product-color-lab .product-module-copy h2 {
  max-width: 18ch;
  font-size: clamp(2.25rem, 2.65vw, 2.95rem);
}

.product-color-lab .product-module-copy > p {
  max-width: 52ch;
}

.product-split--reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
}

.product-module-copy,
.product-form-panel {
  justify-content: center;
  min-height: 620px;
  padding: clamp(26px, 4vw, 54px);
  border-radius: var(--radius-xl);
  background: rgba(243, 238, 231, 0.96);
}

.product-module-copy .button {
  margin-top: 26px;
}

.product-render {
  min-height: 620px;
}

.product-render img {
  object-fit: contain;
  padding: clamp(16px, 2vw, 28px);
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.78), rgba(237, 230, 220, 0.96) 70%),
    #fffaf2;
}

.product-system {
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.86fr);
  gap: clamp(22px, 3vw, 42px);
}

.product-system .product-render,
.product-system .product-module-copy {
  min-height: clamp(560px, 52vw, 700px);
}

.product-system .product-render {
  background: #f2ece3;
}

.product-system .product-render img {
  object-fit: cover;
  padding: 0;
  background: none;
}

.product-render--granite-modules {
  padding: clamp(16px, 2vw, 24px);
  background: #14181b;
}

.granite-product-modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
  width: 100%;
  height: 100%;
}

.granite-product-modules img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.product-render--granite-single img {
  object-fit: cover;
  padding: 0;
  background: none;
}

.product-system .product-module-copy {
  padding: clamp(30px, 4vw, 58px);
}

.product-system .product-module-copy h2 {
  max-width: 18ch;
  font-size: clamp(2.25rem, 2.75vw, 3rem);
}

.product-system .product-module-copy > p {
  max-width: 52ch;
}

.product-system .product-detail-list {
  gap: 12px;
}

.product-system .product-detail-list article {
  padding: 16px;
  border-color: rgba(18, 23, 27, 0.1);
  background: rgba(255, 250, 242, 0.98);
}

.product-anatomy {
  grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1.04fr);
  gap: clamp(22px, 3vw, 42px);
}

.product-anatomy .product-render,
.product-anatomy .product-module-copy {
  min-height: clamp(540px, 50vw, 680px);
}

.product-anatomy .product-module-copy {
  padding: clamp(30px, 4vw, 56px);
}

.product-anatomy .product-module-copy h2 {
  max-width: 16ch;
  font-size: clamp(2.25rem, 2.7vw, 2.95rem);
}

.product-anatomy .product-module-copy > p {
  max-width: 50ch;
}

.product-anatomy .product-render {
  background: #f2ece3;
}

.product-anatomy .product-render img {
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: none;
}

.product-anatomy .product-detail-list {
  gap: 12px;
}

.product-anatomy .product-detail-list article {
  padding: 16px;
  background: rgba(255, 250, 242, 0.98);
}

.product-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 20px;
}

.product-detail-list--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.product-detail-list--three article {
  min-height: 180px;
  padding: clamp(18px, 2vw, 24px);
}

.product-detail-list article {
  min-height: 0;
  padding: 14px;
  border: 1px solid rgba(18, 23, 27, 0.08);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 12px 28px rgba(18, 23, 27, 0.06);
}

.product-detail-list strong {
  display: block;
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-list p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.42;
}

.product-macro .product-detail-list {
  max-width: none;
}

.product-macro .product-detail-list article {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 250, 242, 0.94);
  text-shadow: none;
}

.product-macro .product-detail-list p {
  color: rgba(18, 23, 27, 0.72);
}

.product-color-lab__visual {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  padding: 0;
  overflow: hidden;
  background: #fffaf2;
}

.product-color-lab__image {
  position: relative;
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  object-fit: cover;
  pointer-events: none;
}

.product-color-lab__image.is-active {
  opacity: 1;
  visibility: visible;
}

.product-swatches {
  display: grid;
  width: min(100%, 420px);
  gap: 10px;
  margin-top: 28px;
}

.product-swatch {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(30, 30, 25, 0.12);
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.product-swatch::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--tone);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.product-swatch.is-active {
  border-color: rgba(30, 30, 25, 0.4);
}

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

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

.product-element-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #1a1d1f;
  box-shadow: var(--shadow-lg);
}

.product-element-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 15, 18, 0) 0%, rgba(12, 15, 18, 0.16) 42%, rgba(12, 15, 18, 0.5) 100%);
  pointer-events: none;
}

.product-element-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-element-card:hover img {
  transform: scale(1.035);
}

.product-element-card--granite img,
.product-gallery__item--granite img {
  object-fit: cover;
  object-position: center;
}

.product-template--jacuzzi .product-use-card img,
.product-template--jacuzzi .product-element-card img {
  object-position: center 22%;
}

.product-template--jacuzzi .product-element-card__body,
.product-template--jacuzzi .product-use-card > div {
  background: rgba(255, 250, 242, 0.96);
}

.product-template--jacuzzi .product-use-card > div {
  color: var(--text);
}

.product-template--jacuzzi .product-use-card p {
  color: var(--text-soft);
}

.product-template--jacuzzi .product-macro {
  min-height: clamp(660px, 68vw, 780px);
  background-position: center 34%;
}

.product-template--jacuzzi .product-macro__copy {
  width: min(500px, calc(100% - 48px));
  max-width: 500px;
  padding: clamp(20px, 2.4vw, 30px);
}

.product-template--jacuzzi .product-macro h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.product-template--jacuzzi .product-macro .product-detail-list {
  grid-template-columns: 1fr;
  max-width: 430px;
  gap: 8px;
}

.product-template--jacuzzi .product-macro .product-detail-list article {
  padding: 12px 14px;
}

.product-template--sauna .product-use-card img,
.product-template--sauna .product-element-card img {
  object-position: center 30%;
}

.product-template--sauna .product-element-card__body,
.product-template--sauna .product-use-card > div {
  background: rgba(255, 250, 242, 0.96);
}

.product-template--sauna .product-use-card > div {
  color: var(--text);
}

.product-template--sauna .product-use-card p {
  color: var(--text-soft);
}

.product-template--sauna .product-macro {
  min-height: clamp(650px, 66vw, 760px);
  background-position: center 42%;
}

.product-template--sauna .product-macro__copy {
  width: min(500px, calc(100% - 48px));
  max-width: 500px;
  padding: clamp(20px, 2.4vw, 30px);
}

.product-template--sauna .product-macro h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.product-element-card__body {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 164px;
  padding: 18px;
  border: 1px solid rgba(18, 23, 27, 0.08);
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px) saturate(120%);
}

.product-element-card h3 {
  margin: 0;
  color: var(--text);
}

.product-element-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.46;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

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

.product-gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-xl);
  background: #1a1d1f;
  color: #f7f1e8;
  box-shadow: var(--shadow-lg);
}

.product-gallery__item:nth-child(2n) img {
  height: 100%;
  object-fit: cover;
}

.product-gallery__item:nth-child(2n + 1) img {
  height: 100%;
  object-fit: cover;
}

.product-gallery__item img {
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-gallery__item:hover img {
  transform: translateZ(0) scale(1.035);
}

.product-gallery__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(13, 16, 19, 0) 0%, rgba(13, 16, 19, 0.72) 100%);
  pointer-events: none;
}

.product-gallery__item span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(12, 15, 18, 0.78);
  color: #fffaf2;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.product-b2b {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  background: transparent;
  box-shadow: none;
}

.product-b2b > img {
  min-height: 560px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.product-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-icon-row span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fffaf2;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: normal;
}

.product-faq {
  display: grid;
  gap: 10px;
}

.product-faq details {
  border-radius: 18px;
  background: #f3eee7;
}

.product-faq summary {
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 700;
}

.product-faq p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.product-form-block {
  background: transparent;
  box-shadow: none;
}

.product-form-block > img {
  min-height: 720px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.product-form {
  display: grid;
  width: 100%;
  gap: 12px;
  margin-top: 24px;
}

.product-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-form input,
.product-form textarea {
  width: 100%;
  border: 1px solid rgba(30, 30, 25, 0.12);
  border-radius: 16px;
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
}

.product-form input {
  min-height: 52px;
  padding: 0 16px;
}

.product-form textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.product-tips {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  background: #fffaf2;
}

.product-tips p {
  margin-top: 8px;
}

.product-inspirations {
  overflow: hidden;
}

.product-inspirations__stage {
  position: relative;
}

.product-inspirations__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--product-gap);
  width: 100%;
  margin-bottom: clamp(18px, 2.8vw, 34px);
  padding: clamp(20px, 2.5vw, 30px) clamp(24px, 3.2vw, 42px);
  border: 1px solid rgba(18, 23, 27, 0.08);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.9);
  box-shadow: 0 18px 44px rgba(18, 23, 27, 0.08);
  backdrop-filter: blur(14px) saturate(120%);
}

.product-inspirations__head h2 {
  max-width: 22ch;
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.05rem, 2.45vw, 2.6rem);
  font-weight: 600;
  line-height: 1.04;
}

.product-inspirations__head p {
  max-width: 68ch;
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.62;
}

.product-inspirations__controls {
  display: flex;
  gap: 10px;
}

.product-inspirations__controls button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(18, 23, 27, 0.12);
  border-radius: 999px;
  background: #fffaf2;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(18, 23, 27, 0.1);
}

.product-inspiration-track {
  display: grid;
  grid-auto-columns: minmax(640px, 74vw);
  grid-auto-flow: column;
  gap: var(--product-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-inspiration-track::-webkit-scrollbar {
  display: none;
}

.product-inspiration-card {
  position: relative;
  height: clamp(420px, 58vh, 620px);
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #12171b;
  box-shadow: var(--shadow-xl);
  scroll-snap-align: start;
}

.product-inspiration-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-inspiration-card:hover img {
  transform: scale(1.025);
}

.product-inspiration-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(12, 15, 18, 0) 0%, rgba(12, 15, 18, 0.62) 100%);
  pointer-events: none;
}

.product-inspirations__overlay {
  position: absolute;
  right: clamp(18px, 3vw, 36px);
  bottom: clamp(18px, 3vw, 36px);
  left: 22px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: none;
}

.product-inspirations__overlay .cta-row,
.product-inspirations__overlay .product-inspirations__controls {
  pointer-events: auto;
}

.product-inspirations__overlay .cta-row {
  margin: 0;
}

.product-inspirations__overlay .button--secondary {
  background: rgba(255, 250, 242, 0.94);
}

.product-final-cta {
  display: grid;
  place-items: end start;
  min-height: 760px;
  padding: clamp(28px, 5vw, 72px);
}

@media (max-width: 1180px) {
  .product-hero,
  .product-split,
  .product-split--reverse,
  .product-color-lab,
  .product-b2b,
  .product-form-block {
    grid-template-columns: 1fr;
  }

  .product-use-grid,
  .product-elements-grid,
  .product-elements-grid--two,
  .product-detail-list--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-inspirations__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-inspiration-track {
    grid-auto-columns: minmax(560px, 84vw);
  }

  .product-hero {
    min-height: auto;
  }

  .product-hero__copy {
    min-height: auto;
  }

  .product-hero__media {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .product-module-copy,
  .product-form-panel {
    min-height: auto;
  }

  .product-color-lab .product-color-lab__visual {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .product-color-lab .product-module-copy {
    height: auto;
    min-height: auto;
  }

  .product-full-bleed__copy,
  .product-macro__copy,
  .product-final-cta > div {
    width: min(760px, calc(100% - 40px));
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 760px) {
  .product-template {
    --product-edge: 12px;
  }

  .product-hero__copy,
  .product-module-copy,
  .product-form-panel {
    padding: 24px 18px;
  }

  .product-hero h1,
  .product-full-bleed h2,
  .product-macro h2,
  .product-final-cta h2 {
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .product-section__head h2,
  .product-module-copy h2,
  .product-form-panel h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .product-section__head {
    width: 100%;
    padding: 20px 16px;
  }

  .product-section--applications .product-section__head,
  .product-section--elements .product-section__head,
  .product-section--decision .product-section__head,
  .product-section--gallery .product-section__head,
  .product-section--faq .product-section__head {
    padding: 20px 16px;
  }

  .product-section--applications .product-section__head p,
  .product-section--elements .product-section__head p,
  .product-section--decision .product-section__head p,
  .product-section--gallery .product-section__head p,
  .product-section--faq .product-section__head p {
    margin-top: 12px;
  }

  .product-color-lab__visual {
    min-height: 360px;
    max-height: 420px;
  }

  .product-color-lab__image {
    width: 100%;
    height: 100%;
  }

  .product-use-card h3,
  .product-element-card h3 {
    font-size: 1.42rem;
  }

  .product-use-card p,
  .product-element-card p {
    font-size: 0.9rem;
  }

  .product-use-grid,
  .product-elements-grid,
  .product-elements-grid--two,
  .product-detail-list--three,
  .product-detail-list {
    grid-template-columns: 1fr;
  }

  .granite-product-modules {
    grid-template-columns: 1fr;
  }

  .product-use-card,
  .product-full-bleed,
  .product-final-cta,
  .product-render,
  .product-color-lab__visual,
  .product-form-block > img {
    min-height: 480px;
  }

  .product-macro {
    min-height: 820px;
  }

  .product-full-bleed__copy,
  .product-macro__copy,
  .product-final-cta > div {
    width: calc(100% - 24px);
    left: 12px;
    bottom: 12px;
    padding: 20px 18px;
    border-radius: 22px;
  }

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

  .product-gallery__item img,
  .product-gallery__item:nth-child(2n) img,
  .product-gallery__item:nth-child(2n + 1) img {
    height: 360px;
    object-fit: cover;
  }

  .product-inspiration-track {
    grid-auto-columns: minmax(0, 88vw);
  }

  .product-inspiration-card {
    height: clamp(340px, 54vh, 460px);
    min-height: 0;
  }

  .product-inspirations__overlay {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .product-inspirations__overlay .cta-row {
    width: 100%;
  }

  .product-inspirations__overlay .button {
    flex: 1 1 auto;
    min-width: 0;
  }

  .product-inspirations__controls button {
    width: 46px;
    height: 46px;
  }

  .product-detail-list article {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --mobile-edge: 12px;
  }

  .home-hero,
  .home,
  .site-main,
  .home-hero__stage,
  .home-hero-mobile-copy {
    overflow-anchor: none;
  }

  .shell {
    width: min(1440px, calc(100vw - (var(--mobile-edge) * 2)));
  }

  .home-hero {
    width: auto;
    margin-left: 0;
  }

  .home-hero__stage {
    display: block;
    min-height: 446px;
    padding: 78px 0 0;
    border-radius: 26px;
    background: linear-gradient(180deg, #1f1915 0%, #131416 100%);
  }

  .home-hero__stage::before {
    background:
      linear-gradient(180deg, rgba(19, 15, 12, 0.42) 0%, rgba(19, 15, 12, 0.14) 10%, rgba(19, 15, 12, 0.02) 22%, rgba(19, 15, 12, 0) 32%),
      radial-gradient(circle at 50% 10%, rgba(255, 250, 242, 0.08) 0%, rgba(255, 250, 242, 0) 30%),
      linear-gradient(180deg, rgba(18, 14, 11, 0.16) 0%, rgba(18, 14, 11, 0.02) 18%, rgba(10, 12, 15, 0.22) 100%);
  }

  .home-hero__stage::after {
    background:
      linear-gradient(90deg, rgba(18, 14, 11, 0.58) 0%, rgba(18, 14, 11, 0.28) 9%, rgba(18, 14, 11, 0.08) 18%, rgba(18, 14, 11, 0) 24%, rgba(18, 14, 11, 0) 76%, rgba(18, 14, 11, 0.08) 82%, rgba(18, 14, 11, 0.28) 91%, rgba(18, 14, 11, 0.58) 100%),
      linear-gradient(180deg, rgba(8, 12, 15, 0.34) 0%, rgba(8, 12, 15, 0.12) 12%, rgba(8, 12, 15, 0.02) 24%, rgba(8, 12, 15, 0) 38%, rgba(8, 12, 15, 0.06) 72%, rgba(8, 12, 15, 0.32) 100%),
      radial-gradient(122% 72% at 50% 102%, rgba(10, 12, 15, 0.44) 0%, rgba(10, 12, 15, 0) 58%);
  }

  .home-film {
    -webkit-mask-image: radial-gradient(144% 104% at 50% 48%, #000 50%, rgba(0, 0, 0, 0.98) 60%, rgba(0, 0, 0, 0.88) 72%, rgba(0, 0, 0, 0.56) 86%, rgba(0, 0, 0, 0.18) 95%, transparent 100%);
    mask-image: radial-gradient(144% 104% at 50% 48%, #000 50%, rgba(0, 0, 0, 0.98) 60%, rgba(0, 0, 0, 0.88) 72%, rgba(0, 0, 0, 0.56) 86%, rgba(0, 0, 0, 0.18) 95%, transparent 100%);
  }

  .home-hero__copy--desktop {
    display: none;
  }

  .home-hero-mobile-copy {
    display: block;
  }

  .home-hero__mobile-teaser {
    position: absolute;
    right: var(--mobile-edge);
    bottom: 30px;
    left: var(--mobile-edge);
    z-index: 4;
    display: block;
    padding: 12px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(11, 15, 19, 0.18), rgba(11, 15, 19, 0.58));
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 42px rgba(3, 5, 8, 0.2);
  }

  .home-hero__mobile-teaser p {
    max-width: 31ch;
    margin: 0;
    color: #f7f1e8;
    font-family: var(--serif);
    font-size: clamp(0.84rem, 3.4vw, 1rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .home-hero-mobile-copy__card {
    display: grid;
    gap: 16px;
    padding: 22px 16px;
  }

  .home-hero-mobile-copy__card .section-copy {
    margin: 0;
  }

  .home-hero-mobile-copy__card .cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 0;
  }

  .home-hero-mobile-copy__card .button {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .home-hero-mobile-copy__card .home-hero__note {
    margin: 0;
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  .category-spotlight__content {
    height: auto;
    min-height: 282px;
    grid-template-rows: auto auto auto auto auto;
  }

  .category-spotlight__content p {
    min-height: 0;
  }

  .category-spotlight__specs {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    gap: 8px;
  }

  .category-spotlight__specs span {
    width: auto;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.64rem;
    line-height: 1;
  }

  .category-spotlight__specs .category-spotlight__spec--compact {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .sample-showcase__visuals--line {
    grid-template-columns: 1fr;
  }

  .sample-showcase__visuals--line .line-showcase__main,
  .sample-showcase__visuals--line .line-showcase__support-visual {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  :root {
    --mobile-edge: 10px;
  }

  .home-hero__stage {
    min-height: 420px;
    padding-top: 74px;
    border-radius: 22px;
  }

  .home-hero__mobile-teaser {
    right: var(--mobile-edge);
    bottom: 24px;
    left: var(--mobile-edge);
    padding: 10px 12px;
    border-radius: 18px;
  }

  .home-hero__mobile-teaser p {
    max-width: 30ch;
    font-size: clamp(0.8rem, 3.9vw, 0.94rem);
  }

  .home-hero-mobile-copy__card {
    padding: 20px 16px;
    gap: 14px;
  }

  .home-hero-mobile-copy__card .cta-row {
    gap: 8px;
  }

  .home-hero-mobile-copy__card .button {
    min-height: 40px;
    font-size: 0.64rem;
    letter-spacing: 0.09em;
  }

  .home-hero-mobile-copy__card .home-hero__note {
    display: none;
  }

  .sample-showcase__visuals--line .line-showcase__main,
  .sample-showcase__visuals--line .line-showcase__support-visual {
    min-height: 310px;
  }
}
