:root {
  /* ── Darks ── */
  --ink:          #0c0d0e;   /* noir — deepest black, hero/authority bg */
  --graphite:     #1a1c1e;   /* obsidian — secondary surfaces */
  --charcoal:     #2a2c2f;   /* borders, dividers */

  /* ── Neutrals ── */
  --stone:        #72706d;   /* muted text on dark surfaces */
  --silver:       #b8b5b0;   /* muted text on light surfaces */

  /* ── Lights ── */
  --bone:         #ede9e2;   /* light section backgrounds */
  --porcelain:    #f8f5ee;   /* ivory — primary text on dark + light section bg */
  --chalk:        #ede9e2;   /* alias of bone for backwards-compat */

  /* ── Accent ── */
  --brass:        #c49532;   /* gold — sole accent color */
  --brass-dark:   #8a6a22;   /* gold deep — depth, darker CTAs */

  /* ── Legacy aliases (keeps existing selectors working) ── */
  --mineral:      #72706d;   /* was green — now stone gray */
  --mineral-dark: #1a1c1e;   /* was dark green — now obsidian */
  --mist:         #b8b5b0;   /* was teal mist — now silver */

  /* ── Utility ── */
  --white:        #ffffff;
  --muted:        #72706d;
  --line:         rgba(12, 13, 14, .14);
  --line-light:   rgba(248, 245, 238, .16);
  --display:      "Bricolage Grotesque", system-ui, sans-serif;
  --body:         "Manrope", system-ui, sans-serif;
  --ease:         cubic-bezier(.22, 1, .36, 1);
}

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

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

body {
  margin: 0;
  color: var(--porcelain);
  background: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html.is-loading-first,
html.is-loading-first body {
  overflow: hidden;
}

.brand-loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  overflow: hidden;
  color: #050505;
  background: #ffffff;
  pointer-events: auto;
  transition: opacity .65s var(--ease), visibility .65s var(--ease);
}

.brand-loader.is-exiting {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

main {
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}

html.is-loading-first .site-header,
html.is-loading-first main {
  opacity: .01;
  filter: blur(8px);
  transform: translateY(12px) scale(1.012);
}

.loader-words {
  position: absolute;
  inset: 0;
}

.loader-word {
  position: absolute;
  left: var(--x);
  top: var(--y);
  max-width: min(48vw, 460px);
  color: #050505;
  font-family: var(--display);
  font-size: var(--size);
  font-weight: var(--weight);
  line-height: .92;
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 0;
  filter: blur(8px);
  transform: translate(-50%, -42%) rotate(var(--rotation)) scale(.94);
  animation: loaderWordPass .65s var(--ease) both;
  animation-delay: var(--delay);
  will-change: transform, opacity;
}

.loader-word:nth-child(3n) {
  font-family: var(--body);
  text-transform: uppercase;
  font-size: calc(var(--size) * .68);
  font-weight: 850;
  letter-spacing: .08em;
}

.loader-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: min(48vw, 340px);
  opacity: 0;
  transform: translate(-50%, -42%) scale(.94);
  animation: loaderLogoIn .65s var(--ease) forwards;
  animation-delay: var(--logo-delay, 1.6s);
}

.loader-logo img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

@keyframes loaderWordPass {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate(-50%, -42%) rotate(var(--rotation)) scale(.92);
  }
  24%,
  68% {
    opacity: var(--word-opacity);
    filter: blur(0);
    transform: translate(-50%, -50%) rotate(var(--rotation)) scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(8px);
    transform: translate(-50%, -58%) rotate(var(--rotation)) scale(.96);
  }
}

@keyframes loaderLogoIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -38%) scale(.92);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

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

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

button,
summary {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
  line-height: .96;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.promo-ticker {
  position: fixed;
  inset: 0 0 auto;
  z-index: 32;
  height: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: rgba(247, 245, 239, .78);
  background: rgba(16, 20, 22, .72);
  border-bottom: 1px solid rgba(247, 245, 239, .12);
  backdrop-filter: blur(18px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), filter .45s var(--ease), visibility .45s var(--ease);
  will-change: transform, opacity, filter;
}

html.is-page-scrolled .promo-ticker {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(6px);
  transform: translateY(-110%);
}

.promo-text {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 850;
  line-height: 34px;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(8px);
  animation: promoPhrase 50s var(--ease) infinite;
  will-change: transform, opacity, filter;
}

html[lang="fr"] .promo-text {
  font-size: 10px;
  letter-spacing: .06em;
}

.promo-phrase:nth-child(2) {
  animation-delay: 5s;
}

.promo-phrase:nth-child(3) {
  animation-delay: 10s;
}

.promo-phrase:nth-child(4) {
  animation-delay: 15s;
}

.promo-phrase:nth-child(5) {
  animation-delay: 20s;
}

.promo-phrase:nth-child(6) {
  animation-delay: 25s;
}

.promo-phrase:nth-child(7) {
  animation-delay: 30s;
}

.promo-phrase:nth-child(8) {
  animation-delay: 35s;
}

.promo-phrase:nth-child(9) {
  animation-delay: 40s;
}

.promo-phrase:nth-child(10) {
  animation-delay: 45s;
}

.promo-text::before,
.promo-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--brass);
  transform: translateY(-50%);
}

.promo-text::before {
  left: max(18px, calc(50% - 330px));
}

.promo-text::after {
  right: max(18px, calc(50% - 330px));
}

@keyframes promoPhrase {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(8px);
  }

  2%,
  8% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  10%,
  100% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(-8px);
  }
}

.site-header {
  position: fixed;
  inset: 34px 0 auto;
  width: 100%;
  z-index: 30;
  padding: 0 clamp(18px, 4vw, 48px);
  color: var(--porcelain);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease), inset .5s var(--ease);
}

.site-header.is-scrolled {
  inset: 6px 0 auto;
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 18px;
  transition: background .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease), backdrop-filter .5s var(--ease);
}

.site-header.is-scrolled .header-shell {
  background: linear-gradient(180deg, rgba(48, 56, 58, .54), rgba(16, 20, 22, .64));
  border-color: rgba(247, 245, 239, .14);
  box-shadow:
    inset 0 1px 0 0 rgba(247, 245, 239, .28),
    inset 0 0 0 1px rgba(247, 245, 239, .05),
    inset 0 -1px 1px 0 rgba(0, 0, 0, .45),
    0 24px 50px rgba(0, 0, 0, .42);
  backdrop-filter: blur(22px) saturate(1.3);
}

.brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: flex;
  align-items: center;
}

.brand img {
  width: 360px;
  height: auto;
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
}

.site-header.is-scrolled .brand img {
  transform: scale(.82);
}

.nav-links {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  position: relative;
  z-index: 1;
  padding: 9px 14px;
  border-radius: 10px;
  opacity: .82;
  transition: opacity .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}

html[lang="fr"] .nav-links a {
  padding-inline: 12px;
}

.nav-links a:hover {
  opacity: 1;
  background: rgba(247, 245, 239, .06);
}

.nav-links a.is-active {
  color: var(--brass);
  opacity: 1;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(247, 245, 239, .16);
  border-radius: 999px;
  color: rgba(247, 245, 239, .72);
  transition: background .32s var(--ease), border-color .32s var(--ease), backdrop-filter .32s var(--ease);
}

.site-header.is-scrolled .language-switch {
  background: rgba(16, 20, 22, .58);
  border-color: rgba(247, 245, 239, .2);
  backdrop-filter: blur(18px);
}

.language-switch a {
  display: grid;
  place-items: center;
  min-width: 34px;
  min-height: 28px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  transition: color .2s var(--ease), background .2s var(--ease);
}

.language-switch a:hover,
.language-switch a.is-active {
  color: var(--ink);
  background: var(--porcelain);
}

.phone-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--brass);
  border-radius: 50%;
  position: relative;
}

.phone-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  animation: phonePulse 2s infinite ease-out;
  opacity: 0;
}

@keyframes phonePulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}


.menu-toggle,
.menu-close {
  display: none;
  appearance: none;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(247, 245, 239, .24);
  border-radius: 6px;
}

.menu-toggle span,
.menu-close span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform .28s var(--ease), top .28s var(--ease), opacity .2s var(--ease), background .2s var(--ease);
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle:hover {
  color: var(--brass);
  border-color: rgba(196, 149, 50, .58);
}

html.menu-open .menu-toggle span:first-child {
  top: 21px;
  transform: rotate(42deg);
}

html.menu-open .menu-toggle span:last-child {
  top: 21px;
  transform: rotate(-42deg);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(16, 20, 22, .56);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s var(--ease), visibility .28s var(--ease);
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 60;
  width: min(420px, 88vw);
  color: var(--porcelain);
  background: rgba(16, 20, 22, .96);
  border-left: 1px solid rgba(247, 245, 239, .14);
  transform: translateX(100%);
  transition: transform .42s var(--ease), visibility .42s var(--ease);
  visibility: hidden;
  backdrop-filter: blur(24px);
}

.mobile-menu-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 26px clamp(22px, 7vw, 34px) 34px;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(34px, 10vh, 74px);
  color: rgba(247, 245, 239, .58);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu-close {
  display: block;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(247, 245, 239, .18);
  border-radius: 6px;
}

.menu-close span:first-child {
  top: 20px;
  transform: rotate(42deg);
}

.menu-close span:last-child {
  top: 20px;
  transform: rotate(-42deg);
}

.mobile-menu-inner > a {
  position: relative;
  padding: 18px 0;
  font-family: var(--display);
  font-size: clamp(34px, 10vw, 58px);
  font-weight: 720;
  line-height: .92;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(247, 245, 239, .12);
  transition: color .22s var(--ease), transform .22s var(--ease);
}

.mobile-menu-inner > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--brass);
  transform: translate(-32px, -50%) scaleX(0);
  transform-origin: left;
  transition: transform .24s var(--ease);
}

.mobile-menu-inner > a:hover,
.mobile-menu-inner > a.is-active {
  color: var(--brass);
  transform: translateX(32px);
}

.mobile-menu-inner > a:hover::before,
.mobile-menu-inner > a.is-active::before {
  transform: translate(-32px, -50%) scaleX(1);
}

.mobile-language {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 245, 239, .12);
}

