:root {
  --black: #000000;
  --charcoal: #202020;
  --gold: #dfc59e;
  --white: #ffffff;
  --light-gray: #f6f6f4;
  --mid-gray: #8a8a8a;
  --soft-line: rgba(0, 0, 0, 0.08);
  --container: 1280px;
  --header-height: 84px;
  --transition: 0.35s ease;
  --section-space: 132px;
}

:root {
  --font-display: "Poppins", sans-serif;
  --font-body: "Montserrat", sans-serif;
}

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body), sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  width: min(100% - 80px, var(--container));
  margin: 0 auto;
}

h1, h2, h3,
.section-title,
.subpage-hero__content h1,
.moment-card h3,
.entertainment-band__content h2,
.entertainment-split__copy h2 {
  font-family: var(--font-display);
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

/* HEADER */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header.is-scrolled,
.site-header.site-header--solid {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.site-brand img {
  width: 138px;
  transition: opacity var(--transition);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.site-header.is-scrolled .site-nav a,
.site-header.site-header--solid .site-nav a {
  color: rgba(0, 0, 0, 0.75);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.header-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.site-header.is-scrolled .header-cta,
.site-header.site-header--solid .header-cta {
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--charcoal);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: background var(--transition);
}

.site-header.is-scrolled .menu-toggle span,
.site-header.site-header--solid .menu-toggle span {
  background: var(--charcoal);
}

.mobile-menu {
  display: none;
}

/* HOME / HERO */

.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}

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

.home-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.01);
  transition:
    opacity 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-hero__slide picture,
.home-hero__slide img {
  width: 100%;
  height: 100%;
}

.home-hero__slide img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.035);
  transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero__slide.is-active img {
  transform: scale(1.055);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.18) 42%, rgba(0,0,0,0.58) 100%),
    radial-gradient(circle at center, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.12) 42%, rgba(0,0,0,0.42) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 100svh;
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--header-height) 40px 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-hero__eyebrow {
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
}

.home-hero__title {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-hero__title span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(58px, 7.2vw, 118px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.055em;
  text-align: center;
  white-space: nowrap;
}

.home-hero__title-line {
  display: block;
  width: 100%;
  font-family: "Fraunces", serif;
  font-size: clamp(72px, 8vw, 132px);
  line-height: 0.88;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-align: center;
  white-space: nowrap;
}

.home-hero__title em.home-hero__title-line {
  margin-top: -8px;
  font-style: italic;
  font-weight: 500;
}

.home-hero__content p {
  max-width: 520px;
  margin: 28px auto 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  text-align: center;
}

.reveal-hero {
  opacity: 0;
  transform: translateY(22px);
  animation: heroReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-hero:nth-child(2) {
  animation-delay: 0.12s;
}

.reveal-hero:nth-child(3) {
  animation-delay: 0.22s;
}

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

.home-hero__meta {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}

.home-hero__meta span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.54);
}

.home-hero__controls {
  position: absolute;
  right: 40px;
  top: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}

.home-hero__arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  background: rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  font-size: 22px;
  line-height: 1;
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.home-hero__arrow:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.08);
  transform: scale(1.04);
}

.home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.home-hero__dots button {
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.26);
  transition: background var(--transition), width var(--transition);
}

.home-hero__dots button.is-active {
  width: 54px;
  background: rgba(255,255,255,0.86);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 66px;
  z-index: 5;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.66);
}

