:root {
  --black: #050505;
  --surface: #111417;
  --surface-2: #171a1d;
  --red: #d40c09;
  --dark-red: #830e08;
  --bright-red: #ff1b1b;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --ice: #dce4e8;
  --amber: #b76b25;
  --line: rgba(245, 245, 245, 0.13);
  --container: min(1360px, calc(100vw - 72px));
  --scroll-progress: 0;
  --pedido-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 104px;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(180deg, #050505 0%, #090909 32%, #050505 100%);
  font-family: Inter, Manrope, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
}

body.is-lightbox-open {
  overflow: hidden;
}

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

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

a,
button {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

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

main {
  overflow-x: hidden;
}

@supports (overflow-x: clip) {
  main {
    overflow-x: clip;
  }
}

section[id] {
  scroll-margin-top: 104px;
}

h1,
h2,
h3 {
  max-width: 100%;
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--text);
  color: var(--black);
  text-decoration: none;
}

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

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 3;
  opacity: 0.18;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0 1px, transparent 1px);
  background-size: 23px 23px, 31px 31px;
}

.mobile-progress {
  display: none;
}

.red-pulse-system {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  opacity: 0.82;
}

.red-pulse-system path {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.45;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(255, 27, 27, 0.38));
  stroke-dasharray: 1450;
  stroke-dashoffset: var(--pulse-offset, 1450);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  padding: 22px 0;
  transition: padding 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  width: calc(var(--container) + 28px);
  top: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.73);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(128px, 12vw, 174px);
  height: auto;
  filter: drop-shadow(0 0 14px rgba(212,12,9,0.22));
  transition: width 240ms ease, filter 220ms ease, transform 220ms ease;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 0 22px rgba(255,27,27,0.34));
  transform: translateY(-1px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav a {
  position: relative;
  color: rgba(245,245,245,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--text);
}

.desktop-nav a.is-active::after,
.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-cta,
.primary-cta,
.secondary-cta,
.scene-copy a,
.drawer-body a,
.world-panel a,
.google-monument a,
.instagram-interlude a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.mini-cta {
  min-height: 38px;
  padding: 0 15px;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
}

.primary-cta {
  min-height: 66px;
  padding: 0 27px;
  background: var(--red);
  color: white;
  border-radius: 12px;
  box-shadow: 0 18px 54px rgba(212, 12, 9, 0.25);
}

.primary-cta::before,
.mini-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-102%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: transform 520ms ease;
}

.primary-cta:hover::before,
.mini-cta:hover::before,
.primary-cta:focus-visible::before,
.mini-cta:focus-visible::before {
  transform: translateX(102%);
}

.primary-cta:hover span,
.primary-cta:focus-visible span {
  transform: translateX(2px);
}

.primary-cta:hover i,
.primary-cta:focus-visible i {
  transform: translateX(4px);
}

.primary-cta span,
.primary-cta i {
  transition: transform 220ms ease;
}

