:root {
  --black: #000;
  --charcoal: #0a0a0a;
  --charcoal-2: #111;
  --white: #fff;
  --silver: #c0c0c0;
  --muted: #a8a8a8;
  --dim: #6f6f6f;
  --line: rgba(255, 255, 255, 0.14);
  --glass: rgba(0, 0, 0, 0.48);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 12% 28%, rgba(255, 255, 255, 0.09), transparent 18%),
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.055), transparent 20%),
    radial-gradient(circle at 54% 82%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.025), transparent 42%, rgba(255, 255, 255, 0.018));
  opacity: 0.46;
  filter: blur(22px);
  transform: scale(1.08);
  animation: ambient-drift 24s ease-in-out infinite alternate;
}

body::after {
  inset: -18%;
  background:
    repeating-radial-gradient(ellipse at 20% 35%, transparent 0 58px, rgba(255, 255, 255, 0.026) 59px 60px, transparent 61px 116px),
    repeating-radial-gradient(ellipse at 78% 64%, transparent 0 74px, rgba(255, 255, 255, 0.018) 75px 76px, transparent 77px 142px);
  opacity: 0.34;
  filter: blur(0.4px);
  transform: rotate(-7deg) translate3d(0, 0, 0);
  animation: ambient-wave 34s linear infinite;
}

main {
  position: relative;
  z-index: 1;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent);
}

.brand-mark,
.script-logo,
.footer-logo {
  font-family: "Italiana", Georgia, serif;
  line-height: 1;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: clamp(116px, 12vw, 164px);
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.16);
}

.site-header > .brand-mark {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 320ms ease, transform 320ms ease;
}

body.header-brand-visible .site-header > .brand-mark,
body.nav-open .site-header > .brand-mark {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.header-brand-hidden .site-header > .brand-mark {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.brand-mark.small {
  width: auto;
  justify-content: center;
  color: var(--silver);
}

.logo-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-img-header {
  width: 100%;
}

.logo-img-hero {
  width: clamp(280px, 38vw, 620px);
  filter: drop-shadow(0 0 32px rgba(255, 255, 255, 0.18));
}

.logo-img-contact {
  width: clamp(220px, 32vw, 460px);
  margin: 0 auto;
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.14));
}

.logo-img-footer {
  width: clamp(120px, 16vw, 190px);
}

.brand-h,
.logo-h {
  position: relative;
  display: inline-block;
}

.crown {
  position: absolute;
  left: -1px;
  top: -14px;
  width: 22px;
  height: 14px;
  background:
    radial-gradient(circle at 2px 2px, var(--white) 0 2px, transparent 2.4px),
    radial-gradient(circle at 7px 0, var(--white) 0 2px, transparent 2.4px),
    radial-gradient(circle at 12px -1px, var(--white) 0 2px, transparent 2.4px),
    radial-gradient(circle at 17px 0, var(--white) 0 2px, transparent 2.4px),
    radial-gradient(circle at 22px 2px, var(--white) 0 2px, transparent 2.4px);
}

.crown::after {
  content: "";
  position: absolute;
  inset: 4px 0 0;
  clip-path: polygon(0 100%, 9% 28%, 25% 100%, 38% 20%, 50% 100%, 62% 20%, 75% 100%, 91% 28%, 100% 100%);
  background: var(--white);
  border-bottom: 2px solid var(--white);
}

.site-nav {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 220ms ease, text-shadow 220ms ease;
}

.site-nav a:hover {
  color: var(--white);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.28);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
}

.strip-collage {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  scrollbar-width: none;
}

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

.hero-strip {
  position: relative;
  flex: 1 1 12.5%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
  animation: strip-enter 1100ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
  transition: flex-basis 800ms cubic-bezier(0.19, 1, 0.22, 1), filter 700ms ease;
}

.hero-strip:nth-child(2) {
  animation-delay: 90ms;
}

.hero-strip:nth-child(3) {
  animation-delay: 180ms;
}

.hero-strip:nth-child(4) {
  animation-delay: 270ms;
}

.hero-strip:nth-child(5) {
  animation-delay: 360ms;
}

.hero-strip:nth-child(6) {
  animation-delay: 450ms;
}

.hero-strip:nth-child(7) {
  animation-delay: 540ms;
}

.hero-strip:nth-child(8) {
  animation-delay: 630ms;
}

