@font-face {
  font-family: "Montserrat";
  src: url("public/fonts/Montserrat-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 900;
}

@font-face {
  font-family: "Questrial";
  src: url("public/fonts/Questrial-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --ink: #0c0c0b;
  --ink-soft: #131311;
  --paper: #f4f0e8;
  --paper-strong: #fffdf9;
  --gold: #c89a4b;
  --gold-light: #dfb96f;
  --gold-dark: #8e672e;
  --text: #f6f0e7;
  --muted: #bdb7ad;
  --dark-text: #151513;
  --dark-muted: #67635d;
  --line: rgba(200, 154, 75, 0.42);
  --line-light: rgba(200, 154, 75, 0.24);
  --serif: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --sans: "Questrial", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --section-y: clamp(5rem, 9vw, 9rem);
  --max: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  backdrop-filter: none;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
.display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

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

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--paper-strong);
  color: var(--dark-text);
  transform: translateY(-110%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  padding: 0.9rem var(--gutter);
  background: rgba(12, 12, 11, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: min-height 260ms ease, border-color 260ms ease, background 260ms ease;
}

.site-header.is-scrolled {
  min-height: 4.7rem;
  background: rgba(12, 12, 11, 0.96);
  border-color: var(--line-light);
}

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

.brand__logo {
  display: block;
  width: auto;
  height: 3.6rem;
  object-fit: contain;
}

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

.nav a {
  color: #e5dfd5;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold-light);
}

.nav .nav__cta {
  padding: 0.7rem 1.05rem;
  border: 1px solid var(--line);
  color: var(--gold-light);
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(26rem, 0.88fr) minmax(34rem, 1.12fr);
  align-items: start;
  max-width: var(--max);
  min-height: min(100svh, 58rem);
  margin: 0 auto;
  padding: clamp(6.2rem, 7.5vw, 8rem) var(--gutter) clamp(4rem, 6vw, 6rem);
  gap: clamp(2rem, 5vw, 5rem);
}

.hero__copy {
  padding-top: clamp(0.5rem, 2.5vh, 1.5rem);
}

.hero h1 {
  max-width: 14.5ch;
  margin-bottom: 1.75rem;
  font-size: clamp(2.8rem, 4.25vw, 4.85rem);
}

.hero h1 em {
  display: inline;
}

.hero__copy > p {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: #d5cfc6;
  font-size: clamp(1.05rem, 1.3vw, 1.32rem);
  line-height: 1.48;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.65rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button svg,
.text-link svg {
  width: 1.25rem;
  margin-left: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 220ms var(--ease);
}

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

.button:hover svg,
.text-link:hover svg {
  transform: translateX(0.25rem);
}

.button--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #11100e;
}

.button--gold:hover,
.button--gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button--outline {
  border-color: var(--gold);
  color: var(--gold-light);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.35rem;
  margin: 1.15rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.74rem;
  list-style: none;
}

.trust-line li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.28rem;
  height: 0.28rem;
  margin-left: 1.35rem;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.hero__media {
  position: relative;
  margin: 0;
  border: 1px solid var(--gold-dark);
}

.hero__media::before {
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  z-index: -1;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  content: "";
}

.hero__media img {
  width: 100%;
  height: min(69vh, 47rem);
  object-fit: cover;
}

figcaption {
  color: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.hero__media figcaption,
.benefits__image figcaption {
  position: absolute;
  right: 0.85rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.5rem;
  background: rgba(12, 12, 11, 0.78);
  color: #d8d0c4;
  backdrop-filter: blur(8px);
}

.section-dark,
.section-light {
  padding: var(--section-y) var(--gutter);
}

.section-dark {
  background: var(--ink);
  color: var(--text);
}

.section-light {
  background: var(--paper);
  color: var(--dark-text);
}

.opening {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.opening__statement {
  padding-right: 6vw;
}

.opening .display {
  margin-bottom: 0;
  font-size: clamp(3.4rem, 6vw, 6.6rem);
}

.opening__copy {
  align-self: end;
  padding-left: clamp(2rem, 5vw, 5rem);
  border-left: 1px solid var(--line);
  color: #d3ccc1;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
}

.opening__copy p:last-child {
  margin-bottom: 0;
}

.section-heading,
.paths__intro,
.benefits__content,
.showroom__copy,
.offer__summary,
.faq__heading,
.contact__statement {
  position: relative;
}

.section-number {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.section-number::after {
  display: inline-block;
  width: 3rem;
  height: 1px;
  margin: 0 0 0.24rem 1rem;
  background: currentColor;
  content: "";
}

.section-heading,
.pain__grid,
.portfolio,
.showroom,
.offer,
.faq,
.contact {
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading h2,
.paths h2,
.benefits h2,
.portfolio h2,
.showroom h2,
.offer h2,
.faq h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.pain {
  position: relative;
  overflow: hidden;
}

.pain::after {
  position: absolute;
  top: 12%;
  right: -5vw;
  width: 18vw;
  height: 18vw;
  min-width: 12rem;
  min-height: 12rem;
  border: 1px solid var(--line);
  content: "";
  transform: rotate(45deg);
}

.pain__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  margin-top: clamp(4rem, 7vw, 7rem);
}

.pain__quote {
  align-self: center;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.9vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.editorial-list,
.benefit-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.editorial-list li {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(21, 21, 19, 0.2);
  color: var(--dark-muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.editorial-list li::before {
  margin-right: 1rem;
  color: var(--gold-dark);
  content: "✓";
}

.editorial-list strong {
  color: var(--dark-text);
  font-weight: 700;
}

.paths {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  max-width: var(--max);
  margin: 0 auto;
  gap: clamp(3rem, 7vw, 7rem);
}

.paths__intro {
  align-self: end;
}

.paths__intro p {
  max-width: 28rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.paths__media {
  position: relative;
}

.paths__media img {
  width: 100%;
  height: min(45vw, 35rem);
  object-fit: cover;
}

.paths__media span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--gold-light);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.path-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(1rem, 3vw, 2rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.path-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 2.1rem 2rem 1.8rem 0;
  border-right: 1px solid var(--line-light);
}

.path-list li:nth-child(3n + 2),
.path-list li:nth-child(3n + 3) {
  padding-left: 2rem;
}

.path-list li:nth-child(3n) {
  border-right: 0;
}

.path-list li:nth-child(n + 4) {
  border-top: 1px solid var(--line-light);
}

.path-list__number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3.35rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.path-list h3 {
  margin-bottom: 0.7rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.path-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.paths__closing {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.paths__closing p {
  max-width: 47rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.1vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.benefits {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  max-width: var(--max);
  margin: 0 auto;
  gap: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid var(--line-light);
}

.benefit-list {
  margin-top: 3rem;
}

.benefits__lead {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.benefit-list li {
  display: grid;
  padding: 1rem 0 1rem 2rem;
  border-top: 1px solid var(--line-light);
}

.benefit-list li::before {
  position: absolute;
  margin-left: -2rem;
  color: var(--gold);
  content: "✓";
}

.benefit-list span {
  font-size: 0.96rem;
  font-weight: 600;
}

.benefit-list small {
  color: var(--muted);
  font-size: 0.8rem;
}

.benefits__image {
  position: relative;
  align-self: center;
  margin: 0;
}

.benefits__image::after {
  position: absolute;
  inset: -1.2rem 1.2rem 1.2rem -1.2rem;
  z-index: -1;
  border: 1px solid var(--line);
  content: "";
}

.portfolio {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(3rem, 7vw, 7rem);
}

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

.portfolio__heading p {
  max-width: 27rem;
  margin: 1.5rem 0 2rem;
  color: var(--dark-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--gold-dark);
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: minmax(22rem, auto);
  gap: 1.2rem;
}

.portfolio__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #24241f;
}

.portfolio__item--large {
  grid-row: span 2;
}

.portfolio__item img {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.portfolio__item--large img {
  object-position: 50% 35%;
}

.portfolio__item:hover img {
  transform: scale(1.025);
}

.portfolio__item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
}

.showroom {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8vw;
  border-top: 1px solid var(--line-light);
}

.showroom__copy h2 {
  max-width: 12ch;
}

.showroom__copy > p {
  max-width: 40rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.showroom__visual {
  display: grid;
  align-self: start;
  gap: 1.25rem;
}

.showroom__facade {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--gold-dark);
}

.showroom__facade img {
  width: 100%;
  height: clamp(28rem, 46vw, 42rem);
  object-fit: cover;
}

.showroom__facade figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  color: #fff;
}

.showroom address {
  margin-bottom: 2rem;
  color: #dcd5ca;
  font-style: normal;
}

.showroom__hours {
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border: 1px solid var(--line);
}

.showroom__hours > p {
  margin-bottom: 1.7rem;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.showroom__hours dl {
  margin-bottom: 1rem;
}

.showroom__hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line-light);
}

.showroom__hours dd {
  color: var(--gold-light);
}

.showroom__hours small {
  color: var(--muted);
}

.offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.offer h2 em {
  font-size: 1em;
}

.check-list {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(142, 103, 46, 0.4);
}

.check-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2rem;
  border-bottom: 1px solid rgba(142, 103, 46, 0.28);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  content: "□";
  font-size: 1.1rem;
}

.offer__summary > .button {
  margin-top: 2rem;
}

.offer__commitment {
  margin-top: 1.1rem;
  font-size: 1.1rem;
}

.objections h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

details {
  border-top: 1px solid rgba(142, 103, 46, 0.35);
}

details:last-child {
  border-bottom: 1px solid rgba(142, 103, 46, 0.35);
}

summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  cursor: pointer;
  font-size: 1.02rem;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 1.5px solid var(--gold-dark);
  border-bottom: 1.5px solid var(--gold-dark);
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 220ms ease;
}

details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

details p {
  max-width: 42rem;
  margin: -0.2rem 3rem 1.35rem 0;
  color: var(--dark-muted);
}

.faq {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: 0;
}

.faq details p {
  max-width: 48rem;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
}

.contact__statement h2 {
  max-width: 10ch;
}

.contact__statement p {
  max-width: 30rem;
  margin: 2rem 0;
  color: var(--muted);
}

.contact__phone {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: center;
  gap: 1.1rem;
  padding-left: clamp(2rem, 5vw, 5rem);
  border-left: 1px solid var(--line);
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label,
.lead-form > .form-field > label {
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field label span {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(223, 185, 111, 0.5);
  border-radius: 0;
  background: #121210;
  color: var(--text);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 2px rgba(223, 185, 111, 0.12);
}

.form-field input::placeholder {
  color: #77736d;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #a9a39a;
  font-size: 0.72rem;
  line-height: 1.45;
}

.privacy-check input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.16rem;
  accent-color: var(--gold);
}

.privacy-check button,
.footer button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.lead-form .button {
  width: 100%;
}

.form-note {
  margin: -0.25rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: 2rem var(--gutter);
  background: #080807;
  border-top: 1px solid var(--line-light);
  color: #8e8981;
  font-size: 0.72rem;
}

.brand--footer .brand__logo {
  height: 3.2rem;
}

.footer p {
  margin: 0;
  text-align: center;
}

.footer__links {
  display: flex;
  gap: 1.2rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.65rem 1rem;
  background: #1f9d58;
  color: white;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.35);
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 220ms var(--ease), background 220ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #18894b;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.privacy-dialog {
  width: min(40rem, calc(100% - 2rem));
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--gold-dark);
  background: var(--paper);
  color: var(--dark-text);
}

.privacy-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(7px);
}

.privacy-dialog h2 {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.privacy-dialog p {
  color: var(--dark-muted);
}

.privacy-dialog__close {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 2rem;
}

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

.reveal--delay {
  transition-delay: 0ms;
}

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 8rem;
  }

  .hero__copy {
    padding-top: 0;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero__media img {
    height: 33rem;
  }

  .opening,
  .benefits,
  .portfolio,
  .showroom,
  .offer,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .opening__copy,
  .lead-form {
    padding: 2rem 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .paths__media {
    grid-row: 2;
  }

  .path-list,
  .paths__closing {
    grid-column: 1;
  }

  .portfolio__heading {
    position: static;
  }

  .showroom__copy h2,
  .contact__statement h2 {
    max-width: 16ch;
  }

  .showroom__visual {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }

  .showroom__facade img {
    height: 36rem;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 1.2rem;
    --section-y: 4.8rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  .site-header {
    min-height: 4.7rem;
  }

  .brand__logo {
    height: 2.9rem;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 0.35rem;
    width: 2.6rem;
    height: 2.6rem;
    place-content: center;
    border: 1px solid var(--line-light);
    background: transparent;
    color: white;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 1.2rem;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(0.18rem) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-0.18rem) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 1.5rem;
    padding: 6rem var(--gutter);
    background: rgba(12, 12, 11, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .nav a {
    justify-self: start;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    font-family: var(--serif);
    font-size: 2rem;
  }

  .nav .nav__cta {
    justify-self: start;
    font-family: var(--sans);
    font-size: 0.78rem;
  }

  .hero {
    display: flex;
    min-height: auto;
    padding-top: 7.5rem;
    flex-direction: column;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3.05rem, 14vw, 4.2rem);
  }

  .hero .button {
    width: 100%;
  }

  .trust-line {
    display: grid;
    gap: 0.3rem;
  }

  .trust-line li::before {
    margin-right: 0.5rem;
    color: var(--gold);
    content: "✓";
  }

  .trust-line li::after {
    display: none !important;
  }

  .hero__media img {
    height: 25rem;
  }

  .opening .display,
  .section-heading h2,
  .paths h2,
  .benefits h2,
  .portfolio h2,
  .showroom h2,
  .offer h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .opening__copy {
    font-size: 1rem;
  }

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

  .pain::after {
    opacity: 0.35;
  }

  .path-list {
    grid-template-columns: 1fr;
  }

  .path-list li {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .path-list li:not(:last-child) {
    border-bottom: 1px solid var(--line-light);
  }

  .path-list li:nth-child(n + 4) {
    border-top: 0;
  }

  .path-list li:last-child {
    border-bottom: 0;
  }

  .paths__media img {
    height: 22rem;
  }

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

  .portfolio__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .portfolio__item--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .portfolio__item img {
    min-height: 18rem;
  }

  .portfolio__item:not(.portfolio__item--large) img {
    min-height: 15rem;
  }

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

  .showroom__facade img {
    height: 30rem;
  }

  .offer {
    gap: 5rem;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .form-field--wide {
    grid-column: 1;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    padding-bottom: 6rem;
    text-align: left;
  }

  .footer p {
    text-align: left;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
  }
}

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

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

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