.secondary-cta {
  min-height: 48px;
  color: rgba(245,245,245,0.82);
  border-bottom: 1px solid rgba(245,245,245,0.34);
  font-size: 0.82rem;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.scene-block {
  position: relative;
  z-index: 5;
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  margin: 0;
  color: var(--bright-red);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker {
  max-width: 1000px;
  padding-top: clamp(80px, 10vw, 150px);
  margin-bottom: clamp(34px, 5vw, 72px);
}

.section-kicker h2 {
  margin: 14px 0 0;
  max-width: 980px;
  font-size: clamp(2.8rem, 6vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.section-kicker h2 span {
  display: block;
  color: rgba(245,245,245,0.6);
}

.hero {
  display: grid;
  min-height: 94svh;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(14px, 3vw, 46px);
  padding: 108px 0 58px;
}

.background-word {
  pointer-events: none;
  position: absolute;
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,245,245,0.045);
  font-size: clamp(7rem, 19vw, 19rem);
  font-weight: 950;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero .background-word {
  left: 0;
  top: 18%;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-logo {
  display: block;
  width: clamp(158px, 18vw, 266px);
  height: auto;
  margin: 0 0 16px;
  filter: drop-shadow(0 0 20px rgba(212,12,9,0.28));
  opacity: 0;
  transform: translateY(16px);
  animation: coldOpenText 680ms cubic-bezier(.16, 1, .3, 1) 120ms forwards;
}

.hero-eyebrow {
  opacity: 0;
  transform: translateY(12px);
  animation: riseIn 520ms ease 120ms forwards;
}

.hero h1 {
  margin: 16px 0 18px;
  font-size: var(--hero-title-size, clamp(4rem, 8.3vw, 9rem));
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  width: fit-content;
  max-width: none;
  transform: translateY(1em);
  opacity: 0;
  animation: coldOpenText 620ms cubic-bezier(.16, 1, .3, 1) var(--delay) forwards;
}

.hero-subtitle {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(245,245,245,0.74);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.microproof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 14px;
  max-width: 620px;
  margin: 0 0 22px;
  color: rgba(245,245,245,0.76);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.microproof span {
  color: var(--bright-red);
  letter-spacing: 0.06em;
}

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

.hero-art {
  position: relative;
  min-height: clamp(430px, 54vw, 670px);
  transform: translate3d(calc(var(--mx, 0) * 1px), calc(var(--my, 0) * 1px), 0);
}

.photo-mask {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #070707;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
}

.photo-mask::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 66% 43%, rgba(255,255,255,0.16) 0 1px, transparent 2px),
    linear-gradient(120deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02) 42%, transparent 66%);
  background-size: 36px 36px, 51px 51px, auto;
  backdrop-filter: blur(5px);
  opacity: 0.64;
  transition: opacity 740ms ease, backdrop-filter 740ms ease;
}

.hero-photo::after {
  animation: frostClear 720ms ease 520ms forwards;
}

.reveal.is-visible .photo-mask::after,
.product-scene.is-visible .photo-mask::after,
.event-mode.is-visible .photo-mask::after {
  opacity: 0.08;
  backdrop-filter: blur(0);
}

.photo-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.88);
  transform: scale(1.02);
}

.hero-photo {
  position: absolute;
  inset: 5% 0 4% 0;
}

.hero-photo img {
  object-position: 58% center;
}

.photo-pulse {
  position: absolute;
  left: -20%;
  top: 59%;
  width: 150%;
  height: 2px;
  transform: translateX(-100%) rotate(-4deg);
  background: linear-gradient(90deg, transparent, var(--bright-red), transparent);
  box-shadow: 0 0 18px rgba(255,27,27,0.42);
  animation: heroPulse 740ms cubic-bezier(.16, 1, .3, 1) 520ms forwards;
}

.freezer {
  min-height: auto;
  padding-bottom: clamp(88px, 10vw, 140px);
}

.freezer-shell {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(148px, 1fr));
  gap: 0;
  min-height: min(760px, 86vh);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045), transparent 16% 84%, rgba(255,255,255,0.035)),
    linear-gradient(180deg, #111417, #070808 52%, #101214);
  box-shadow: inset 0 0 70px rgba(220, 228, 232, 0.06), 0 34px 90px rgba(0,0,0,0.36);
}

.freezer-shell::before,
.freezer-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,228,232,0.25), transparent);
}

.freezer-shell::before {
  top: 32%;
}

.freezer-shell::after {
  top: 66%;
}

.freezer-glass {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(255,255,255,0.07) 19%, transparent 23%),
    radial-gradient(circle at 78% 38%, rgba(255,255,255,0.08), transparent 18%),
    radial-gradient(circle at 16% 70%, rgba(212,12,9,0.16), transparent 25%);
  opacity: 0.66;
}

.freezer-drawer {
  position: relative;
  z-index: 2;
  min-height: 0;
  border-top: 1px solid rgba(255,255,255,0.09);
  border-left: 1px solid rgba(255,255,255,0.06);
  transition: opacity 220ms ease, filter 220ms ease, background 260ms ease;
}

.freezer-drawer:nth-of-type(1) {
  grid-column: 1 / 7;
  grid-row: 1;
  border-left: 0;
  border-top: 0;
}

.freezer-drawer:nth-of-type(2) {
  grid-column: 7 / 13;
  grid-row: 1;
  border-top: 0;
}

.freezer-drawer:nth-of-type(3) {
  grid-column: 1 / 7;
  grid-row: 2;
  border-left: 0;
}

.freezer-drawer:nth-of-type(4) {
  grid-column: 7 / 13;
  grid-row: 2;
}

.freezer-drawer:nth-of-type(5) {
  grid-column: 1 / 7;
  grid-row: 3;
  border-left: 0;
}

.freezer-drawer:nth-of-type(6) {
  grid-column: 7 / 13;
  grid-row: 3;
}

.freezer-drawer:nth-of-type(7) {
  grid-column: 1 / 13;
  grid-row: 4;
  border-left: 0;
}