.hero-scroll i {
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.74), rgba(255,255,255,0));
  animation: scrollLine 1.9s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% {
    transform: scaleY(0.55);
    opacity: 0.45;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* MOBILE */

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

  .home-hero__slide img {
    object-position: center center;
  }

  .home-hero__overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.30) 42%, rgba(0,0,0,0.68) 100%);
  }

  .home-hero__content {
    min-height: 100svh;
    width: 100%;
    max-width: none;
    padding: var(--header-height) 24px 92px;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: none;
  }

  .home-hero__eyebrow {
    margin-bottom: 18px;
    font-family: var(--font-body);
    font-size: 10px;
    line-height: 1.3;
    letter-spacing: 0.22em;
    text-align: center;
  }

  .home-hero__title {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

    .home-hero__title span {
    width: 100%;
    font-size: clamp(34px, 9.2vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-align: center;
    white-space: nowrap;
  }

.home-hero__title-line {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;

  font-size: clamp(30px, 6.5vw, 35px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.home-hero__title em.home-hero__title-line {
  margin-top: 0;
  font-size: clamp(35px, 9.3vw, 40px);
  line-height: 0.94;
}

  .home-hero__content p {
    max-width: 27ch;
    margin: 22px auto 0;
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
  }

  .home-hero__controls,
  .home-hero__meta,
  .hero-scroll {
    display: none;
  }

  .home-hero__dots {
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
  }

  .home-hero__dots button {
    width: 34px;
  }

  .home-hero__dots button.is-active {
    width: 50px;
  }
}

/* MANIFESTO */

.home-manifesto {
  padding: 150px 0 138px;
  background: #f7f5f0;
  color: var(--charcoal);
}

.home-manifesto__inner {
  display: grid;
  grid-template-columns: 0.28fr 0.72fr;
  column-gap: 82px;
  row-gap: 0;
  align-items: start;
}

.home-manifesto__content {
  max-width: 980px;
}

.home-manifesto h2 {
  max-width: 900px;
  margin: 0;

  font-family: "Fraunces", serif;

  font-size: clamp(52px, 6vw, 98px);
  line-height: 0.9;
  font-weight: 400;

  letter-spacing: -0.05em;
  text-wrap: balance;

  color: #1d1d1b;
}

.home-manifesto p {
  max-width: 670px;

  margin-top: 34px;

  font-size: 18px;
  line-height: 1.9;

  color: rgba(32,32,32,0.68);
}

.home-manifesto__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-top: 40px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: var(--charcoal);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.home-manifesto__link span {
  transition: transform 0.35s ease;
}

.home-manifesto__link:hover {
  opacity: 0.72;
}

.home-manifesto__link:hover span {
  transform: translateX(7px);
}

@media (max-width: 768px) {
  .home-manifesto {
    padding: 68px 0 58px;
  }

  .home-manifesto__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .home-manifesto .section-kicker {
    margin-bottom: 46px;
  }

  .home-manifesto h2 {
    font-size: clamp(40px, 11vw, 58px);
    line-height: 0.92;
    letter-spacing: -0.045em;
  }

  .home-manifesto p {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.75;
  }

  .home-manifesto__link {
    margin-top: 28px;
    font-size: 11px;
  }
}

/* PHOTO COMPOSITION */

.home-composition {
  padding: 0 0 150px;
  background: #f7f5f0;
  color: var(--charcoal);
}

.home-composition__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  grid-template-rows: auto auto;
  gap: 34px 80px;
  align-items: end;
}

.home-composition__image {
  overflow: hidden;
  background: var(--black);
}

.home-composition__image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-composition__image:hover img {
  transform: scale(1.06);
}

.home-composition__image--large {
  grid-row: 1 / span 2;
  height: min(78vh, 760px);
}

.home-composition__copy {
  padding: 28px 0 22px;
}

.home-composition__copy h2 {
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.home-composition__copy p {
  max-width: 52ch;
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(32,32,32,0.66);
}

.home-composition__image--small {
  height: 330px;
  width: 78%;
  margin-left: auto;
}

/* NO WORK */

.home-no-work {
  padding: 148px 0;
  background: var(--black);
  color: var(--white);
}

.home-no-work__inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 96px;
  align-items: start;
}

.home-no-work .section-kicker {
  color: rgba(223,197,158,0.88);
}

.home-no-work h2 {
  max-width: 13ch;
  font-family: "Fraunces", serif;
  font-size: clamp(54px, 5.8vw, 92px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.07em;
}

.home-no-work__items {
  border-top: 1px solid rgba(255,255,255,0.14);
}

.home-no-work__items article {
  display: grid;
  grid-template-columns: 72px 0.8fr 1.2fr;
  gap: 28px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.home-no-work__items span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(223,197,158,0.82);
}

.home-no-work__items h3 {
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.home-no-work__items p {
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.66);
}

/* MOBILE */

@media (max-width: 768px) {
  .home-no-work {
    padding: 72px 0 58px;
  }

  .home-no-work__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .home-no-work h2 {
    max-width: 100%;
    font-size: clamp(46px, 13vw, 56px);
    line-height: 0.92;
    letter-spacing: -0.075em;
  }

  .home-no-work__items article {
    display: block;
    padding: 28px 0 30px;
  }

  .home-no-work__items span {
    display: block;
    margin-bottom: 58px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .home-no-work__items h3 {
    margin-bottom: 16px;
    font-size: 27px;
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .home-no-work__items p {
    max-width: 31ch;
    font-size: 14px;
    line-height: 1.65;
  }
}

/* DIFFERENTIALS */

.home-differentials {
  padding: 0;
  background: #f7f5f0;
  color: var(--charcoal);
}

.home-differentials__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(0,0,0,0.09);
}

.home-differentials__item {
  min-height: 320px;
  padding: 42px 30px;
  border-right: 1px solid rgba(0,0,0,0.09);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background var(--transition);
}

.home-differentials__item:hover {
  background: rgba(223,197,158,0.13);
}

.home-differentials__item span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(0,0,0,0.34);
}

.home-differentials__item h3 {
  margin-top: auto;
  font-family: "Fraunces", sans-serif;
  font-size: clamp(28px, 2.7vw, 44px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.home-differentials__item p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.78;
  color: rgba(32,32,32,0.64);
}

@media (max-width: 768px) {
  .home-differentials {
    padding: 34px 0 42px;
    background: #f7f5f0;
    overflow: hidden;
  }

  .home-differentials__inner {
    width: 100%;
    max-width: none;
    padding: 0 22px;
    display: flex;
    gap: 14px;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    border-left: 0;
  }

  .home-differentials__item {
    flex: 0 0 calc(100vw - 44px);
    min-height: 280px;
    padding: 34px 28px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.58);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    text-align: center;
    scroll-snap-align: center;
  }

  .home-differentials__item:nth-child(even) {
    background: rgba(223,197,158,0.16);
  }

  .home-differentials__item span {
    position: static;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: rgba(0,0,0,0.36);
  }

  .home-differentials__item h3 {
    margin: 0;
    font-size: 42px;
    line-height: 0.92;
    letter-spacing: -0.065em;
  }

  .home-differentials__item p {
    margin: 0;
    max-width: 25ch;
    font-size: 14px;
    line-height: 1.6;
  }

  .home-differentials__mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 22px 0;
  }

  .home-differentials__mobile-nav button {
    display: none;
  }

  .diff-progress {
    width: 132px;
    height: 1px;
    background: rgba(0,0,0,0.14);
    overflow: hidden;
  }

  .diff-progress span {
    display: block;
    width: 25%;
    height: 100%;
    background: var(--charcoal);
    transition: transform 0.45s ease;
  }
}

/* VISUAL BAND */

.visual-band {
  position: relative;
  width: 100%;
  min-height: 76vh;
  overflow: hidden;
  background: var(--black);
}

.visual-band picture {
  display: block;
  width: 100%;
  height: 76vh;
  min-height: 520px;
}

.visual-band img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-band:hover img {
  transform: scale(1.045);
}

.visual-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.54)),
    linear-gradient(90deg, rgba(0,0,0,0.20), rgba(0,0,0,0.08), rgba(0,0,0,0.24));
}

.visual-band__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 40px;
}

.visual-band__content span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(223,197,158,0.88);
}

.visual-band__content h2 {
  max-width: 13ch;
  font-family: "Fraunces", sans-serif;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .visual-band {
    position: relative;
    height: 78vh;
    min-height: 540px;
    background: var(--black);
    overflow: hidden;
  }

  .visual-band picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .visual-band img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: center center;
  }

  .visual-band__content {
    justify-content: center;
    padding: 0 24px;
  }

  .visual-band__content h2 {
    max-width: 12ch;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.95;
  }
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn--primary:hover {
  background: #e7d1af;
  transform: translateY(-1px);
}

.btn--secondary-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(0,0,0,0.14);
}

.btn--secondary-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--secondary-light {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border-color: rgba(255,255,255,0.26);
}

.btn--secondary-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* SECTION */

.section {
  padding: var(--section-space) 0;
}

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

.section--gray {
  background: #f7f5f0;
  color: var(--charcoal);
}

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

.section-head {
  margin-bottom: 58px;
}

.section-title {
  max-width: 12ch;
  font-family: "Fraunces", sans-serif;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.055em;
}

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

.section-intro {
  margin-top: 18px;
  max-width: 58ch;
  color: rgba(32,32,32,0.72);
  line-height: 1.85;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.46);
}

.section-kicker--dark {
  color: rgba(0,0,0,0.46);
}

.cta-section .section-kicker {
  color: rgba(223,197,158,0.82);
}

/* EXPLORE */

.explore-section {
  background: #f7f5f0;
}

.explore-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 88px;
  align-items: start;
}

.explore-media {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  overflow: hidden;
  background: var(--black);
}

.explore-media img {
  height: 720px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.explore-media:hover img {
  transform: scale(1.06);
}

.explore-head {
  max-width: 760px;
  margin-bottom: 52px;
}

.explore-links {
  border-top: 1px solid rgba(0,0,0,0.09);
}

.explore-link {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  color: var(--charcoal);
  transition:
    padding 0.4s ease,
    border-color 0.4s ease;
}

.explore-link:hover {
  padding-left: 16px;
  border-bottom-color: rgba(223,197,158,0.8);
}

.explore-link__number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(0,0,0,0.34);
}