.mobile-language a {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(247, 245, 239, .14);
  border-radius: 999px;
  color: rgba(247, 245, 239, .68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}

.mobile-language a:hover,
.mobile-language a.is-active {
  color: var(--ink);
  background: var(--porcelain);
  border-color: var(--porcelain);
}

.mobile-menu-actions {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding-top: 38px;
}

.mobile-menu-actions .button,
.mobile-phone {
  width: 100%;
  font-family: var(--body);
  font-size: 13px;
}

.mobile-phone {
  padding: 0 0 14px;
  color: rgba(247, 245, 239, .72);
  font-weight: 850;
  border-bottom: 1px solid rgba(247, 245, 239, .12);
}

html.menu-open,
html.menu-open body {
  overflow: hidden;
}

html.menu-open .mobile-menu-backdrop,
html.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.menu-open .mobile-menu {
  transform: translateX(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.button:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
.language-switch a:focus-visible,
.menu-toggle:focus-visible,
.menu-close:focus-visible,
.mobile-menu-inner > a:focus-visible,
.mobile-language a:focus-visible,
.mobile-phone:focus-visible,
.hero-phone:focus-visible,
.hero-mode-toggle button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 5px;
}

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

.button:active {
  transform: scale(.98);
}

.button-brass {
  color: var(--ink);
  background: var(--brass);
}

.button-brass:hover {
  background: #c99a55;
  box-shadow: 0 6px 24px rgba(196, 149, 50, .40);
}

.button-light {
  color: var(--ink);
  background: var(--porcelain);
}

.button-light:hover {
  background: var(--white);
  box-shadow: 0 6px 0 rgba(196, 149, 50, .55);
}

.button-ghost {
  color: var(--porcelain);
  border-color: rgba(247, 245, 239, .42);
}

.button-ghost:hover {
  border-color: rgba(247, 245, 239, .78);
  background: rgba(247, 245, 239, .08);
}

.button-dark {
  color: var(--porcelain);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--ink);
  padding: 128px clamp(18px, 5vw, 64px) 92px;
}

.hero-media,
.hero-media img,
.hero-media video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media video {
  top: -12%;
  bottom: auto;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(.86) contrast(1.06) brightness(1.12);
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(1.02);
  animation: heroSettle 900ms var(--ease) both;
  will-change: transform;
}

.hero-state-image {
  opacity: 0;
  transition: opacity .7s var(--ease), filter .7s var(--ease);
}

.hero[data-hero-state="off"] .hero-state-off,
.hero[data-hero-state="on"] .hero-state-on {
  opacity: 1;
}

.hero-media video {
  z-index: 1;
  opacity: 0;
  transition: opacity .7s var(--ease);
}

.hero.is-video-playing .hero-media video {
  opacity: 1;
}

.hero-shade {
  background:
    radial-gradient(circle at 50% 46%, rgba(16, 20, 22, 0), rgba(16, 20, 22, .28) 66%, rgba(16, 20, 22, .54) 100%),
    linear-gradient(0deg, rgba(16, 20, 22, .72) 0%, rgba(16, 20, 22, 0) 50%, rgba(16, 20, 22, .2) 100%);
}

.hero-mode-toggle {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 68px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  color: rgba(247, 245, 239, .72);
  background: rgba(16, 20, 22, .5);
  border: 1px solid rgba(247, 245, 239, .18);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgba(247, 245, 239, .45);
  flex-shrink: 0;
  transition: color .2s var(--ease);
}

.hero[data-hero-state="on"] .toggle-icon {
  color: rgba(196, 149, 50, .80);
}

.toggle-sep {
  width: 1px;
  height: 16px;
  background: rgba(247, 245, 239, .14);
  flex-shrink: 0;
  margin-right: 2px;
}

.hero-mode-toggle button {
  min-width: 46px;
  min-height: 30px;
  padding: 0 12px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.hero-mode-toggle button:hover {
  color: var(--porcelain);
}

.hero-mode-toggle button:active {
  transform: scale(.96);
}

.hero[data-hero-state="off"] [data-hero-mode="off"],
.hero[data-hero-state="on"] [data-hero-mode="on"] {
  color: var(--ink);
  background: var(--porcelain);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 980px;
  min-height: 430px;
  text-align: center;
  animation: heroCopyIn 620ms var(--ease) 80ms both;
}

.quiet-label,
.strip-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--brass);
}

.hero h1 {
  max-width: 980px;
  margin-top: 0;
  font-size: clamp(54px, 8.4vw, 112px);
  line-height: .88;
  text-shadow:
    0 2px 80px rgba(196, 149, 50, .13),
    0 1px 6px  rgba(0, 0, 0, .55),
    0 4px 32px rgba(0, 0, 0, .38);
}

.hero-h1-accent {
  color: var(--brass);
  text-shadow:
    0 0 60px rgba(196, 149, 50, .35),
    0 1px 6px rgba(0, 0, 0, .45);
}

html[lang="fr"] .hero h1 {
  max-width: 920px;
  font-size: clamp(50px, 7.2vw, 98px);
  line-height: .9;
}

.hero p {
  max-width: 640px;
  margin-top: 26px;
  color: rgba(247, 245, 239, .82);
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.58;
}

html[lang="fr"] .hero p {
  max-width: 620px;
  font-size: clamp(15px, 1.35vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
  color: rgba(247, 245, 239, .9);
  font-size: 15px;
  font-weight: 850;
  transition: color .2s var(--ease), opacity .2s var(--ease);
}

.hero-phone:hover {
  color: var(--brass);
}

.hero-phone-label {
  position: relative;
  padding-right: 13px;
  color: rgba(247, 245, 239, .56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-phone-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(247, 245, 239, .24);
  transform: translateY(-50%);
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  max-width: 720px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 245, 239, .18);
  color: rgba(247, 245, 239, .72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

html[lang="fr"] .hero-proofline {
  max-width: 760px;
  gap: 9px 18px;
  font-size: 10px;
  letter-spacing: .06em;
}

.hero-materials {
  position: absolute;
  left: clamp(18px, 5vw, 64px);
  right: clamp(18px, 5vw, 64px);
  bottom: 28px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px 24px;
  color: rgba(247, 245, 239, .58);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: heroPanelIn 620ms var(--ease) 220ms both;
}

html[lang="fr"] .hero-materials {
  gap: 8px 18px;
  font-size: 9px;
  letter-spacing: .08em;
}

.hero-materials span {
  position: relative;
  white-space: nowrap;
}

.hero-materials span + span::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(196, 149, 50, .7);
  transform: translateY(-50%);
}

.hero-proofline span {
  position: relative;
}

.hero-proofline span + span::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 3px;
  height: 3px;
  background: var(--brass);
  transform: translateY(-50%);
}

.hero-annotations {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  top: 13vh;
  bottom: 54px;
  z-index: 2;
  width: min(520px, 42vw);
  color: var(--porcelain);
  pointer-events: none;
  animation: heroPanelIn 620ms var(--ease) 180ms both;
}

.annotation-orbit {
  position: absolute;
  inset: 0;
}

.material-note {
  position: absolute;
  display: grid;
  gap: 7px;
  min-width: 220px;
  text-shadow: 0 1px 22px rgba(16, 20, 22, .9);
  opacity: 0;
  offset-path: path("M 500 10 C 90 78 54 440 488 610");
  offset-rotate: 0deg;
  offset-distance: 0%;
  animation: annotationParade 30s linear infinite;
  will-change: offset-distance, opacity, filter;
}

.material-note span {
  color: rgba(247, 245, 239, .62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.material-note strong {
  max-width: 220px;
  font-family: var(--display);
  color: var(--porcelain);
  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.02;
  text-wrap: balance;
}

.material-note:nth-child(1) {
  animation-delay: 0s;
}

.material-note:nth-child(2) {
  animation-delay: -6s;
}

.material-note:nth-child(3) {
  animation-delay: -12s;
}

.material-note:nth-child(4) {
  animation-delay: -18s;
}

.material-note:nth-child(5) {
  animation-delay: -24s;
}

.material-palette {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 42px);
  gap: 7px;
  align-items: center;
}

.material-palette i {
  display: block;
  height: 8px;
  background: var(--porcelain);
}

.material-palette i:nth-child(2) {
  background: var(--mineral);
}

.material-palette i:nth-child(3) {
  background: var(--brass);
}

.material-palette span {
  grid-column: 1 / -1;
  color: rgba(247, 245, 239, .66);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .03em;
}

@keyframes annotationParade {
  0% {
    opacity: 0;
    filter: blur(4px);
    offset-distance: 0%;
  }

  14% {
    opacity: 1;
    filter: blur(0);
  }

  66% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 0;
    filter: blur(4px);
    offset-distance: 100%;
  }
}

@supports not (offset-path: path("M 0 0 C 1 1 2 2 3 3")) {
  .material-note {
    animation: none;
    opacity: 1;
    filter: none;
  }

  .material-note:nth-child(1) {
    top: 0;
    right: 8px;
  }

  .material-note:nth-child(2) {
    top: 28%;
    right: 88px;
  }

  .material-note:nth-child(3) {
    right: 0;
    bottom: 28%;
  }

  .material-note:nth-child(4) {
    left: 0;
    bottom: 16%;
  }

  .material-note:nth-child(5) {
    left: 34px;
    top: 18%;
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSettle {
  from {
    transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(1.055);
  }
  to {
    transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(1.02);
  }
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(247, 245, 239, .035), transparent 58%),
    var(--ink);
  color: var(--porcelain);
  border-top: 1px solid rgba(247, 245, 239, .16);
  border-bottom: 1px solid rgba(247, 245, 239, .1);
}

.proof-strip .strip-label {
  max-width: 260px;
  color: rgba(247, 245, 239, .86);
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid rgba(247, 245, 239, .14);
}

.proof-grid div {
  min-height: 150px;
  padding: 2px clamp(18px, 2vw, 28px) 0;
  border-right: 1px solid rgba(247, 245, 239, .14);
}

.proof-grid strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 720;
  line-height: .98;
}

.proof-grid span {
  display: block;
  max-width: 19rem;
  margin-top: 16px;
  color: rgba(247, 245, 239, .64);
  font-size: 13px;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════
   MAP SECTION — Where We've Worked
═══════════════════════════════════════════════════════════════ */
.map-section {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  min-height: 680px;
  background: var(--ink);
  overflow: hidden;
}

/* Left copy panel */
.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 72px);
}
.map-heading {
  font-family: var(--display);
  font-size: clamp(46px, 5.8vw, 72px);
  font-weight: 800;
  color: var(--porcelain);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 24px;
}
.map-body {
  font-size: 15px;
  color: rgba(248,245,238,.55);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 480px;
}
/* Pull-quote */
.map-pullquote {
  margin: 0 0 32px;
  padding: 14px 20px;
  border-left: 3px solid var(--brass);
  font-size: 16px;
  font-weight: 600;
  color: rgba(248,245,238,.82);
  line-height: 1.55;
  font-style: normal;
  background: rgba(196,149,50,.05);
  border-radius: 0 6px 6px 0;
}

/* Stats row */
.map-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(248,245,238,.08);
  border-bottom: 1px solid rgba(248,245,238,.08);
}
.map-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding: 0 20px;
}
.map-stat:first-child { padding-left: 0; }
.map-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(248,245,238,.10);
  flex-shrink: 0;
}
.map-stat-number {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  color: var(--brass);
  line-height: 1;
  letter-spacing: -.02em;
}
.map-stat-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(248,245,238,.32);
}

/* CTA — button */
.map-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  background: var(--brass);
  padding: 13px 24px;
  border-radius: 8px;
  align-self: flex-start;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(196,149,50,.28);
}
.map-cta:hover {
  background: #d4a84a;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(196,149,50,.38);
}

