:root {
  --ink: #000000;
  --ink-soft: #111111;
  --paper: #f3efe8;
  --paper-deep: #e8e0d5;
  --accent: #c01a1b;
  --accent-dark: #971214;
  --white: #fffdf8;
  --muted: #857d74;
  --line: rgba(19, 18, 16, 0.16);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: min(1200px, calc(100vw - 64px));
  --header-height: 78px;
}

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

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: auto;
  overflow-x: clip;
  background: var(--ink);
  scrollbar-color: var(--accent) #000;
  scrollbar-width: thin;
}

html::-webkit-scrollbar {
  width: 12px;
  background: #000;
}

html::-webkit-scrollbar-track {
  background: #000;
}

html::-webkit-scrollbar-thumb {
  min-height: 48px;
  border: 3px solid #000;
  border-radius: 999px;
  background: var(--accent);
}

html::-webkit-scrollbar-thumb:hover {
  background: #e42b2c;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: #000;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

#conteudo {
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.icon-arrow {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  flex: 0 0 16px;
}

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

.icon-arrow--left {
  transform: scaleX(-1);
}

.whatsapp-mark {
  display: inline-grid;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  place-items: center;
  color: var(--accent);
}

.whatsapp-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.header-contact,
.button--light,
.mobile-cta strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 400;
}

em {
  font-family: var(--serif);
  font-weight: 400;
}

::selection {
  color: var(--white);
  background: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: var(--header-height);
  padding: 0 40px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: #000;
  transition: background 250ms ease, height 250ms ease, border-color 250ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  border-color: rgba(255, 255, 255, 0.09);
  background: #000;
}

.brand,
.footer-brand {
  min-width: 0;
}

.brand__crop {
  position: relative;
  display: block;
  width: 210px;
  height: 52px;
  overflow: hidden;
  background: #000;
}

.brand__crop img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 310px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3.5vw, 56px);
  min-width: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.desktop-nav a,
.header-contact {
  position: relative;
}

.desktop-nav a::after,
.header-contact::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.header-contact:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  font-size: 13px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] > span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  width: 100%;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

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

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 520px);
  min-height: 100svh;
  padding: calc(var(--header-height) + 46px) 24px calc(40px + env(safe-area-inset-bottom));
}

.mobile-menu__inner > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
  margin: 14px 0 42px;
}

.mobile-menu nav a {
  padding: 8px 0;
  font-family: var(--serif);
  font-size: clamp(42px, 13vw, 62px);
  line-height: 0.95;
}

.hero {
  position: relative;
  height: 210vh;
  height: 210svh;
  color: var(--white);
  background: #000;
}

.hero__sticky {
  position: sticky;
  top: 0;
  display: flex;
  width: 100%;
  height: 100vh;
  height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}

.hero__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000 url("/assets/hero-frames-v2/frame-001.webp?v=20260901-1") center / cover no-repeat;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  pointer-events: none;
  user-select: none;
  background: #000;
  transition: opacity 180ms ease;
}

.hero__visual.is-video-ready .hero__video {
  opacity: 1;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.84) 22%, rgba(0, 0, 0, 0.12) 68%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 48%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(720px, 92%);
  padding: 0 0 clamp(88px, 11vh, 130px) 6vw;
  opacity: var(--hero-copy-opacity, 1);
  transform: translateY(var(--hero-copy-shift, 0px));
  transition: none;
  will-change: opacity, transform;
}

.hero[data-copy-state="middle"] .hero__content {
  pointer-events: none;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--accent);
}

.hero h1 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 116px);
  line-height: 0.82;
  letter-spacing: -0.045em;
}

.hero h1 em {
  display: inline-block;
  color: transparent;
  background: linear-gradient(108deg, #fff 8%, #cbb6a5 38%, #fff 57%, #aa8d77 82%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: luxe-sheen 7s ease-in-out infinite;
}

.hero__intro {
  max-width: 510px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.35vw, 20px);
}

.hero__actions,
.visit__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 26px;
}