.explore-link h3 {
  font-family: "Fraunces", sans-serif;
  font-size: clamp(28px, 2.5vw, 44px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.055em;
  margin-bottom: 10px;
}

.explore-link p {
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(32,32,32,0.66);
}

.explore-link__arrow {
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.35s ease;
}

.explore-link:hover .explore-link__arrow {
  transform: translateX(8px);
}

/* FINANCING */

.home-financing {
  padding: 118px 0;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.home-financing .section-kicker {
  color: rgba(223,197,158,0.82);
}

.home-financing__inner {
  display: grid;
  grid-template-columns: 0.22fr 0.9fr 0.88fr;
  gap: 72px;
  align-items: start;
}

.home-financing__content h2 {
  max-width: 10ch;
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(48px, 5.6vw, 86px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.home-financing__content p {
  max-width: 54ch;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.66);
}

.home-financing__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 18px 26px;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.04);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.home-financing__cta::after {
  content: "↗";
  font-size: 13px;
  transition: transform 0.35s ease;
}

.home-financing__cta:hover {
  background: rgba(223,197,158,0.12);
  border-color: rgba(223,197,158,0.38);
  transform: translateY(-2px);
}

.home-financing__cta:hover::after {
  transform: translate(3px, -3px);
}

.home-financing__details {
  border-top: 1px solid rgba(255,255,255,0.16);
}

.home-financing__details article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.home-financing__details span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(223,197,158,0.78);
}

.home-financing__details h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.home-financing__details p {
  grid-column: 2;
  max-width: 42ch;
  margin: -8px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

/* MOBILE */

@media (max-width: 768px) {
  .home-financing {
    padding: 76px 0;
  }

  .home-financing__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-financing__content h2 {
    max-width: 9ch;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.9;
  }

  .home-financing__content p {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.75;
  }

  .home-financing__cta {
    width: 100%;
    justify-content: center;
    margin-top: 28px;
    padding: 16px 18px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .home-financing__details article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .home-financing__details p {
    grid-column: auto;
    margin: 0;
  }
}

/* SOCIAL */

.home-social {
  background: #f7f5f0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.home-social__inner {
  min-height: 180px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 72px;
}

.home-social h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(38px, 3.8vw, 62px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.055em;
  color: var(--charcoal);
}

.home-social__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(0,0,0,0.09);
}

.home-social__links a {
  min-height: 180px;
  padding: 34px 30px;
  border-right: 1px solid rgba(0,0,0,0.09);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--charcoal);
  background: rgba(255,255,255,0.28);
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.home-social__links a:hover {
  background: rgba(223,197,158,0.14);
}

.home-social__links span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-social__links svg {
  width: 22px;
  height: 22px;
  stroke: rgba(32,32,32,0.72);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s ease;
}

.home-social__links a:hover svg {
  transform: translate(3px, -3px);
}

/* MOBILE */

@media (max-width: 768px) {
  .home-social__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .home-social h2 {
    text-align: center;
    font-size: clamp(40px, 12vw, 56px);
  }

  .home-social__links {
    grid-template-columns: 1fr;
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,0.09);
  }

  .home-social__links a {
    min-height: 74px;
    padding: 22px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.09);
  }
}

/* CTA */

.cta-section {
  padding: 142px 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.66), rgba(0,0,0,0.72)),
    url("img/cta-bg.webp") center center / cover no-repeat;
}

.cta-section__inner {
  max-width: 900px;
  text-align: center;
}

.cta-section__inner .section-title {
  max-width: 11ch;
  margin: 0 auto;
}

.cta-section p {
  max-width: 620px;
  margin: 24px auto 34px;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
}



/* RESPONSIVE HOME */

@media (max-width: 1200px) {
  .home-manifesto__inner,
  .home-no-work__inner {
    gap: 56px;
  }

  .home-composition__grid {
    gap: 34px 54px;
  }
}

@media (max-width: 920px) {
  :root {
    --section-space: 104px;
  }

  .home-manifesto__inner,
  .home-no-work__inner,
  .explore-layout {
    grid-template-columns: 1fr;
  }

  .home-manifesto p {
    grid-column: 1;
  }

  .home-composition__grid {
    grid-template-columns: 1fr;
  }

  .home-composition__image--large {
    grid-row: auto;
    height: 620px;
  }

  .home-composition__image--small {
    width: 100%;
    height: 380px;
  }

  .home-differentials__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-no-work__items article {
    grid-template-columns: 56px 1fr;
  }

  .home-no-work__items p {
    grid-column: 2;
  }

  .explore-media {
    position: relative;
    top: auto;
  }

  .explore-media img {
    height: 520px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 76px;
    --section-space: 84px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .home-hero__content {
    align-items: center;
    text-align: center;
    padding-bottom: 118px;
  }

  .home-hero__eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .home-hero__content h1 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(44px, 11vw, 58px);
    line-height: 0.9;
    letter-spacing: -0.06em;
  }

  .home-hero__content p {
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.65;
  }

  .home-hero__controls {
    display: none;
  }

  .home-hero__dots {
    left: 16px;
    bottom: 32px;
    transform: none;
  }

  .home-hero__dots button {
    width: 26px;
  }

  .home-hero__dots button.is-active {
    width: 42px;
  }

  .home-hero__meta {
    display: none;
  }

  .hero-scroll {
    right: 16px;
    left: auto;
    bottom: 28px;
    transform: none;
  }

  .hero-scroll span {
    display: none;
  }

  .hero-scroll i {
    height: 38px;
  }

  .home-manifesto,
  .home-no-work,
  .home-guarantee {
    padding: 88px 0;
  }

  .home-composition {
    padding-bottom: 88px;
  }

  .home-manifesto h2,
  .home-no-work h2,
  .home-composition__copy h2,
  .home-guarantee h2,
  .section-title {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.98;
  }

  .home-manifesto p,
  .home-composition__copy p,
  .home-guarantee p,
  .section-intro {
    font-size: 15px;
    line-height: 1.75;
  }

  .home-composition__image--large {
    height: 430px;
  }

  .home-composition__image--small {
    height: 280px;
  }

  .home-no-work__items article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .home-no-work__items p {
    grid-column: 1;
  }

  .home-differentials__inner {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .home-differentials__item {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.09);
    padding: 32px 0;
  }

  .visual-band,
  .visual-band img {
    height: 62vh;
    min-height: 460px;
  }

  .visual-band__content {
    padding: 24px;
  }

  .visual-band__content h2 {
    max-width: 11ch;
    font-size: clamp(34px, 10vw, 48px);
  }

  .explore-link {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 28px 0;
  }

  .explore-link__number {
    grid-column: 1 / -1;
  }

  .explore-link h3 {
    font-size: 30px;
  }

  .explore-link p {
    font-size: 15px;
  }

  .explore-link:hover {
    padding-left: 0;
  }

  .cta-section {
    padding: 96px 0;
  }

  .btn {
    width: 100%;
  }
}


/* FOOTER */