/* Right map frame */
.map-frame {
  position: relative;
  height: 680px;
}
.map-frame::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 120px;
  background: linear-gradient(to right, var(--ink) 0%, transparent 100%);
  z-index: 500;
  pointer-events: none;
}
#gtaMap {
  width: 100%;
  height: 100%;
  min-height: 680px;
}

/* Leaflet overrides for dark theme */
.leaflet-container {
  background: #0e1012;
  font-family: var(--body);
}
.leaflet-control-zoom {
  border: 1px solid rgba(248,245,238,.12) !important;
  background: rgba(14,16,18,.9) !important;
  box-shadow: none !important;
  backdrop-filter: blur(8px);
}
.leaflet-control-zoom a {
  background: transparent !important;
  color: rgba(248,245,238,.6) !important;
  border-color: rgba(248,245,238,.1) !important;
  font-size: 16px !important;
  line-height: 26px !important;
  width: 28px !important;
  height: 28px !important;
}
.leaflet-control-zoom a:hover {
  color: var(--brass) !important;
  background: rgba(196,149,50,.1) !important;
}
.leaflet-control-attribution {
  background: rgba(14,16,18,.7) !important;
  color: rgba(248,245,238,.25) !important;
  font-size: 9px !important;
  backdrop-filter: blur(6px);
}
.leaflet-control-attribution a { color: rgba(248,245,238,.35) !important; }

/* ── end map section ── */

.split-section,
.services-section,
.work-section,
.process-section,
.reviews-section,
.area-section {
  padding: clamp(76px, 11vw, 150px) clamp(18px, 5vw, 64px);
}

.split-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(247, 245, 239, .045), rgba(247, 245, 239, .02)),
    var(--ink);
}

.section-copy h2,
.section-intro h2,
.work-header h2,
.area-section h2,
.final-cta h2 {
  margin-top: 12px;
  font-size: clamp(38px, 5.8vw, 82px);
}

.section-copy p:last-child,
.area-section p,
.final-cta p {
  margin-top: 24px;
  max-width: 620px;
  color: rgba(247, 245, 239, .72);
  font-size: 17px;
}

.material-board {
  position: relative;
  min-height: 520px;
  background: var(--graphite);
  overflow: hidden;
}

.material-board img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: .78;
}

.board-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 22px;
  color: var(--porcelain);
  background: rgba(16, 20, 22, .7);
  backdrop-filter: blur(16px);
}

.board-note span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
}

.board-note strong {
  font-size: 18px;
  line-height: 1.35;
}

.services-section {
  background: var(--graphite);
  color: var(--porcelain);
}

.section-intro {
  max-width: 820px;
  margin-bottom: 42px;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.service-large,
.service-card {
  background: rgba(247, 245, 239, .06);
  border: 1px solid rgba(247, 245, 239, .14);
  overflow: hidden;
}

.service-large {
  grid-row: span 2;
  display: grid;
  grid-template-rows: 1fr auto;
}

.service-large img,
.service-card img {
  width: 100%;
  object-fit: cover;
}

.service-large img {
  height: 520px;
}

.service-card img {
  height: 230px;
}

.service-large div,
.service-card {
  padding: 24px;
}

.service-large span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
}

.service-large h3,
.service-card h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.service-large p,
.service-card p {
  color: rgba(247, 245, 239, .72);
}

/* ── Style Explorer section ── */
.style-explorer-section {
  background: var(--ink);
  padding: clamp(12px, 1.5vw, 20px) 0 clamp(56px, 7vw, 96px);
  border-top: 1px solid rgba(196, 149, 50, .12);
}

.style-explorer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

.style-explorer-head {
  text-align: center;
  margin-bottom: 40px;
  overflow: hidden;
}

.style-explorer-title {
  font-family: var(--display);
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 auto clamp(10px, 1.2vw, 16px);
}

/* Thin line — premise, ghosted */
.sxp-line-thin {
  display: block;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 300;
  color: rgba(248, 245, 238, .38);
  letter-spacing: -.03em;
  line-height: 1.0;
}

/* Bold line — statement, full weight */
.sxp-line-bold {
  display: block;
  font-size: clamp(38px, 6vw, 88px);
  font-weight: 800;
  color: var(--porcelain);
  letter-spacing: -.045em;
  line-height: .92;
}

/* Cycling word */
.sxp-cycle-word {
  display: inline-block;
  color: var(--porcelain);
  transition: opacity .3s ease, transform .3s ease;
}

.sxp-cycle-word.is-switching {
  opacity: 0;
  transform: translateY(6px);
}

.sxp-cycle-word.is-red {
  color: #C84B3A;
}

.style-explorer-sub {
  font-family: var(--body);
  font-size: clamp(14px, 1.35vw, 16px);
  font-weight: 400;
  color: rgba(248, 245, 238, .38);
  max-width: 440px;
  line-height: 1.4;
  margin: 0 auto clamp(14px, 1.6vw, 20px);
  white-space: nowrap;
}

.style-explorer-cta {
  display: inline-flex;
  align-self: center;
}

/* Three-column grid */
/* 3 independent flex containers — left, center, right */
.style-explorer-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}

.sxp-left {
  flex: 1;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sxp-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sxp-right {
  flex: 1;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


/* ── DRUM PICKER — left panel ────────────────────────────────────── */
.sxp-drum {
  position: relative;
  width: 100%;
  /* height set by JS to match image frame */
  overflow: hidden;
}

/* per-item opacity is handled by JS — no gradient mask needed */

.sxp-drum-track {
  position: absolute;
  width: 100%;
  will-change: transform;
}

.sxp-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.sxp-item .style-option-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--porcelain);
  line-height: 1.2;
}

.sxp-item .style-option-tag {
  font-size: 13px;
  color: rgba(196, 149, 50, .75);
  letter-spacing: .02em;
  margin-top: 2px;
}

/* Fixed highlight box — stays centered, items scroll behind it */
.sxp-drum-box {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(248, 245, 238, .22);
  border-radius: 14px;
  background: rgba(248, 245, 238, .04);
  pointer-events: none;
  z-index: 2;
}

/* ── DRUM PICKER — right panel ───────────────────────────────────── */
.pal-drum {
  position: relative;
  width: 100%;
  /* height set by JS to match image frame */
  overflow: hidden;
}

/* per-item opacity is handled by JS — no gradient mask needed */

.pal-drum-track {
  position: absolute;
  width: 100%;
  will-change: transform;
}

.pal-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 20px;
  box-sizing: border-box;
}

.pal-swatches {
  display: flex;
  gap: 4px;
}

.pal-item .palette-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--porcelain);
  line-height: 1.2;
}

.pal-drum-box {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(248, 245, 238, .22);
  border-radius: 14px;
  background: rgba(248, 245, 238, .04);
  pointer-events: none;
  z-index: 2;
}

/* shared swatch dot */
.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: inline-block;
}


/* CENTER: image frame — 1:1 square */
.style-image-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--graphite);
  aspect-ratio: 1 / 1;
  width: 100%;
  margin: 0;
}

.style-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity .35s ease;
}

.style-image.is-switching {
  opacity: 0;
}

.style-image-chips {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 6px;
  z-index: 2;
  flex-wrap: wrap;
  max-width: 70%;
}

.style-chip {
  display: inline-block;
  background: rgba(12, 13, 14, .65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 500;
  color: var(--porcelain);
  letter-spacing: .04em;
  white-space: nowrap;
}

.style-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 22px 22px;
  background: linear-gradient(to top, rgba(12,13,14,.92) 0%, transparent 100%);
}

.style-image-name {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--porcelain);
  margin-bottom: 5px;
}

.style-image-desc {
  display: block;
  font-size: 12px;
  color: rgba(184, 181, 176, .75);
  line-height: 1.5;
}

/* RIGHT: palette column — espejo exacto del style-selector */
.style-palette-col {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  overflow: visible;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.pal-above {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding-bottom: 10px;
  overflow: visible;
}

.pal-below {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding-top: 10px;
  overflow: visible;
}


/* Footer CTA */
.style-explorer-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: clamp(28px, 3.5vw, 44px);
}

.style-explorer-note {
  font-size: 12px;
  color: rgba(114,112,109,.65);
}

/* Responsive */
@media (max-width: 900px) {
  .style-explorer-layout {
    flex-wrap: wrap;
    gap: 24px;
  }

  .sxp-left {
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .sxp-center {
    order: -1;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
  }

  .sxp-right {
    flex: 1;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .style-explorer-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .sxp-left {
    justify-content: flex-start;
  }

  .sxp-center {
    order: unset;
    flex: 0 0 auto;
  }

  .sxp-right {
    justify-content: flex-start;
  }

  .style-selector {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .style-option {
    padding: 8px 12px;
  }

  .style-option-tag { display: none; }

  .style-image-frame {
    min-height: unset;
  }

  .style-palette-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .palette-opt {
    flex: 1;
    min-width: 130px;
  }
}

.work-section {
  background:
    linear-gradient(135deg, rgba(114, 112, 109, .34), rgba(16, 20, 22, .98)),
    var(--ink);
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 42px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.gallery figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.gallery-tall {
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

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

.gallery figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  color: var(--porcelain);
  background: rgba(16, 20, 22, .72);
  backdrop-filter: blur(14px);
}

.gallery figcaption span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
}

/* ── Process section ─────────────────────────────────────────── */

.process-section {
  /* Graphite background creates a deliberate material break from ink authority band */
  background: var(--graphite);
  padding: clamp(40px, 5vw, 64px) 0 0;
  position: relative;
}

/* Gold seam at top — visual continuity with authority band */
.process-section::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 149, 50, .15) 20%,
    rgba(196, 149, 50, .35) 50%,
    rgba(196, 149, 50, .12) 80%,
    transparent 100%
  );
  pointer-events: none;
}

/* ── Header ── */
.process-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: stretch;
  gap: clamp(32px, 5vw, 80px);
  padding: 0 clamp(20px, 5vw, 72px) clamp(32px, 4vw, 52px);
}

/* Left: gold rule + headline + CTA */
.process-header-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-header-left .process-header-cta {
  margin-top: clamp(24px, 3vw, 36px);
  align-self: flex-start;
}

.process-header-rule {
  display: block;
  width: clamp(32px, 4vw, 52px);
  height: 2px;
  background: var(--brass);
  opacity: .65;
  margin-bottom: clamp(16px, 2vw, 24px);
  flex-shrink: 0;
}

.process-header-h2 {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: .96;
  max-width: 560px;
  text-wrap: balance;
}

/* First line: thin weight — suggests the journey */
.proc-line-thin {
  display: block;
  font-size: clamp(30px, 4.2vw, 62px);
  font-weight: 300;
  color: rgba(248, 245, 238, .55);
  letter-spacing: -0.025em;
}

/* Second line: heavy weight — arrives with confidence */
.proc-line-bold {
  display: block;
  font-size: clamp(34px, 4.8vw, 72px);
  font-weight: 800;
  color: var(--porcelain);
  letter-spacing: -0.035em;
}

