:root {
  color-scheme: dark;
  --ink: #fff8ec;
  --ink-strong: #ffffff;
  --muted: rgba(255, 248, 236, 0.72);
  --muted-dark: #596962;
  --paper: #f4ecdd;
  --paper-soft: #fff8ea;
  --green: #0d3329;
  --green-deep: #07150f;
  --gold: #f5c454;
  --red: #ed1b2f;
  --line: rgba(255, 248, 236, 0.16);
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  --soft-shadow: 0 30px 90px rgba(2, 16, 11, 0.24);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 92px;
  color: var(--ink);
  background: var(--green-deep);
  font-family: var(--sans);
}

body::selection {
  background: rgba(245, 196, 84, 0.42);
}

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

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

.page-shell {
  min-height: 100vh;
  background: var(--paper);
  overflow: hidden;
}

[data-motion="ready"] [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  filter: blur(10px);
  transition:
    opacity 860ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 1040ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 1040ms cubic-bezier(0.19, 1, 0.22, 1);
}

[data-motion="ready"] [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

[data-motion="ready"] .cinema-spread[data-reveal],
[data-motion="ready"] .chapter[data-reveal],
[data-motion="ready"] .concierge[data-reveal],
[data-motion="ready"] .product-line[data-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
}

[data-motion="ready"] .cinema-spread[data-reveal] .cinema-copy,
[data-motion="ready"] .cinema-spread[data-reveal] .cinema-note,
[data-motion="ready"] .chapter[data-reveal] .chapter-copy,
[data-motion="ready"] .concierge[data-reveal] > * {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  filter: blur(8px);
  transition:
    opacity 860ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 1040ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 1040ms cubic-bezier(0.19, 1, 0.22, 1);
}

[data-motion="ready"] .cinema-spread[data-reveal].is-visible .cinema-copy,
[data-motion="ready"] .cinema-spread[data-reveal].is-visible .cinema-note,
[data-motion="ready"] .chapter[data-reveal].is-visible .chapter-copy,
[data-motion="ready"] .concierge[data-reveal].is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

[data-parallax] {
  will-change: transform;
  backface-visibility: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--green-deep);
}

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

.hero-media {
  z-index: -3;
}

.hero-media img,
.future-video-slot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.96) contrast(1.02) brightness(0.9);
  transform: scale(1.035) translate3d(0, var(--hero-y, 0px), 0);
  will-change: transform;
}

.future-video-slot:not([hidden]) {
  display: block;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 16, 12, 0.94) 0%, rgba(4, 16, 12, 0.72) 25%, rgba(4, 16, 12, 0.22) 52%, rgba(4, 16, 12, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 11, 9, 0.78) 0%, rgba(4, 11, 9, 0.08) 42%, rgba(4, 11, 9, 0.28) 100%);
}

.hero-header {
  position: relative;
  z-index: 2;
  width: min(100% - 96px, 1480px);
  margin: 0 auto;
  padding-top: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-grid;
  place-items: center;
  min-width: 122px;
  min-height: 42px;
  padding: 9px 18px;
  border-radius: 9px;
  background: var(--red);
  box-shadow: 0 20px 60px rgba(237, 27, 47, 0.28);
}

.brand span {
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(255, 248, 236, 0.78);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: lowercase;
}

.hero-nav a {
  transition: color 180ms ease, opacity 180ms ease;
}

.hero-nav a:hover {
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 96px, 1480px);
  margin: 0 auto;
  padding-top: clamp(150px, 24vh, 248px);
}

.kicker,
.section-kicker,
.model-type {
  margin: 0;
  color: var(--gold);
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 850;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-content h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

.hero-content h1 {
  max-width: 800px;
  margin-top: 22px;
  color: var(--ink-strong);
  font-size: clamp(66px, 8.8vw, 148px);
  line-height: 0.98;
}

.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
  text-wrap: pretty;
}

.hero-actions,
.model-card nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  border-color: transparent;
  background: var(--gold);
  color: #17251e;
  box-shadow: 0 18px 44px rgba(245, 196, 84, 0.28);
  outline: 1px solid rgba(255, 248, 236, 0.18);
  outline-offset: 4px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.button-quiet {
  background: rgba(13, 51, 41, 0.06);
  color: var(--green);
  border-color: rgba(13, 51, 41, 0.12);
}