.site-footer {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 80px 0 28px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 64px;
}

.site-footer__brand img {
  width: 128px;
  margin-bottom: 24px;
}

.site-footer__brand p {
  max-width: 38ch;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
}

.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__contact span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__nav a,
.site-footer__contact a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
  color: var(--gold);
}

.site-footer__contact span {
  color: var(--gold);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.42);
  font-size: 12px;
}

.site-footer__credits {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.42);
  font-size: 12px;
}

.site-footer__credits a {
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
}

.site-footer__credits a:hover {
  color: var(--gold);
}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 300;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.18),
    0 0 0 0 rgba(37,211,102,0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: whatsappPulse 2.8s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: #ffffff;
}

@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 18px 40px rgba(0,0,0,0.18),
      0 0 0 0 rgba(37,211,102,0.35);
  }

  70% {
    box-shadow:
      0 18px 40px rgba(0,0,0,0.18),
      0 0 0 18px rgba(37,211,102,0);
  }

  100% {
    box-shadow:
      0 18px 40px rgba(0,0,0,0.18),
      0 0 0 0 rgba(37,211,102,0);
  }
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 10px;
    letter-spacing: 0.09em;
  }

  .intro-editorial__inner {
    gap: 56px;
  }
}

@media (max-width: 1040px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 920px) {
  :root {
    --section-space: 104px;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    display: flex;
    flex-direction: column;
    padding: 18px 24px 24px;
    gap: 16px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .mobile-menu a {
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .intro-editorial__inner,
  .explore-layout,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .intro-editorial__title,
  .intro-editorial__text {
    max-width: 100%;
  }

  .explore-media {
    position: relative;
    top: auto;
  }

  .explore-media img {
    height: 520px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 76px;
    --section-space: 84px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-brand img {
    width: 110px;
  }

  .home-hero {
    min-height: 92vh;
  }

  .home-hero__controls {
    inset: auto 16px 18px auto;
  }

  .home-hero__arrow {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .home-hero__dots {
    bottom: 22px;
    gap: 8px;
  }

  .home-hero__dots button {
    width: 24px;
  }

  .intro-editorial {
    padding: 84px 0 72px;
  }

  .intro-editorial__title,
  .section-title {
    font-size: clamp(30px, 8vw, 42px);
  }

  .intro-editorial__text,
  .section-intro {
    font-size: 15px;
    line-height: 1.75;
  }

  .intro-highlight__top {
    min-height: 54px;
    padding: 0 16px;
  }

  .intro-highlight.is-open .intro-highlight__content {
    padding: 0 16px 18px 48px;
  }

  .intro-editorial__actions {
    gap: 12px;
  }

  .intro-editorial__actions .btn,
  .btn {
    width: 100%;
  }


  .visual-band__content {
    padding: 24px;
  }

  .visual-band__content span {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .visual-band__content h2 {
    max-width: 15ch;
    font-size: clamp(30px, 8vw, 44px);
    line-height: 1;
  }

  .explore-link {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 28px 0;
  }

  .explore-link__number {
    grid-column: 1 / -1;
  }

  .explore-link h3 {
    font-size: 30px;
  }

  .explore-link p {
    font-size: 15px;
  }

  .explore-link:hover {
    padding-left: 0;
  }

  .cta-section {
    padding: 92px 0;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .site-footer__credits {
    flex-wrap: wrap;
  }
}

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

  .reveal,
  .home-hero__slide img,
  .site-header,
  .whatsapp-float,
  .explore-media img,
  .explore-link,
  .intro-highlight,
  .visual-band img {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* SUBPAGE HERO */

.subpage-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.subpage-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.subpage-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.74)),
    linear-gradient(90deg, rgba(0,0,0,0.54), rgba(0,0,0,0.12));
}

.subpage-hero__content {
  position: relative;
  z-index: 2;
  padding: 180px 0 92px;
  color: var(--white);
}

.subpage-hero__content .section-kicker {
  color: rgba(223,197,158,0.9);
}

.subpage-hero__content h1 {
  max-width: 11ch;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.subpage-hero__content p {
  max-width: 56ch;
  margin-top: 24px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-size: 18px;
}


/* ENTRETENIMIENTO PAGE */

.entertainment-intro__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 88px;
  align-items: start;
}

.entertainment-intro__text p {
  max-width: 62ch;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.9;
  color: rgba(32,32,32,0.72);
}

.entertainment-intro__text p + p {
  margin-top: 22px;
}

/* MOMENTOS */

.entertainment-moments {
  padding-top: 118px;
}

.entertainment-moments .section-head {
  max-width: 980px;
  margin-bottom: 74px;
}

.entertainment-moments .section-title {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.moment-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.moment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(223,197,158,0.5);
  box-shadow: 0 22px 48px rgba(0,0,0,0.08);
}

.moment-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: transform 0.9s ease;
}

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

.moment-card div {
  min-height: 210px;
  padding: 30px;
}

.moment-card span {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(0,0,0,0.36);
}

.moment-card h3 {
  max-width: 11ch;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.moment-card p {
  max-width: 36ch;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(32,32,32,0.7);
}

/* BAND */

.entertainment-band {
  background: #f7f5f0;
  color: var(--charcoal);
}

.entertainment-band img {
  width: 100%;
  height: 62vh;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.entertainment-band__overlay {
  display: none;
}

.entertainment-band__content {
  max-width: var(--container);
  width: min(100% - 80px, var(--container));
  margin: 0 auto;
  padding: 58px 0 96px;
  color: var(--charcoal);
  text-align: left;
}

.entertainment-band__content span {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.42);
}

.entertainment-band__content h2 {
  max-width: 15ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 500;
  color: var(--charcoal);
}

/* BAND MOBILE */

@media (max-width: 640px) {
  .entertainment-band img {
    height: 320px;
    min-height: 0;
  }

  .entertainment-band__content {
    width: min(100% - 32px, var(--container));
    padding: 34px 0 68px;
    text-align: left;
  }

  .entertainment-band__content span {
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .entertainment-band__content h2 {
    max-width: 12ch;
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.02;
  }
}

/* BAND MOBILE */

@media (max-width: 640px) {
  .entertainment-band {
    min-height: auto;
  }

  .entertainment-band img {
    height: 460px;
    min-height: 0;
    object-position: center;
    transform: none;
  }

  .entertainment-band__content {
    width: 100%;
    left: 0;
    transform: none;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    text-align: center;
  }

  .entertainment-band__content span {
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .entertainment-band__content h2 {
    max-width: 12ch;
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-align: center;
  }
}

/* SPLIT */

.entertainment-split__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 88px;
  align-items: center;
}

.entertainment-split__image {
  overflow: hidden;
  background: var(--black);
}

.entertainment-split__image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 1s ease;
}

.entertainment-split__image:hover img {
  transform: scale(1.045);
}

.entertainment-split__copy .section-title {
  max-width: 11ch;
  text-wrap: balance;
}

.entertainment-split__copy p {
  margin: 24px 0 34px;
  max-width: 54ch;
  font-family: var(--font-body);
  color: rgba(32,32,32,0.72);
  line-height: 1.85;
}

/* TABLET */

@media (max-width: 920px) {

  .entertainment-intro__inner,
  .entertainment-split__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .entertainment-band__content h2 {
    max-width: 12ch;
    font-size: clamp(38px, 8vw, 56px);
  }

  .entertainment-split__image img {
    height: 460px;
  }
}

/* MOBILE */

@media (max-width: 640px) {

  .entertainment-moments {
    padding-top: 74px;
    padding-bottom: 70px;
  }

  .entertainment-moments .section-head {
    margin-bottom: 34px;
  }

  .entertainment-moments .section-kicker {
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .entertainment-moments .section-title,
  .entertainment-title {
    max-width: 8.5ch;
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 0.96;
    letter-spacing: -0.05em;
    text-wrap: balance;
  }

  .moments-grid {
    gap: 20px;
  }

  .moment-card {
    border-color: rgba(0,0,0,0.05);
  }

  .moment-card img {
    height: 265px;
  }

  .moment-card div {
    min-height: auto;
    padding: 20px 18px 22px;
    text-align: left;
  }

  .moment-card span {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .moment-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1;
  }

  .moment-card p {
    max-width: 30ch;
    margin: 0;
    font-size: 14px;
    line-height: 1.68;
  }

  /* BAND MOBILE FIX */

  .entertainment-band {
    position: relative;
    min-height: unset;
    height: auto;
    background: #0d0d0d;
  }

  .entertainment-band img {
    width: 100%;
    height: 460px;
    min-height: unset;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .entertainment-band__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.18) 0%,
        rgba(0,0,0,0.52) 100%
      );
    z-index: 1;
  }

  .entertainment-band__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    text-align: center;
    color: var(--white);
  }

  .entertainment-band__content span {
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: 0.22em;
    color: rgba(223,197,158,0.92);
  }

  .entertainment-band__content h2 {
    max-width: 8.5ch;
    margin: 0 auto;
    font-size: clamp(32px, 8.8vw, 40px);
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: var(--white);
    text-wrap: balance;
  }

  .entertainment-split__copy {
    text-align: center;
  }

  .entertainment-split__copy .section-title {
    max-width: 9ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .entertainment-split__copy p {
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.75;
  }

  .entertainment-split__image img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .entertainment-title span,
  .entertainment-band__title span {
    display: block;
  }

  .entertainment-moments .section-title,
  .entertainment-title {
    max-width: 100%;
    font-size: clamp(32px, 8.6vw, 38px);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .entertainment-band__content h2,
  .entertainment-band__title {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }
}

/* DESIGN PAGE */

.design-showcase {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.design-showcase__image {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.design-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1.4s ease;
}

.design-showcase:hover .design-showcase__image img {
  transform: scale(1.06);
}

.design-showcase__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.16) 0%,
      rgba(0,0,0,0.04) 45%,
      rgba(0,0,0,0.48) 100%
    );
}

.design-showcase__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 140px 8vw 96px;
  text-align: left;
}

.design-showcase__content span {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(223,197,158,0.92);
}

.design-showcase__content h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 600;
  color: var(--white);
  text-wrap: balance;
}