.hero-strip img {
  height: 112%;
  filter: saturate(1.05) contrast(1.08) brightness(0.78);
  object-position: var(--strip-position, center center);
  transform: translateY(var(--strip-offset, 0px)) scale(1.05);
  transition: transform 900ms ease, filter 800ms ease;
}

.hero-strip:nth-child(1) {
  --strip-position: 45% center;
}

.hero-strip:nth-child(2) {
  --strip-position: 52% center;
}

.hero-strip:nth-child(3) {
  --strip-position: 50% center;
}

.hero-strip:nth-child(4) {
  --strip-position: 50% center;
}

.hero-strip:nth-child(5) {
  --strip-position: 50% center;
}

.hero-strip:nth-child(6) {
  --strip-position: 62% center;
}

.hero-strip:nth-child(7) {
  --strip-position: 50% center;
}

.hero-strip:nth-child(8) {
  --strip-position: 54% center;
}

.strip-collage:hover .hero-strip {
  flex-basis: 11%;
  filter: none;
}

.strip-collage .hero-strip:hover {
  flex-basis: 20%;
}

.strip-collage .hero-strip:hover img {
  filter: saturate(1.12) contrast(1.12) brightness(0.94);
  transform: translateY(var(--strip-offset, 0px)) scale(1.12);
}

.hero-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.42);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 42%, rgba(0, 0, 0, 0.55));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.38) 56%, rgba(0, 0, 0, 0.66)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.hero-lockup {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(820px, calc(100% - 36px));
  padding: clamp(32px, 7vw, 72px);
  text-align: center;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.16) 68%, transparent);
  pointer-events: none;
}

.kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--silver);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.script-logo {
  display: inline-block;
  font-size: clamp(74px, 12vw, 160px);
  text-shadow: 0 0 36px rgba(255, 255, 255, 0.17);
}

.crown-logo {
  left: 5px;
  top: -24px;
  width: 38px;
  height: 24px;
}

.tagline {
  margin: 18px 0 0;
  color: var(--silver);
  font-size: clamp(11px, 1.5vw, 14px);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  width: 1px;
  height: 58px;
  background: linear-gradient(var(--white), transparent);
  animation: cue 1.8s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(86px, 10vw, 150px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.018) 28px 29px, transparent 29px 100%),
    linear-gradient(180deg, transparent 0 28px, rgba(255, 255, 255, 0.014) 28px 29px, transparent 29px 100%);
  background-size: 170px 170px;
  opacity: 0.4;
  animation: section-depth 28s linear infinite;
}

.split-section,
.essence-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.section-copy,
.section-heading {
  position: relative;
  z-index: 2;
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(34px, 6vw, 76px);
  text-align: center;
}

.section-heading p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#experiencias .section-heading > .eyebrow {
  display: none;
}

h1,
h2 {
  margin: 0 0 26px;
  font-size: clamp(38px, 7vw, 96px);
  line-height: 0.92;
  font-weight: 900;
  text-wrap: balance;
}

p {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.85;
}

.image-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 320px;
  border: 1px solid var(--line);
  background: #070707;
  overflow: hidden;
}

.image-frame img {
  position: absolute;
  inset: 0;
  filter: saturate(0.82) contrast(1.08) brightness(0.86);
  transition: filter 700ms ease, transform 700ms ease;
}

.about-image img {
  object-position: center center;
  transform: scale(1.06);
}

.image-frame:hover img {
  filter: saturate(1) contrast(1.12) brightness(0.94);
  transform: scale(1.04);
}

.about-image:hover img {
  transform: scale(1.08);
}

.founder-card {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.founder-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--silver);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.founder-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  text-transform: uppercase;
}

.founder-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
  transform: scale(0.96);
}

.image-frame.tall {
  min-height: clamp(440px, 54vw, 680px);
}

.experiences-section {
  position: relative;
  padding: 0;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.experiences-section #particle-canvas,
.experiences-section .flow-field,
.experiences-section .section-heading {
  display: none;
}

#particle-canvas,
.flow-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#particle-canvas {
  z-index: 0;
}

