@font-face {
  font-family: "Core Sans C";
  src: url("../fonts/core-sans-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

@font-face {
  font-family: "Core Sans C";
  src: url("../fonts/core-sans-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Core Sans C";
  src: url("../fonts/core-sans-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink: #ec1d61;
  --blue: #c8d5dc;
  --paper: #f9fafd;
  --white: #ffffff;
  --black: #000000;
  --line: rgba(0, 0, 0, 0.14);
  --shell: min(89vw, 1440px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: "Core Sans C", Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: "Core Sans C", Arial, sans-serif;
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.4rem, 6.8vw, 7.5rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(2.85rem, 5vw, 5.9rem);
  font-weight: 500;
}

h3 {
  font-weight: 500;
}

p {
  line-height: 1.55;
}

.section {
  padding: clamp(6.5rem, 10vw, 11rem) 0;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: var(--pink);
}

.eyebrow.light {
  color: var(--white);
}

.lead {
  max-width: 42rem;
  font-size: clamp(1.2rem, 1.65vw, 1.65rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.7rem;
  padding: 0.2rem 1.7rem 0;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

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

.button-pink {
  color: var(--white);
  background: var(--pink);
}

.button-black {
  color: var(--white);
  background: var(--black);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--pink);
  font-size: 1.15rem;
}

.light-link {
  color: var(--white);
}

.light-link span {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 7rem;
  padding: 0 4.8vw;
  color: var(--white);
  transition: height 250ms ease, background 250ms ease, color 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
  height: 5.3rem;
  color: var(--black);
  background: rgba(249, 250, 253, 0.94);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: block;
  width: 5.2rem;
  height: 4.8rem;
}

.logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 250ms ease;
}

.logo-pink,
.is-scrolled .logo-white {
  opacity: 0;
}

.is-scrolled .logo-pink {
  opacity: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.3vw, 3rem);
}

.desktop-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: -0.55rem;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 220ms ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  height: 3rem;
  padding: 0.15rem 1.35rem 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled .header-cta,
.header-cta:hover {
  color: var(--white);
  border-color: var(--pink);
  background: var(--pink);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #292725;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  animation: heroZoom 16s ease-out both;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.69) 0%, rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.18) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.22), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(89vw, 1440px);
  min-height: 100svh;
  margin-inline: auto;
  padding-top: 7rem;
}

.hero-content h1 {
  max-width: 71rem;
}

.hero-copy {
  max-width: 37rem;
  margin-top: 2.4rem;
  font-size: clamp(1.2rem, 1.6vw, 1.65rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-top: 2.5rem;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  right: 4.8vw;
  bottom: 3.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.scroll-hint i {
  display: block;
  width: 4rem;
  height: 1px;
  background: currentColor;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.intro-copy h2 {
  max-width: 38rem;
}

.intro-copy .lead {
  margin: 2.4rem 0 2.5rem;
}

.intro-image {
  position: relative;
}

.intro-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -1.5rem;
  right: -1.5rem;
  width: 45%;
  height: 52%;
  background: var(--blue);
}

.intro-image img {
  position: relative;
  z-index: 2;
  aspect-ratio: 1 / 1.14;
  object-fit: cover;
}

.intro-image figcaption {
  padding-top: 0.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts div {
  padding: 2.4rem 1.5rem 2.2rem;
  border-right: 1px solid var(--line);
}

.facts div:first-child {
  padding-left: 0;
}

.facts div:last-child {
  border-right: 0;
}

.facts strong {
  display: block;
  color: var(--pink);
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.facts span {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.solutions {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.section-heading .eyebrow {
  margin-top: 1rem;
}

.section-heading h2 {
  max-width: 52rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solution-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 25rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 280ms ease, background 280ms ease;
}

.solution-card::after {
  position: absolute;
  z-index: 1;
  inset: 39% 0 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--white) 58%);
  transition: background 280ms ease;
}

.solution-card:hover {
  color: var(--white);
  background: var(--black);
}

.solution-card:hover::after {
  background: linear-gradient(to bottom, transparent, var(--black) 58%);
}

.solution-card:nth-child(2),
.solution-card:nth-child(5) {
  background: rgba(200, 213, 220, 0.35);
}

.solution-card:nth-child(2)::after,
.solution-card:nth-child(5)::after {
  background: linear-gradient(to bottom, transparent, #edf1f3 58%);
}

.solution-card:nth-child(2):hover,
.solution-card:nth-child(5):hover {
  background: var(--pink);
}

.solution-card:nth-child(2):hover::after,
.solution-card:nth-child(5):hover::after {
  background: linear-gradient(to bottom, transparent, var(--pink) 58%);
}

.solution-art {
  position: absolute;
  z-index: 0;
  top: -1.4rem;
  right: -10%;
  width: 116%;
  height: 88%;
  object-fit: contain;
  object-position: top right;
  opacity: 0.96;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: top right;
  transition: opacity 320ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.solution-card:nth-child(1) .solution-art {
  top: -2.4rem;
  right: -22%;
  width: 142%;
  height: 104%;
}

.solution-card:nth-child(2) .solution-art {
  top: -2.1rem;
  right: -19%;
  width: 125%;
  height: 98%;
}

.solution-card:nth-child(3) .solution-art {
  top: -1.4rem;
  right: -12%;
  width: 122%;
  height: 92%;
}

.solution-card:nth-child(4) .solution-art {
  top: -2.2rem;
  right: -15%;
  width: 126%;
  height: 102%;
}

.solution-card:nth-child(5) .solution-art {
  top: -1.2rem;
  right: -20%;
  width: 128%;
  height: 94%;
}

.solution-card:nth-child(6) .solution-art {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.58;
}

.solution-card:hover .solution-art {
  opacity: 1;
  transform: translate3d(-0.25rem, -0.25rem, 0) scale(1.045);
}

.solution-card:nth-child(6):hover .solution-art {
  opacity: 0.72;
}

.solution-copy,
.solution-number,
.solution-arrow {
  position: relative;
  z-index: 2;
}

.solution-number {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.solution-card:hover .solution-number {
  color: var(--white);
}

.solution-card h3 {
  max-width: 20rem;
  font-size: clamp(1.8rem, 2.25vw, 2.8rem);
}

.solution-card p {
  max-width: 22rem;
  margin-top: 1.2rem;
  font-size: 1rem;
}

.solution-arrow {
  position: absolute;
  top: 1.9rem;
  right: 2rem;
  font-size: 1.4rem;
}

.process {
  color: var(--white);
  background: var(--black);
}

.process-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  margin-bottom: 6rem;
}

.process-heading .eyebrow {
  margin-top: 1rem;
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.process-item {
  display: grid;
  grid-template-columns: 0.15fr 0.45fr 0.8fr;
  align-items: baseline;
  gap: 2rem;
  padding: 2.3rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.process-item > span {
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 700;
}

.process-item h3 {
  font-size: clamp(2rem, 3vw, 3.5rem);
}

.process-item p {
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.projects {
  background: var(--paper);
}

.projects-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 5rem;
}

.projects-heading h2 {
  max-width: 58rem;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(22rem, 34vw));
  gap: 1.25rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 48%);
}

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

.project-large {
  grid-row: 1 / 3;
}

.project-wide {
  display: none;
}

.project-meta {
  position: absolute;
  z-index: 2;
  bottom: 2.2rem;
  left: 2.2rem;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.project-meta span {
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-meta strong {
  font-size: clamp(1.6rem, 2.3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.poetic {
  position: relative;
  min-height: 90svh;
  overflow: hidden;
  color: var(--white);
}

.poetic > img,
.poetic-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.poetic > img {
  object-fit: cover;
  object-position: center 58%;
}

.poetic-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.13) 70%);
}

.poetic-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--shell);
  min-height: 90svh;
  margin-inline: auto;
}

.poetic-copy h2 {
  font-size: clamp(3.8rem, 7.2vw, 8.1rem);
}

.poetic-copy > p:last-child {
  max-width: 34rem;
  margin-top: 2.2rem;
  font-size: 1.25rem;
}

.architects {
  background: var(--blue);
}

.architects-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 8vw;
}

.architects-copy h2 {
  max-width: 45rem;
}

.architects-copy .lead {
  margin: 2.4rem 0 2.5rem;
}

.architects-aside {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 30rem;
  padding: 3rem;
  overflow: hidden;
  color: var(--white);
  background: var(--pink);
}

.giant-mark {
  position: absolute;
  top: -8rem;
  right: -1rem;
  color: rgba(255, 255, 255, 0.16);
  font-size: 38rem;
  font-weight: 300;
  line-height: 1;
}

.architects-aside p {
  position: relative;
  z-index: 2;
  max-width: 24rem;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  line-height: 1.13;
}

.history {
  background: var(--white);
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.history-image img {
  aspect-ratio: 1 / 1.13;
  object-fit: cover;
  object-position: center 46%;
}

.history-copy h2 {
  max-width: 42rem;
}

.history-copy .lead {
  margin: 2.4rem 0 2.6rem;
}

.history-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2.8rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.history-details div {
  padding: 1.8rem 1.6rem 1.6rem 0;
}

.history-details div + div {
  padding-left: 1.6rem;
  border-left: 1px solid var(--line);
}

.history-details strong,
.history-details span {
  display: block;
}

.history-details strong {
  color: var(--pink);
  font-size: 2rem;
  font-weight: 500;
}

.history-details span {
  margin-top: 0.3rem;
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.showroom {
  padding-bottom: 0;
  background: var(--paper);
}

.showroom-heading {
  margin-bottom: 4rem;
}

.showroom-strip {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  height: 64svh;
  min-height: 34rem;
}

.showroom-strip figure {
  overflow: hidden;
}

.showroom-strip figure + figure {
  border-left: 3px solid var(--paper);
}

.showroom-strip img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.showroom-facade img {
  object-position: 62% center;
}

.showroom-strip figure:hover img {
  transform: scale(1.04);
}

.final-cta {
  padding: clamp(7rem, 12vw, 13rem) 0;
  color: var(--white);
  background: var(--pink);
}

.final-cta-inner {
  text-align: center;
}

.final-cta-inner .eyebrow {
  justify-content: center;
}

.final-cta-inner .eyebrow::before {
  background: var(--white);
}

.final-cta-inner h2 {
  font-size: clamp(3.6rem, 7vw, 8.1rem);
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 2.5rem auto 2.8rem;
  font-size: 1.2rem;
}

.footer {
  padding: 6rem 0 2rem;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 1fr;
  gap: 4rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-brand img {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
}

.footer-brand p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-label {
  margin-bottom: 0.8rem;
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-note p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 5.8rem;
    padding-inline: 5.5vw;
  }

  .site-header.is-scrolled {
    height: 5.2rem;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .brand {
    z-index: 3;
    width: 4.5rem;
    height: 4.3rem;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.45rem;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 1.9rem;
    height: 1px;
    margin-left: auto;
    background: currentColor;
    transition: transform 250ms ease;
  }

  .menu-open .menu-button span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-button span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease, visibility 250ms ease;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
  }

  .menu-open .logo-white {
    opacity: 0;
  }

  .menu-open .logo-pink {
    opacity: 1;
  }

  .menu-open .menu-button {
    color: var(--black);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }

  .mobile-menu a {
    font-size: clamp(2rem, 7vw, 3.7rem);
    font-weight: 500;
    letter-spacing: -0.035em;
  }

  .section-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .section-heading .eyebrow,
  .process-heading .eyebrow {
    margin-top: 0;
  }

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

  .solution-card {
    min-height: 22rem;
  }

  .solution-art {
    width: 110%;
    height: 84%;
  }

  .architects-grid {
    gap: 4rem;
  }

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

  .footer-note {
    display: none !important;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: 88vw;
  }

  .section {
    padding: 6.5rem 0;
  }

  h1 {
    font-size: clamp(3rem, 13.5vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.7rem, 10.6vw, 4.15rem);
  }

  .lead {
    font-size: 1.12rem;
  }

  .hero-content {
    justify-content: flex-end;
    width: var(--shell);
    padding: 8rem 0 6rem;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.16) 66%);
  }

  .hero-content h1 br {
    display: none;
  }

  .hero-copy {
    margin-top: 1.4rem;
    font-size: 1.1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 2rem;
  }

  .scroll-hint {
    display: none;
  }

  .intro-grid,
  .history-grid,
  .architects-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 4.5rem;
  }

  .intro-image::before {
    top: -0.8rem;
    right: -0.8rem;
  }

  .facts {
    grid-template-columns: 1fr 1fr;
    margin-top: 5rem;
  }

  .facts div {
    border-bottom: 1px solid var(--line);
  }

  .facts div:nth-child(2) {
    border-right: 0;
  }

  .facts div:nth-child(3),
  .facts div:nth-child(4) {
    border-bottom: 0;
  }

  .facts div:nth-child(3) {
    padding-left: 0;
  }

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

  .solution-card {
    min-height: 18rem;
    padding: 1.6rem;
  }

  .solution-card::after {
    inset: 36% 0 0;
  }

  .solution-art,
  .solution-card:nth-child(1) .solution-art,
  .solution-card:nth-child(2) .solution-art,
  .solution-card:nth-child(3) .solution-art,
  .solution-card:nth-child(4) .solution-art,
  .solution-card:nth-child(5) .solution-art {
    top: -1.4rem;
    right: -18%;
    width: 126%;
    height: 94%;
  }

  .solution-card:nth-child(6) .solution-art {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .solution-card h3 {
    font-size: clamp(1.65rem, 9vw, 2.25rem);
  }

  .solution-card p {
    max-width: 90%;
    margin-top: 0.8rem;
    font-size: 0.94rem;
  }

  .process-heading {
    margin-bottom: 3.5rem;
  }

  .process-item {
    grid-template-columns: 0.15fr 0.85fr;
    gap: 1rem;
  }

  .process-item p {
    grid-column: 2;
  }

  .projects-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 3.5rem;
  }

  .project-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-right: -6vw;
  }

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

  .project-card {
    flex: 0 0 82vw;
    height: 70svh;
    min-height: 32rem;
    scroll-snap-align: start;
  }

  .project-wide {
    display: block;
  }

  .poetic,
  .poetic-copy {
    min-height: 85svh;
  }

  .poetic > img {
    object-position: 58% center;
  }

  .poetic-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 78%);
  }

  .poetic-copy {
    justify-content: flex-end;
    padding-bottom: 5rem;
  }

  .poetic-copy h2 {
    font-size: 3.6rem;
  }

  .architects-grid {
    gap: 4.5rem;
  }

  .architects-aside {
    min-height: 24rem;
  }

  .history-image {
    order: 2;
  }

  .history-copy {
    order: 1;
  }

  .showroom-strip {
    display: flex;
    height: 66svh;
    min-height: 34rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .showroom-strip::-webkit-scrollbar {
    display: none;
  }

  .showroom-strip figure {
    flex: 0 0 86vw;
    scroll-snap-align: start;
  }

  .showroom-strip figure + figure {
    border-left-width: 2px;
  }

  .final-cta-inner h2 br {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

/* Cortinas sob medida */

.curtains-page {
  overflow: clip;
  background: var(--paper);
}

.curtains-hero {
  position: relative;
  min-height: 96svh;
  overflow: hidden;
  color: var(--white);
  background: #17130f;
}

.curtains-hero > img,
.curtains-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.curtains-hero > img {
  object-fit: cover;
  object-position: center;
  animation: heroZoom 18s ease-out both;
}

.curtains-hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.55) 27%, rgba(0, 0, 0, 0.04) 72%), linear-gradient(0deg, rgba(0, 0, 0, 0.25), transparent 58%);
}

.curtains-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 96svh;
  padding-top: 6rem;
}

.curtains-hero-copy h1 {
  max-width: 60rem;
  font-size: clamp(4.2rem, 8.2vw, 9.2rem);
}

.curtains-hero-copy > p:last-child {
  max-width: 39rem;
  margin-top: 2.3rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
}

.curtains-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  column-gap: 7vw;
}

.curtains-intro .eyebrow {
  grid-column: 1;
  margin-top: 0.8rem;
}

.curtains-intro h2 {
  grid-column: 2;
  max-width: 52rem;
}

.curtains-intro .lead {
  grid-column: 2;
  margin-top: 2.6rem;
}

.benefit-editorial {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  gap: clamp(3rem, 6vw, 7rem);
  margin-top: clamp(5rem, 9vw, 9rem);
}

.benefit-photo {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.benefit-photo img {
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

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

.benefit-item {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  padding: 2.2rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.benefit-item > span {
  padding-top: 0.25rem;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.benefit-item h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.6rem);
  line-height: 1.02;
}

.benefit-item p {
  max-width: 31rem;
  margin-top: 1rem;
  color: rgba(0, 0, 0, 0.68);
}

.transparency-section {
  color: var(--white);
  background: var(--black);
}

.transparency-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.transparency-heading h2 {
  max-width: 55rem;
}

.transparency-heading > p {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.14rem;
}

.transparency-stage {
  position: relative;
  overflow: hidden;
  min-height: 44rem;
}

.transparency-stage > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.transparency-scale {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.transparency-scale article {
  --opacity: calc(0.05 + (var(--shade) * 0.105));
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 2.1rem 1.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(0, 0, 0, var(--opacity));
  transition: background 350ms ease;
}

.transparency-scale article:hover {
  background: rgba(236, 29, 97, 0.76);
}

.transparency-scale article > span {
  position: absolute;
  top: 1.8rem;
  left: 1.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.transparency-scale h3 {
  font-size: clamp(1.35rem, 2vw, 2.4rem);
  line-height: 1;
}

.transparency-scale p {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.fabric-section {
  background: var(--white);
}

.fabric-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(4rem, 8vw, 9rem);
}

.fabric-copy {
  position: sticky;
  top: 7.5rem;
}

.fabric-copy h2 {
  max-width: 40rem;
}

.fabric-copy .lead {
  margin-top: 2.2rem;
}

.line-list,
.architectural-list {
  margin: 2.8rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.line-list li {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.line-list span {
  color: var(--pink);
}

.fabric-note {
  margin-top: 2rem;
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.92rem;
}

.fabric-collage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 29rem 25rem;
  gap: 1rem;
}

.fabric-collage figure {
  overflow: hidden;
}

.fabric-collage img {
  height: 100%;
  object-fit: cover;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fabric-collage figure:hover img {
  transform: scale(1.035);
}

.fabric-main {
  grid-column: 1 / -1;
}

.fabric-main img {
  object-position: left center;
}

.fabric-detail img {
  object-position: center 40%;
}

.pleats-section {
  color: var(--white);
  background: #0a0a0a;
}

.pleats-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 0.65fr;
  align-items: start;
  gap: 4vw;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.pleats-heading h2 {
  max-width: 49rem;
}

.pleats-heading > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.pleats-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.pleat-item {
  display: grid;
  grid-template-columns: 3rem minmax(15rem, 22rem) minmax(18rem, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 5rem);
  padding: clamp(2.2rem, 4.5vw, 4.8rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.pleat-item > span {
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 700;
}

.pleat-item h3 {
  font-size: clamp(1.8rem, 2.6vw, 3.3rem);
}

.pleat-item p {
  max-width: 35rem;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

.pleat-illustration {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #0a0a0a;
}

.pleat-illustration img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.pleat-item:hover .pleat-illustration img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.details-section {
  background: var(--blue);
}

.details-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.details-images {
  position: relative;
  min-height: 46rem;
}

.details-images img {
  position: absolute;
  object-fit: cover;
}

.detail-wide {
  top: 0;
  left: 0;
  width: 82%;
  height: 60%;
}

.detail-tall {
  right: 0;
  bottom: 0;
  width: 45%;
  height: 58%;
  border: 0.7rem solid var(--blue);
  object-position: center 38%;
}

.details-copy h2 {
  max-width: 42rem;
}

.details-copy .lead {
  margin-top: 2.2rem;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.detail-tags span {
  padding: 0.65rem 0.9rem 0.55rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 999px;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.layers-section {
  padding-bottom: 0;
  color: var(--white);
  background: var(--pink);
}

.layers-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 0.65fr;
  gap: 4vw;
  align-items: start;
  margin-bottom: 5rem;
}

.layers-heading .eyebrow::before {
  background: var(--white);
}

.layers-heading > p:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.layers-visual {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
}

.layers-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 58%);
}

.layers-visual > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.layers-notes {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 3.5rem;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.layers-notes span {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 7rem;
  padding: 1.1rem 1rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.layers-notes b {
  color: var(--pink);
  font-size: 0.7rem;
}

.tracks-section {
  background: var(--paper);
}

.tracks-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.1fr 1fr;
  align-items: end;
  gap: 4vw;
}

.tracks-heading .eyebrow {
  align-self: start;
}

.tracks-heading h2 {
  max-width: 44rem;
}

.tracks-heading .lead {
  max-width: 36rem;
  margin: 0;
}

.track-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 6rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.track-product {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.2rem 1.2rem 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(249, 250, 253, 0.46);
  transition: background 350ms ease;
}

.track-product:hover {
  background: var(--white);
}

.track-product-index {
  display: flex;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.track-product-index span {
  color: var(--pink);
}

.track-product-index i {
  font-style: normal;
}

.track-product figure {
  overflow: hidden;
  margin: 1rem 0 0.7rem;
  aspect-ratio: 1 / 1;
}

.track-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.track-product-copy h3 {
  max-width: 16rem;
  font-size: clamp(1.15rem, 1.4vw, 1.55rem);
  line-height: 1.05;
}

.track-product-copy p {
  margin-top: 0.65rem;
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.78rem;
  line-height: 1.45;
}

.automation-section {
  color: var(--white);
  background: var(--black);
}

.automation-top {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: stretch;
  gap: clamp(3rem, 7vw, 8rem);
}

.automation-copy h2 {
  max-width: 46rem;
}

.automation-copy > p:not(.eyebrow) {
  max-width: 38rem;
  margin-top: 2.3rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.12rem;
}

.assistant-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 14rem;
  align-items: end;
  min-height: 20rem;
  margin-top: clamp(3rem, 5vw, 5.5rem);
  padding: 2rem 0 0 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 82% 70%, rgba(46, 198, 255, 0.18), transparent 27%), linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015));
}

.assistant-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 4.5rem;
  height: 3px;
  background: var(--pink);
}

.assistant-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 1.8rem;
}

.assistant-copy > span {
  color: var(--pink);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.assistant-copy strong {
  display: block;
  max-width: 17rem;
  margin-top: 0.65rem;
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  font-weight: 500;
  line-height: 1.02;
}

.assistant-copy > p {
  max-width: 24rem;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.5;
}

.assistant-voice {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  justify-content: flex-end;
  margin-right: -2.4rem;
}

.assistant-alexa-badge {
  position: relative;
  z-index: 2;
  width: 14rem;
  max-width: none;
  margin: 0 0 -1.4rem -2rem;
  filter: drop-shadow(0 0.8rem 1.5rem rgba(0, 0, 0, 0.32));
}

.assistant-device {
  width: 18.5rem;
  max-width: none;
  margin: 0 0 -1.1rem -3.2rem;
  filter: drop-shadow(0 1.6rem 2.5rem rgba(0, 188, 255, 0.18));
}

.automation-photo {
  position: relative;
  overflow: hidden;
  min-height: 52rem;
  background: #171717;
}

.automation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.automation-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.automation-photo figcaption {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.automation-photo figcaption span {
  display: block;
  color: var(--pink);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.automation-photo figcaption strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.curtain-motion {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.curtain-motion i {
  width: 16%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.curtain-motion i:last-child {
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.48), transparent);
}

.automation-photo:hover .curtain-motion i:first-child { transform: translateX(-70%); }
.automation-photo:hover .curtain-motion i:last-child { transform: translateX(70%); }

.automation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(5rem, 8vw, 9rem);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.automation-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  padding: 1.8rem 1.8rem 2.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.automation-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.automation-item:hover::after {
  transform: scaleX(1);
}

.automation-icon {
  display: block;
  width: 5.25rem;
  height: 5.25rem;
  margin: 1.5rem 0 4.5rem;
  color: var(--pink);
}

.automation-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.automation-item h3 {
  font-size: 1.55rem;
  line-height: 1.05;
}

.automation-item p {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.91rem;
}

.curtains-projects {
  background: var(--white);
}

.curtains-projects-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  margin-bottom: 5rem;
}

.curtains-projects-heading .eyebrow {
  margin-top: 1rem;
}

.curtains-projects-heading h2 {
  max-width: 60rem;
}

.editorial-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-rows: 35rem 26rem 35rem;
  gap: 1rem;
}

.editorial-gallery figure {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.editorial-gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-gallery figure:hover img {
  transform: scale(1.04);
}

.editorial-gallery figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.gallery-a { grid-column: 1 / 3; }
.gallery-b { grid-column: 3; grid-row: 1 / 3; }
.gallery-c { grid-column: 1; grid-row: 2 / 4; }
.gallery-d { grid-column: 2; }
.gallery-e { grid-column: 2 / 4; }
.gallery-f { display: none; }
.gallery-b img { object-position: center; }
.gallery-c img { object-position: 64% center; }

.curtains-final {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
}

.curtains-final > img,
.curtains-final-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.curtains-final > img {
  object-fit: cover;
}

.curtains-final-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12) 75%);
}

.curtains-final-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92svh;
}

.curtains-final-copy h2 {
  max-width: 75rem;
  font-size: clamp(3.8rem, 6.8vw, 8rem);
}

.curtains-final-copy > p:not(.eyebrow) {
  max-width: 38rem;
  margin-top: 2.3rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.curtains-final-copy > div {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  margin-top: 2.8rem;
}

@media (max-width: 1100px) {
  .curtains-intro,
  .transparency-heading,
  .pleats-heading,
  .layers-heading,
  .curtains-projects-heading {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .curtains-intro .eyebrow,
  .curtains-intro h2,
  .curtains-intro .lead {
    grid-column: 1;
  }

  .transparency-scale {
    grid-template-columns: repeat(3, 1fr);
  }

  .transparency-stage {
    min-height: 58rem;
  }

  .transparency-scale article:nth-child(4),
  .transparency-scale article:nth-child(5) {
    grid-row: 2;
  }

  .pleats-heading > p:last-child,
  .layers-heading > p:last-child {
    max-width: 42rem;
  }

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

  .automation-top {
    grid-template-columns: 1fr;
  }

  .automation-copy > p:not(.eyebrow) {
    max-width: 46rem;
  }

  .assistant-panel {
    max-width: 46rem;
  }

  .automation-photo {
    min-height: 46rem;
  }

  .tracks-heading {
    grid-template-columns: 1fr 1fr;
  }

  .tracks-heading .eyebrow {
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  .curtains-hero,
  .curtains-hero-copy {
    min-height: 92svh;
  }

  .curtains-hero > img {
    object-position: 61% center;
  }

  .curtains-hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.16) 78%);
  }

  .curtains-hero-copy {
    justify-content: flex-end;
    padding: 8rem 0 4.5rem;
  }

  .curtains-hero-copy h1 {
    font-size: clamp(3.6rem, 15vw, 5.7rem);
  }

  .curtains-hero-copy > p:last-child {
    margin-top: 1.4rem;
    font-size: 1rem;
  }

  .benefit-editorial,
  .fabric-grid,
  .pleats-layout,
  .details-grid,
  .tracks-heading,
  .automation-top {
    grid-template-columns: 1fr;
  }

  .benefit-editorial {
    gap: 3rem;
  }

  .benefit-photo,
  .fabric-copy,
  .pleats-photo {
    position: static;
  }

  .benefit-photo img {
    aspect-ratio: 1 / 1.05;
    object-position: 66% center;
  }

  .transparency-stage {
    min-height: 43rem;
  }

  .transparency-stage > img {
    object-position: 57% center;
  }

  .transparency-scale {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
  }

  .transparency-scale article,
  .transparency-scale article:nth-child(4),
  .transparency-scale article:nth-child(5) {
    grid-row: auto;
    display: grid;
    grid-template-columns: 2.5rem 0.8fr 1.2fr;
    align-items: center;
    padding: 0.9rem 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  }

  .transparency-scale article > span {
    position: static;
  }

  .transparency-scale h3 {
    font-size: 1.25rem;
  }

  .transparency-scale p {
    margin-top: 0;
    font-size: 0.78rem;
  }

  .fabric-grid {
    gap: 4rem;
  }

  .fabric-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 20rem 23rem;
  }

  .pleat-item {
    grid-template-columns: 2rem 1fr;
    align-items: start;
    gap: 1rem;
    padding: 2.4rem 0;
  }

  .pleat-illustration {
    grid-column: 2;
    width: min(100%, 25rem);
    border-radius: 1rem;
  }

  .pleat-item > div:last-child {
    grid-column: 2;
  }

  .pleat-item p {
    font-size: 0.88rem;
  }

  .details-grid {
    gap: 4rem;
  }

  .details-images {
    min-height: 32rem;
  }

  .detail-wide {
    width: 90%;
  }

  .detail-tall {
    width: 48%;
  }

  .layers-visual {
    min-height: 76svh;
  }

  .layers-visual > img {
    object-position: 56% center;
  }

  .layers-notes {
    bottom: 1.5rem;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .layers-notes span {
    flex: 0 0 55vw;
    scroll-snap-align: start;
  }

  .tracks-heading {
    gap: 1.5rem;
  }

  .tracks-heading .eyebrow {
    grid-column: 1;
  }

  .track-catalog {
    grid-template-columns: 1fr 1fr;
    margin-top: 3.5rem;
  }

  .track-product {
    padding: 0.9rem 0.9rem 1.2rem;
  }

  .track-product-copy h3 {
    font-size: 1.15rem;
  }

  .track-product-copy p {
    font-size: 0.72rem;
  }

  .automation-top {
    gap: 3.8rem;
  }

  .assistant-panel {
    grid-template-columns: minmax(0, 1fr) 10.5rem;
    min-height: 18rem;
    padding-left: 1.25rem;
  }

  .assistant-device {
    width: 14.5rem;
    margin-left: -2.5rem;
  }

  .assistant-voice {
    margin-right: -2rem;
  }

  .assistant-alexa-badge {
    width: 10.5rem;
    margin-left: -1.5rem;
  }

  .automation-photo {
    min-height: 37rem;
  }

  .automation-grid {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .automation-item {
    display: grid;
    grid-template-columns: 5rem 1fr;
    align-items: center;
    gap: 1rem;
    min-height: auto;
    padding: 1.5rem;
  }

  .automation-icon {
    width: 4.3rem;
    height: 4.3rem;
    margin: 0;
  }

  .editorial-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-right: -6vw;
  }

  .editorial-gallery::-webkit-scrollbar {
    display: none;
  }

  .editorial-gallery figure,
  .gallery-f {
    display: block;
    flex: 0 0 82vw;
    height: 66svh;
    min-height: 32rem;
    scroll-snap-align: start;
  }

  .curtains-final,
  .curtains-final-copy {
    min-height: 88svh;
  }

  .curtains-final > img {
    object-position: 63% center;
  }

  .curtains-final-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.08) 78%);
  }

  .curtains-final-copy {
    justify-content: flex-end;
    padding-bottom: 4rem;
  }

  .curtains-final-copy h2 {
    font-size: clamp(3rem, 12vw, 4.6rem);
  }

  .curtains-final-copy > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.7rem;
    margin-top: 2rem;
  }
}