/* Right: testimonial card */
.process-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
}

.process-header-note {
  font-family: var(--body);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 400;
  color: rgba(248, 245, 238, .42);
  line-height: 1.6;
  max-width: 320px;
  text-wrap: pretty;
}

/* ── Process testimonial card ── */
.process-testimonial {
  margin: 0;
  padding: clamp(20px, 2.4vw, 28px);
  background: transparent;
  border: none;
  border-radius: clamp(12px, 1.4vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 24px);
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.process-testimonial::before { display: none; }

.process-testimonial.is-filled {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.03) 18%, transparent 42%),
    linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 1px 0 0 rgba(255, 255, 255, 0.06),
    0 12px 40px rgba(0, 0, 0, 0.55);
  transition: background 0.6s ease, box-shadow 0.6s ease;
}

.proc-test-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.proc-test-rect {
  fill: none;
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 1.5;
  stroke-linecap: square;
}

.proc-test-glass { display: none; }

/* ── Stars ── */
.proc-test-stars {
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 2px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.process-testimonial.is-filled .proc-test-stars {
  opacity: 1;
  transition-delay: 0.4s;
}

/* ── Quote — typewriter area ── */
.proc-test-quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 500;
  color: rgba(248, 245, 238, .9);
  line-height: 1.5;
  letter-spacing: -0.015em;
  text-wrap: pretty;
  overflow: hidden;
}

/* ── Footer: foto + firma + badge ── */
.proc-test-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: clamp(12px, 1.5vw, 18px);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.process-testimonial.is-filled .proc-test-footer {
  opacity: 1;
  transition-delay: 0.5s;
}

/* ── Persona circular (inline en footer) ── */
.proc-persona {
  width: clamp(44px, 4.5vw, 56px);
  height: clamp(44px, 4.5vw, 56px);
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.proc-persona-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.45s ease;
  display: block;
}

/* ── Meta: nombre + detalle ── */
.proc-test-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.proc-test-name {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: var(--porcelain);
  line-height: 1;
}

.proc-test-detail {
  font-family: var(--body);
  font-size: 11px;
  color: rgba(248, 245, 238, .4);
  letter-spacing: .01em;
}

/* ── Badge de plataforma ── */
.proc-test-badge {
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.85;
}

.proc-test-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--graphite);
  border: 1px solid rgba(196, 149, 50, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  color: var(--brass);
  flex-shrink: 0;
  letter-spacing: .04em;
}

.proc-test-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proc-test-name {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: var(--porcelain);
  line-height: 1;
}

.proc-test-detail {
  font-family: var(--body);
  font-size: 11px;
  color: rgba(248, 245, 238, .38);
  letter-spacing: .01em;
}

.process-header-cta {
  flex-shrink: 0;
}

/* ── Column grid ── */
.process-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(247, 245, 239, .09);
}

.process-col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(247, 245, 239, .07);
  position: relative;
  overflow: hidden;
  transition: background .35s var(--ease);
}

.process-col:last-child { border-right: none; }

/* Staggered reveal — visible by default, subtle slide on entrance */
.process-col {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease),
              background .35s var(--ease);
}

.process-cols.is-visible .process-col { opacity: 1; transform: translateY(0); }
.process-cols.is-visible .process-col:nth-child(1) { transition-delay: .04s; }
.process-cols.is-visible .process-col:nth-child(2) { transition-delay: .10s; }
.process-cols.is-visible .process-col:nth-child(3) { transition-delay: .16s; }
.process-cols.is-visible .process-col:nth-child(4) { transition-delay: .22s; }
.process-cols.is-visible .process-col:nth-child(5) { transition-delay: .28s; }

.process-col:hover {
  background: rgba(247, 245, 239, .025);
}

/* First step: a whisper of brass tint — it's the entry point */
.process-col:first-child {
  background: rgba(196, 149, 50, .025);
}

@media (prefers-reduced-motion: reduce) {
  .process-col {
    opacity: 1;
    transform: none;
    transition: background .2s;
  }
}

/* ── CSS counter for ghost numbers ── */
.process-cols { counter-reset: step; }
.process-col  { counter-increment: step; }

/* ── Top content area ── */
.process-col-top {
  padding: clamp(28px, 3.2vw, 44px) clamp(20px, 2.4vw, 32px) clamp(20px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Ghost number via CSS counter — large typographic watermark */
.process-col-top::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  bottom: -14px;
  right: -6px;
  font-family: var(--display);
  font-size: clamp(90px, 11vw, 136px);
  font-weight: 800;
  color: rgba(196, 149, 50, .07);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color .4s var(--ease);
}

.process-col:hover .process-col-top::before {
  color: rgba(196, 149, 50, .12);
}

/* ── Step badge — visible label, small gold ── */
.process-num {
  display: inline-block;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--brass);
  opacity: .75;
  position: relative;
  z-index: 1;
  /* Arrow connector to title */
  padding-bottom: 18px;
}

.process-num::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 1px;
  height: 8px;
  background: var(--brass);
  opacity: .4;
}

/* ── Title ── */
.process-col-title {
  font-family: var(--display);
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 700;
  color: var(--porcelain);
  line-height: 1.15;
  text-wrap: balance;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

/* ── Copy ── */
.process-col-copy {
  font-family: var(--body);
  font-size: clamp(12px, 1.1vw, 13.5px);
  color: rgba(248, 245, 238, .48);
  line-height: 1.65;
  text-wrap: pretty;
  position: relative;
  z-index: 1;
}

/* ── Column image ── */
.process-col-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

/* Top fade: content area bleeds into the image seamlessly */
.process-col-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(
    to bottom,
    var(--graphite) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Bottom vignette: image fades to depth at the bottom */
.process-col-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(12, 13, 14, .55) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

.process-col-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .85s var(--ease), filter .45s var(--ease);
  filter: brightness(.72) saturate(.65) contrast(1.05);
  will-change: transform;
}

.process-col:hover .process-col-img {
  transform: scale(1.05);
  filter: brightness(.92) saturate(.88);
}

/* ── END Process section ─────────────────────────────────────── */

.reviews-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2px;
  background: var(--charcoal);   /* gap between cards */
  color: var(--ink);
}

.reviews-card,
.review-quotes blockquote {
  margin: 0;
  padding: 34px;
  background: var(--bone);
  border: none;
}

.rating {
  margin-bottom: 34px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 140px);
  line-height: .8;
}

.rating::after {
  content: '';
  display: block;
  width: clamp(28px, 3vw, 40px);
  height: 2px;
  background: var(--brass);
  margin-top: 20px;
  opacity: .7;
}

.reviews-card h2 {
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 42px);
  color: var(--ink);
  line-height: 1.08;
}

.reviews-card .quiet-label {
  color: var(--stone);
}

.review-quotes {
  display: grid;
  gap: 2px;
}

.review-quotes blockquote {
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 34px);
  line-height: 1.08;
  color: var(--ink);
  font-weight: 600;
}

.review-quotes cite {
  display: block;
  margin-top: 20px;
  color: var(--brass-dark);
  font-family: var(--body);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .02em;
}

.area-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(247, 245, 239, .04), rgba(247, 245, 239, .015)),
    var(--ink);
}

.area-section img {
  width: 100%;
  border: 1px solid var(--line-light);
}

/* ═══════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════ */
.faq-section {
  background: var(--graphite);
  overflow: hidden;
}

/* ── Centered hero header ── */
.faq-header {
  position: relative;
  text-align: center;
  padding: clamp(48px, 6.5vw, 88px) clamp(24px, 6vw, 80px) clamp(60px, 7vw, 92px);
  /* no overflow:hidden — let the ghost extend upward, clipped by .faq-section */
  background: linear-gradient(to bottom,
    var(--ink) 0%,
    rgba(26,28,30,.92) 28%,
    var(--graphite) 60%
  );
}

/* Ghost watermark — enormous outlined text, barely visible */
.faq-header-ghost {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  /* tall enough to hold the text */
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transform: translateY(-22%);    /* pull top of letters above the header edge */
  font-family: var(--display);
  font-size: clamp(200px, 32vw, 420px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(196,149,50,.32);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* All header children stack above the ghost */
.faq-header > * { position: relative; z-index: 1; }

/* ── The heading ── */
.faq-heading {
  font-family: var(--display);
  font-size: clamp(52px, 7.8vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 clamp(20px, 3vw, 32px);
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.faq-heading-line1 {
  color: var(--porcelain);
  display: block;
}

/* Second line: brass, slightly lighter weight, small upward kern */
.faq-heading-line2 {
  display: block;
  color: var(--brass);
  font-size: .88em; /* ~85px → ~75px — creates scale tension */
  letter-spacing: -.02em;
  margin-top: .06em;
}

/* ── Subtitle ── */
.faq-intro {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(248,245,238,.42);
  line-height: 1.78;
  max-width: 54ch;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ── Full-bleed FAQ body ── */
/* Block container: height = accordion content only.
   Image + fade are absolute → out of flow → don't add height. */
.faq-body {
  position: relative;
}

/* Background image */
.faq-body-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.faq-body-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(.72) saturate(.88);
}

/* Horizontal gradient: graphite solid left → transparent right */
.faq-body-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
    var(--graphite) 0%,
    var(--graphite) 30%,
    rgba(26,28,30,.88) 46%,
    rgba(26,28,30,.45) 60%,
    rgba(26,28,30,.10) 72%,
    transparent 84%
  );
  pointer-events: none;
}

/* Caption — bottom-right corner over the image */
.faq-img-tag {
  position: absolute;
  bottom: 20px;
  right: 28px;
  z-index: 3;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(196,149,50,.65);
}

/* ── Accordion — left side, floating above gradient ── */
.faq-accordion {
  position: relative;
  z-index: 2;
  max-width: clamp(320px, 46%, 580px);
  padding: clamp(52px, 7vw, 88px) clamp(28px, 5vw, 68px) clamp(52px, 7vw, 88px) clamp(32px, 5.5vw, 80px);
}

.faq-item {
  border-bottom: 1px solid rgba(248,245,238,.09);
}

.faq-item:first-child {
  border-top: 1px solid rgba(248,245,238,.09);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 0;
  cursor: pointer;
  transition: background .2s;
}

.faq-q-text {
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  color: rgba(248,245,238,.68);
  line-height: 1.3;
  transition: color .25s;
}

.faq-item.is-open .faq-q-text,
.faq-q:hover .faq-q-text {
  color: var(--porcelain);
}

/* + / × icon via CSS */
.faq-q-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-q-icon::before,
.faq-q-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(248,245,238,.35);
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.22,.8,.4,1), background .25s;
}

.faq-q-icon::before {
  width: 14px;
  height: 1.5px;
}

.faq-q-icon::after {
  width: 1.5px;
  height: 14px;
}

.faq-item.is-open .faq-q-icon::before,
.faq-item.is-open .faq-q-icon::after {
  background: var(--brass);
}

