:root {
  --ink: #10100f;
  --ink-soft: #1a1917;
  --cream: #f4ead8;
  --cream-light: #fff8ec;
  --red: #bb141b;
  --red-dark: #8f0d12;
  --salmon: #ef7b57;
  --teal: #176a70;
  --gold: #e9ad3e;
  --line: rgba(16, 16, 15, 0.18);
  --shell: min(1280px, calc(100vw - 80px));
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Inter, "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(96px, 11vw, 168px);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 999px;
  background: white;
  color: black;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 12px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  transition: background 300ms ease, color 300ms ease, min-height 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(16, 16, 15, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  letter-spacing: -0.03em;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: var(--red);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 18px;
  font-weight: 500;
}

.brand-name strong {
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
}

.site-nav a,
.text-link,
.footer-links a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after,
.text-link::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
  transition: background 200ms ease, border-color 200ms ease;
}

.header-cta span {
  font-size: 13px;
  letter-spacing: 0.05em;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 9px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #0b0b0a;
  color: white;
  isolation: isolate;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  background: #0b0b0a;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  filter: saturate(0.92) contrast(1.08) brightness(0.82);
  transform: scale(1.025);
  transition: opacity 900ms ease;
}

.hero-video-bg video.is-active {
  opacity: 0.68;
}

.hero-video-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.92) 0%, rgba(10, 10, 9, 0.68) 45%, rgba(10, 10, 9, 0.28) 78%, rgba(10, 10, 9, 0.48) 100%),
    linear-gradient(0deg, rgba(10, 10, 9, 0.7) 0%, transparent 38%, rgba(10, 10, 9, 0.35) 100%);
  content: "";
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0 0.6px, transparent 0.8px 4px),
    repeating-radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.16) 0 0.5px, transparent 0.8px 5px);
  background-size: 17px 19px, 23px 21px;
}

.hero-sun {
  position: absolute;
  top: 15%;
  right: 1%;
  z-index: -2;
  width: min(41vw, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.92;
  transform: translateX(18%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(56px, 7vw, 120px);
  padding-top: 116px;
  padding-bottom: 76px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 760px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 2px;
  background: var(--red);
}

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

.hero h1,
.section-heading h2,
.story-copy h2,
.saturday-copy h2,
.practical-heading h2,
.final-inner h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.87;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 810px;
  font-size: clamp(74px, 8.6vw, 154px);
}

.hero h1 em,
.section-heading h2 em,
.story-copy h2 em,
.saturday-copy h2 em,
.practical-heading h2 em,
.final-inner h2 em {
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.62em;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: none;
}

.hero-lead {
  max-width: 600px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #d31a23;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
}

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

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

.button-cream:hover,
.button-cream:focus-visible {
  background: white;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(233, 173, 62, 0.55);
  animation: pulse 2s infinite;
}

.live-status.is-open .status-dot {
  background: #66d37e;
  box-shadow: 0 0 0 0 rgba(102, 211, 126, 0.5);
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  margin-left: auto;
}

.hero-photo-wrap {
  position: relative;
  overflow: hidden;
  width: 86%;
  margin-left: auto;
  border-radius: 190px 190px 18px 18px;
  background: #26231f;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

.hero-photo-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: min(64vh, 650px);
  min-height: 470px;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(1.06) contrast(1.03);
  transition: transform 900ms var(--ease);
}

.hero-photo-wrap:hover .hero-photo {
  transform: scale(1.035);
}

.photo-caption {
  position: absolute;
  right: 16px;
  bottom: 15px;
  left: 16px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: rgba(11, 11, 10, 0.72);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.photo-caption span {
  color: var(--salmon);
}

.logo-orbit {
  position: absolute;
  top: -40px;
  left: -82px;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  animation: logo-float 4.8s ease-in-out infinite;
}

.logo-core {
  position: absolute;
  inset: 27px;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
}

.logo-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-text {
  position: absolute;
  inset: -7px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(16, 16, 15, 0.62);
  border-radius: 50%;
  color: transparent;
  font-size: 0;
  font-weight: 900;
  letter-spacing: 0.14em;
  word-spacing: 5px;
  animation: orbit-spin 18s linear infinite;
}

.orbit-text::before,
.orbit-text::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.orbit-text::before {
  top: 3px;
}

.orbit-text::after {
  bottom: 3px;
}

.hero-stamp {
  position: absolute;
  right: -32px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--red);
  color: white;
  transform: rotate(-8deg);
}

.hero-stamp strong {
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: 0.02em;
}

.hero-stamp span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 32px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 32px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: white;
  content: "";
  animation: line-slide 1.8s ease-in-out infinite;
}