.use-rail {
  position: absolute;
  right: clamp(30px, 5vw, 72px);
  bottom: clamp(34px, 5vw, 70px);
  z-index: 2;
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 248, 236, 0.72);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.use-rail span {
  opacity: 0.48;
}

.intro-strip {
  background: var(--paper);
  color: var(--green);
  padding: 28px clamp(22px, 5vw, 72px);
}

.intro-strip p {
  width: min(100%, 1180px);
  margin: 0 auto;
  color: #31433c;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.55;
}

.section {
  padding: clamp(76px, 10vw, 150px) clamp(22px, 5vw, 72px);
}

.environments {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: end;
  background:
    radial-gradient(circle at 82% 12%, rgba(245, 196, 84, 0.22), transparent 32%),
    var(--paper-soft);
  color: var(--green);
}

.section-copy {
  max-width: 720px;
}

.section-copy.wide {
  width: min(100%, 1220px);
  max-width: none;
  margin: 0 auto 42px;
}

.section h2 {
  margin-top: 18px;
  color: #11231d;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.95;
}

.section-copy p:not(.section-kicker) {
  margin: 24px 0 0;
  color: var(--muted-dark);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}

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

.environment-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid rgba(13, 51, 41, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.52);
  box-shadow: 0 20px 54px rgba(13, 51, 41, 0.08);
}

.environment-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.environment-grid h3 {
  margin: 16px 0 10px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.environment-grid p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.48;
}

.models {
  background: var(--green);
  color: var(--ink);
}

.models .section-kicker {
  color: var(--gold);
}

.models h2 {
  color: var(--ink);
}

.models .section-copy p:not(.section-kicker) {
  color: rgba(255, 248, 236, 0.72);
}

.model-list {
  width: min(100%, 1220px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.model-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(0, 1fr);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, 0.14);
  border-radius: 34px;
  background: rgba(255, 248, 236, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.model-card.is-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(360px, 1.2fr) minmax(320px, 0.9fr);
}

.model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 52px);
}

.model-card h3 {
  margin: 18px 0 14px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.96;
}

.model-card p:not(.model-type) {
  margin: 0;
  color: rgba(255, 248, 236, 0.72);
  font-size: 17px;
  line-height: 1.52;
}

.model-card strong {
  display: block;
  margin: 24px 0 22px;
  color: var(--gold);
  font-size: 19px;
}

.model-card .button {
  min-height: 48px;
  padding: 0 20px;
}

.model-card .button-quiet {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.material-section {
  background: var(--paper);
  color: var(--green);
}

.material-panel {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(13, 51, 41, 0.96), rgba(16, 76, 61, 0.92)),
    var(--green);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.material-panel h2 {
  max-width: 940px;
  color: var(--ink);
}

.material-panel p:not(.section-kicker) {
  max-width: 820px;
  color: rgba(255, 248, 236, 0.74);
}

.editorial-bridge {
  display: grid;
  grid-template-columns: minmax(170px, 0.24fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 82px);
  align-items: start;
  padding: clamp(58px, 8vw, 118px) clamp(22px, 5vw, 72px);
  background: var(--paper);
  color: var(--green);
}

.editorial-bridge span {
  padding-top: clamp(8px, 1vw, 18px);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1.45;
  text-transform: uppercase;
}

.editorial-bridge p {
  max-width: 1050px;
  margin: 0;
  color: #15251f;
  font-family: var(--serif);
  font-size: clamp(31px, 4.8vw, 78px);
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.cinema-spread {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: clamp(72px, 10vw, 150px) clamp(22px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
  background: var(--green-deep);
}

.cinema-spread > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.03) brightness(0.82);
  transform: scale(1.012) translate3d(0, calc(var(--parallax-y, 0px) * 0.38), 0);
}

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

.cinema-spread::before {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 22%, rgba(245, 196, 84, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(5, 18, 13, 0.9), rgba(5, 18, 13, 0.42) 48%, rgba(5, 18, 13, 0.18));
}

.cinema-spread::after {
  z-index: -1;
  background: linear-gradient(0deg, rgba(5, 18, 13, 0.82), transparent 38%, rgba(5, 18, 13, 0.12));
}

.cinema-copy {
  width: min(100%, 920px);
}

.cinema-copy h2 {
  max-width: 860px;
  margin: 20px 0 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(50px, 8vw, 126px);
  font-weight: 400;
  letter-spacing: -0.066em;
  line-height: 0.94;
  text-wrap: balance;
}

.cinema-copy p:not(.section-kicker) {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 248, 236, 0.76);
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.55;
}