.faq-item.is-open .faq-q-icon::before {
  transform: rotate(45deg);
}

.faq-item.is-open .faq-q-icon::after {
  transform: rotate(45deg);
}

/* Answers stay in DOM for JS to read — visually hidden */
.faq-answer {
  display: none;
}

/* Active question highlight */
.faq-item.is-open .faq-q-text {
  color: var(--brass);
}

/* ── Slide-in answer panel ── */
.faq-body {
  overflow: hidden; /* clip the panel when translateX(100%) */
}

.faq-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  z-index: 5;
  background: rgba(10,11,12,.90);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-left: 1px solid rgba(196,149,50,.18);
  transform: translateX(100%);
  transition: transform .52s cubic-bezier(.22,.8,.4,1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4.5vw, 60px);
}

.faq-panel.is-open {
  transform: translateX(0);
}

/* Close button */
.faq-panel-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid rgba(248,245,238,.16);
  border-radius: 50%;
  color: rgba(248,245,238,.55);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
  flex-shrink: 0;
}

.faq-panel-close:hover {
  border-color: var(--brass);
  color: var(--brass);
}

/* Panel question label */
.faq-panel-q {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--porcelain);
  line-height: 1.25;
  margin: 0 0 20px;
}

/* Thin brass rule between question and answer */
.faq-panel-rule {
  width: 36px;
  height: 2px;
  background: var(--brass);
  border: none;
  margin: 0 0 22px;
  flex-shrink: 0;
}

/* Panel answer text */
.faq-panel-a {
  font-size: clamp(14px, 1.4vw, 15px);
  color: rgba(248,245,238,.56);
  line-height: 1.82;
  max-width: 52ch;
}

@media (prefers-reduced-motion: reduce) {
  .faq-panel,
  .faq-q-icon::before,
  .faq-q-icon::after {
    transition: none;
  }
}

.final-cta {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  padding: clamp(84px, 12vw, 170px) clamp(18px, 5vw, 64px);
  color: var(--porcelain);
  overflow: hidden;
  background: var(--ink);
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .46;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 20, 22, .9), rgba(16, 20, 22, .34));
}

.final-cta div {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.final-cta p {
  color: rgba(247, 245, 239, .78);
}

.final-cta .button {
  margin-top: 30px;
}


.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px clamp(18px, 5vw, 64px);
  color: rgba(247, 245, 239, .68);
  background: var(--ink);
  border-top: 1px solid rgba(247, 245, 239, .16);
}

.site-footer img {
  width: 142px;
}

.footer-copy-group {
  display: grid;
  gap: 5px;
}

.footer-copy-group p {
  margin: 0;
}

.footer-legal-copy {
  font-size: 12px;
  color: rgba(247, 245, 239, .48);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--brass);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

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

/* ═══════════════════════════════════════════════════════
   SCROLL EFFECTS
═══════════════════════════════════════════════════════ */

/* 1 ── Hero: text layer (content) moves slower than the media */
.hero-content {
  will-change: transform;
}

/* 2 ── Authority band: stat stagger slide-up */
.authority-stat {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,.8,.4,1),
              transform .65s cubic-bezier(.22,.8,.4,1);
}
.authority-stat.is-stat-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 3 ── Process: sticky heading anchors while cards scroll */
.process-header-left {
  position: sticky;
  top: clamp(80px, 10vh, 100px);
  align-self: start;
}

/* 4 ── Style Explorer: scale + fade reveal (overrides generic .reveal) */
.style-explorer-inner.reveal {
  transform: scale(.97) translateY(20px);
  transition: opacity .75s cubic-bezier(.22,.8,.4,1),
              transform .75s cubic-bezier(.22,.8,.4,1);
}
.style-explorer-inner.reveal.is-visible {
  transform: scale(1) translateY(0);
}

/* 5 ── Map copy: slide in from left (overrides generic .reveal) */
.map-copy.reveal {
  transform: translateX(-40px);
  transition: opacity .72s cubic-bezier(.22,.8,.4,1),
              transform .72s cubic-bezier(.22,.8,.4,1);
}
.map-copy.reveal.is-visible {
  transform: translateX(0);
}

/* 6 ── Estimate trust-bg: extra height so parallax has room */
.trust-bg {
  top: -30px;
  bottom: -30px;
}

/* 7 ── FAQ image: extra height so parallax has room */
.faq-body-img img {
  height: calc(100% + 60px);
  margin-top: -30px;
  will-change: transform;
}

/* Reduced motion: all scroll effects instant */
@media (prefers-reduced-motion: reduce) {
  .authority-stat,
  .auth-number:not([data-count]):not(.auth-lifetime),
  .auth-stars-score,
  .auth-label,
  .authority-divider { transition: none; }
  .auth-number:not([data-count]):not(.auth-lifetime),
  .auth-stars-score { filter: blur(0); letter-spacing: -0.03em; }
  .auth-stars-score { letter-spacing: -0.02em; }
  .auth-label { transform: translateY(0); }
  .authority-divider { transform: scaleY(1); }
  .inf-svg { display: none; }
  .lifetime-text { opacity: 1; }
  .style-explorer-inner.reveal,
  .map-copy.reveal { transition: none; }
  .faq-body-img img,
  .trust-bg { transition: none; }
}

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

/* ── Authority band ────────────────────────────────────────── */

.authority-band {
  background: var(--ink);
  position: relative;
  border-bottom: 1px solid rgba(247, 245, 239, .06);
}

/* Gold seam at the top edge */
.authority-band::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 149, 50, .45) 25%,
    rgba(196, 149, 50, .20) 55%,
    rgba(196, 149, 50, .08) 80%,
    transparent 100%
  );
  pointer-events: none;
}

/* ── Stats row ── */
.authority-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: clamp(20px, 3vw, 32px) clamp(24px, 5vw, 72px);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.authority-stats::-webkit-scrollbar { display: none; }

.authority-stat {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 clamp(12px, 2vw, 28px);
  text-align: center;
}

.auth-number {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1;
  color: var(--porcelain);
  letter-spacing: -0.03em;
  white-space: nowrap;
  font-feature-settings: 'tnum' 1, 'ss01' 1;
}

/* Text-only numbers (no count-up): blur + tracking collapse on reveal */
.auth-number:not([data-count]):not(.auth-lifetime) {
  letter-spacing: 0.10em;
  filter: blur(5px);
  transition: filter 0.65s cubic-bezier(.22,.8,.4,1),
              letter-spacing 0.7s cubic-bezier(.22,.8,.4,1);
}

.authority-stat.is-stat-visible .auth-number:not([data-count]):not(.auth-lifetime) {
  letter-spacing: -0.03em;
  filter: blur(0);
}

/* ── Lifetime: infinity draw → text crossfade ── */
.auth-lifetime {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(50px, 5.5vw, 80px);
  min-height: 1em;
  letter-spacing: -0.03em;
  filter: none;
}

.inf-svg {
  position: absolute;
  width: clamp(42px, 5vw, 68px);
  height: auto;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.inf-fill {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.lifetime-text {
  opacity: 0;
  transition: opacity 0.38s ease;
}

/* Trigger on visible */
.authority-stat.is-stat-visible .inf-fill {
  animation: infDraw 1.5s cubic-bezier(.4, 0, .25, 1) forwards;
}

.authority-stat.is-stat-visible .inf-svg {
  animation: infFadeOut 0.38s 1.62s ease forwards;
}

.authority-stat.is-stat-visible .lifetime-text {
  animation: lifetimeFadeIn 0.42s 1.72s cubic-bezier(.22,.8,.4,1) forwards;
}

@keyframes infDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes infFadeOut {
  to { opacity: 0; }
}

@keyframes lifetimeFadeIn {
  from { opacity: 0; filter: blur(4px); }
  to   { opacity: 1; filter: blur(0); }
}

.auth-sup {
  font-size: 0.46em;
  font-weight: 500;
  color: var(--brass);
  opacity: 0.85;
  vertical-align: super;
  letter-spacing: 0.02em;
  line-height: 0;
}

.auth-label {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 400;
  color: rgba(247, 245, 239, .36);
  letter-spacing: 0.01em;
  line-height: 1.35;
  white-space: nowrap;
  transform: translateY(5px);
  transition: transform 0.5s cubic-bezier(.22,.8,.4,1);
}

.authority-stat.is-stat-visible .auth-label {
  transform: translateY(0);
}

.authority-divider {
  width: 1px;
  align-self: stretch;
  margin: 6px 0;
  background: rgba(247, 245, 239, .07);
  flex-shrink: 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(.22,.8,.4,1);
}

/* Stagger dividers between their surrounding stats */
.authority-band.is-band-visible .authority-divider { transform: scaleY(1); }
.authority-band.is-band-visible .authority-stats > :nth-child(2) { transition-delay: 44ms; }
.authority-band.is-band-visible .authority-stats > :nth-child(4) { transition-delay: 132ms; }
.authority-band.is-band-visible .authority-stats > :nth-child(6) { transition-delay: 220ms; }
.authority-band.is-band-visible .authority-stats > :nth-child(8) { transition-delay: 308ms; }

.auth-stars-score {
  font-family: var(--display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--porcelain);
  letter-spacing: 0.08em;
  line-height: 1;
  filter: blur(5px);
  transition: filter 0.65s cubic-bezier(.22,.8,.4,1),
              letter-spacing 0.7s cubic-bezier(.22,.8,.4,1);
}

.authority-stat.is-stat-visible .auth-stars-score {
  letter-spacing: -0.02em;
  filter: blur(0);
}

.auth-stars-max {
  font-size: 0.7em;
  font-weight: 500;
  color: rgba(247, 245, 239, .40);
  letter-spacing: 0;
}

/* ── Star rating ── */
.auth-stars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stars-track {
  position: relative;
  display: inline-block;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 4px;
  line-height: 1;
  /* trailing letter-spacing makes container wider than visual stars:
     include it so 100% == full star strip width */
}

.stars-bg {
  display: block;
  color: rgba(247, 245, 239, .13);
  white-space: nowrap;
  user-select: none;
}

.stars-gold {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  width: 0;                /* starts empty */
  color: var(--brass);
  white-space: nowrap;
  letter-spacing: 4px;
  font-size: inherit;
  transition: width 1.5s cubic-bezier(.22, 1, .36, 1) .15s;
  will-change: width;
}

/* Shimmer sweep after fill */
.stars-gold::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -20px;
  width: 14px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, .45) 50%,
    transparent 100%
  );
  opacity: 0;
  pointer-events: none;
}

.stars-gold.is-shimmer::after {
  opacity: 1;
  transform: translateX(var(--shimmer-dist, 120px));
  transition: transform .55s cubic-bezier(.22, 1, .36, 1),
              opacity .2s ease .45s;
  opacity: 0;
}

.stars-gold.is-filled {
  width: var(--star-fill-w, 98%);
}

@media (prefers-reduced-motion: reduce) {
  .stars-gold { transition: none; }
  .stars-gold.is-filled { width: var(--star-fill-w, 98%); }
  .stars-gold::after { display: none; }
}