.freezer-drawer.is-offset {
  transform: none;
}

.freezer-shell:hover .freezer-drawer {
  opacity: 0.62;
  filter: saturate(0.82);
}

.freezer-shell:hover .freezer-drawer:hover,
.freezer-drawer.is-open {
  opacity: 1;
  filter: none;
  background: linear-gradient(90deg, rgba(212,12,9,0.18), rgba(255,255,255,0.035));
}

.drawer-head {
  cursor: pointer;
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 96px;
  color: white;
  background: transparent;
  text-align: left;
}

.drawer-head::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 15px;
  height: 1px;
  transform: scaleX(0.18);
  transform-origin: left;
  background: var(--red);
  box-shadow: 0 0 15px rgba(255,27,27,0.35);
  transition: transform 320ms ease;
}

.freezer-drawer:hover .drawer-head::before,
.freezer-drawer.is-open .drawer-head::before {
  transform: scaleX(1);
}

.drawer-head span {
  max-width: min(430px, 100%);
  font-size: clamp(1.65rem, 2.55vw, 3.05rem);
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.drawer-head small {
  max-width: 190px;
  color: rgba(245,245,245,0.58);
  font-size: 0.72rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.drawer-body {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-height: none;
  overflow: visible;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 320ms ease;
}

.freezer-drawer:hover .drawer-body,
.freezer-drawer.is-open .drawer-body {
  max-height: none;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.drawer-body img {
  flex: 0 0 170px;
  width: 170px;
  height: 70px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  transform: translateX(-6px);
  filter: saturate(0.86) contrast(1.08);
  transition: transform 320ms ease;
}

.freezer-drawer:hover .drawer-body img,
.freezer-drawer.is-open .drawer-body img {
  transform: translateX(0);
}

.drawer-body a,
.scene-copy a,
.world-panel a,
.google-monument a,
.instagram-interlude a {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 44px;
  color: var(--text);
  border-bottom: 1px solid var(--red);
  font-size: 0.78rem;
}

.pedido {
  min-height: 132vh;
  width: 100%;
  max-width: none;
  padding: 0;
  background: #020202;
}

.pedido-sticky {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(92px, 12vh, 128px) 24px clamp(72px, 10vh, 110px);
  text-align: center;
}

.pedido-sticky::before {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: 16%;
  width: 2px;
  height: 68%;
  background: linear-gradient(180deg, transparent, var(--red), transparent);
  opacity: var(--pedido-line-opacity, 0.18);
  transform: skewX(-10deg);
}

.pedido-sticky h2 {
  position: relative;
  width: min(1120px, 90vw);
  min-height: clamp(170px, 19vw, 270px);
  margin: 8px 0 28px;
  font-size: clamp(4.2rem, 12vw, 10.8rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.pedido-word {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding-inline: 2vw;
  transition: opacity 260ms ease, transform 480ms cubic-bezier(.16,1,.3,1);
}

.pedido-question {
  opacity: var(--pedido-question-opacity, 1);
  transform: translateX(var(--pedido-question-shift, 0));
}

.pedido-answer {
  opacity: var(--pedido-answer-opacity, 0);
  transform: translateX(var(--pedido-answer-shift, 15vw));
  color: rgba(245,245,245,0.95);
}

.campaign {
  width: 100%;
  max-width: none;
  padding: clamp(70px, 10vw, 130px) 0;
}

.product-scene {
  position: relative;
  display: grid;
  width: var(--container);
  min-height: 84vh;
  grid-template-columns: 0.98fr 0.78fr;
  align-items: center;
  gap: clamp(20px, 4vw, 70px);
  margin: 0 auto;
  overflow: clip;
}

.product-scene + .product-scene {
  margin-top: clamp(36px, 6vw, 90px);
}

.product-scene-alt {
  grid-template-columns: 0.78fr 0.98fr;
}

.product-scene-alt .scene-media {
  order: 2;
}

.mass-word {
  position: absolute;
  left: 0;
  top: 8%;
  z-index: 0;
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,245,245,0.09);
  font-size: clamp(6rem, 16vw, 15rem);
  font-weight: 950;
  line-height: 0.75;
  text-transform: uppercase;
  transform: translateY(20px);
  transition: transform 700ms ease;
}

.product-scene.is-visible .mass-word {
  transform: translateY(0);
}

.scene-media {
  z-index: 1;
  height: min(620px, 66vh);
  margin: 0;
  transform: translate3d(calc(var(--mx, 0) * 0.8px), calc(var(--my, 0) * 0.8px), 0);
}

.scene-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.scene-copy h2 {
  margin: 10px 0 10px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.scene-copy p:not(.eyebrow) {
  margin: 0 0 22px;
  color: rgba(245,245,245,0.68);
  font-size: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 620ms ease, transform 720ms cubic-bezier(.16, 1, .3, 1);
}

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

.worlds {
  padding: clamp(40px, 6vw, 90px) 0 clamp(110px, 12vw, 160px);
}

.worlds .section-kicker h2 {
  line-height: 1.06;
  text-wrap: balance;
}

.world-panels {
  display: flex;
  min-height: 640px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.world-panel {
  position: relative;
  flex: 1 1 33%;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-width: 0;
  overflow: hidden;
  padding: 34px;
  transition: flex-basis 620ms cubic-bezier(.16,1,.3,1), filter 300ms ease;
}

.world-panels:hover .world-panel {
  flex-basis: 25%;
  filter: saturate(0.72) contrast(0.92);
}

.world-panels .world-panel:hover,
.world-panel:focus-within {
  flex-basis: 50%;
  filter: none;
}

.world-panel img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.1) brightness(0.62);
  transition: transform 700ms ease, filter 500ms ease;
}

.world-panel:hover img,
.world-panel:focus-within img {
  transform: scale(1.05);
  filter: saturate(0.94) contrast(1.14) brightness(0.78);
}

.world-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 22%, rgba(0,0,0,0.82));
}

.world-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.world-panel p {
  max-width: 440px;
  margin: 0 0 16px;
  color: rgba(245,245,245,0.72);
  line-height: 1.45;
}

.event-mode {
  display: grid;
  min-height: 92vh;
  grid-template-columns: 1fr minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(24px, 5vw, 82px);
  padding: clamp(80px, 10vw, 150px) 0;
}

.event-mode::before {
  content: "";
  position: absolute;
  inset: 5% -15vw;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 42%, rgba(212,12,9,0.34), transparent 26%),
    linear-gradient(180deg, #050505, #090404 48%, #050505);
  opacity: 0.86;
}

.event-image {
  height: min(640px, 70vh);
  margin: 0;
}

.event-copy h2 {
  margin: 13px 0 18px;
  font-size: clamp(3rem, 5.5vw, 6.15rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.event-copy h2 span {
  display: block;
  color: rgba(245,245,245,0.68);
}

.event-copy p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 0 28px;
  color: rgba(245,245,245,0.72);
  font-size: 1.06rem;
  line-height: 1.55;
}

.google-monument {
  display: flex;
  min-height: 86vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(90px, 10vw, 140px) 0 clamp(76px, 8vw, 110px);
  text-align: center;
}

.google-monument h2 {
  margin: 0;
  font-size: clamp(7rem, 26vw, 22rem);
  line-height: 0.84;
  text-shadow: 0 0 80px rgba(212,12,9,0.22);
}

.star-sequence {
  display: flex;
  gap: clamp(8px, 1vw, 18px);
  color: var(--bright-red);
  font-size: clamp(1.4rem, 4vw, 3.4rem);
}

.star-sequence span {
  opacity: 0;
  transform: translateY(10px);
}

.google-monument.is-visible .star-sequence span {
  animation: starIn 260ms ease var(--delay) forwards;
}

.google-monument p {
  margin: 10px 0 22px;
  color: rgba(245,245,245,0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.time-wall {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: clamp(80px, 11vw, 150px) 0;
  text-align: center;
}

.time-number span {
  display: block;
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 950;
  line-height: 0.84;
  text-transform: uppercase;
}

.time-number small,
.time-wall p {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(245,245,245,0.62);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.time-range {
  display: grid;
  grid-template-columns: auto minmax(150px, 420px) auto;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  width: min(980px, 92vw);
  margin: clamp(20px, 4vw, 50px) auto;
}

.time-range strong {
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 0.78;
}

.time-range svg {
  width: 100%;
  overflow: visible;
}

.time-range path {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 430;
  stroke-dashoffset: 430;
}

.time-wall.is-visible .time-range path {
  animation: drawLine 850ms ease forwards;
}

.route {
  display: grid;
  min-height: 84vh;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(26px, 5vw, 80px);
  padding: clamp(80px, 10vw, 140px) 0;
}

.route-copy h2 {
  margin: 12px 0 22px;
  max-width: 620px;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

address {
  margin: 0 0 28px;
  color: rgba(245,245,245,0.76);
  font-style: normal;
  line-height: 1.55;
}

.route-visual {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-width: 0;
}

.real-map::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: inset 0 0 0 1px rgba(255,27,27,0.05);
}

.real-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,27,27,0.14), transparent 34%),
    #080909;
  isolation: isolate;
}

.real-map::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.3), transparent 30%, rgba(5,5,5,0.18)),
    radial-gradient(circle at 50% 44%, rgba(255,27,27,0.2), transparent 30%);
  mix-blend-mode: screen;
}