.cinema-note {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  top: clamp(72px, 10vw, 150px);
  max-width: 270px;
  margin: 0;
  color: rgba(255, 248, 236, 0.72);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.22em;
  line-height: 1.7;
  text-align: right;
  text-transform: uppercase;
}

.chapter-flow {
  background: #ece1cf;
  color: var(--green);
}

.chapter {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
  align-items: stretch;
  border-top: 1px solid rgba(13, 51, 41, 0.12);
  overflow: hidden;
}

.chapter:nth-child(even) {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.04fr);
}

.chapter:nth-child(even) figure {
  order: 2;
}

.chapter figure {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #d7cbb8;
}

.chapter figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 248, 236, 0.14), transparent 28%),
    linear-gradient(0deg, rgba(7, 21, 15, 0.18), transparent 38%);
  pointer-events: none;
}

.chapter img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.006) translate3d(0, calc(var(--parallax-y, 0px) * 0.28), 0);
  transition: transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
}

.chapter-pool img {
  object-position: 58% center;
}

.chapter-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 104px);
  background:
    radial-gradient(circle at 16% 18%, rgba(245, 196, 84, 0.12), transparent 34%),
    var(--paper);
}

.chapter-living .chapter-copy {
  background:
    radial-gradient(circle at 88% 18%, rgba(237, 27, 47, 0.08), transparent 34%),
    #fff7e9;
}

.chapter-gift .chapter-copy {
  background:
    radial-gradient(circle at 12% 80%, rgba(13, 51, 41, 0.08), transparent 36%),
    #f1e8d8;
}

.chapter-copy h2,
.collection-head h2,
.concierge h2 {
  margin: 20px 0 0;
  color: #11231d;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.96;
  text-wrap: balance;
}

.chapter-copy p:not(.section-kicker),
.collection-head p,
.concierge > p {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted-dark);
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.55;
}

.chapter-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.chapter-picks a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(13, 51, 41, 0.16);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 850;
}

.collection-editorial {
  position: relative;
  padding: clamp(76px, 10vw, 150px) clamp(22px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 8%, rgba(245, 196, 84, 0.14), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(255, 248, 236, 0.08), transparent 28%),
    linear-gradient(180deg, #0b2b23 0%, var(--green) 48%, #082219 100%);
  color: var(--ink);
}

.collection-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 248, 236, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  opacity: 0.34;
}

.collection-head {
  position: relative;
  z-index: 1;
  width: min(100%, 1220px);
  margin: 0 auto clamp(42px, 6vw, 82px);
}

.collection-head h2 {
  max-width: 1020px;
  color: var(--ink);
}

.collection-head p {
  color: rgba(255, 248, 236, 0.74);
}

.product-lines {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  gap: clamp(34px, 5vw, 76px);
}

.product-line {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(360px, 0.72fr);
  grid-template-rows: 1fr auto auto;
  gap: 0;
  align-items: stretch;
  min-height: clamp(500px, 46vw, 640px);
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: clamp(34px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.09), rgba(255, 248, 236, 0.025)),
    rgba(255, 248, 236, 0.038);
  box-shadow: var(--soft-shadow);
}

.product-line::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 18%, rgba(245, 196, 84, 0.12), transparent 25%),
    linear-gradient(90deg, rgba(255, 248, 236, 0.05), transparent 38%);
  opacity: 0.62;
}

.product-line::after {
  content: "";
  position: absolute;
  inset: auto clamp(38px, 4vw, 64px) clamp(34px, 4vw, 56px) auto;
  width: clamp(150px, 14vw, 240px);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(245, 196, 84, 0.72));
  opacity: 0.64;
}

.product-line img {
  position: relative;
  z-index: 1;
  grid-row: 1 / span 3;
  width: 100%;
  height: 100%;
  min-height: clamp(500px, 46vw, 640px);
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  filter: saturate(0.98) contrast(1.02) brightness(0.92);
  transform: translateZ(0);
  transition:
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.product-line:nth-child(even) img {
  grid-column: 2;
}

.product-line:nth-child(even)::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(245, 196, 84, 0.12), transparent 25%),
    linear-gradient(270deg, rgba(255, 248, 236, 0.05), transparent 38%);
}

.product-line:nth-child(even)::after {
  inset-inline: clamp(38px, 4vw, 64px) auto;
}

.product-line:hover img {
  filter: saturate(1.03) contrast(1.03) brightness(0.96);
  transform: scale(1.01) translateZ(0);
}