/* ── Partners row ── */
.authority-partners {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(10px, 1.4vw, 16px) 0;
  border-top: 1px solid rgba(247, 245, 239, .06);
  overflow: hidden;
  /* Edge fades — left reserves space for eyebrow, right fades out */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0px,
    black 140px,
    black calc(100% - 80px),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0px,
    black 140px,
    black calc(100% - 80px),
    transparent 100%
  );
}

.partners-eyebrow {
  font-family: var(--body);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(114, 112, 109, .70);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 clamp(14px, 1.8vw, 24px) 0 clamp(24px, 5vw, 72px);
  border-right: 1px solid rgba(247, 245, 239, .08);
}

/* ── Infinite marquee track ── */
.partners-track {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.partners-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-shrink: 0;
  animation: partners-marquee 38s linear infinite;
  will-change: transform;
}

/* Pause on hover — respects user intent */
.authority-partners:hover .partners-inner {
  animation-play-state: paused;
}

@keyframes partners-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.partner-logo {
  width: 100px;       /* fixed slot — every logo occupies the same width */
  height: 20px;       /* fixed slot height */
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
  opacity: 0.30;
  transition: opacity 0.3s var(--ease);
  flex-shrink: 0;
  display: block;
}

.authority-partners:hover .partner-logo {
  opacity: 0.22;
}

.authority-partners:hover .partner-logo:hover {
  opacity: 0.65;
}

@media (prefers-reduced-motion: reduce) {
  .partners-inner { animation: none; }
  .partners-track { overflow-x: auto; scrollbar-width: none; }
  .partners-track::-webkit-scrollbar { display: none; }
}

/* ── END Authority band ────────────────────────────────────── */

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .menu-toggle {
    grid-column: 2;
    justify-self: end;
    display: inline-grid;
    place-items: center;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .hero-annotations {
    display: none;
  }

  .authority-stats {
    justify-content: flex-start;
    padding: 18px 20px;
  }

  .authority-stat {
    min-width: 90px;
    padding: 0 clamp(8px, 3.5vw, 16px);
    gap: 6px;
  }

  .auth-number {
    font-size: clamp(18px, 5vw, 26px);
  }

  .authority-partners {
    gap: 12px;
  }

  .partners-eyebrow {
    padding-left: 20px;
    padding-right: 14px;
    font-size: 9px;
  }

  .partners-inner {
    gap: 40px;
    animation-duration: 28s;
  }

  .partner-logo {
    width: 80px;
    height: 16px;
  }

  .proof-strip,
  .split-section,
  .reviews-section,
  .area-section {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .service-layout {
    grid-template-columns: 1fr 1fr;
  }

  .process-cols {
    grid-template-columns: 1fr 1fr;
  }

  .process-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-header-right {
    gap: 16px;
  }

  .process-col:nth-child(even) {
    border-right: none;
  }

  .process-col:nth-child(5) {
    grid-column: 1 / -1;
    border-right: none;
  }

  .process-col:nth-child(5) .process-col-img-wrap {
    aspect-ratio: 16 / 6;
  }

  .proof-strip .strip-label {
    max-width: 620px;
  }

  .proof-grid {
    border-top: 1px solid rgba(247, 245, 239, .14);
    border-left: 0;
  }

  .proof-grid div {
    min-height: 132px;
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 245, 239, .14);
  }

  .service-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .promo-ticker {
    height: 30px;
  }

  .promo-text {
    min-height: 30px;
    padding: 0 42px;
    font-size: 10px;
    line-height: 30px;
    letter-spacing: .06em;
    white-space: normal;
  }

  .loader-word {
    max-width: 82vw;
    font-size: min(var(--size), 30px);
  }

  .loader-word:nth-child(3n) {
    font-size: min(calc(var(--size) * .68), 18px);
  }

  .loader-logo {
    width: min(72vw, 280px);
  }

  .site-header {
    inset: 30px 0 auto;
    padding: 0 16px;
  }

  .site-header.is-scrolled {
    inset: 8px 0 auto;
  }

  /* Glass header scrolled: solo logo centrado y más grande */
  .site-header.is-scrolled .header-shell {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .site-header.is-scrolled .brand {
    grid-column: 1;
    justify-self: center;
    margin-top: 0;
  }
  .site-header.is-scrolled .brand img {
    transform: scale(1.25);
    transform-origin: center center;
  }
  .site-header.is-scrolled .menu-toggle,
  .site-header.is-scrolled .header-actions,
  .site-header.is-scrolled .nav-links {
    display: none;
  }
  /* Ocultar hero-lang-switch al scrollear */
  html.is-page-scrolled .hero-lang-switch {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .header-shell {
    padding: 14px 0;
  }

  .brand img {
    width: 126px;
  }

  .hero {
    min-height: 92svh;
    padding: 128px 18px 86px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(42px, 12.6vw, 66px);
    line-height: .92;
  }

  .hero-content {
    min-height: 0;
  }

  html[lang="fr"] .hero h1 {
    max-width: 13ch;
    font-size: clamp(38px, 10.4vw, 56px);
    line-height: .94;
  }

  .hero p {
    max-width: 34rem;
    font-size: 16px;
    line-height: 1.58;
  }

  html[lang="fr"] .hero p {
    font-size: 15px;
    line-height: 1.52;
  }

  .hero-proofline {
    display: grid;
    gap: 8px;
    margin-top: 24px;
    padding-top: 14px;
  }

  .hero-proofline span + span::before {
    display: none;
  }

  .hero-materials {
    bottom: 24px;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 9px;
    letter-spacing: .08em;
  }

  html[lang="fr"] .hero-materials {
    font-size: 8px;
    gap: 7px 16px;
  }

  .hero-materials span + span::before {
    left: -10px;
    height: 9px;
  }

  .hero-mode-toggle {
    right: 18px;
    bottom: 58px;
  }

  .hero-mode-toggle button {
    min-width: 42px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 10px;
  }

  .board-note,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .service-layout,
  .gallery {
    grid-template-columns: 1fr;
  }

  .process-cols {
    grid-template-columns: 1fr;
  }

  .process-col,
  .process-col:nth-child(even),
  .process-col:nth-child(5) {
    border-right: none;
    border-bottom: 1px solid rgba(247, 245, 239, .07);
    grid-column: auto;
  }

  .process-col:last-child {
    border-bottom: none;
  }

  .process-col:nth-child(5) .process-col-img-wrap {
    aspect-ratio: 4 / 3;
  }

  .proof-strip {
    padding: 52px 18px;
  }

  .proof-grid div {
    min-height: auto;
    padding: 22px 0;
  }

  .split-section,
  .services-section,
  .work-section,
  .process-section,
  .reviews-section,
  .area-section,
  .faq-section {
    padding: 72px 18px;
  }

  .work-header {
    align-items: start;
    flex-direction: column;
  }

  .material-board,
  .material-board img,
  .service-large img,
  .gallery figure {
    min-height: 360px;
  }

  .site-footer {
    text-align: left;
  }
}

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

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

  .promo-text {
    animation: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 0 !important;
  }

  .promo-text:first-child {
    opacity: 1 !important;
  }

  .loader-word,
  .loader-logo {
    animation: none !important;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(1);
  }

  .material-note {
    animation: none !important;
    opacity: 1;
    filter: none;
  }

  .material-note:nth-child(1) {
    top: 0;
    right: 8px;
  }

  .material-note:nth-child(2) {
    top: 28%;
    right: 88px;
  }

  .material-note:nth-child(3) {
    right: 0;
    bottom: 28%;
  }

  .material-note:nth-child(4) {
    left: 0;
    bottom: 16%;
  }

  .material-note:nth-child(5) {
    left: 34px;
    top: 18%;
  }
}

/* ── ESTIMATE + TRUST ───────────────────────────────────────────── */
.estimate-section {
  background: var(--graphite);
  border-top: 1px solid rgba(196,149,50,.12);
  padding: 20px 0 clamp(56px, 7vw, 96px);
}
.estimate-inner {
  display: grid;
  grid-template-columns: 600px 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  padding-right: clamp(20px, 5vw, 72px);
  position: relative;
}
.estimate-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(196,149,50,.75);
  margin-bottom: 14px;
}
.estimate-title {
  font-family: var(--display);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  line-height: 1.15;
  margin-bottom: 40px;
}

.et-thin {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 300;
  color: rgba(248,245,238,.35);
  letter-spacing: .01em;
}

.et-bold {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 800;
  color: var(--porcelain);
  letter-spacing: -.03em;
  line-height: 1;
}

.et-sub {
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 600;
  color: var(--brass);
  letter-spacing: .02em;
  margin-top: 6px;
}
.estimate-steps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.estimate-step {
  background: rgba(248,245,238,.03);
  border: 1px solid rgba(248,245,238,.08);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color .2s;
}
.estimate-step:focus-within {
  border-color: rgba(196,149,50,.35);
  background: rgba(248,245,238,.05);
}

/* Step header: badge + label */
.step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.step-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(196,149,50,.15);
  border: 1px solid rgba(196,149,50,.35);
  color: var(--brass);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--display);
}
.step-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(248,245,238,.45);
}

.estimate-field { position: relative; }
.estimate-input,
.estimate-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(248,245,238,.12);
  color: var(--porcelain);
  font-family: var(--body);
  font-size: 15px;
  padding: 6px 32px 6px 0;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.estimate-input::placeholder { color: rgba(248,245,238,.25); }