.real-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.06) brightness(0.74);
}

.instagram-interlude {
  min-height: 76vh;
  display: block;
  padding: clamp(86px, 10vw, 138px) 0;
}

.instagram-interlude .background-word {
  inset: 12% auto auto 44%;
  transform: translateX(-50%);
}

.instagram-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.48fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
}

.instagram-copy {
  position: relative;
  z-index: 2;
}

.instagram-interlude h2 {
  position: relative;
  max-width: 620px;
  margin: 14px 0 18px;
  font-size: clamp(3rem, 6.6vw, 7.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.feed-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(78px, 6.2vw, 112px);
  gap: clamp(10px, 1vw, 16px);
}

.feed-gallery::before {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 42%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,27,27,0.85), transparent);
  filter: drop-shadow(0 0 12px rgba(255,27,27,0.6));
}

.feed-card {
  --card-tilt: -2deg;
  appearance: none;
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(245,245,245,0.12);
  border-radius: 8px;
  background: #080909;
  box-shadow: 0 24px 58px rgba(0,0,0,0.44);
  color: inherit;
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(32px) rotate(var(--card-tilt)) scale(0.96);
  transform-origin: center;
  transition: transform 420ms cubic-bezier(.16, 1, .3, 1), border-color 220ms ease, filter 220ms ease;
}