.route-picker {
  position: relative;
  display: inline-flex;
}

.route-picker__popover {
  position: absolute;
  z-index: 15;
  bottom: calc(100% + 12px);
  left: 0;
  width: 212px;
  padding: 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  animation: route-pop 180ms ease both;
}

.route-picker__popover[hidden] {
  display: none;
}

.route-picker__popover p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.route-picker__options {
  display: grid;
  gap: 6px;
}

.route-picker__options a {
  display: block;
  padding: 10px 11px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.route-picker__options a:hover,
.route-picker__options a:focus-visible {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}

@keyframes route-pop {
  from {
    opacity: 0;
    transform: translateY(5px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-align: center;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

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

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

.button--accent:hover {
  background: var(--accent-dark);
}

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

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

.button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button--outline:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--full {
  width: 100%;
}

.text-link,
.line-link {
  position: relative;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
}

.text-link::after,
.line-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero__proof {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(19, 18, 16, 0.72);
}

.hero__proof strong {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero__proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.hero__progress {
  position: absolute;
  z-index: 4;
  right: 6vw;
  bottom: 17px;
  left: 6vw;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.hero__progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.marquee {
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.marquee__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: var(--container);
  margin: 0 auto;
}

.marquee span {
  padding: 20px 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.marquee span + span {
  border-left: 1px solid var(--line);
}

.section {
  width: var(--container);
  margin: 0 auto;
}

.section__index {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.55fr 2fr 0.9fr;
  gap: clamp(24px, 5vw, 86px);
  align-items: start;
  padding-top: clamp(76px, 8vw, 118px);
  padding-bottom: clamp(52px, 5vw, 78px);
}

.manifesto h2,
.curation h2,
.visit h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.1vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.manifesto h2 em,
.curation h2 em,
.visit h2 em {
  color: var(--accent);
}

.manifesto__aside {
  padding-top: 52px;
}

.manifesto__aside p {
  margin-bottom: 24px;
  color: #615a53;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 3px;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
}

.editorial-card {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
  border-radius: 18px;
}

.editorial-card--wide {
  grid-column: span 8;
}

.editorial-card--portrait,
.editorial-card--detail {
  grid-column: span 4;
}

.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.6, 0.25, 1), filter 500ms ease;
}

.editorial-card:hover img {
  filter: brightness(0.82);
  transform: scale(1.035);
}

.editorial-card::after {
  position: absolute;
  inset: 35% 0 0;
  content: "";
  background: linear-gradient(to top, rgba(12, 11, 10, 0.9), transparent);
  pointer-events: none;
}

.editorial-card__caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 28px;
}

.editorial-card__caption > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.editorial-card h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 0.95;
}

.editorial-card p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.fan-showcase {
  position: relative;
  overflow: hidden;
  padding-top: clamp(52px, 6vw, 86px);
  padding-bottom: clamp(84px, 10vw, 140px);
  background:
    radial-gradient(circle at 50% 54%, rgba(192, 26, 27, 0.1), transparent 34%),
    var(--paper);
}

.fan-showcase__heading {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0 auto 24px;
  text-align: center;
}

.fan-showcase__heading h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(58px, 7.5vw, 112px);
  line-height: 0.82;
  letter-spacing: -0.045em;
}

.fan-showcase__heading h2 em,
.manifesto h2 em,
.curation h2 em {
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  text-shadow: 0 12px 34px rgba(192, 26, 27, 0.08);
}

.fan-showcase__heading > p:last-child {
  width: min(520px, 100%);
  margin: 0 auto;
  color: #6d655d;
}

.fan-carousel {
  position: relative;
  width: 100%;
}

.fan-carousel__stage {
  position: relative;
  width: 100%;
  height: clamp(520px, 62vw, 740px);
  max-height: 78svh;
  min-height: 520px;
  perspective: 1600px;
  touch-action: pan-y;
  cursor: grab;
}

.fan-carousel__stage:active {
  cursor: grabbing;
}

.fan-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(228px, 26vw, 360px);
  aspect-ratio: 0.74;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 18px;
  background: #000;
  box-shadow: 0 28px 70px rgba(20, 11, 8, 0.2);
  transform-origin: 50% 108%;
  transition:
    transform 720ms cubic-bezier(0.2, 0.75, 0.2, 1),
    opacity 420ms ease;
}

.fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 900ms cubic-bezier(0.2, 0.6, 0.25, 1);
}