.estimate-input:focus,
.estimate-select:focus { border-bottom-color: rgba(196,149,50,.6); }
.estimate-select { appearance: none; cursor: pointer; }
.estimate-select option { background: #1a1c1e; color: var(--porcelain); }
.estimate-input-icon,
.estimate-chevron {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: rgba(248,245,238,.25);
  pointer-events: none;
}
.estimate-textarea {
  width: 100%;
  background: transparent;
  resize: none;
  line-height: 1.6;
  border: none;
  border-bottom: 1px solid rgba(248,245,238,.12);
  border-radius: 0;
  padding: 6px 0;
  font-size: 15px;
  font-family: var(--body);
  color: var(--porcelain);
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.estimate-textarea::placeholder { color: rgba(248,245,238,.25); }
.estimate-textarea:focus { border-bottom-color: rgba(196,149,50,.6); }

.estimate-btn {
  width: 100%;
  background: var(--brass);
  color: var(--ink);
  border: none;
  border-radius: 12px;
  padding: 15px 28px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: opacity .15s, transform .1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.estimate-btn::after {
  content: '→';
  font-size: 16px;
}
.estimate-btn:hover { opacity: .88; }
.estimate-btn:active { transform: scale(.98); }

.estimate-form-col {
  display: flex;
  flex-direction: column;
}


.estimate-lower-band {
  position: absolute;
  border: 1px solid rgba(248,245,238,.1);
  border-radius: 14px;
  background: rgba(248,245,238,.03);
  pointer-events: auto;
  overflow: hidden;
}

/* ── Gallery marquee (lower band) ── */
.marquee-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  overflow: hidden;
  box-sizing: border-box;
}

.marquee-row {
  display: flex;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

.marquee-track {
  display: flex;
  gap: 8px;
  will-change: transform;
  flex-shrink: 0;
  height: 100%;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.marquee-row--fwd .marquee-track {
  animation: marquee-fwd 55s linear infinite;
}

.marquee-row--rev .marquee-track {
  animation: marquee-rev 68s linear infinite;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-img {
  height: 100%;
  width: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
  transition: transform .35s ease, opacity .35s ease;
  opacity: .88;
}

.marquee-img:hover {
  transform: scale(1.06);
  opacity: 1;
}

@keyframes marquee-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.estimate-extra-col {
  border: 1px solid rgba(248,245,238,.1);
  border-radius: 14px;
  background: rgba(248,245,238,.03);
  align-self: start;
  margin-top: 20px;
  margin-right: calc(-1 * clamp(20px, 5vw, 72px) + 40px);
  overflow: hidden;
}

/* ── Before / After preview (col 3) ── */
.reno-preview {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 13px;
}

.reno-pair {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease);
}

.reno-pair.is-active {
  opacity: 1;
  pointer-events: auto;
}

.reno-slot {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.reno-slot:first-child {
  border-bottom: 1px solid rgba(248,245,238,.12);
}

.reno-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s var(--ease);
}

.reno-slot:hover img {
  transform: scale(1.03);
}

.reno-tag {
  position: absolute;
  top: 10px;
  left: 12px;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.reno-tag--before {
  background: rgba(12,13,14,.58);
  color: #ffffff;
  border: 1px solid rgba(248,245,238,.38);
}

.reno-tag--after {
  background: rgba(12,13,14,.58);
  color: #ffffff;
  border: 1px solid rgba(196,149,50,.55);
}

.reno-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: rgba(248,245,238,.55);
  line-height: 1.7;
  letter-spacing: .04em;
  transition: opacity .35s ease;
  padding: 24px;
  background:
    linear-gradient(rgba(12,13,14,.62), rgba(12,13,14,.62)),
    url('../antes_despues/testura_premium.jpeg') center / cover no-repeat;
  border-radius: 13px;
}

.reno-empty svg {
  opacity: 1;
  margin-bottom: 12px;
  color: #ffffff;
}

.reno-empty span {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.8;
}

.reno-preview.has-selection .reno-empty {
  opacity: 0;
  pointer-events: none;
}
/* ── Postal code validation states ── */
.estimate-input.postal-valid {
  border-color: rgba(196,149,50,.55);
  background: rgba(196,149,50,.04);
}

.estimate-input.postal-valid ~ .estimate-input-icon {
  color: rgba(196,149,50,.7);
}

.estimate-input.postal-invalid {
  border-color: rgba(220,80,60,.55);
  background: rgba(220,80,60,.04);
  animation: shake .35s var(--ease);
}

.estimate-input.postal-invalid ~ .estimate-input-icon {
  color: rgba(220,80,60,.7);
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-5px); }
  60%      { transform: translateX(5px); }
  80%      { transform: translateX(-3px); }
}

.estimate-result {
  display: flex;
  position: absolute;
  z-index: 20;
  flex-direction: column;
  border-radius: 14px;
  background: rgba(12,13,14,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(196,149,50,.28);
  box-shadow: 0 28px 72px rgba(0,0,0,.6);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(.98);
  will-change: transform, opacity;
  transition:
    opacity   .42s cubic-bezier(.22, 1, .36, 1),
    transform .42s cubic-bezier(.22, 1, .36, 1),
    visibility 0s   .42s;
}
.estimate-result.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity   .42s cubic-bezier(.22, 1, .36, 1),
    transform .42s cubic-bezier(.22, 1, .36, 1),
    visibility 0s   0s;
}
.estimate-result-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(248,245,238,.35);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color .2s;
  z-index: 2;
}
.estimate-result-close:hover { color: var(--brass); }

/* ── Result body: two-column layout ── */
.er-body {
  display: flex;
  height: 100%;
  overflow: hidden;
}

/* Left column */
.er-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 40px;
  width: 46%;
  flex-shrink: 0;
  border-right: 1px solid rgba(248,245,238,.07);
}
.er-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(248,245,238,.35);
  margin-bottom: 10px;
}
.estimate-result-range {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 12px;
}
.er-meta {
  font-size: 12px;
  font-weight: 600;
  color: rgba(248,245,238,.5);
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.er-timeline {
  font-size: 12px;
  color: rgba(248,245,238,.4);
  margin-bottom: 24px;
  padding: 7px 12px;
  background: rgba(248,245,238,.05);
  border-radius: 6px;
  display: inline-block;
  align-self: flex-start;
}
.estimate-result-note {
  font-size: 11.5px;
  color: rgba(248,245,238,.35);
  line-height: 1.7;
  margin-bottom: 22px;
}
.estimate-result-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--porcelain);
  text-decoration: none;
  background: rgba(196,149,50,.14);
  border: 1px solid rgba(196,149,50,.35);
  border-radius: 8px;
  padding: 10px 18px;
  transition: background .2s, border-color .2s, color .2s;
}
.estimate-result-cta:hover {
  background: rgba(196,149,50,.22);
  border-color: rgba(196,149,50,.65);
  color: var(--brass);
}

/* Right column — breakdown */
.er-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px 36px;
  overflow-y: auto;
  min-width: 0;
}
.er-breakdown-header {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(248,245,238,.28);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(248,245,238,.08);
  margin-bottom: 6px;
}
.er-breakdown {
  flex: 1;
}
.er-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(248,245,238,.05);
  gap: 12px;
}
.er-item-label {
  font-size: 12.5px;
  color: rgba(248,245,238,.65);
  font-weight: 400;
}
.er-item-range {
  font-size: 12px;
  color: rgba(248,245,238,.5);
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.er-breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  margin-top: 6px;
  border-top: 1px solid rgba(196,149,50,.3);
}
.er-breakdown-total span:first-child {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(248,245,238,.5);
}
.er-breakdown-total span:last-child {
  font-size: 14px;
  font-weight: 800;
  color: var(--brass);
  font-variant-numeric: tabular-nums;
}
/* ── Trust statement card (left column) ── */
.estimate-trust-col {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(248,245,238,.1);
  background: #0e1012;
  min-height: 480px;
  margin-left: 40px;
  margin-top: 20px;
}

/* Background image with dark overlay */
.trust-bg {
  position: absolute;
  inset: 0;
  background-image: url('../variaciones/contemporary_marble.jpeg');
  background-size: cover;
  background-position: center 30%;
  opacity: .16;
  filter: grayscale(.5) brightness(.5);
  z-index: 0;
}

.trust-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(12,13,14,.15) 0%,
    rgba(12,13,14,.72) 55%,
    rgba(12,13,14,.97) 100%
  );
}

/* All content above the overlay */
.trust-content {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
}

.trust-eyebrow-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(196,149,50,.65);
  margin: 0 0 clamp(24px, 3.5vw, 44px);
}

/* Mixed-weight headline — the visual anchor */
.trust-headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding-bottom: clamp(24px, 3vw, 40px);
  perspective: 320px;
}

.trust-h-thin,
.trust-h-bold,
.trust-h-accent {
  display: block;
  text-align: left;
  opacity: 0;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity   0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1º — cara del cubo desde arriba, gira hacia abajo */
.trust-h-thin   { transform-origin: top center;    transform: rotateX(-90deg); }
/* 2º — cara del cubo desde abajo, gira hacia arriba */
.trust-h-bold   { transform-origin: bottom center; transform: rotateX(90deg);  }
/* 3º — cara del cubo desde arriba, gira hacia abajo */
.trust-h-accent { transform-origin: top center;    transform: rotateX(-90deg); }

.trust-h-thin.is-block-visible   { transform: rotateX(0deg); opacity: 1; transition-delay: 0s;   }
.trust-h-bold.is-block-visible   { transform: rotateX(0deg); opacity: 1; transition-delay: .35s; }
.trust-h-accent.is-block-visible { transform: rotateX(0deg); opacity: 1; transition-delay: .70s; }

.trust-h-thin {
  font-family: var(--display);
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 300;
  color: rgba(248,245,238,.28);
  letter-spacing: -.035em;
  line-height: 1.0;
}

.trust-h-bold {
  font-family: var(--display);
  font-size: clamp(36px, 5.2vw, 72px);
  font-weight: 800;
  color: var(--porcelain);
  letter-spacing: -.045em;
  line-height: .96;
}

.trust-h-accent {
  font-family: var(--display);
  font-size: clamp(32px, 4.8vw, 66px);
  font-weight: 800;
  color: var(--brass);
  letter-spacing: -.045em;
  line-height: .96;
}

@media (prefers-reduced-motion: reduce) {
  .trust-h-thin, .trust-h-bold, .trust-h-accent {
    transform: none; opacity: 1; transition: none;
  }
}

/* Big stat number */
.trust-stat-anchor {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: clamp(24px, 3.5vw, 44px) 0 clamp(20px, 3vw, 36px);
  padding-top: clamp(20px, 3vw, 36px);
  border-top: 1px solid rgba(248,245,238,.1);
}

.trust-big-num {
  font-family: var(--display);
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 800;
  color: var(--porcelain);
  letter-spacing: -.045em;
  line-height: 1;
}

.trust-big-num sup {
  font-size: .42em;
  font-weight: 500;
  color: var(--brass);
  vertical-align: super;
  letter-spacing: 0;
}

.trust-big-label {
  font-size: clamp(12px, 1.2vw, 14px);
  color: rgba(248,245,238,.42);
  line-height: 1.55;
}

/* ── Trust stats ── */
.trust-stats {
  width: calc(100% + clamp(28px, 4vw, 48px));
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(248,245,238,.1);
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  padding: clamp(18px, 2.5vw, 28px) 0;
  border-bottom: 1px solid rgba(248,245,238,.07);
}

.trust-stat:last-child { border-bottom: none; }

/* Testimonial stat — full width, no number column */
.trust-stat--quote {
  display: block;
  padding: clamp(20px, 2.5vw, 28px) 0;
}

.trust-quote {
  margin: 0;
  padding: 0 clamp(20px, 3vw, 32px) 0 0;
}

.trust-quote-text {
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--porcelain);
  line-height: 1.45;
  margin: 0 0 10px;
  letter-spacing: -.01em;
}

.trust-quote-text::before {
  content: '\201C';
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.3em;
  color: var(--brass);
  margin-right: 3px;
  font-style: normal;
}

.trust-quote-text::after {
  content: '\201D';
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.3em;
  color: var(--brass);
  margin-left: 3px;
  font-style: normal;
}

.trust-quote-author {
  display: block;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 500;
  color: rgba(248,245,238,.38);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-style: normal;
}

.trust-stat-num {
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 800;
  color: var(--brass);
  letter-spacing: -.04em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  width: clamp(80px, 11vw, 140px);
  text-align: left;
}