.feed-card:focus-visible {
  outline: 2px solid rgba(255,27,27,0.86);
  outline-offset: 4px;
}

.feed-card::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 22%, transparent 68%, rgba(0,0,0,0.52)),
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,0.16) 49%, transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.38;
}

.feed-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08);
  transform: scale(1.04);
  transition: transform 620ms cubic-bezier(.16, 1, .3, 1), filter 260ms ease;
}

.feed-card:nth-child(1) {
  --card-tilt: -2.4deg;
  grid-column: 1 / 5;
  grid-row: 1 / 6;
}

.feed-card:nth-child(2) {
  --card-tilt: 1.4deg;
  grid-column: 5 / 9;
  grid-row: 1 / 4;
}

.feed-card:nth-child(3) {
  --card-tilt: 2.2deg;
  grid-column: 9 / 13;
  grid-row: 1 / 6;
}

.feed-card:nth-child(4) {
  --card-tilt: -1.2deg;
  grid-column: 5 / 7;
  grid-row: 4 / 7;
}

.feed-card:nth-child(5) {
  --card-tilt: 1deg;
  grid-column: 7 / 9;
  grid-row: 4 / 7;
}

.instagram-interlude.is-visible .feed-card {
  animation: feedCardIn 720ms cubic-bezier(.16, 1, .3, 1) forwards;
}

.instagram-interlude.is-visible .feed-card:nth-child(2) {
  animation-delay: 90ms;
}

.instagram-interlude.is-visible .feed-card:nth-child(3) {
  animation-delay: 180ms;
}

.instagram-interlude.is-visible .feed-card:nth-child(4) {
  animation-delay: 270ms;
}

.instagram-interlude.is-visible .feed-card:nth-child(5) {
  animation-delay: 360ms;
}

.feed-card:hover {
  z-index: 2;
  border-color: rgba(255,27,27,0.58);
  filter: drop-shadow(0 0 28px rgba(255,27,27,0.18));
  transform: translateY(-10px) rotate(0deg) scale(1.015);
}

.feed-card:hover img {
  filter: saturate(1.08) contrast(1.12);
  transform: scale(1.1);
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,27,27,0.2), transparent 34%),
    rgba(0,0,0,0.82);
  cursor: zoom-out;
  backdrop-filter: blur(20px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: min(1020px, calc(100vw - 34px));
  max-height: calc(100svh - 34px);
  overflow: hidden;
  border: 1px solid rgba(245,245,245,0.16);
  border-radius: 10px;
  background: #020202;
  box-shadow: 0 34px 90px rgba(0,0,0,0.72), 0 0 42px rgba(255,27,27,0.16);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
}