.flow-field {
  z-index: 0;
  opacity: 0.44;
  background:
    repeating-radial-gradient(ellipse at 20% 35%, transparent 0 48px, rgba(255, 255, 255, 0.04) 49px 50px, transparent 51px 96px),
    repeating-radial-gradient(ellipse at 82% 58%, transparent 0 60px, rgba(255, 255, 255, 0.032) 61px 62px, transparent 63px 112px);
  filter: blur(0.3px);
  animation: flow-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.carousel {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
  min-height: min(70vh, 680px);
  display: grid;
  place-items: center;
}

.carousel-stage {
  position: relative;
  width: min(760px, 82vw);
  height: clamp(520px, 70vh, 680px);
}

.experience-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--glass);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: scale(0.94) translateY(20px);
  pointer-events: none;
  transition: opacity 650ms ease, transform 650ms ease;
}

.experience-card.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.experience-card img,
.experience-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
  filter: saturate(0.86) contrast(1.1) brightness(0.76);
}

.card-copy {
  padding: clamp(22px, 4vw, 38px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.86));
}

.card-copy span {
  color: var(--silver);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.card-copy h3 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
}

.card-copy p {
  max-width: 560px;
  margin: 0 0 22px;
}

.card-copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-copy a::after {
  content: "→";
  font-size: 18px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  font-size: 22px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background 220ms ease, border-color 220ms ease;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.carousel-arrow.prev {
  left: 0;
}

.carousel-arrow.next {
  right: 0;
}

.carousel-dots {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--white);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
}

.essence-section,
.seasons-section {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
}

.essence-grid,
.season-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.essence-grid .image-frame {
  min-height: clamp(210px, 24vw, 330px);
}

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

.season-tile {
  min-height: 148px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    #050505;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.season-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    #080808;
}

.season-tile span {
  color: var(--silver);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.season-tile strong {
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 0.98;
  text-transform: uppercase;
}

.brands-section {
  text-align: center;
  background: linear-gradient(180deg, #000, #080808 48%, #000);
}

.brand-showcase {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.brand-lead {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.brand-lead span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--silver);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-cloud {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-cloud strong {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(13px, 1.45vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
  transition: color 240ms ease, background 240ms ease, text-shadow 240ms ease;
}

.brand-cloud strong:nth-child(-n + 8) {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.8vw, 24px);
}

.brand-cloud strong:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.24);
}

.brand-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.brand-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}

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

.brand-track span {
  display: grid;
  place-items: center;
  min-width: 210px;
  height: 96px;
  padding: 0 26px;
  color: #777;
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 900;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, text-shadow 220ms ease;
}

.brand-track span:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.24);
}

.contact-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-images {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(46px, 7vw, 88px);
}

.contact-images .image-frame {
  min-height: clamp(210px, 28vw, 360px);
}

.contact-content {
  position: relative;
  z-index: 2;
  scroll-margin-top: 92px;
}

.contact-content h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.footer-logo {
  font-size: clamp(46px, 8vw, 98px);
}

address {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-top: 34px;
  font-style: normal;
}

address a {
  color: var(--silver);
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color 220ms ease;
}

address a:hover {
  color: var(--white);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.instagram-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.instagram-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.32);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.whatsapp-float::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset -4px -4px 0 rgba(255, 255, 255, 0.2);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 128px) 24px 38px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.site-footer h2 {
  margin: -0.18em 0 28px;
  font-size: clamp(86px, 22vw, 310px);
  line-height: 0.72;
  font-weight: 900;
  letter-spacing: 0;
}

.site-footer p {
  margin-top: 28px;
  font-size: 13px;
  color: #777;
}

.site-footer .footer-kicker {
  margin: 0 0 18px;
  color: var(--silver);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms ease, transform 900ms ease;
}

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

@keyframes strip-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambient-drift {
  from {
    transform: scale(1.08) translate3d(-1.6%, -1%, 0);
  }
  to {
    transform: scale(1.13) translate3d(1.8%, 1.2%, 0);
  }
}

@keyframes ambient-wave {
  from {
    transform: rotate(-7deg) translate3d(-2%, 0, 0);
  }
  to {
    transform: rotate(-7deg) translate3d(2%, -2%, 0);
  }
}

@keyframes section-depth {
  to {
    background-position: 170px 90px, -90px 170px;
  }
}