.design-showcase__content p {
  max-width: 43ch;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.74);
}

/* DESIGN FEATURE LIST */

.design-features {
  position: relative;
}

.design-feature-list {
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.09);
}

.design-feature-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 40px;
  padding: 46px 0;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  text-align: left;
}

.design-feature-item > span {
  position: relative;
  z-index: 2;
  padding-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(0,0,0,0.34);
}

.design-feature-item h3 {
  max-width: 14ch;
  margin-bottom: 14px;
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: var(--charcoal);
  text-wrap: balance;
}

.design-feature-item p {
  max-width: 66ch;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(32,32,32,0.68);
}

/* DESIGN FEATURE SCROLL LIGHT */

.design-feature-list--illuminated::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0,0,0,0.08);
}

.design-feature-list--illuminated::after {
  content: "";
  position: absolute;
  left: 44px;
  top: 0;
  width: 1px;
  height: var(--light-progress, 0%);
  background: linear-gradient(
    180deg,
    rgba(223,197,158,0),
    rgba(223,197,158,1),
    rgba(223,197,158,0.25)
  );
  box-shadow:
    0 0 18px rgba(223,197,158,0.65),
    0 0 38px rgba(223,197,158,0.28);
  transition: height 0.12s linear;
}

.design-feature-list--illuminated .design-feature-item > span::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #dedbd4;
  transform: translateX(-49px);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.design-feature-list--illuminated .design-feature-item.is-lit > span::before {
  background: var(--gold);
  box-shadow:
    0 0 16px rgba(223,197,158,0.9),
    0 0 34px rgba(223,197,158,0.45);
  transform: translateX(-49px) scale(1.22);
}

.design-feature-list--illuminated .design-feature-item h3,
.design-feature-list--illuminated .design-feature-item p {
  transition:
    color 0.35s ease,
    opacity 0.35s ease;
}

.design-feature-list--illuminated .design-feature-item.is-lit h3 {
  color: #000;
}

.design-feature-list--illuminated .design-feature-item.is-lit p {
  color: rgba(32,32,32,0.82);
}

/* DESIGN AUTOMATION */

.design-automation {
  background: var(--black);
  color: var(--white);
  padding: 132px 0;
  overflow: hidden;
}

.design-automation__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 88px;
  align-items: center;
}

.design-automation__copy {
  text-align: left;
}

.design-automation__copy .section-kicker {
  color: rgba(223,197,158,0.9);
}

.design-automation__copy h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 600;
  text-wrap: balance;
}

.design-automation__copy p {
  max-width: 46ch;
  margin-top: 26px;
  color: rgba(255,255,255,0.74);
  line-height: 1.9;
}

.design-automation__visual img {
  height: 620px;
  object-fit: cover;
  object-position: center;
}

/* DESIGN RESPONSIVE */

@media (max-width: 920px) {
  .design-showcase {
    grid-template-columns: 1fr;
  }

  .design-showcase__image {
    min-height: 58vh;
  }

  .design-showcase__content {
    min-height: auto;
    padding: 84px 40px 96px;
  }

  .design-automation__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .design-automation__visual img {
    height: 520px;
  }
}