.flavor-ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--red);
  color: white;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 32s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: space-around;
  width: max-content;
  min-width: 100vw;
  padding-block: 14px;
}

.flavor-ticker span {
  padding-inline: 20px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.flavor-ticker i {
  color: var(--ink);
  font-size: 9px;
  font-style: normal;
}

.selection {
  position: relative;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  column-gap: clamp(42px, 7vw, 120px);
  align-items: end;
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.story-copy h2,
.saturday-copy h2,
.practical-heading h2,
.final-inner h2 {
  font-size: clamp(54px, 6.8vw, 112px);
}

.section-heading > p:last-child {
  max-width: 390px;
  margin: 0 0 5px;
  color: rgba(16, 16, 15, 0.62);
  font-size: 17px;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 330px;
  gap: 18px;
  perspective: 1200px;
}

.product-card {
  position: relative;
  grid-column: span 6;
  overflow: hidden;
  min-height: 330px;
  border-radius: 16px;
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 280ms ease;
  will-change: transform;
}

.product-card:hover {
  box-shadow: 0 28px 55px rgba(16, 16, 15, 0.19);
}

.product-card[data-card-lightbox-index] {
  cursor: zoom-in;
}

.card-photo-trigger {
  position: absolute;
  top: 55px;
  right: 20px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 7px 8px 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(16, 16, 15, 0.48);
  color: white;
  font: inherit;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: zoom-in;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, transform 180ms ease;
}

.card-photo-trigger b {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.card-photo-trigger:hover,
.card-photo-trigger:focus-visible {
  background: rgba(16, 16, 15, 0.76);
  transform: translateY(-2px);
}

.card-photo-trigger:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.product-card:nth-child(1),
.product-card:nth-child(4) {
  grid-column: span 7;
}

.product-card:nth-child(2),
.product-card:nth-child(3) {
  grid-column: span 5;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 9, 0.88), rgba(10, 10, 9, 0.18));
}

.product-topline {
  position: absolute;
  top: 22px;
  right: 22px;
  left: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateZ(24px);
}

.product-copy {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  transform: translateZ(38px);
}

.product-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.product-copy > p:not(.jp) {
  max-width: 330px;
  margin: 14px 0 0;
  color: inherit;
  font-size: 14px;
  opacity: 0.72;
}

.product-copy > a {
  display: inline-flex;
  gap: 25px;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-copy .jp {
  position: absolute;
  right: 0;
  bottom: -17px;
  margin: 0;
  font-family: var(--serif);
  font-size: 90px;
  line-height: 1;
  opacity: 0.15;
}

.product-card-photo {
  color: white;
}

.product-card-poke {
  background: var(--teal);
  color: white;
}

.product-card-poke img {
  position: absolute;
  top: -22%;
  right: -18%;
  width: 64%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.product-card-poke .product-copy {
  right: 42%;
}

.product-card-red {
  background: var(--red);
  color: white;
}

.pouss-shape {
  position: absolute;
  right: -28px;
  bottom: -90px;
  width: 170px;
  height: 360px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 90px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0));
  transform: rotate(26deg);
}

.pouss-shape::after {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 16px;
  height: 250px;
  border-radius: 9px;
  background: var(--ink);
  content: "";
  transform: translateX(-50%);
}

.product-card-ink {
  background:
    radial-gradient(circle at 76% 18%, rgba(239, 123, 87, 0.24), transparent 23%),
    var(--ink);
  color: white;
}

.product-card-ink::before {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 170px;
  height: 170px;
  border: 2px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.section-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  transition: opacity 1200ms ease;
}

.section-video-bg::after {
  position: absolute;
  inset: 0;
  content: "";
}

.story {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
  isolation: isolate;
}

.story-video video {
  opacity: 0.22;
  filter: saturate(0.82) contrast(1.12) brightness(0.8);
}

.story-video video.is-active {
  opacity: 0.48;
}

.story-video::after {
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.94) 0%, rgba(16, 16, 15, 0.7) 48%, rgba(16, 16, 15, 0.9) 100%),
    linear-gradient(180deg, rgba(16, 16, 15, 0.3), rgba(16, 16, 15, 0.76));
}