.fan-card > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 56px 18px 17px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fan-card[data-position="0"] {
  z-index: 10;
  filter: none;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.fan-card[data-position="-1"] {
  z-index: 6;
  opacity: 0.82;
  transform: translate(-112%, -47%) rotate(-10deg) scale(0.9);
}

.fan-card[data-position="1"] {
  z-index: 6;
  opacity: 0.82;
  transform: translate(12%, -47%) rotate(10deg) scale(0.9);
}

.fan-card[data-position="-2"] {
  z-index: 3;
  opacity: 0.6;
  transform: translate(-160%, -42%) rotate(-18deg) scale(0.78);
}

.fan-card[data-position="2"] {
  z-index: 3;
  opacity: 0.6;
  transform: translate(60%, -42%) rotate(18deg) scale(0.78);
}

.fan-card[data-position="hidden"] {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -38%) scale(0.6);
}

.fan-card[data-position="0"]:hover img {
  transform: scale(1.035);
}

.fan-carousel__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: -10px;
}

.fan-carousel__controls button {
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.fan-carousel__controls button:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.fan-carousel__controls p {
  min-width: 68px;
  margin: 0;
  color: #736a61;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-align: center;
}

.fan-carousel__controls strong {
  color: var(--accent);
  font-size: 15px;
}

.products {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  padding-top: clamp(78px, 10vw, 138px);
  padding-bottom: clamp(94px, 12vw, 170px);
}

.products__heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr) minmax(220px, 0.55fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}

.products__heading .eyebrow {
  grid-column: 2;
  margin-bottom: 0;
}

.products__heading h2 {
  grid-column: 2;
  margin: -28px 0 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.5vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.products__heading h2 em {
  color: var(--accent);
}

.products__heading > p:last-child {
  grid-column: 3;
  grid-row: 2 / span 2;
  max-width: 340px;
  margin-bottom: 4px;
  color: #615a53;
}

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

.product-card {
  position: relative;
  grid-column: span 4;
  min-height: 520px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  color: #fff;
  background: #000;
}

.product-card:nth-child(2) {
  transform: translateY(44px);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.product-card::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.product-card:hover img,
.product-card:focus-visible img {
  transform: scale(1.035);
}

.product-card > span {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 0.95;
}

.product-card small {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.statement {
  display: grid;
  grid-template-columns: 0.5fr 1.8fr 0.8fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  width: 100%;
  max-width: none;
  padding: clamp(100px, 13vw, 190px) max(6vw, calc((100vw - 1200px) / 2));
}

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

.statement__number {
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(100px, 15vw, 220px);
  line-height: 0.67;
}

.statement h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 9vw, 140px);
  line-height: 0.78;
  letter-spacing: -0.045em;
}

.statement h2 em {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.78);
  text-shadow: 0 0 46px rgba(192, 26, 27, 0.2);
}

.statement__note {
  padding-bottom: 5px;
}

.statement__note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
}

.curation {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: center;
  padding-top: clamp(90px, 12vw, 170px);
  padding-bottom: clamp(90px, 12vw, 170px);
}

.curation__intro > .section__index {
  margin-bottom: clamp(50px, 8vw, 110px);
}

.curation__intro h2 {
  margin-bottom: 28px;
}

.curation__intro > p:last-child {
  max-width: 540px;
  color: #615a53;
}

.curation-card {
  min-height: 520px;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f9f6f0;
  box-shadow: 0 24px 70px rgba(46, 33, 24, 0.09);
}

.curation-card__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: clamp(50px, 7vw, 86px);
}

.curation-card__top > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.progress {
  height: 1px;
  overflow: hidden;
  background: rgba(19, 18, 16, 0.14);
}

.progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--accent);
  transition: width 320ms ease;
}

.curation-step__label {
  max-width: 540px;
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.3vw, 50px);
  line-height: 1;
}

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

.choice {
  min-height: 62px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.choice:hover,
.choice:focus-visible {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.curation-step.is-entering {
  animation: panel-in 320ms ease both;
}

.curation-result h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(36px, 3.8vw, 56px);
  line-height: 0.98;
}

.curation-result > p:not(.eyebrow) {
  color: #615a53;
}

.reset-button,
.back-button {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.reset-button {
  display: block;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 12px;
}

.back-button {
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
}

.material-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  min-height: 820px;
  overflow: hidden;
  border-radius: 22px;
  color: var(--white);
  background: #171512;
}

.material-section__image {
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
}

.material-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.material-section__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: clamp(44px, 8vw, 120px);
}

.material-section__copy h2 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 90px);
  line-height: 0.9;
}

.material-section__copy > p:not(.eyebrow) {
  max-width: 450px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.62);
}

.visit {
  display: grid;
  grid-template-columns: minmax(390px, 1fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
  padding-top: clamp(90px, 12vw, 170px);
  padding-bottom: clamp(90px, 12vw, 170px);
}

.visit__image {
  position: relative;
  grid-row: 1 / span 2;
  min-width: 0;
}

.visit__image img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  object-position: center 52%;
  border-radius: 18px;
}

.visit__rating {
  position: absolute;
  right: -24px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  width: 132px;
  min-height: 120px;
  align-items: flex-start;
  justify-content: center;
  padding: 15px 16px;
  color: var(--white);
  border-top: 4px solid var(--accent);
  border-radius: 14px;
  background: #000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.visit__rating-score {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 0.88;
  color: var(--white);
}

.visit__rating-count {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visit__rating strong {
  margin-top: 2px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.visit__content .section__index {
  margin-bottom: clamp(50px, 8vw, 90px);
}

.visit__content h2 {
  margin-bottom: 34px;
}

.visit address {
  margin-bottom: 30px;
  color: #615a53;
  font-style: normal;
}

.hours {
  grid-column: 2;
  align-self: end;
  width: 100%;
  padding-bottom: 10px;
}

.hours dl {
  margin: 0;
}

.hours dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dd {
  color: var(--muted);
  text-align: right;
}

.closing-shell {
  background: #000;
}

.closing {
  position: relative;
  display: flex;
  min-height: min(880px, 90svh);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  color: var(--white);
  text-align: center;
  background: var(--ink);
}

.closing > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

@media (min-width: 821px) {
  .mobile-cta {
    position: fixed;
    z-index: 80;
    right: 24px;
    bottom: 24px;
    display: flex;
    width: 248px;
    height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 0 16px;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  }

  .mobile-cta > span:first-child {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-cta strong {
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    color: transparent;
    background: #000;
    font-size: 0;
  }

  .mobile-cta strong .whatsapp-mark {
    width: 22px;
    height: 22px;
    color: var(--accent);
  }
}

.closing__veil {
  position: absolute;
  inset: 0;
  background: rgba(9, 8, 7, 0.64);
}

.closing__content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 40px));
}

.closing h2 {
  margin-bottom: 36px;
  font-family: var(--serif);
  font-size: clamp(60px, 8.8vw, 132px);
  line-height: 0.82;
  letter-spacing: -0.04em;
}

.closing h2 em {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.82);
  text-shadow: 0 0 44px rgba(192, 26, 27, 0.24);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  min-width: 0;
  padding: 34px 40px;
  color: rgba(255, 255, 255, 0.72);
  background: #000;
}

.site-footer .brand__crop {
  width: 238px;
  height: 60px;
  background: #000;
}

.site-footer .brand__crop img {
  width: 346px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links svg {
  width: 19px;
  height: 19px;
  overflow: visible;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
}

.footer-links svg path,
.footer-links .social-icon__dot {
  fill: var(--accent);
  stroke: none;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 0;
  font-size: 11px;
}

.footer-meta p + p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.46);
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.6, 0.25, 1);
}

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