@keyframes flow-drift {
  from {
    transform: scale(1) translate3d(-1%, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(1%, -1%, 0);
  }
}

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

@keyframes cue {
  50% {
    transform: translateY(10px);
    opacity: 0.45;
  }
}

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

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 32;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 31;
    display: grid;
    place-content: center;
    gap: 28px;
    background: rgba(0, 0, 0, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .strip-collage {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .hero-strip {
    flex: 0 0 34vw;
    min-width: 34vw;
    scroll-snap-align: start;
  }

  .strip-collage:hover .hero-strip,
  .strip-collage .hero-strip:hover {
    flex-basis: 34vw;
  }

  .split-section,
  .essence-section,
  .seasons-section {
    grid-template-columns: 1fr;
  }

  .carousel-stage {
    width: min(640px, 100%);
  }

  .carousel-arrow {
    top: auto;
    bottom: -70px;
    transform: none;
  }

  .carousel-arrow.prev {
    left: calc(50% - 70px);
  }

  .carousel-arrow.next {
    right: calc(50% - 70px);
  }

  .carousel-dots {
    margin-top: 92px;
  }

  .contact-images {
    grid-template-columns: 1fr;
  }

  .brand-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 18px;
  }

  .brand-mark {
    width: 116px;
  }

  .hero-strip {
    flex-basis: 62vw;
    min-width: 62vw;
  }

  .strip-collage:hover .hero-strip,
  .strip-collage .hero-strip:hover {
    flex-basis: 62vw;
  }

  .hero-lockup {
    padding: 28px 18px;
  }

  .logo-img-hero {
    width: min(82vw, 360px);
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .image-frame.tall,
  .image-frame {
    min-height: 300px;
  }

  .carousel-stage {
    height: 610px;
  }

  .experience-card {
    grid-template-rows: 0.92fr auto;
  }

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

  .season-grid,
  .brand-cloud {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 13px;
  }

  .whatsapp-float span {
    display: none;
  }

  address {
    display: grid;
  }
}

/* Latest layout revisions */
.split-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.about-image.image-frame.tall {
  min-height: clamp(560px, 62vw, 820px);
}

.about-image img {
  object-position: center center;
  transform: scale(1.01);
}

.about-image:hover img {
  transform: scale(1.03);
}

.production-feature {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  margin: 0;
  transform: none;
  overflow: hidden;
  border: 0;
  background: #000;
  box-shadow: none;
  backdrop-filter: none;
}

.production-feature video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.04) brightness(1.04);
}

.production-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.04) 44%, rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.32) 76%);
  pointer-events: none;
}

.production-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  gap: clamp(18px, 2.6vw, 28px);
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(16px, 5vw, 64px);
  text-align: center;
  pointer-events: none;
}

.production-overlay h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.production-overlay h2 span {
  display: block;
}

.production-overlay p {
  width: min(640px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.75;
}

.experiences-entry {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  margin: clamp(44px, 7vw, 86px) auto 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
  backdrop-filter: blur(14px);
}

.experiences-entry p {
  margin: 0 auto 24px;
  max-width: 620px;
  font-size: clamp(15px, 1.3vw, 18px);
}

.experiences-entry a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.experiences-entry a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.experience-links {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.experience-link-card {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.experience-link-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.065);
}

.experience-link-card span {
  color: var(--silver);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.experience-link-card strong {
  display: block;
  margin-top: 38px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 0.95;
  text-transform: uppercase;
}

.experience-link-card p {
  margin: 18px 0 28px;
  font-size: 15px;
  line-height: 1.65;
}

.experience-link-card em {
  color: var(--white);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience-link-card em::after {
  content: " ->";
}

.brand-showcase {
  gap: 0;
}

.brand-lead {
  display: none;
}

.brand-cloud {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-logo {
  min-height: 118px;
  font-size: clamp(14px, 1.55vw, 22px);
}

.brand-cloud .brand-logo {
  min-height: 118px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.brand-logo.has-logo {
  margin: 0;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo.has-logo img {
  width: auto;
  height: auto;
  max-width: min(78%, 210px);
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.85) contrast(0.9);
  opacity: 0.72;
  transition: filter 240ms ease, opacity 240ms ease, transform 240ms ease;
}

.brand-logo.has-logo img[src*="peugeot"] {
  filter: invert(1) brightness(1.9) contrast(1.08);
  opacity: 0.86;
}

.brand-logo.has-logo:hover {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26), 0 18px 50px rgba(255, 255, 255, 0.06);
}

.brand-logo.has-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
}

.brand-logo.text-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.netflix {
  font-family: Impact, "Arial Black", sans-serif;
}

.coca,
.corona,
.chandon,
.holiday {
  font-family: Georgia, serif;
  font-style: italic;
  text-transform: none;
}

.peugeot,
.byd,
.chery,
.redbull {
  letter-spacing: 0.14em;
}

.mcd {
  text-transform: none;
}

.whatsapp-float::before {
  content: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.site-footer h2 {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
  max-width: 820px;
  font-family: Italiana, Georgia, serif;
  font-size: clamp(38px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: none;
}

.footer-brand-logo {
  display: block;
  width: clamp(150px, 16vw, 250px);
  height: auto;
  margin: 0 auto 30px;
  opacity: 0.94;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.1));
}

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

  .experience-links,
  .brand-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .production-feature,
  .production-feature video {
    min-height: 100svh;
  }

  .experience-links,
  .brand-cloud {
    grid-template-columns: 1fr;
  }
}

/* About photo needs a wide editorial frame so the full group portrait is visible. */
#quienes-somos.split-section {
  width: min(1380px, calc(100% - 48px));
  grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.18fr);
  gap: clamp(44px, 5vw, 86px);
  align-items: start;
}