.story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.story-photo {
  position: relative;
}

.story-photo::before {
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 1;
  width: 44%;
  height: 46%;
  border: 1px solid var(--red);
  border-radius: 0 90px 0 0;
  content: "";
}

.story-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 600px;
  border-radius: 8px 110px 8px 8px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.04);
}

.story-label {
  position: absolute;
  right: -38px;
  bottom: 42px;
  z-index: 3;
  padding: 20px 22px;
  border-radius: 50%;
  background: var(--red);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.story-copy h2,
.saturday-copy h2,
.practical-heading h2 {
  font-size: clamp(52px, 5.8vw, 94px);
}

.story-intro {
  margin: 32px 0 42px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.8;
}

.values-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.values-list > div {
  display: grid;
  grid-template-columns: 34px 0.7fr 1fr;
  gap: 15px;
  align-items: baseline;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.values-list span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.values-list h3,
.values-list p {
  margin: 0;
}

.values-list h3 {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.values-list p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.saturday {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: white;
  isolation: isolate;
}

.saturday-video video {
  opacity: 0.18;
  filter: saturate(0.72) contrast(1.14) brightness(0.7);
}

.saturday-video video.is-active {
  opacity: 0.42;
}

.saturday-video::after {
  background:
    linear-gradient(105deg, rgba(116, 7, 12, 0.95) 0%, rgba(187, 20, 27, 0.77) 52%, rgba(16, 16, 15, 0.75) 100%),
    linear-gradient(180deg, rgba(187, 20, 27, 0.16), rgba(92, 6, 10, 0.72));
}

.saturday::before {
  position: absolute;
  top: -200px;
  left: -160px;
  width: 500px;
  height: 500px;
  border: 80px solid rgba(16, 16, 15, 0.08);
  border-radius: 50%;
  content: "";
}

.saturday-brush {
  position: absolute;
  right: -5%;
  bottom: 6%;
  width: 60%;
  height: 60px;
  background: var(--ink);
  opacity: 0.18;
  transform: rotate(-6deg);
  clip-path: polygon(2% 18%, 100% 0, 96% 72%, 6% 100%, 0 70%);
}

.saturday-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: clamp(70px, 10vw, 170px);
}

.saturday-copy h2 em {
  color: var(--cream);
}

.saturday-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.saturday-list {
  max-width: 660px;
  margin: 36px 0 38px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.saturday-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 15px;
  font-weight: 700;
}

.saturday-list span {
  color: var(--cream);
  font-size: 10px;
}

.saturday-poster {
  position: relative;
  justify-self: end;
  width: min(100%, 390px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  box-shadow: 24px 28px 0 rgba(16, 16, 15, 0.2), 0 36px 70px rgba(0, 0, 0, 0.26);
  cursor: zoom-in;
  transform: rotate(2.4deg);
  transition: transform 350ms var(--ease);
}

.saturday-poster:hover,
.saturday-poster:focus-visible {
  transform: rotate(0) translateY(-7px);
}

.saturday-poster img {
  width: 100%;
  aspect-ratio: 0.75;
  object-fit: cover;
}

.saturday-poster > span,
.gallery-item > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(16, 16, 15, 0.78);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.saturday-poster b,
.gallery-item b {
  font-size: 20px;
  font-weight: 400;
}

.gallery-heading {
  grid-template-columns: 1fr;
}

.gallery-heading h2 {
  max-width: 940px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.82fr;
  grid-template-rows: 290px 290px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #d9c7ae;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.055);
}

.gallery-wide {
  grid-row: 1 / 3;
}

.gallery-tall {
  grid-row: 1 / 3;
  grid-column: 3;
}

.gallery-tall img {
  object-position: center 32%;
}

.practical {
  background: var(--ink-soft);
  color: white;
}

.practical-heading {
  display: block;
  margin-bottom: 60px;
}

.practical-heading h2 {
  max-width: 820px;
}

.practical-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.9fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.info-card {
  min-height: 420px;
  padding: clamp(30px, 4vw, 54px);
  background: var(--ink-soft);
}

.info-index {
  margin: 0 0 50px;
  color: var(--salmon);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-card h3 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 64px);
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.info-card > p:not(.info-index, .order-kicker, .hours-note) {
  color: rgba(255, 255, 255, 0.58);
}

.info-card > a:not(.phone-link) {
  display: inline-flex;
  gap: 30px;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.info-hours {
  background: var(--cream);
  color: var(--ink);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.hours-row strong {
  font-size: 12px;
}

.hours-row.is-today {
  color: var(--red);
}

.hours-row.is-today span::after {
  display: inline-block;
  margin-left: 7px;
  color: var(--red);
  content: "●";
  font-size: 7px;
}

.hours-note {
  margin: 24px 0 0;
  color: rgba(16, 16, 15, 0.52);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.order-kicker {
  margin: 0 0 7px;
  color: var(--salmon);
  font-family: var(--serif);
  font-style: italic;
}

.phone-link {
  display: block;
  margin-top: 42px;
  color: var(--salmon);
  font-family: var(--display);
  font-size: clamp(29px, 3vw, 48px);
  letter-spacing: 0.01em;
  line-height: 1;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(110px, 13vw, 190px);
  background: var(--cream);
}

.final-symbol {
  position: absolute;
  top: 50%;
  right: -2vw;
  color: rgba(187, 20, 27, 0.09);
  font-family: var(--serif);
  font-size: min(42vw, 590px);
  line-height: 0.7;
  transform: translateY(-50%);
}

.final-inner {
  position: relative;
  z-index: 1;
}

.final-inner > p {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.final-inner h2 {
  max-width: 1050px;
  font-size: clamp(65px, 9vw, 150px);
}

.final-actions .text-link {
  margin-left: 10px;
}

.site-footer {
  padding-block: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  color: white;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.4;
}

.footer-brand strong {
  color: white;
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

.footer-links a,
.footer-links button {
  font-size: 10px;
}

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.legal-dialog {
  width: min(94vw, 1040px);
  max-height: min(90vh, 900px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.legal-dialog::backdrop {
  background: rgba(10, 10, 9, 0.88);
  backdrop-filter: blur(14px);
}

.legal-panel {
  max-height: min(90vh, 900px);
  overflow: auto;
  overscroll-behavior: contain;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 4vw, 52px);
  border-bottom: 1px solid rgba(16, 16, 15, 0.14);
  background: rgba(245, 238, 224, 0.96);
  backdrop-filter: blur(18px);
}

.legal-header .eyebrow {
  margin-bottom: 12px;
}

.legal-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 7vw, 86px);
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.legal-close {
  display: grid;
  flex: none;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 16, 15, 0.24);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.legal-close:hover,
.legal-close:focus-visible {
  background: var(--red);
  color: white;
  transform: rotate(8deg);
}

.legal-content {
  display: grid;
  gap: 0;
  padding: 0 clamp(28px, 4vw, 52px) 52px;
}

.legal-content section {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
  column-gap: clamp(28px, 5vw, 72px);
  padding-block: clamp(34px, 5vw, 58px);
  border-bottom: 1px solid rgba(16, 16, 15, 0.13);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-index {
  grid-column: 1;
  grid-row: 1 / span 8;
  margin: 4px 0 0;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-content h3,
.legal-content section > p:not(.legal-index),
.legal-content dl {
  grid-column: 2;
}

.legal-content h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.legal-content section > p:not(.legal-index) {
  margin: 0 0 14px;
  color: rgba(16, 16, 15, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

.legal-content a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content dl {
  display: grid;
  gap: 0;
  margin: 10px 0 18px;
}

.legal-content dl > div {
  display: grid;
  grid-template-columns: minmax(140px, 0.4fr) 1fr;
  gap: 20px;
  padding-block: 10px;
  border-top: 1px solid rgba(16, 16, 15, 0.1);
}

.legal-content dt {
  color: rgba(16, 16, 15, 0.5);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.mobile-call {
  display: none;
}

.lightbox {
  width: min(92vw, 980px);
  height: min(90vh, 840px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: white;
}

.lightbox::backdrop {
  background: rgba(10, 10, 9, 0.94);
  backdrop-filter: blur(16px);
}

.lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  margin: 0;
}

.lightbox img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 10px;
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(16, 16, 15, 0.78);
  color: white;
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  font-size: 28px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  font-size: 19px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.noscript {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1000;
  margin: 0;
  padding: 12px;
  border-radius: 6px;
  background: white;
  color: black;
  text-align: center;
}

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

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

.product-grid .reveal:nth-child(2),
.gallery-grid .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.product-grid .reveal:nth-child(3),
.gallery-grid .reveal:nth-child(3) {
  transition-delay: 150ms;
}

.product-grid .reveal:nth-child(4),
.gallery-grid .reveal:nth-child(4) {
  transition-delay: 210ms;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

@keyframes line-slide {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 50px, 980px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 11px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(70px, 9.5vw, 116px);
  }

  .logo-orbit {
    left: -45px;
    width: 154px;
  }

  .product-card:nth-child(n) {
    grid-column: span 6;
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .story-photo img {
    min-height: 540px;
  }

  .values-list > div {
    grid-template-columns: 30px 1fr;
  }

  .values-list p {
    grid-column: 2;
  }

  .practical-grid {
    grid-template-columns: 1fr 1.15fr;
  }

  .info-order {
    grid-column: 1 / -1;
    min-height: 300px;
  }
}

@media (max-width: 840px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 10px 18px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    padding: 50px 24px 120px;
    background: #10100f;
    color: white;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 260ms ease, transform 260ms var(--ease);
  }

  .site-nav a {
    position: relative;
    z-index: 1;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: white;
    font-family: var(--display);
    font-size: 38px;
    letter-spacing: 0.01em;
    text-shadow: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header {
    background: #10100f;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  }

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

  body.menu-open .mobile-call {
    display: none;
  }

  body.menu-open .menu-toggle > span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  body.menu-open .menu-toggle > span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle > span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 54px;
    align-items: start;
    padding-top: 132px;
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: clamp(66px, 17vw, 104px);
  }

  .hero-lead {
    max-width: 540px;
  }

  .hero-visual {
    width: min(90%, 520px);
    margin-inline: auto;
  }

  .hero-photo {
    height: 580px;
  }

  .hero-sun {
    top: 55%;
    width: 80vw;
  }

  .logo-orbit {
    top: -30px;
    left: -38px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

  .section-heading > p:last-child {
    max-width: 580px;
  }

  .product-grid {
    grid-auto-rows: 360px;
  }

  .product-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  .story-grid,
  .saturday-grid {
    grid-template-columns: 1fr;
  }

  .story-video video.is-active {
    opacity: 0.38;
  }

  .saturday-video video.is-active {
    opacity: 0.32;
  }

  .story-photo {
    width: 91%;
  }

  .story-photo img {
    min-height: 500px;
  }

  .story-copy {
    padding-top: 24px;
  }

  .saturday-poster {
    justify-self: center;
    width: min(76vw, 390px);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 290px 290px 400px;
  }

  .gallery-wide {
    grid-row: 1 / 3;
  }

  .gallery-tall {
    grid-column: 1 / -1;
    grid-row: 3;
  }

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

  .info-order {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .mobile-call {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 17px;
    border-radius: 9px;
    background: var(--red);
    color: white;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  }

  .mobile-call span {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-call strong {
    font-size: 14px;
  }

  .site-footer {
    padding-bottom: 95px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .section {
    padding-block: 88px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .hero-inner {
    gap: 48px;
    padding-top: 112px;
    padding-bottom: 68px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(59px, 18.6vw, 86px);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-photo-wrap {
    width: 100%;
  }

  .hero-photo {
    height: 430px;
    min-height: 430px;
  }

  .logo-orbit {
    top: -34px;
    left: -12px;
    width: 126px;
  }

  .logo-core {
    inset: 21px;
    border-width: 3px;
  }

  .hero-stamp {
    right: -4px;
    bottom: 54px;
    padding: 10px 12px;
  }

  .hero-stamp strong {
    font-size: 23px;
  }

  .flavor-ticker span {
    font-size: 23px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .story-copy h2,
  .saturday-copy h2,
  .practical-heading h2 {
    font-size: clamp(47px, 14vw, 70px);
  }

  .section-heading > p:last-child,
  .story-intro,
  .saturday-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .product-grid {
    grid-auto-rows: 340px;
  }

  .product-copy {
    right: 21px;
    bottom: 22px;
    left: 21px;
  }

  .product-topline {
    top: 18px;
    right: 19px;
    left: 19px;
  }

  .card-photo-trigger {
    top: 49px;
    right: 16px;
  }

  .product-copy h3 {
    font-size: 46px;
  }

  .product-copy .jp {
    font-size: 66px;
  }

  .product-card-poke img {
    top: -13%;
    right: -28%;
    width: 79%;
  }

  .product-card-poke .product-copy {
    right: 36%;
  }

  .story-photo {
    width: calc(100% - 16px);
  }

  .story-photo img {
    min-height: 420px;
    border-radius: 7px 70px 7px 7px;
  }

  .story-label {
    right: -20px;
    font-size: 18px;
  }

  .values-list > div {
    grid-template-columns: 26px 1fr;
  }

  .saturday-poster {
    width: min(82vw, 360px);
    box-shadow: 14px 18px 0 rgba(16, 16, 15, 0.2), 0 30px 60px rgba(0, 0, 0, 0.24);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 310px);
  }

  .gallery-item:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-tall img {
    object-position: center 35%;
  }

  .info-card {
    min-height: auto;
  }

  .final-inner h2 {
    font-size: clamp(59px, 17vw, 92px);
  }

  .final-actions {
    align-items: flex-start;
  }

  .final-actions .button {
    width: 100%;
  }

  .final-actions .text-link {
    margin: 12px 0 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-inner > p {
    grid-column: auto;
    grid-row: auto;
  }

  .legal-dialog {
    width: calc(100vw - 18px);
    max-height: calc(100vh - 18px);
    max-height: calc(100dvh - 18px);
    border-radius: 12px;
  }

  .legal-panel {
    max-height: calc(100vh - 18px);
    max-height: calc(100dvh - 18px);
  }

  .legal-header {
    gap: 16px;
    padding: 24px 20px;
  }

  .legal-header h2 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .legal-close {
    width: 42px;
    height: 42px;
  }

  .legal-content {
    padding: 0 20px 28px;
  }

  .legal-content section {
    grid-template-columns: 1fr;
    padding-block: 32px;
  }

  .legal-index,
  .legal-content h3,
  .legal-content section > p:not(.legal-index),
  .legal-content dl {
    grid-column: 1;
  }

  .legal-index {
    grid-row: auto;
    margin-bottom: 12px;
  }

  .legal-content dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 22px;
    transform: none;
  }
}

@media (hover: none) {
  .tilt-card {
    transform: none !important;
  }
}

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

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