.trust-stat-currency {
  font-size: .48em;
  font-weight: 500;
  color: rgba(196,149,50,.55);
  vertical-align: super;
  letter-spacing: 0;
}

.trust-stat-suffix {
  font-size: .52em;
  font-weight: 500;
  color: rgba(196,149,50,.55);
  vertical-align: baseline;
  letter-spacing: 0;
  margin-left: 2px;
}

.trust-stat-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding-right: clamp(20px, 3vw, 32px);
  flex-shrink: 0;
}

.trust-stat-label {
  display: block;
  font-family: var(--display);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--porcelain);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.trust-stat-desc {
  font-size: clamp(11px, 1vw, 13px);
  color: rgba(248,245,238,.4);
  line-height: 1.6;
  margin: 0;
  max-width: 240px;
}

@media (max-width: 820px) {
  .estimate-inner { grid-template-columns: 1fr; }
  .estimate-trust-col { min-height: 360px; }
  .trust-content { padding: clamp(28px, 5vw, 40px); }
  .trust-pillars { display: flex; gap: 0; }
  .trust-pillar {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 16px 14px 0;
    border-bottom: none;
    border-right: 1px solid rgba(248,245,238,.06);
  }
  .trust-pillar:last-child { border-right: none; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-pillar { animation: none; opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MAP SECTION
   No rules existed; grid was desktop-only.
═══════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .map-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  /* HTML order: copy first, frame second — natural stacking, no reorder needed */
  .map-copy  { padding: clamp(48px,7vw,80px) clamp(24px,5vw,56px) clamp(36px,5vw,56px); }
  .map-frame { height: 420px; }
  /* Gradient switches direction: map is now below copy, not beside it */
  .map-frame::before {
    inset: 0 0 auto 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, var(--ink) 0%, transparent 100%);
  }
  #gtaMap { min-height: 420px; }
}

@media (max-width: 620px) {
  .map-copy  { padding: 48px 20px 32px; }
  .map-heading { font-size: clamp(28px,9vw,44px); }
  .map-body  { font-size: 14px; }
  .map-frame { height: 280px; }
  #gtaMap    { min-height: 280px; }
  .map-stats {
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
  }
  .map-stat {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 0;
  }
  .map-stat-divider { width: 100%; height: 1px; flex-shrink: 0; }
  .map-stat:first-child { padding-top: 0; }
  .map-stat:last-child  { padding-bottom: 0; }
  .map-stat-number { font-size: 20px; }
  .map-cta { width: 100%; justify-content: center; text-align: center; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — FAQ SECTION
   No rules existed; accordion was 46% wide on mobile.
═══════════════════════════════════════════════════════ */

@media (max-width: 820px) {
  .faq-accordion {
    max-width: 100%;
    padding: clamp(40px,6vw,64px) clamp(20px,5vw,48px);
  }
  /* Gradient switches direction: now top → bottom so it fades
     the background image downward instead of left → right */
  .faq-body-fade {
    background: linear-gradient(to bottom,
      var(--graphite)           0%,
      rgba(26,28,30,.90)       40%,
      rgba(26,28,30,.52)       65%,
      transparent             100%
    );
  }
  .faq-panel { width: 88%; }
  /* Caption overlaps content at narrow widths */
  .faq-img-tag { display: none; }
}

@media (max-width: 620px) {
  .faq-header { padding: clamp(40px,8vw,64px) 20px clamp(44px,8vw,68px); }
  .faq-heading { font-size: clamp(38px,11.5vw,60px); }

  /* Turn slide-in panel into a bottom sheet */
  .faq-panel {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 82svh;
    border-left: none;
    border-top: 1px solid rgba(196,149,50,.22);
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .faq-panel.is-open  { transform: translateY(0); }
  .faq-panel-close    { top: 16px; right: 18px; }
  .faq-panel-q        { font-size: clamp(17px,5vw,22px); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — ESTIMATE SECTION
   Lower-band + extra-col are JS-positioned in 3-col mode.
   At ≤820px the grid becomes 1-col; we need static layout.
═══════════════════════════════════════════════════════ */

@media (max-width: 820px) {
  .estimate-inner {
    padding-right: clamp(18px,5vw,36px);
  }
  /* Trust card: remove desktop-only left margin */
  .estimate-trust-col {
    margin-left: 0;
    margin-top: 0;
    border-radius: 16px;
  }
  /* Before/after preview column: hide — form + trust carry the section */
  .estimate-extra-col { display: none; }

  /* Lower band: override JS-set absolute positioning, become static */
  .estimate-lower-band {
    position: static !important;
    height: 160px !important;
    left: auto !important; right: auto !important; top: auto !important;
    border-radius: 12px;
    margin-top: 16px;
  }

  /* Result overlay: fixed full-screen modal on mobile */
  .estimate-result {
    position: fixed !important;
    inset: 12px !important;
    width: auto !important;
    height: auto !important;
    max-height: calc(100dvh - 24px);
    border-radius: 16px;
    overflow: hidden;
  }
  .er-body {
    flex-direction: column;
    overflow-y: auto;
    height: auto;
    -webkit-overflow-scrolling: touch;
  }
  .er-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(248,245,238,.07);
    padding: 32px 24px 20px;
  }
  .er-right { padding: 20px 24px 32px; }
}

@media (max-width: 620px) {
  .estimate-lower-band { height: 130px !important; }
  .estimate-trust-col  { min-height: 320px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — PROCESS TESTIMONIAL
   At 980px the header goes 1-col; the card height
   is unconstrained and can run very tall on tablet.
═══════════════════════════════════════════════════════ */

@media (max-width: 980px) {
  .process-testimonial {
    min-height: 0;
    max-height: 280px;
  }
}

@media (max-width: 700px) {
  .process-testimonial {
    max-height: none;  /* restore normal flow in 1-col */
    min-height: 220px;
  }
  .process-header {
    padding: 0 18px clamp(28px,4vw,44px);
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — HERO ACTIONS
   Buttons should stack cleanly on very small screens.
═══════════════════════════════════════════════════════ */

@media (max-width: 400px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — AUTHORITY BAND
   On very small screens the stats band overflows.
═══════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .authority-stats {
    flex-wrap: wrap;
    gap: 0;
    row-gap: 2px;
    padding: 14px 16px;
  }
  .authority-stat {
    min-width: calc(50% - 1px);
    padding: 10px clamp(6px,3vw,14px);
    border-right: none;
    border-bottom: 1px solid rgba(247,245,239,.07);
  }
  .authority-stat:nth-child(odd)  { border-right: 1px solid rgba(247,245,239,.07); }
  .authority-stat:nth-child(n+5)  { border-bottom: none; }
  .authority-divider { display: none; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — FOOTER
   Footer is 3-col (logo | text | link); stack on mobile.
═══════════════════════════════════════════════════════ */

@media (max-width: 620px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
    padding: 28px 20px;
    /* Safe-area bottom inset for devices with home indicator */
    padding-bottom: max(28px, calc(env(safe-area-inset-bottom) + 16px));
  }
  .site-footer img { width: 120px; }
  .footer-links {
    justify-content: flex-start;
  }
}

/* ═══════════════════════════════════════════════════════
   SAFE AREA — Notch / home indicator support
═══════════════════════════════════════════════════════ */

@supports (padding: env(safe-area-inset-top)) {
  .site-header {
    padding-left:  env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .hero {
    padding-left:  max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }
}

@media (min-width: 701px) {
  body.quiz-modal-open {
    overflow: hidden;
  }

  body.quiz-modal-open a[href^="tel:"],
  body.quiz-modal-open a[href^="sms:"] {
    pointer-events: none;
  }

  .quiz-modal[hidden] {
    display: none;
  }

  .quiz-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: clamp(24px, 4vw, 54px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .26s var(--ease), visibility .26s var(--ease);
  }

  .quiz-modal.is-open {
    opacity: 1;
    visibility: visible;
  }

  .quiz-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 28% 18%, rgba(185, 138, 71, .18), transparent 34%),
      rgba(4, 6, 7, .72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .quiz-modal-shell {
    position: relative;
    width: min(1040px, calc(100vw - 48px));
    height: min(760px, calc(100dvh - 48px));
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(390px, 500px);
    overflow: hidden;
    border: 1px solid rgba(196,149,50,.28);
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(16, 20, 22, .96), rgba(30, 36, 37, .9)),
      var(--ink);
    box-shadow: 0 34px 110px rgba(0, 0, 0, .64);
    transform: translateY(18px) scale(.98);
    transition: transform .34s cubic-bezier(.22, 1, .36, 1);
  }

  .quiz-modal.is-open .quiz-modal-shell {
    transform: translateY(0) scale(1);
  }

  .quiz-modal-info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
    overflow: hidden;
    padding: clamp(34px, 5vw, 62px);
    color: var(--porcelain);
    background:
      linear-gradient(180deg, rgba(16,20,22,.2), rgba(16,20,22,.92)),
      url("../images/hero-main.jpg") center / cover;
  }

  .quiz-modal-info::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(16,20,22,.24) 58%, rgba(16,20,22,.72) 100%);
  }

  .quiz-modal-info > * {
    position: relative;
    max-width: 430px;
  }

  .quiz-modal-kicker {
    color: var(--brass);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .quiz-modal-info h2 {
    margin: 0;
    color: var(--porcelain);
    font-family: var(--display);
    font-size: clamp(36px, 5vw, 66px);
    line-height: .92;
    letter-spacing: -.035em;
    text-wrap: balance;
  }

  .quiz-modal-info p {
    max-width: 34ch;
    margin: 0;
    color: rgba(247,245,239,.74);
    font-size: 16px;
    line-height: 1.65;
  }

  .quiz-modal-frame-wrap {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #101416;
    border-left: 1px solid rgba(247,245,239,.1);
  }

  .quiz-modal-topbar {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px 0 18px;
    color: rgba(247,245,239,.78);
    font-family: var(--display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(16,20,22,.94);
    border-bottom: 1px solid rgba(247,245,239,.1);
  }

  .quiz-modal-close {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--porcelain);
    background: rgba(247,245,239,.08);
    border: 1px solid rgba(247,245,239,.16);
    border-radius: 999px;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  }

  .quiz-modal-close:hover,
  .quiz-modal-close:focus-visible {
    background: rgba(247,245,239,.16);
    border-color: rgba(247,245,239,.34);
    outline: none;
  }

  .quiz-modal-close:active {
    transform: scale(.94);
  }

  .quiz-modal-frame {
    width: 100%;
    flex: 1;
    border: 0;
    background: #101416;
  }

  @media (max-width: 920px) {
    .quiz-modal-shell {
      grid-template-columns: minmax(380px, 500px);
      width: min(500px, calc(100vw - 48px));
    }

    .quiz-modal-info {
      display: none;
    }

    .quiz-modal-frame-wrap {
      border-left: 0;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .quiz-modal,
  .quiz-modal-shell {
    transition: none !important;
  }
}