@media (max-width: 640px) {
  .design-showcase {
    min-height: 100svh;
    display: block;
  }

  .design-showcase__image {
    position: absolute;
    inset: 0;
    min-height: 100%;
    z-index: 0;
  }

  .design-showcase__image img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.03);
  }

  .design-showcase__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.22) 36%,
        rgba(0,0,0,0.76) 70%,
        rgba(0,0,0,0.94) 100%
      );
  }

  .design-showcase__content {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 26px 124px;
    text-align: left;
  }

  .design-showcase__content span {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.26em;
  }

  .design-showcase__content h1 {
    max-width: 9ch;
    font-size: clamp(34px, 9.4vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .design-showcase__content p {
    max-width: 28ch;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.68;
  }

  .design-features {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .design-feature-list {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
  }

  .design-feature-list--illuminated::before {
    left: 5px;
  }

  .design-feature-list--illuminated::after {
    left: 5px;
  }

  .design-feature-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 34px 0 34px 28px;
    text-align: left;
  }

  .design-feature-item > span {
    padding-top: 0;
  }

  .design-feature-list--illuminated .design-feature-item > span::before {
    left: 0;
    top: 4px;
    transform: translateX(-28px);
  }

  .design-feature-list--illuminated .design-feature-item.is-lit > span::before {
    transform: translateX(-28px) scale(1.22);
  }

  .design-feature-item h3 {
    max-width: 12ch;
    margin-left: 0;
    margin-right: 0;
    font-size: 32px;
  }

  .design-feature-item p {
    max-width: 31ch;
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
    line-height: 1.75;
  }

  .design-automation {
    padding: 86px 0;
  }

  .design-automation__copy {
    text-align: left;
  }

  .design-automation__copy h2 {
    max-width: 9ch;
    margin-left: 0;
    font-size: clamp(34px, 9vw, 44px);
  }

  .design-automation__copy p {
    max-width: 31ch;
    margin-left: 0;
    font-size: 15px;
    line-height: 1.75;
  }

  .design-automation__visual img {
    height: 360px;
  }
}

/* PROCESS / INSTALLATION PAGE */

.process-page {
  padding: 176px 0 120px;
  background: var(--white);
  color: var(--charcoal);
}

.process-page__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
  align-items: center;
}

.process-page__copy h1 {
  max-width: 11ch;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 600;
  text-wrap: balance;
}

.process-page__copy p {
  max-width: 50ch;
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(32,32,32,0.72);
}

.process-page__visual {
  overflow: hidden;
  background: var(--black);
}

.process-page__visual img {
  height: 560px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1.2s ease;
}

.process-page__visual:hover img {
  transform: scale(1.06);
}

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

.process-step {
  padding: 34px 30px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  min-height: 280px;
}

.process-step span {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(0,0,0,0.34);
}

.process-step h2 {
  max-width: 10ch;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin-bottom: 18px;
}

.process-step p {
  color: rgba(32,32,32,0.7);
  line-height: 1.8;
}

@media (max-width: 920px) {
  .process-page__inner,
  .process-steps__grid {
    grid-template-columns: 1fr;
  }

  .process-page {
    padding: 140px 0 92px;
  }

  .process-page__visual img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .process-page {
    padding: 124px 0 76px;
  }

  .process-page__inner {
    gap: 42px;
  }

  .process-page__copy {
    text-align: center;
  }

  .process-page__copy h1 {
    max-width: 10ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(34px, 9vw, 44px);
  }

  .process-page__copy p {
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.75;
  }

  .process-page__visual img {
    height: 300px;
  }

  .process-step {
    min-height: auto;
    padding: 28px 24px;
    text-align: center;
  }

  .process-step h2 {
    max-width: 11ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
  }
}

/* PROCESS INTERACTIVE */

.process-interactive {
  background: var(--light-gray);
}

.process-interactive__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.process-interactive__media {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  overflow: hidden;
  background: var(--black);
}

.process-interactive__media img {
  height: 620px;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 0.35s ease,
    transform 0.6s ease;
}

.process-interactive__media img.is-changing {
  opacity: 0;
  transform: scale(1.03);
}

.process-interactive__steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.09);
}

.process-option {
  width: 100%;
  text-align: left;
  padding: 34px 0;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  color: var(--charcoal);
  transition: padding 0.35s ease;
}

.process-option:hover,
.process-option.is-active {
  padding-left: 18px;
}

.process-option span {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(0,0,0,0.34);
}

.process-option strong {
  display: block;
  max-width: 11ch;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: var(--charcoal);
}

.process-option p {
  max-width: 42ch;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(32,32,32,0.66);
}

.process-option.is-active span {
  color: var(--gold);
}

.process-option.is-active strong {
  color: #000;
}

@media (max-width: 920px) {
  .process-interactive__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .process-interactive__media {
    position: relative;
    top: auto;
  }

  .process-interactive__media img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .process-interactive__media img {
    height: 300px;
  }

  .process-option {
    padding: 28px 0;
  }

  .process-option:hover,
  .process-option.is-active {
    padding-left: 0;
  }

  .process-option strong {
    max-width: 10ch;
    font-size: 30px;
  }

  .process-option p {
    max-width: 31ch;
    font-size: 15px;
  }
}

/* PROCESS MOBILE IMAGES */

.process-option__mobile-image {
  display: none;
}

@media (max-width: 640px) {
  .process-interactive__media {
    display: none;
  }

  .process-interactive__inner {
    display: block;
  }

  .process-interactive__steps {
    border-top: 0;
  }

  .process-option {
    display: block;
    padding: 0 0 56px;
    border-bottom: 0;
  }

  .process-option + .process-option {
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }

  .process-option__mobile-image {
    display: block;
    width: 100%;
    height: 260px;
    margin-top: 26px;
    object-fit: cover;
    object-position: center;
  }

  .process-option strong {
    max-width: 9ch;
  }

  .process-option p {
    margin-top: 16px;
  }
}

/* PERSONALIZACION PAGE */

.custom-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.custom-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.custom-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.72)),
    linear-gradient(90deg, rgba(0,0,0,0.62), rgba(0,0,0,0.08));
}

.custom-hero__content {
  position: relative;
  z-index: 2;
  padding: 180px 0 96px;
}

.custom-hero__content span {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(223,197,158,0.92);
}