/*
 * Compatibilidade com cores globais de construtores visuais.
 *
 * Elementor, Angie e alguns kits de estilos podem aplicar a cor global branca
 * depois do CSS do tema. Mantemos esta camada deliberadamente específica para
 * que as áreas claras continuem em grafite sem afetar os blocos escuros.
 */
main[data-lea-page] .site-header a,
main[data-lea-page] .site-header button {
  color: inherit !important;
}

main[data-lea-page] .site-header .header-cta,
main[data-lea-page] .mobile-menu,
main[data-lea-page] .mobile-menu a {
  color: var(--white) !important;
}

main[data-lea-page="home"] :is(.intro, .solutions, .projects, .architects, .history, .showroom) :is(h1, h2, h3, h4, h5, h6, p, a, li, figcaption, span, strong),
main[data-lea-page="cortinas"] :is(.curtains-light, .fabric-section, .details-section, .tracks-section, .curtains-projects) :is(h1, h2, h3, h4, h5, h6, p, a, li, figcaption, span, strong) {
  color: var(--black) !important;
}

main[data-lea-page] :is(.button, .button-black, .button-pink) {
  color: var(--white) !important;
}

main[data-lea-page] .text-link span,
main[data-lea-page="home"] .facts strong,
main[data-lea-page="home"] .solution-number,
main[data-lea-page="home"] .history-details strong,
main[data-lea-page="cortinas"] .benefit-item > span,
main[data-lea-page="cortinas"] .line-list span,
main[data-lea-page="cortinas"] .track-product-index span {
  color: var(--pink) !important;
}

main[data-lea-page="home"] .solution-card:hover :is(h3, p, span, strong),
main[data-lea-page="home"] .project-meta :is(span, strong),
main[data-lea-page="home"] .architects-aside :is(p, span, strong),
main[data-lea-page="cortinas"] .editorial-gallery figcaption {
  color: var(--white) !important;
}

main[data-lea-page="home"] .architects-aside .giant-mark {
  color: rgba(255, 255, 255, 0.16) !important;
}