.product-line#modelo-flutuante img {
  object-position: 50% 52%;
}

.product-line#modelo-grande img {
  object-position: 50% 52%;
}

.product-line#modelo-sofa img {
  object-position: 52% 50%;
}

.product-line#modelo-chaise img {
  object-position: 62% 52%;
}

.product-line-extra img {
  object-position: 58% 50%;
}

.product-line > div {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(56px, 6vw, 86px) clamp(42px, 5vw, 76px) 18px;
}

.product-line:nth-child(even) > div,
.product-line:nth-child(even) strong,
.product-line:nth-child(even) .line-actions {
  grid-column: 1;
}

.product-line h3 {
  margin: 14px 0 18px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(48px, 5.8vw, 92px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.product-line p:not(.model-type) {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 248, 236, 0.72);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.58;
}

.product-line strong {
  position: relative;
  z-index: 1;
  grid-column: 2;
  color: var(--gold);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.25;
  padding: 8px clamp(42px, 5vw, 76px) 0;
}

.line-actions {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: start;
  margin: 0;
  padding: 26px clamp(42px, 5vw, 76px) clamp(56px, 6vw, 86px);
}

.line-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  color: #15251f;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.line-action-whatsapp {
  background: var(--gold);
  box-shadow: 0 18px 44px rgba(245, 196, 84, 0.26);
}

.line-action-whatsapp::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: #10241b;
  box-shadow: 0 0 0 5px rgba(16, 36, 27, 0.1);
}

.line-action-store {
  color: rgba(255, 248, 236, 0.78);
  background: rgba(255, 248, 236, 0.055);
  border: 1px solid rgba(255, 248, 236, 0.14);
}

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

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 40;
  display: grid;
  min-width: 218px;
  gap: 2px;
  padding: 14px 20px;
  border-radius: 999px;
  color: #10241b;
  background: linear-gradient(135deg, #f5c454, #ffd66f);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 248, 236, 0.28);
  font-weight: 950;
  letter-spacing: -0.02em;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(245, 196, 84, 0.32);
  opacity: 0.8;
}

.floating-whatsapp small {
  color: rgba(16, 36, 27, 0.68);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.concierge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr) auto;
  gap: clamp(26px, 5vw, 76px);
  align-items: end;
  padding: clamp(76px, 10vw, 150px) clamp(22px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(237, 27, 47, 0.98), rgba(202, 17, 34, 0.98)),
    var(--red);
  color: #fff;
}

.concierge h2 {
  max-width: 900px;
  color: #fff;
}

.concierge .section-kicker {
  color: var(--gold);
}

.concierge > p {
  color: rgba(255, 248, 236, 0.82);
}