.custom-hero__content h1 {
  max-width: 15ch;
  font-size: clamp(44px, 5.6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 600;
  text-wrap: balance;
}

.custom-hero__content p {
  max-width: 44ch;
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

/* MATERIALS */

.custom-materials__inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 72px;
  align-items: center;
}

.custom-materials__copy h2 {
  max-width: 10ch;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 600;
  text-wrap: balance;
}

.custom-materials__copy p {
  max-width: 46ch;
  margin-top: 24px;
  color: rgba(32,32,32,0.72);
  line-height: 1.85;
}

.custom-materials__image {
  overflow: hidden;
  background: var(--black);
}

.custom-materials__image img {
  height: 560px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1.2s ease;
}

.custom-materials__image:hover img {
  transform: scale(1.06);
}

/* OPTIONS */

.custom-options {
  background: #f7f5f2;
  color: var(--charcoal);
  padding: 132px 0;
}

.custom-options__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.custom-option {
  min-height: 440px;
  padding: 34px 28px 28px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.055);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.custom-option:hover {
  transform: translateY(-6px);
  border-color: rgba(223,197,158,0.65);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.custom-option__icon {
  width: 32px;
  height: 32px;
  color: var(--charcoal);
}

.custom-option__icon svg {
  width: 100%;
  height: 100%;
}

.custom-option h3 {
  max-width: 12ch;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 600;
  text-wrap: balance;
}

.custom-option p {
  color: rgba(32,32,32,0.68);
  line-height: 1.75;
}

.custom-option__image {
  margin-top: auto;
  overflow: hidden;
  background: var(--black);
}

.custom-option__image img {
  height: 180px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.custom-option:hover .custom-option__image img {
  transform: scale(1.05);
}

@media (max-width: 1200px) {
  .custom-options__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .custom-options {
    padding: 84px 0;
  }

  .custom-options__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .custom-option {
    min-height: auto;
    padding: 30px 24px 24px;
  }

  .custom-option h3 {
    max-width: 11ch;
    font-size: 28px;
  }

  .custom-option__image img {
    height: 220px;
  }
}

/* CLOSING */

.custom-closing {
  background: var(--white);
  color: var(--charcoal);
  padding: 132px 0;
}

.custom-closing__inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 72px;
  align-items: center;
}

.custom-closing__copy .section-kicker {
  color: rgba(0,0,0,0.46);
}

.custom-closing__copy h2 {
  max-width: 11ch;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 600;
  text-wrap: balance;
}

.custom-closing__copy p {
  max-width: 42ch;
  margin: 24px 0 34px;
  color: rgba(32,32,32,0.72);
  line-height: 1.85;
}

.custom-closing__image {
  overflow: hidden;
  background: var(--black);
}

.custom-closing__image img {
  height: 560px;
  object-fit: cover;
  object-position: center;
}

/* PERSONALIZACION RESPONSIVE */

@media (max-width: 1200px) {
  .custom-options__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .custom-materials__inner,
  .custom-closing__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .custom-materials__image img,
  .custom-closing__image img {
    height: 440px;
  }
}

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

  .custom-hero__content {
    padding: 150px 0 86px;
  }

  .custom-hero__content h1 {
    max-width: 11ch;
    font-size: clamp(34px, 9.2vw, 44px);
    line-height: 1;
  }

  .custom-hero__content p {
    max-width: 29ch;
    font-size: 15px;
    line-height: 1.72;
  }

  .custom-materials__copy,
  .custom-closing__copy {
    text-align: left;
  }

  .custom-materials__copy h2,
  .custom-closing__copy h2 {
    max-width: 10ch;
    font-size: clamp(32px, 8.6vw, 42px);
  }

  .custom-materials__copy p,
  .custom-closing__copy p {
    max-width: 31ch;
    font-size: 15px;
    line-height: 1.75;
  }

  .custom-materials__image img,
  .custom-closing__image img {
    height: 310px;
  }

  .custom-options__grid {
    grid-template-columns: 1fr;
  }

  .custom-option {
    min-height: auto;
    padding: 30px 24px;
  }

  .custom-option h3 {
    max-width: 12ch;
    font-size: 27px;
  }

  .custom-closing {
    padding: 86px 0;
  }
}

.custom-option {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.custom-option__image {
  overflow: hidden;
  margin-top: auto;
  background: var(--black);
}

.custom-option__image img {
  height: 180px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.custom-option:hover .custom-option__image img {
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .custom-option__image img {
    height: 220px;
  }
}

/* =========================================================
   POR QUÉ VIVAR
========================================================= */

.site-nav a.is-active::after {
  width: 100%;
}

/* HERO */

.why-hero-exact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 82vh;
  padding-top: var(--header-height);
  background: var(--black);
  color: var(--white);
}

.why-hero-exact__image {
  order: 2;
  overflow: hidden;
  background: var(--black);
}

.why-hero-exact__image img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center;
}

.why-hero-exact__content {
  order: 1;
  padding: clamp(70px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--black);
}

.why-hero-exact__content > span {
  display: inline-block;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(223,197,158,0.92);
}


.why-hero-exact__content h1 span {
  display: inline;
  margin: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
  color: inherit;
}

.why-hero-exact__content p {
  max-width: 42ch;
  margin: 28px 0 36px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.why-hero-exact__content .btn {
  width: fit-content;
}

/* DIFERENCIALES */

.why-diff-exact {
  background: var(--white);
  color: var(--charcoal);
  padding: 82px 0 72px;
}

.why-diff-exact__inner {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 72px;
  align-items: start;
}

.why-diff-exact__title span,
.why-advice-exact__copy span,
.why-finance-exact span,
.why-closing-exact__content span {
  display: inline-block;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.why-diff-exact__title h2 {
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.why-diff-exact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.why-diff-exact__grid article {
  min-height: 210px;
  padding: 30px 28px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.9);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.why-diff-exact__grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(223,197,158,0.7);
  box-shadow: 0 20px 42px rgba(0,0,0,0.06);
}

.why-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
  color: var(--gold);
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-diff-exact__grid strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-diff-exact__grid p {
  max-width: 24ch;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(32,32,32,0.72);
}

/* ASESORAMIENTO */

.why-advice-exact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  color: var(--charcoal);
}

.why-advice-exact__image {
  overflow: hidden;
  background: var(--black);
}

.why-advice-exact__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.why-advice-exact__copy {
  padding: 82px 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-advice-exact__copy h2 {
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin-bottom: 28px;
}

.why-advice-exact__copy h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin-top: 24px;
  background: var(--gold);
}

.why-advice-exact__copy p {
  max-width: 42ch;
  margin-bottom: 30px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(32,32,32,0.68);
}

.why-advice-exact__copy .btn {
  width: fit-content;
}

/* CIERRE */

.why-closing-exact {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.why-closing-exact > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
}

.why-closing-exact__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.28) 0%,
      rgba(0,0,0,0.52) 48%,
      rgba(0,0,0,0.78) 100%
    );
}