.media-lightbox.is-open .lightbox-dialog {
  animation: lightboxIn 260ms cubic-bezier(.16, 1, .3, 1) forwards;
}

.lightbox-dialog img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 34px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(5,5,5,0.68);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  transform: scale(1.04);
  border-color: rgba(255,27,27,0.72);
  background: rgba(212,12,9,0.28);
  outline: 0;
}

.lightbox-close span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.lightbox-close span:first-child {
  transform: rotate(45deg);
}

.lightbox-close span:last-child {
  transform: rotate(-45deg);
}

.faq {
  padding: clamp(60px, 9vw, 120px) 0;
}

.faq-list {
  border-top: 1px solid rgba(245,245,245,0.16);
}

.faq-item {
  position: relative;
  border-bottom: 1px solid rgba(245,245,245,0.16);
}

.faq-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 100%;
  transform: scaleX(0.3);
  transform-origin: left;
  background: var(--red);
  transition: transform 300ms ease;
}

.faq-item:hover::after,
.faq-item.is-open::after {
  transform: scaleX(1);
}

.faq-item button {
  cursor: pointer;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 27px 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 850;
}

.faq-item button span {
  color: var(--red);
  font-size: 1.6rem;
  transition: transform 240ms ease;
}

.faq-item.is-open button span {
  transform: rotate(45deg);
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  color: rgba(245,245,245,0.66);
  line-height: 1.6;
  transition: max-height 300ms ease, padding 300ms ease;
}

.faq-item.is-open p {
  max-height: 160px;
  padding: 0 0 28px;
}

.final-cta {
  isolation: isolate;
  display: grid;
  min-height: 92vh;
  place-items: center;
  overflow: hidden;
  padding: clamp(90px, 12vw, 160px) 0;
  background-color: #050505;
  background:
    radial-gradient(circle at 50% 40%, rgba(212,12,9,0.16), transparent 32%),
    linear-gradient(180deg, #050505, #050505 42%, #050505);
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14%;
  z-index: 0;
  width: min(620px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, 44%);
  background: radial-gradient(circle, rgba(255,27,27,0.24), rgba(131,14,8,0.12) 34%, transparent 68%);
  filter: blur(4px);
  opacity: 0.74;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin: 14px 0 34px;
  max-width: 1180px;
  font-size: clamp(3.8rem, 9.3vw, 10.4rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.final-cta h2 span {
  display: block;
  color: rgba(245,245,245,0.7);
}

.primary-cta.giant {
  min-height: 72px;
  min-width: min(560px, 92vw);
  font-size: clamp(1rem, 2vw, 1.4rem);
}

.site-footer {
  position: relative;
  z-index: 5;
  display: flex;
  width: var(--container);
  margin: 0 auto;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 46px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(245,245,245,0.55);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.toast {
  pointer-events: none;
  position: fixed;
  left: 50%;
  bottom: 32px;
  z-index: 110;
  max-width: min(440px, calc(100vw - 36px));
  padding: 14px 18px;
  transform: translate(-50%, 18px);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(8, 8, 8, 0.92);
  color: white;
  opacity: 0;
  backdrop-filter: blur(16px);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.mobile-bottom-bar {
  display: none;
}

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

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

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

@keyframes frostClear {
  to {
    opacity: 0.08;
    backdrop-filter: blur(0);
  }
}

@keyframes heroPulse {
  to {
    transform: translateX(35%) rotate(-4deg);
  }
}

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

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dotIn {
  to {
    opacity: 1;
  }
}

@keyframes feedCardIn {
  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--card-tilt)) scale(1);
  }
}

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

@media (max-width: 1100px) {
  :root {
    --container: min(100vw - 48px, 1000px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.18);
    background:
      linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015)),
      rgba(5,5,5,0.56);
    box-shadow: inset 0 0 0 1px rgba(255,27,27,0.04), 0 16px 34px rgba(0,0,0,0.24);
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(255,27,27,0.62);
    box-shadow: inset 0 0 0 1px rgba(255,27,27,0.16), 0 18px 40px rgba(212,12,9,0.18);
  }

  .menu-toggle .menu-line {
    grid-area: 1 / 1;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 220ms cubic-bezier(.16, 1, .3, 1), opacity 160ms ease, width 180ms ease;
  }

  .menu-toggle .menu-line:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle .menu-line:nth-child(2) {
    width: 16px;
    transform: translateX(2.5px);
    opacity: 0.72;
  }

  .menu-toggle .menu-line:nth-child(3) {
    transform: translateY(7px);
  }

  .menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
    width: 22px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
  }

  .menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
    width: 22px;
    transform: rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(320px, calc(100vw - 48px));
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(5,5,5,0.94);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .mobile-nav a {
    padding: 14px 8px;
    color: rgba(245,245,245,0.82);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
  }

  .hero,
  .event-mode,
  .route {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: var(--hero-title-size, clamp(3.35rem, 10.2vw, 6.15rem));
    line-height: 0.86;
  }

  .hero-art {
    min-height: 500px;
  }

  .event-image,
  .real-map {
    min-height: 430px;
  }

  .event-copy {
    order: -1;
  }

  .pedido-sticky h2 {
    width: min(850px, calc(100vw - 48px));
    min-height: clamp(150px, 20vw, 220px);
    font-size: clamp(3.7rem, 9vw, 5.9rem);
  }

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

  .instagram-interlude h2 {
    max-width: 780px;
    font-size: clamp(3rem, 10vw, 6rem);
  }

  .feed-gallery {
    grid-auto-rows: clamp(82px, 11vw, 132px);
  }
}