.concierge .button-primary {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero-header,
  .hero-content {
    width: min(100% - 44px, 720px);
  }

  .hero-header {
    padding-top: 24px;
  }

  .hero-nav {
    display: none;
  }

  .hero-media img,
  .future-video-slot {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3, 15, 12, 0.92) 0%, rgba(3, 15, 12, 0.56) 42%, rgba(3, 15, 12, 0.22) 100%),
      linear-gradient(90deg, rgba(4, 16, 12, 0.64), rgba(4, 16, 12, 0.16));
  }

  .hero-content {
    padding-top: clamp(220px, 34svh, 320px);
  }

  .hero-content h1 {
    max-width: 520px;
    font-size: clamp(50px, 14vw, 88px);
  }

  .lead {
    max-width: 520px;
    font-size: 17px;
  }

  .use-rail {
    left: 22px;
    right: auto;
    bottom: 92px;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: calc(100% - 44px);
    font-size: 9px;
    letter-spacing: 0.1em;
  }

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

  .model-list,
  .model-card,
  .model-card.is-featured {
    grid-template-columns: 1fr;
  }

  .model-card img {
    height: 320px;
  }

  .editorial-bridge {
    grid-template-columns: 1fr;
  }

  .cinema-spread {
    min-height: 82svh;
  }

  .cinema-note {
    position: relative;
    inset: auto;
    margin-top: 34px;
    text-align: left;
  }

  .chapter,
  .chapter:nth-child(even) {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .chapter:nth-child(even) figure {
    order: 0;
  }

  .chapter img {
    min-height: 52svh;
  }

  .product-line {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: stretch;
    gap: 0;
    min-height: 0;
  }

  .product-line:nth-child(even) img,
  .product-line:nth-child(even) > div,
  .product-line:nth-child(even) strong,
  .product-line:nth-child(even) .line-actions {
    grid-column: auto;
  }

  .product-line img {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    transform: none;
  }

  .product-line > div,
  .product-line strong,
  .product-line nav {
    grid-column: auto;
    padding-inline: 28px;
  }

  .product-line > div {
    padding-top: 28px;
    padding-bottom: 0;
  }

  .product-line strong {
    display: block;
    padding-top: 18px;
  }

  .product-line nav {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .line-action {
    margin-right: 0;
  }

  .line-actions {
    grid-template-columns: 1fr;
    margin-right: 0;
  }

  .concierge {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
  }

  .hero-media img,
  .future-video-slot {
    object-position: 76% center;
  }

  .hero-header,
  .hero-content {
    width: min(100% - 34px, 520px);
  }

  .brand {
    min-width: auto;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 7px;
  }

  .brand span {
    font-size: 14px;
  }

  .hero-content {
    padding-top: clamp(236px, 32svh, 292px);
  }

  .kicker,
  .section-kicker,
  .model-type {
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  .hero-content h1 {
    max-width: 340px;
    margin-top: 13px;
    font-size: clamp(40px, 11.8vw, 54px);
    line-height: 0.94;
    letter-spacing: -0.058em;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  }

  .lead {
    max-width: 348px;
    margin-top: 16px;
    color: rgba(255, 248, 236, 0.86);
    font-size: 14px;
    line-height: 1.48;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  }

  .hero-actions {
    gap: 12px;
    margin-top: 22px;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
    font-size: 12px;
  }

  .use-rail {
    display: none;
  }

  .intro-strip {
    padding: 22px 18px;
  }

  .intro-strip p {
    font-size: 14px;
  }

  .section {
    padding: 62px 18px;
  }

  .section h2 {
    font-size: clamp(38px, 13vw, 62px);
  }

  .section-copy p:not(.section-kicker) {
    font-size: 15px;
  }

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

  .environment-grid article {
    min-height: 188px;
    padding: 22px;
    border-radius: 24px;
  }

  .model-card {
    min-height: 0;
    border-radius: 28px;
  }

  .model-card img {
    height: 250px;
  }

  .model-card > div {
    padding: 24px;
  }

  .model-card h3 {
    font-size: 38px;
  }

  .model-card p:not(.model-type) {
    font-size: 15px;
  }

  .model-card nav {
    display: grid;
  }

  .material-panel {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .editorial-bridge {
    padding: 50px 18px;
    gap: 14px;
  }

  .editorial-bridge span {
    padding-top: 0;
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .editorial-bridge p {
    max-width: 360px;
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1;
  }

  .cinema-spread {
    min-height: 74svh;
    padding: 62px 18px;
  }

  .cinema-spread > img {
    object-position: 50% center;
  }

  .cinema-copy h2 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .cinema-copy p:not(.section-kicker) {
    font-size: 15px;
  }

  .chapter-copy {
    padding: 42px 18px 54px;
  }

  .chapter img {
    min-height: 48svh;
  }

  .chapter-pool img {
    object-position: 57% center;
  }

  .chapter-copy h2,
  .collection-head h2,
  .concierge h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .chapter-copy p:not(.section-kicker),
  .collection-head p,
  .concierge > p {
    font-size: 15px;
  }

  .collection-editorial,
  .concierge {
    padding: 62px 18px;
  }

  .product-line {
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.075), rgba(255, 248, 236, 0.028)),
      rgba(255, 248, 236, 0.035);
  }

  .product-line img {
    aspect-ratio: 4 / 3;
    min-height: 0;
    border-radius: 0;
    filter: saturate(0.98) contrast(1.02) brightness(0.96);
  }

  .product-line h3 {
    max-width: 340px;
    margin-top: 10px;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.92;
  }

  .product-line p:not(.model-type) {
    max-width: 330px;
    font-size: 14.5px;
    line-height: 1.56;
  }

  .product-line > div,
  .product-line strong,
  .product-line nav {
    padding-inline: 24px;
  }

  .product-line > div {
    padding-top: 28px;
  }

  .product-line strong {
    padding-top: 20px;
    font-size: 18px;
  }

  .product-line nav {
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .concierge .button-primary {
    width: 100%;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    bottom: 14px;
    min-width: 0;
    place-items: center;
    text-align: center;
  }
}

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

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