#quienes-somos .about-image.image-frame.tall {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

#quienes-somos .about-image img {
  object-fit: cover;
  object-position: center center;
  transform: none;
  filter: saturate(0.92) contrast(1.05) brightness(0.9);
}

#quienes-somos .about-image:hover img {
  transform: scale(1.01);
}

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

#quienes-somos .section-copy h1 {
  font-size: clamp(48px, 5.4vw, 68px);
  line-height: 0.94;
}

#quienes-somos .section-copy > p:not(.eyebrow) {
  max-width: 620px;
}

.founder-section {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
}

.founder-photo-slot {
  position: relative;
  width: min(100%, 290px);
  min-height: 0;
  aspect-ratio: 0.82 / 1;
  margin: 0;
  padding: 12px;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 18px 54px rgba(0, 0, 0, 0.34);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #070707;
  overflow: hidden;
}

.founder-photo-slot img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  object-fit: cover;
  object-position: 50% 18%;
}

.founder-photo-slot::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.founder-card-large {
  margin-top: 0;
}

@media (max-width: 820px) {
  #quienes-somos.split-section {
    grid-template-columns: 1fr;
  }

  #quienes-somos .about-image.image-frame.tall {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .founder-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  #quienes-somos.split-section {
    width: min(100% - 28px, 1380px);
  }

  #quienes-somos .about-image.image-frame.tall {
    aspect-ratio: 16 / 10;
  }

  .founder-section {
    width: min(100% - 28px, 1040px);
  }

  .founder-photo-slot {
    width: min(100%, 280px);
    justify-self: center;
  }

  .founder-photo-slot img {
    object-position: 50% 18%;
  }

  .founder-photo-slot::after {
    inset: 12px;
  }
}