.js .reveal h2 {
  clip-path: inset(0 0 105% 0);
  transform: translateY(0.12em);
  transition: clip-path 950ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 950ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible h2 {
  clip-path: inset(0 0 -10% 0);
  transform: translateY(0);
}

@keyframes hero-scale {
  from { opacity: 0.55; transform: scale(1.055); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-copy {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes luxe-sheen {
  0%, 24% { background-position: 100% 50%; }
  56%, 100% { background-position: 0 50%; }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-cue {
  0% { transform: translateY(0); }
  55%, 100% { transform: translateY(200%); }
}

@media (max-width: 1080px) {
  :root {
    --container: min(100% - 44px, 920px);
  }

  .site-header {
    grid-template-columns: 190px 1fr auto;
    padding-inline: 24px;
  }

  .brand__crop {
    width: 185px;
  }

  .brand__crop img {
    width: 280px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .header-contact {
    display: none;
  }

  .manifesto {
    grid-template-columns: 0.36fr 1.5fr 0.8fr;
  }

  .editorial-card {
    min-height: 560px;
  }

  .editorial-card--wide {
    grid-column: span 7;
  }

  .editorial-card--portrait,
  .editorial-card--detail {
    grid-column: span 5;
  }

  .statement {
    grid-template-columns: 0.38fr 1.7fr 0.9fr;
  }

  .visit {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  }

  .hours {
    grid-column: 2;
    width: 100%;
  }
}

@media (max-width: 820px) {
  :root {
    --container: calc(100% - 36px);
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    height: var(--header-height);
    padding: 0 18px;
    background: #000;
  }

  .site-header.is-scrolled {
    height: 60px;
  }

  .brand__crop {
    width: 178px;
    height: 44px;
  }

  .brand__crop img {
    width: 264px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    display: block;
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
  }

  .hero__sticky {
    position: relative;
    top: auto;
    display: flex;
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero__visual {
    inset: 0;
    background-image: url("/assets/hero-frames-v2/frame-152.webp?v=20260901-1");
    background-position: center;
  }

  .hero__video {
    display: none;
  }

  .hero__veil {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.99) 0%, rgba(0, 0, 0, 0.78) 34%, rgba(0, 0, 0, 0.04) 78%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 62%);
  }

  .hero__content {
    width: 100%;
    padding: 0 18px calc(112px + env(safe-area-inset-bottom));
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(56px, 17vw, 78px);
    line-height: 0.86;
  }

  .hero__intro {
    max-width: 520px;
    margin-bottom: 26px;
    font-size: 15px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__proof {
    display: none;
  }

  .hero__progress {
    display: none;
  }

  .marquee__track {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .marquee span {
    display: none;
  }

  .marquee span:first-child {
    display: block;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .manifesto h2,
  .curation h2,
  .visit h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .manifesto__aside {
    max-width: 560px;
    padding-top: 10px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .editorial-card,
  .editorial-card--wide,
  .editorial-card--portrait,
  .editorial-card--detail {
    grid-column: 1;
    min-height: 0;
    aspect-ratio: 0.86;
  }

  .editorial-card--detail {
    display: none;
  }

  .editorial-card__caption {
    padding: 22px 18px 26px;
  }

  .editorial-card h3 {
    font-size: 36px;
  }

  .fan-showcase {
    padding-right: 0;
    padding-left: 0;
  }

  .fan-showcase__heading {
    width: calc(100% - 36px);
    margin-bottom: 14px;
    text-align: left;
  }

  .fan-showcase__heading h2 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .fan-showcase__heading > p:last-child {
    margin-left: 0;
  }

  .fan-carousel__stage {
    height: min(132vw, 590px);
    min-height: 470px;
    max-height: none;
  }

  .fan-card {
    width: min(64vw, 286px);
  }

  .fan-card[data-position="-1"] {
    transform: translate(-102%, -47%) rotate(-9deg) scale(0.88);
  }

  .fan-card[data-position="1"] {
    transform: translate(2%, -47%) rotate(9deg) scale(0.88);
  }

  .fan-card[data-position="-2"] {
    transform: translate(-132%, -42%) rotate(-15deg) scale(0.72);
  }

  .fan-card[data-position="2"] {
    transform: translate(32%, -42%) rotate(15deg) scale(0.72);
  }

  .fan-carousel__controls {
    margin-top: 0;
  }

  .products {
    gap: 34px;
    padding-top: 82px;
    padding-bottom: 112px;
  }

  .products__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .products__heading .section__index,
  .products__heading .eyebrow,
  .products__heading h2,
  .products__heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .products__heading .eyebrow {
    margin-top: 24px;
  }

  .products__heading h2 {
    margin: 0;
    font-size: clamp(50px, 14vw, 68px);
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-card,
  .product-card:nth-child(2) {
    grid-column: 1;
    min-height: 0;
    aspect-ratio: 0.92;
    transform: none;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    padding: 96px 18px;
  }

  .statement__number {
    font-size: 100px;
  }

  .statement h2 {
    font-size: clamp(72px, 22vw, 108px);
  }

  .statement__note {
    max-width: 420px;
  }

  .curation {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .curation__intro > .section__index {
    margin-bottom: 56px;
  }

  .curation-card {
    min-height: 500px;
    padding: 28px 18px;
  }

  .curation-card__top {
    margin-bottom: 50px;
  }

  .curation-step__label {
    font-size: 38px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .choice {
    min-height: 54px;
  }

  .material-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .material-section__image {
    aspect-ratio: 0.95;
  }

  .material-section__copy {
    padding: 68px 18px 76px;
  }

  .material-section__copy h2 {
    font-size: clamp(52px, 14vw, 70px);
  }

  .visit {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .visit__image {
    grid-row: auto;
    width: 100%;
    max-width: 560px;
  }

  .visit__image img {
    aspect-ratio: 0.9;
  }

  .visit__rating {
    right: -16px;
    bottom: 20px;
  }

  .visit__content .section__index {
    margin-bottom: 54px;
  }

  .hours {
    grid-column: 1;
  }

  .closing {
    min-height: 760px;
    padding-bottom: 54px;
    border-radius: 18px;
  }

  .closing h2 {
    font-size: clamp(60px, 17vw, 86px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 42px 18px calc(112px + env(safe-area-inset-bottom));
  }

  .site-footer .brand__crop {
    width: 226px;
    height: 58px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 18px;
  }

  .footer-links a span {
    font-size: 11px;
  }

  .footer-meta {
    text-align: left;
  }

  .mobile-cta {
    position: fixed;
    z-index: 80;
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: auto;
    display: flex;
    width: min(248px, calc(100% - 42px));
    height: 54px;
    min-height: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 0 14px;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    border-radius: 10px;
    background: var(--paper);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
    transition: transform 180ms ease, border-color 180ms ease;
  }

  .mobile-cta:hover,
  .mobile-cta:focus-visible {
    border-color: var(--accent);
    transform: translateY(-2px);
  }

  .mobile-cta > span:first-child {
    display: block;
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-cta strong {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    border: 1.5px solid #000;
    border-radius: 50%;
    background: #000;
    gap: 0;
    line-height: 0;
    font-size: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 3px 10px rgba(0, 0, 0, 0.2);
  }

  .mobile-cta strong .whatsapp-mark {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin: 0;
    color: var(--accent);
    transform: translate3d(-1px, 0, 0);
  }
}

@media (max-width: 390px) {
  .brand__crop {
    width: 158px;
  }

  .brand__crop img {
    width: 240px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .mobile-cta {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .mobile-cta strong {
    text-align: left;
  }
}

.mobile-cta {
  touch-action: manipulation;
  transition: none;
}

.mobile-cta:hover,
.mobile-cta:focus-visible {
  transform: none;
}

.mobile-cta > * {
  pointer-events: none;
}

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

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