.why-closing-exact__content {
  position: relative;
  z-index: 2;
  min-height: 760px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 48px 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.why-closing-exact__content h2 {
  max-width: 10ch;
  margin: 0 auto 34px;
  font-family: var(--font-display);
  font-size: clamp(54px, 6.4vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}

.why-closing-exact__content .btn {
  width: fit-content;
  margin: 0 auto;
}

/* TABLET */

@media (max-width: 1100px) {
  .why-diff-exact__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .why-diff-exact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */

@media (max-width: 640px) {
  .why-hero-exact {
    position: relative;
    min-height: 100svh;
    padding-top: 0;
    display: block;
    overflow: hidden;
    background: var(--black);
  }

  .why-hero-exact__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }

  .why-hero-exact__image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .why-hero-exact::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.10) 0%,
        rgba(0,0,0,0.28) 34%,
        rgba(0,0,0,0.82) 100%
      );
  }

  .why-hero-exact__content {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    padding: 132px 24px 74px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    background: transparent;
    color: var(--white);
    text-align: left;
  }

  .why-hero-exact__content > span {
    margin-bottom: 16px;
    font-size: 9px;
    letter-spacing: 0.22em;
    color: rgba(223,197,158,0.92);
  }

  .why-hero-title,
  .why-hero-exact__content h1 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(38px, 10vw, 46px);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .why-hero-title span,
  .why-hero-exact__content h1 span {
    display: block;
    white-space: nowrap;
  }

  .why-hero-exact__content p {
    max-width: 30ch;
    margin: 22px 0 30px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
  }

  .why-hero-exact__content .btn {
    width: 100%;
  }


  .why-diff-exact__inner {
    text-align: center;
  }

  .why-diff-exact__title h2 {
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(32px, 8vw, 40px);
    line-height: 1.03;
  }

  .why-diff-exact__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-diff-exact__grid article {
    min-height: auto;
    padding: 34px 26px;
    text-align: center;
  }

  .why-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .why-diff-exact__grid p {
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
  }

  .why-advice-exact {
    grid-template-columns: 1fr;
  }

  .why-advice-exact__image img {
    height: 320px;
  }

  .why-advice-exact__copy {
    padding: 72px 26px;
    align-items: center;
    text-align: center;
  }

  .why-advice-exact__copy h2 {
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(30px, 7.4vw, 36px);
    line-height: 1.03;
  }

  .why-advice-exact__copy h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .why-advice-exact__copy p {
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
  }

  .why-advice-exact__copy .btn {
    width: 100%;
  }

  .why-closing-exact {
    min-height: 560px;
  }

  .why-closing-exact__content {
    min-height: 560px;
    padding: 82px 24px;
    justify-content: flex-end;
  }

  .why-closing-exact__content h2 {
    max-width: 12ch;
    font-size: clamp(32px, 8vw, 40px);
    line-height: 1.03;
  }

  .why-closing-exact__content .btn {
    width: 100%;
  }
}

/* =========================================================
   CONTACTO PREMIUM
========================================================= */

.site-header--contact {
  background: #050505 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: none !important;
}

.site-header--contact .site-nav a {
  color: rgba(255,255,255,0.78) !important;
}

.site-header--contact .site-nav a.is-active {
  color: var(--gold) !important;
}

.site-header--contact .header-cta {
  border-color: rgba(255,255,255,0.26) !important;
  color: #ffffff !important;
}

.site-header--contact .menu-toggle span {
  background: #ffffff !important;
}

.contact-premium {
  min-height: 100vh;
  padding: 178px 0 128px;
  background: #f7f5f2;
  color: var(--charcoal);
}

.contact-premium__inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: center;
}

.contact-premium__copy span {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-premium__copy h1 {
  max-width: 10ch;
  font-size: clamp(48px, 5.8vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 600;
  text-wrap: balance;
}

.contact-premium__copy p {
  max-width: 42ch;
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(20,20,20,0.62);
}

.contact-premium__info {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.contact-premium__info a,
.contact-premium__info span {
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.72);
  transition: color var(--transition);
}

.contact-premium__info a:hover {
  color: var(--gold);
}

.contact-premium__form-wrap {
  position: relative;
  background: #ffffff;
  color: var(--charcoal);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 34px 90px rgba(0,0,0,0.12);
  padding: 58px;
  overflow: hidden;
}

.contact-premium__form-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(223,197,158,0.32);
  transform: translate(12px, 12px);
  opacity: 0.45;
}

.contact-premium__form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 42px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(32,32,32,0.48);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  background: transparent;
  padding: 14px 0;
  outline: none;
  font-family: inherit;
  font-size: 16px;
  color: var(--charcoal);
  transition:
    border-color 0.35s ease,
    padding-left 0.35s ease;
}

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

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--gold);
  padding-left: 8px;
}

.contact-premium__form .btn {
  grid-column: 1 / -1;
  width: fit-content;
  margin: 12px auto 0;
  min-width: 220px;
}

@media (max-width: 920px) {
  .contact-premium {
    padding: 136px 0 88px;
  }

  .contact-premium__inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .contact-premium__copy {
    text-align: center;
  }

  .contact-premium__copy h1 {
    max-width: 11ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(38px, 9vw, 48px);
    line-height: 1;
  }

  .contact-premium__copy p {
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.75;
  }

  .contact-premium__info {
    justify-items: center;
  }

  .contact-premium__form-wrap {
    padding: 34px 24px;
  }

  .contact-premium__form-wrap::before {
    display: none;
  }

  .contact-premium__form {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-premium__form .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .home-hero__content {
    align-items: center !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .home-hero__eyebrow,
  .home-hero__content h1,
  .home-hero__content p {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .home-hero__content h1 {
    max-width: 9.5ch !important;
  }

  .home-hero__content p {
    max-width: 28ch !important;
  }

  .home-hero__dots {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 768px) {
  .home-manifesto {
    padding: 54px 0 46px !important;
  }

  .home-manifesto__inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .home-manifesto .section-kicker {
    margin: 0 0 56px !important;
  }

  .home-manifesto h2 {
    margin: 0 !important;
  }

  .home-manifesto p {
    grid-column: auto !important;
    margin-top: 22px !important;
  }
}

@media (max-width: 640px) {
  .visual-band {
    height: 42vh !important;
    min-height: 320px !important;
    background: var(--black);
  }

  .visual-band picture {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

  .visual-band img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .visual-band__content {
    padding: 20px !important;
  }

.visual-band__content h2 {
  max-width: 15ch;
  font-size: clamp(28px, 8vw, 38px) !important;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

  .visual-band__content span {
    margin-bottom: 10px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }
}

.visual-band__content {
  justify-content: center !important;
  padding: 24px !important;
}

/* FOOTER SOCIAL */

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.site-footer__social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.site-footer__social a:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
}

.site-footer__social svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.76);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke 0.35s ease;
}

.site-footer__social a:hover svg {
  stroke: rgba(255,255,255,1);
}

/* MOBILE */

@media (max-width: 768px) {

  .site-footer__social {
    justify-content: center;
    margin-top: 24px;
  }

}

@media (max-width: 768px) {
  .site-footer__social {
    justify-content: flex-start;
  }
}

.success-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
}

.success-popup__card {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #f7f5f0;
  color: var(--charcoal);
  box-shadow: 0 34px 100px rgba(0,0,0,0.35);
}

.success-popup__card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.success-popup__card > div {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.success-popup__card span {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.success-popup__card h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.success-popup__card p {
  margin-bottom: 30px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(32,32,32,0.68);
}

.success-popup__card .btn {
  width: fit-content;
}

@media (max-width: 640px) {
  .success-popup__card {
    grid-template-columns: 1fr;
  }

  .success-popup__card img {
    min-height: 220px;
    height: 220px;
  }

  .success-popup__card > div {
    padding: 34px 26px;
    text-align: center;
  }

  .success-popup__card h2 {
    font-size: 34px;
  }

  .success-popup__card .btn {
    width: 100%;
  }
}