@media (min-width: 641px) and (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 34px;
    gap: 14px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 9vw, 4.25rem);
    line-height: 0.88;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    max-width: 620px;
    margin-bottom: 14px;
  }

  .microproof {
    margin-bottom: 14px;
  }

  .hero-actions {
    flex-wrap: nowrap;
    align-items: center;
  }

  .primary-cta,
  .secondary-cta {
    width: auto;
  }

  .primary-cta {
    min-height: 58px;
    padding-inline: 22px;
  }

  .secondary-cta {
    min-height: 44px;
  }

  .hero-art {
    min-height: 168px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 40px);
  }

  .red-pulse-system {
    display: none;
  }

  .background-word {
    display: none;
  }

  .mass-word {
    left: 0;
    right: 0;
    max-width: 100%;
    overflow: hidden;
    font-size: clamp(4.1rem, 18vw, 6.4rem);
    white-space: nowrap;
  }

  .photo-pulse {
    left: 0;
    width: 100%;
    transform: translateX(0) rotate(-4deg);
    animation: none;
  }

  .mobile-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    display: block;
    height: 2px;
    background: rgba(255,255,255,0.08);
  }

  .mobile-progress span {
    display: block;
    width: var(--mobile-progress-width, 0%);
    height: 100%;
    background: var(--red);
    box-shadow: 0 0 12px rgba(255,27,27,0.7);
  }

  .site-header {
    width: var(--container);
    padding: 16px 0;
  }

  .site-header.is-scrolled {
    width: calc(100vw - 24px);
    top: 8px;
  }

  .brand-logo {
    width: clamp(118px, 32vw, 148px);
  }

  .mini-cta {
    display: none;
  }

  .hero {
    min-height: 94svh;
    padding: 92px 0 34px;
    gap: 18px;
  }

  .hero-copy,
  .hero-art {
    margin-top: 0;
  }

  .hero-logo {
    width: clamp(138px, 42vw, 182px);
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: var(--hero-title-size, clamp(3rem, 14.4vw, 4.75rem));
    line-height: 0.9;
  }

  .hero-subtitle {
    margin-bottom: 20px;
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    gap: 12px;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .hero-art {
    min-height: clamp(180px, 24svh, 250px);
  }

  .hero-photo {
    inset: 0;
  }

  .microproof {
    margin-bottom: 18px;
    gap: 8px 10px;
    font-size: 0.68rem;
  }

  .section-kicker {
    padding-top: 78px;
    margin-bottom: 26px;
  }

  .freezer .section-kicker {
    padding-top: 32px;
  }

  .section-kicker h2 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .freezer {
    min-height: auto;
  }

  .freezer-shell {
    display: block;
    min-height: auto;
    border-left: 0;
    border-right: 0;
  }

  .freezer-drawer,
  .freezer-drawer.is-offset {
    transform: none;
    min-height: 72px;
  }

  .drawer-head {
    min-height: 92px;
    align-items: center;
    padding: 18px 0 22px;
  }

  .drawer-head::before {
    left: 0;
    right: 0;
  }

  .drawer-head span {
    font-size: clamp(1.35rem, 8.2vw, 2.35rem);
    line-height: 0.96;
  }

  .drawer-head small {
    display: none;
  }

  .freezer-shell:hover .freezer-drawer {
    opacity: 1;
    filter: none;
  }

  .drawer-body,
  .freezer-drawer:hover .drawer-body {
    position: static;
    grid-template-columns: 1fr;
    display: grid;
    max-height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
  }

  .freezer-drawer.is-open .drawer-body {
    max-height: 240px;
    padding: 0 0 20px;
    opacity: 1;
    pointer-events: auto;
  }

  .drawer-body img {
    flex: none;
    width: 100%;
    height: 126px;
  }

  .pedido {
    min-height: auto;
    padding: 74px 0;
  }

  .pedido-sticky {
    position: relative;
    min-height: auto;
  }

  .pedido-sticky h2 {
    min-height: auto;
    font-size: clamp(3.5rem, 16vw, 5.8rem);
  }

  .pedido-word {
    position: static;
    opacity: 1;
    transform: none;
  }

  .pedido-answer {
    margin-top: 12px;
  }

  .campaign {
    padding: 70px 0;
  }

  .product-scene,
  .product-scene-alt {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
    padding-bottom: 72px;
  }

  .product-scene-alt .scene-media {
    order: 0;
  }

  .scene-media {
    height: 365px;
  }

  .mass-word {
    top: -2px;
    left: 0;
    right: 0;
    overflow: visible;
    font-size: clamp(3.3rem, 13.6vw, 5.6rem);
    white-space: nowrap;
  }

  .scene-copy h2 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .world-panels {
    display: grid;
    min-height: auto;
    border: 0;
  }

  .world-panel {
    min-height: 360px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .world-panels:hover .world-panel,
  .world-panels .world-panel:hover {
    flex-basis: auto;
  }

  .world-panel div {
    padding: 0 20px;
  }

  .event-mode {
    min-height: auto;
    padding: 78px 0;
  }

  .event-mode::before {
    inset: 0;
  }

  .event-copy h2,
  .route-copy h2 {
    font-size: clamp(2.65rem, 12vw, 4.4rem);
  }

  .google-monument {
    min-height: 70vh;
  }

  .google-monument h2 {
    font-size: clamp(6.2rem, 29vw, 10rem);
  }

  .time-range {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .time-range svg {
    max-width: 290px;
    margin: 0 auto;
  }

  .route-visual {
    grid-template-columns: 1fr;
  }

  .real-map {
    min-height: 350px;
  }

  .instagram-interlude {
    min-height: auto;
    padding: 78px 0;
  }

  .instagram-content {
    gap: 28px;
  }

  .instagram-interlude h2 {
    font-size: clamp(2.85rem, 14vw, 4.7rem);
  }

  .feed-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(124px, 37vw, 168px);
    gap: 10px;
    overflow: hidden;
    padding: 2px;
  }

  .feed-gallery::before {
    left: 0;
    right: 0;
    top: 50%;
  }

  .feed-card {
    --card-tilt: 0deg;
    box-shadow: 0 18px 34px rgba(0,0,0,0.36);
  }

  .feed-card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .feed-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .feed-card:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
  }

  .feed-card:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .feed-card:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 4 / 6;
  }

  .faq-item button {
    padding: 22px 0;
  }

  .final-cta {
    min-height: 76vh;
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
  }

  .final-cta h2 {
    font-size: clamp(3.5rem, 16vw, 5.6rem);
  }

  .site-footer {
    display: grid;
    padding-bottom: calc(110px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: calc(54px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    transform: translateY(92px);
    background: var(--red);
    color: white;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -12px 34px rgba(212,12,9,0.24);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    font-weight: 950;
    transition: transform 240ms ease;
  }

  .mobile-bottom-bar.is-visible {
    transform: translateY(0);
  }
}

@media (min-width: 641px) and (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 34px;
    gap: 14px;
  }

  .hero h1 {
    font-size: var(--hero-title-size, clamp(3.15rem, 9vw, 4.25rem));
    line-height: 0.88;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    max-width: 620px;
    margin-bottom: 14px;
  }

  .microproof {
    margin-bottom: 14px;
  }

  .hero-actions {
    flex-wrap: nowrap;
    align-items: center;
  }

  .primary-cta,
  .secondary-cta {
    width: auto;
  }

  .primary-cta {
    min-height: 58px;
    padding-inline: 22px;
  }

  .secondary-cta {
    min-height: 44px;
  }

  .hero-art {
    min-height: 168px;
  }

  .mobile-bottom-bar {
    display: none;
  }
}

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

  .red-pulse-system path {
    stroke-dashoffset: 0;
  }
}