/* Final mobile tuning */
@media (max-width: 760px) {
  .site-header {
    padding: 18px 20px;
  }

  .brand-mark {
    width: clamp(112px, 28vw, 150px);
  }

  .site-nav {
    gap: 22px;
    padding: 84px 26px 34px;
  }

  .site-nav a {
    font-size: 13px;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: 100svh;
  }

  .strip-collage {
    overflow: hidden;
  }

  .hero-strip {
    flex: 1 1 0;
    min-width: 0;
  }

  .strip-collage:hover .hero-strip,
  .strip-collage .hero-strip:hover {
    flex-basis: auto;
  }

  .hero-lockup {
    width: min(100%, calc(100% - 28px));
    padding: 24px 12px;
  }

  .logo-img-hero {
    width: min(72vw, 320px);
  }

  .kicker,
  .eyebrow,
  .footer-kicker {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .tagline {
    margin-top: 12px;
    font-size: 9px;
    letter-spacing: 0.18em;
    line-height: 1.55;
  }

  .section {
    padding: 72px 18px;
  }

  .section-copy h1,
  .section-heading h2 {
    font-size: clamp(42px, 15vw, 72px);
    line-height: 0.92;
  }

  .section-copy p,
  .section-heading p,
  .founder-card p {
    font-size: 14px;
    line-height: 1.75;
  }

  #quienes-somos.split-section {
    width: calc(100% - 28px);
    gap: 28px;
  }

  .founder-card {
    padding: 22px 18px;
  }

  .founder-card h3 {
    font-size: clamp(22px, 8vw, 34px);
  }

  #quienes-somos .about-image.image-frame.tall {
    aspect-ratio: 4 / 3;
  }

  .experiences-section {
    height: 100svh;
    min-height: 100svh;
  }

  .production-feature,
  .production-feature video {
    height: 100%;
    min-height: 100%;
  }

  .production-feature video {
    object-position: center center;
  }

  .production-feature::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.54)),
      radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.42) 78%);
  }

  .production-overlay {
    width: min(100% - 28px, 520px);
    gap: 14px;
    padding-top: 0;
  }

  .production-overlay h2 {
    font-size: clamp(29px, 8.8vw, 46px);
    line-height: 0.95;
  }

  .production-overlay p {
    max-width: 34ch;
    font-size: 13px;
    line-height: 1.65;
  }

  .brands-section .section-heading h2 {
    font-size: clamp(38px, 12.5vw, 66px);
  }

  .brand-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-cloud .brand-logo {
    min-height: 92px;
  }

  .brand-logo.has-logo {
    padding: 20px 16px;
  }

  .brand-logo.has-logo img {
    max-width: min(82%, 150px);
    max-height: 48px;
  }

  .contact-images {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 42px;
  }

  .contact-images .image-frame {
    min-height: 220px;
  }

  .contact-content h2 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .logo-img-contact {
    width: min(76vw, 330px);
  }

  address {
    display: grid;
    justify-items: center;
    gap: 14px;
    margin-top: 28px;
  }

  address a {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding: 72px 18px 34px;
  }

  .site-footer h2 {
    width: min(100%, 360px);
    font-size: clamp(32px, 10vw, 48px);
    line-height: 1.08;
    margin-bottom: 26px;
  }

  .footer-brand-logo {
    width: clamp(140px, 44vw, 210px);
    margin-bottom: 24px;
  }

  .site-footer p {
    font-size: 11px;
    line-height: 1.6;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 16px 16px;
  }

  .brand-mark {
    width: 118px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-strip {
    min-width: 12.5%;
  }

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

  .section-copy h1,
  .section-heading h2 {
    font-size: clamp(38px, 14vw, 58px);
  }

  .production-overlay h2 {
    font-size: clamp(26px, 8.3vw, 36px);
  }

  .production-overlay p {
    font-size: 12px;
  }

  .brand-cloud {
    grid-template-columns: 1fr;
  }

  .brand-cloud .brand-logo {
    min-height: 82px;
  }
}

/* Mobile polish for launch */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  .gallery-header {
    min-height: 72px;
  }

  .section {
    width: min(100%, 100vw);
    overflow: hidden;
  }

  #quienes-somos.split-section,
  .founder-section {
    width: calc(100% - 28px);
    padding-left: 0;
    padding-right: 0;
  }

  .founder-section {
    gap: 24px;
    justify-items: center;
  }

  .founder-photo-slot {
    width: min(76vw, 270px);
  }

  .founder-card {
    width: 100%;
    box-sizing: border-box;
  }

  .founder-card h3,
  .section-copy h1,
  .section-heading h2,
  .production-overlay h2,
  .site-footer h2 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .carousel {
    min-height: auto;
  }

  .carousel-stage {
    width: 100%;
    height: min(600px, 72svh);
  }

  .experience-card {
    grid-template-rows: minmax(220px, 48%) minmax(0, 52%);
  }

  .card-copy {
    display: grid;
    align-content: center;
    min-height: 0;
    padding: 22px 18px;
  }

  .card-copy h3 {
    font-size: clamp(28px, 11vw, 42px);
  }

  .card-copy p {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.55;
  }

  .contact-content,
  .site-footer {
    width: min(100%, calc(100vw - 28px));
    margin-left: auto;
    margin-right: auto;
  }

  .brands-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .brands-section .section-heading h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1;
  }

  .brand-showcase {
    width: calc(100vw - 28px);
    overflow: hidden;
  }

  .brand-cloud {
    grid-template-columns: none;
    grid-template-rows: repeat(2, 76px);
    grid-auto-flow: column;
    grid-auto-columns: minmax(126px, 38vw);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .brand-cloud .brand-logo {
    min-height: 76px;
    scroll-snap-align: start;
  }

  .brand-logo.has-logo {
    padding: 16px 14px;
  }

  .brand-logo.has-logo img {
    max-width: min(82%, 132px);
    max-height: 42px;
  }
}
