@charset "UTF-8";

:root {
  --pink: #ff3f9f;
  --pink-soft: #561a47;
  --blue: #2358ff;
  --blue-deep: #101f73;
  --yellow: #dcff00;
  --coral: #ff4a39;
  --purple: #8f4fff;
  --ivory: #f7f1e8;
  --paper: #0a0810;
  --ink: #171717;
  --white: #fff;
  --line: rgba(23, 23, 23, .22);
  --sans: "Noto Sans JP", sans-serif;
  --condensed: "Oswald", "Arial Narrow", sans-serif;
  --display: "Archivo Black", "Noto Sans JP", sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--paper);
  color-scheme: dark;
}

body {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

body.menu-open {
  overflow: hidden;
}

.site-shell {
  display: contents;
}

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

button,
input {
  font: inherit;
}

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

.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: 9999;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
}

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

::selection {
  color: var(--ink);
  background: var(--yellow);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 10px clamp(18px, 3vw, 46px);
  transition: background .4s ease, color .4s ease, border-color .4s ease;
}

.site-header.is-scrolled {
  color: var(--ivory);
  background: rgba(10, 8, 16, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  width: clamp(145px, 13vw, 175px);
  line-height: 0;
}

.brand-logo-image {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
}

.desktop-nav a {
  position: relative;
  padding: 7px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

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

.header-reserve {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  min-width: 138px;
  padding: 9px 13px;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
}

.header-reserve span:first-child {
  font-family: var(--condensed);
  letter-spacing: .15em;
}

.header-reserve b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 20px;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ivory);
  background: #07050d;
  isolation: isolate;
}

.hero-photo-wrap {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 9%;
  width: min(56vw, 880px);
  height: 100%;
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%, 7% 62%, 0 33%);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  scale: 1.02;
  animation: heroIn 1.5s var(--ease) both;
}

@keyframes heroIn {
  from { scale: 1.12; filter: saturate(.6) brightness(1.35); }
  to { scale: 1.02; filter: saturate(1) brightness(1); }
}

.hero::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-back-type {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-family: var(--display);
  font-size: clamp(110px, 21vw, 330px);
  line-height: .68;
  letter-spacing: -.08em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, .13);
  transform: rotate(-5deg) scale(1.08);
}

.hero-back-type span:last-child {
  transform: translateX(-17vw);
}

.hero-color-block {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.block-pink {
  top: 0;
  right: 0;
  width: 11%;
  height: 54%;
  background: #220d24;
}

.block-blue {
  right: 0;
  bottom: 0;
  width: 17%;
  height: 47%;
  background: var(--blue);
  clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
}

.block-yellow {
  top: 17%;
  left: 0;
  width: 6vw;
  height: 20vh;
  background: var(--yellow);
  transform: rotate(-7deg) translateX(-32%);
}

.hero-kicker {
  position: absolute;
  z-index: 10;
  top: 22%;
  left: clamp(20px, 4vw, 62px);
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  color: var(--ivory);
  border-left: 5px solid var(--yellow);
  font-family: var(--condensed);
  font-size: clamp(10px, .9vw, 13px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .14em;
  animation: slideUp .9s .25s var(--ease) both;
}

.hero-title {
  position: absolute;
  z-index: 7;
  top: 25%;
  left: clamp(18px, 4vw, 62px);
  width: min(70vw, 1050px);
  margin: 0;
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.11em;
  pointer-events: none;
}

.title-line {
  position: absolute;
  display: block;
  white-space: nowrap;
}

.title-smoke {
  top: 0;
  left: 0;
  color: var(--blue);
  font-size: clamp(92px, 14vw, 220px);
  transform: rotate(-3deg);
  animation: slideUp 1s .32s var(--ease) both;
}

.title-smoke b {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: clamp(2px, .25vw, 5px) var(--blue);
  filter: drop-shadow(7px 7px 0 var(--pink));
}

.title-smoke i {
  position: relative;
  top: -.18em;
  left: -.08em;
  padding: .04em .12em .12em .04em;
  color: var(--ink);
  background: var(--yellow);
  font-size: .48em;
  font-style: normal;
  letter-spacing: -.14em;
  transform: rotate(5deg);
}

.title-flower {
  top: .64em;
  left: .66em;
  color: var(--ivory);
  font-size: clamp(108px, 17vw, 270px);
  text-shadow: 8px 8px 0 var(--coral);
  transform: scaleX(.84) rotate(1deg);
  transform-origin: left;
  animation: slideUp 1s .44s var(--ease) both;
}

.title-flower span {
  display: inline-block;
  color: var(--pink);
  -webkit-text-stroke: clamp(2px, .18vw, 4px) var(--ivory);
  font-size: .55em;
  transform: translate(-.08em, -.26em) rotate(9deg);
}

.title-bloom {
  top: 1.68em;
  left: 1.35em;
  color: var(--yellow);
  font-size: clamp(78px, 12vw, 190px);
  transform: rotate(-2deg);
  animation: slideUp 1s .55s var(--ease) both;
}

.title-bloom b {
  display: inline-block;
  padding: .05em .12em .15em .08em;
  background: var(--blue);
  box-shadow: 10px 10px 0 var(--pink);
  line-height: .78;
}

.title-bloom i {
  display: inline-block;
  margin-left: -.08em;
  color: var(--coral);
  font-size: .62em;
  font-style: normal;
  -webkit-text-stroke: 2px var(--ivory);
  transform: translateY(-.2em) rotate(6deg);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px) rotate(-3deg); }
  to { opacity: 1; }
}

.hero-stamp {
  position: absolute;
  z-index: 8;
  top: 14%;
  right: 6.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(108px, 10vw, 150px);
  aspect-ratio: 1;
  color: var(--white);
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--ink);
  font-family: var(--condensed);
  font-size: clamp(8px, .72vw, 11px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .1em;
  transform: rotate(9deg);
  animation: stampIn .9s .7s var(--ease) both;
}

.hero-stamp b {
  margin: 4px 0;
  color: var(--yellow);
  font-size: 24px;
}

@keyframes stampIn {
  from { opacity: 0; scale: .4; rotate: -25deg; }
}

.hero-read {
  position: absolute;
  z-index: 8;
  right: 2%;
  bottom: 7%;
  width: min(29vw, 330px);
  padding: 14px 16px;
  color: var(--ivory);
  background: rgba(10, 8, 16, .9);
  border: 2px solid var(--ivory);
  box-shadow: -7px 7px 0 var(--yellow);
  transform: rotate(-2deg);
}

.hero-read-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
}

.hero-read p {
  margin: 0;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: -.08em;
}

.hero-read small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
}

.hero-ticket {
  position: absolute;
  z-index: 9;
  bottom: 3.5%;
  left: clamp(18px, 4vw, 62px);
  display: grid;
  grid-template-columns: 1fr auto;
  width: clamp(230px, 22vw, 330px);
  min-height: 118px;
  padding: 13px 14px 12px 18px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--blue);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 96% 50%, 100% 60%, 100% 100%, 0 100%, 0 60%, 4% 50%, 0 40%);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.hero-ticket:hover,
.hero-ticket:focus-visible {
  transform: translate(-3px, -3px) rotate(-1deg);
  box-shadow: 12px 12px 0 var(--blue);
}

.ticket-no {
  grid-column: 1 / 3;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--ink);
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
}

.ticket-main {
  align-self: end;
  padding-top: 9px;
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 900;
  line-height: 1.15;
}

.ticket-arrow {
  align-self: end;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
}

.hero-edge-copy {
  position: absolute;
  z-index: 9;
  top: 72px;
  right: 16px;
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.ticker {
  position: relative;
  z-index: 20;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
  transform: rotate(-1.2deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker span {
  padding: 11px 22px 13px 0;
  font-family: var(--display);
  font-size: clamp(18px, 2.4vw, 36px);
  letter-spacing: -.04em;
  word-spacing: .25em;
}

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

.section {
  position: relative;
  padding: clamp(88px, 11vw, 170px) clamp(20px, 5vw, 80px);
}

.section-index {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding-bottom: 9px;
  border-bottom: 2px solid currentColor;
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.section-index b {
  justify-self: center;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -.05em;
}

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

.concept {
  background: var(--paper);
}

.concept::before {
  position: absolute;
  top: 14%;
  right: -10vw;
  width: 28vw;
  aspect-ratio: 1;
  content: "";
  border: 4vw solid rgba(255, 63, 159, .14);
  border-radius: 50%;
  opacity: .7;
}

.concept-lead {
  display: grid;
  grid-template-columns: .45fr 1.1fr .75fr;
  align-items: start;
  gap: 28px;
  margin: clamp(55px, 8vw, 110px) 0;
}

.eyebrow,
.mini-label {
  margin: 0;
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.concept-lead h2 {
  margin: -.1em 0 0;
  font-size: clamp(50px, 7.5vw, 118px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.1em;
}

.concept-lead h2 span {
  display: block;
}

.outline-word {
  color: transparent;
  -webkit-text-stroke: 2px var(--ivory);
  transform: translateX(.2em);
}

.concept-copy {
  align-self: end;
  margin: 0;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: .05em;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--pink);
}

.number-card {
  position: relative;
  min-height: 340px;
  padding: clamp(22px, 3vw, 42px);
  overflow: hidden;
}

.number-card + .number-card {
  border-left: 2px solid var(--ink);
}

.card-pink { color: var(--ink); background: var(--pink); }
.card-blue { color: var(--white); background: var(--blue); }
.card-yellow { color: var(--ink); background: var(--yellow); }

.card-label {
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .17em;
}

.number-card strong {
  display: block;
  margin: 22px 0 25px;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 110px);
  line-height: .85;
  letter-spacing: -.08em;
}

.number-card sup {
  margin-left: 5px;
  font-size: .3em;
  vertical-align: top;
}

.number-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.editorial-spread {
  display: grid;
  grid-template-columns: 1.15fr .75fr .7fr;
  grid-template-rows: 90px 1fr 60px;
  min-height: 760px;
  margin-top: clamp(100px, 14vw, 210px);
}

.spread-photo-main {
  position: relative;
  z-index: 1;
  grid-column: 1 / 2;
  grid-row: 1 / 4;
  overflow: hidden;
  background: var(--blue);
}

.spread-photo-main img,
.spread-photo-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.spread-photo-main img {
  filter: saturate(.85) contrast(1.06);
}

.spread-photo-main:hover img,
.spread-photo-sub:hover img {
  transform: scale(1.035);
}

.spread-photo-main span,
.spread-photo-sub span {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
}

.spread-copy {
  position: relative;
  z-index: 3;
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 22px;
  padding: clamp(28px, 4vw, 56px);
  background: var(--pink);
  border: 2px solid var(--ink);
  box-shadow: 9px 9px 0 var(--yellow);
  transform: translate(-8%, 0);
  color: var(--ink);
}

.vertical-note {
  margin: 0;
  padding-left: 10px;
  border-left: 1px solid var(--ink);
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}

.spread-copy h3 {
  margin: 32px 0 22px;
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: 1.2;
  letter-spacing: -.08em;
}

.spread-copy p:not(.vertical-note) {
  margin: 0 0 30px;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 8px;
  border-bottom: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  font-size: 24px;
}

.spread-photo-sub {
  position: relative;
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  overflow: hidden;
  transform: rotate(3deg);
}

.flavor {
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.flavor::before {
  position: absolute;
  top: 12%;
  left: -8vw;
  width: 24vw;
  aspect-ratio: 1;
  content: "";
  border: 3.5vw solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.flavor-title-wrap {
  position: relative;
  z-index: 1;
}

.flavor-title-wrap h2 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: .15em;
  margin: clamp(60px, 8vw, 110px) 0 22px;
  font-size: clamp(54px, 9.3vw, 150px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.11em;
}

.flavor-title-wrap h2 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  font-size: .7em;
  transform: rotate(-3deg);
}

.flavor-title-wrap h2 b {
  position: relative;
  color: var(--yellow);
  text-shadow: 8px 8px 0 var(--coral);
}

.flavor-title-wrap > p {
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .04em;
}

.mood-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(50px, 7vw, 90px);
  border: 2px solid var(--white);
}

.mood-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  padding: 16px 18px;
  color: var(--white);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: color .3s ease, background .3s ease;
}

.mood-tab + .mood-tab {
  border-left: 2px solid var(--white);
}

.mood-tab span,
.mood-tab i {
  font-family: var(--condensed);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .14em;
}

.mood-tab b {
  margin: auto 0 4px;
  font-size: clamp(16px, 1.65vw, 25px);
  line-height: 1.15;
  letter-spacing: -.06em;
}

.mood-tab.is-active {
  color: var(--ink);
  background: var(--yellow);
}

.mood-tab:not(.is-active):hover,
.mood-tab:not(.is-active):focus-visible {
  color: var(--ink);
  background: var(--pink);
}

.mood-result {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 560px;
  color: var(--ink);
  background: var(--ivory);
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--yellow);
}

.result-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #a884ff;
  border-right: 2px solid var(--ink);
  transition: background .55s ease;
}

.result-giant {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--display);
  font-size: clamp(66px, 10vw, 150px);
  line-height: .75;
  letter-spacing: -.1em;
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
  transform: translate(-50%, -50%) rotate(-9deg);
  white-space: nowrap;
}

.result-orbit {
  position: absolute;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.orbit-one {
  top: 12%;
  left: 14%;
  width: 64%;
  aspect-ratio: 1.25;
  transform: rotate(22deg);
}

.orbit-two {
  right: 8%;
  bottom: 8%;
  width: 47%;
  aspect-ratio: 1;
  background: var(--yellow);
  mix-blend-mode: multiply;
  transform: rotate(-15deg);
}

.result-smoke {
  position: absolute;
  top: -8%;
  left: 32%;
  width: 42%;
  height: 115%;
  border: 22px solid rgba(255, 255, 255, .7);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 48% 52% 50% 46%;
  filter: blur(8px);
  opacity: .76;
  transform: rotate(24deg);
}

.result-number {
  position: absolute;
  right: 18px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
}

.result-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 90px);
}

.result-label {
  margin: 0 0 26px;
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.result-content h3 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.4;
  letter-spacing: -.08em;
}

.result-mix {
  margin: 0;
  padding: 12px 14px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.result-desc {
  margin: 22px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
}

.result-content > a {
  align-self: flex-start;
  margin-top: 26px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  transition: color .3s, background .3s;
}

.result-content > a:hover,
.result-content > a:focus-visible {
  color: var(--ink);
  background: var(--pink);
}

.lookbook {
  overflow: hidden;
  color: var(--ivory);
  background: #120c1d;
}

.lookbook::before {
  position: absolute;
  top: 7%;
  right: -4vw;
  width: 20vw;
  aspect-ratio: 1;
  content: "";
  background: var(--pink);
  border: 3px solid var(--ivory);
  border-radius: 50%;
}

.lookbook-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .4fr 1.1fr .45fr;
  gap: 24px;
  align-items: end;
}

.lookbook-heading h2 {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(67px, 12vw, 190px);
  line-height: .67;
  letter-spacing: -.1em;
}

.lookbook-heading h2 span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 3px var(--ivory);
  transform: translateX(.35em);
}

.lookbook-heading h2 span:nth-child(3) {
  color: var(--blue);
  text-shadow: 8px 8px 0 var(--yellow);
  transform: translateX(-.12em);
}

.lookbook-heading > p:last-child {
  margin: 0;
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: .8fr 1.1fr .85fr .7fr;
  gap: clamp(12px, 2vw, 28px);
  align-items: start;
  margin-top: clamp(70px, 10vw, 140px);
}

.look-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
  border: 2px solid var(--ink);
  color: var(--ink);
}

.look-card img {
  width: 100%;
  aspect-ratio: .78;
  object-fit: cover;
  filter: saturate(.88);
  transition: filter .6s ease, transform .8s var(--ease);
}

.look-card:hover img {
  filter: saturate(1.15);
  transform: scale(1.04);
}

.look-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  background: var(--ivory);
  border-top: 2px solid var(--ink);
  font-family: var(--condensed);
  font-size: 10px;
  letter-spacing: .08em;
}

.look-card figcaption span {
  display: grid;
  width: 24px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 8px;
}

.look-a { box-shadow: 8px 8px 0 var(--pink); }
.look-b { margin-top: 11vw; transform: rotate(2deg); box-shadow: 8px 8px 0 var(--blue); }
.look-c { margin-top: -3vw; transform: rotate(-2deg); box-shadow: 8px 8px 0 var(--blue); }
.look-d { margin-top: 8vw; box-shadow: 8px 8px 0 var(--yellow); }

.menu-section {
  color: var(--ivory);
  background: var(--paper);
}

.menu-heading {
  display: grid;
  grid-template-columns: 1fr 1.4fr .4fr;
  gap: 30px;
  align-items: end;
}

.menu-heading .section-index {
  grid-column: 1 / 4;
}

.menu-heading h2 {
  grid-column: 1 / 3;
  margin: clamp(60px, 8vw, 110px) 0 0;
  font-size: clamp(58px, 10vw, 160px);
  line-height: .84;
  letter-spacing: -.11em;
}

.menu-heading h2 span {
  display: inline-block;
  color: var(--blue);
  text-shadow: 8px 8px 0 var(--pink);
  transform: translateX(.5em);
}

.menu-heading > p {
  justify-self: end;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
}

.menu-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(22px, 4vw, 60px);
  margin-top: clamp(70px, 9vw, 125px);
}

.price-feature {
  position: relative;
  align-self: start;
  padding: clamp(32px, 5vw, 68px);
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 13px 13px 0 var(--blue);
  transform: rotate(-1.5deg);
  color: var(--ink);
}

.price-feature::after {
  position: absolute;
  top: -22px;
  right: 38px;
  width: 90px;
  height: 34px;
  content: "";
  background: rgba(255, 143, 199, .75);
  border: 1px solid rgba(23, 23, 23, .2);
  transform: rotate(7deg);
}

.price-kicker {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.price-feature h3 {
  margin: 34px 0 12px;
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: -.06em;
}

.price-feature strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(76px, 10vw, 145px);
  line-height: .9;
  letter-spacing: -.08em;
}

.price-feature strong small {
  font-size: .3em;
  vertical-align: .65em;
}

.price-feature > p {
  margin: 28px 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.price-chip {
  display: inline-block;
  padding: 8px 11px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
}

.menu-list {
  border-top: 2px solid var(--ivory);
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 98px;
  padding: 16px 4px;
  border-bottom: 2px solid var(--ivory);
}

.menu-row > span {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 800;
}

.menu-row > span b {
  font-family: var(--condensed);
  font-size: 10px;
  letter-spacing: .1em;
}

.menu-row small {
  grid-column: 2;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
}

.menu-row > strong {
  font-family: var(--condensed);
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1;
}

.menu-row > strong span {
  font-family: var(--sans);
  font-size: .45em;
}

.menu-row-accent {
  margin-right: -14px;
  margin-left: -14px;
  padding-right: 18px;
  padding-left: 18px;
  background: #24132e;
}

.drink-strip {
  position: relative;
  display: grid;
  grid-template-columns: .35fr 1fr .25fr;
  gap: 28px;
  align-items: start;
  margin-top: clamp(90px, 12vw, 170px);
  padding: clamp(28px, 4vw, 56px);
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--pink);
  transform: rotate(1deg);
}

.drink-strip-label {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 60px);
  line-height: .9;
  letter-spacing: -.07em;
}

.drink-strip p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  font-family: var(--condensed);
  font-size: 12px;
  letter-spacing: .08em;
}

.takeout {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--ink);
  text-align: center;
  font-family: var(--display);
  font-size: clamp(15px, 2vw, 26px);
  line-height: .95;
  transform: rotate(8deg);
}

.access {
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.access::before {
  position: absolute;
  right: -6%;
  bottom: -7%;
  width: 35vw;
  aspect-ratio: 1;
  content: "";
  background: var(--pink);
  border-radius: 50%;
}

.access-top h2 {
  position: relative;
  z-index: 2;
  margin: clamp(55px, 8vw, 110px) 0 clamp(70px, 10vw, 140px);
  font-size: clamp(62px, 11vw, 175px);
  line-height: .82;
  letter-spacing: -.12em;
}

.access-top h2 span {
  display: inline-block;
  color: var(--yellow);
  text-shadow: 9px 9px 0 var(--coral);
  transform: translateX(.45em);
}

.access-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
}

.access-photo {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 3px solid var(--ink);
}

.access-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) brightness(1.04);
}

.access-photo-tag {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
}

.access-info {
  padding: clamp(34px, 6vw, 84px);
  color: var(--ink);
  background: var(--ivory);
  border: 3px solid var(--ink);
  border-left: 0;
}

.access-name {
  margin: 0 0 48px;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 86px);
  line-height: .72;
  letter-spacing: -.08em;
}

.access-name span {
  font-family: var(--condensed);
  font-size: .18em;
  letter-spacing: .2em;
}

.access-info dl {
  margin: 0;
}

.access-info dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
}

.access-info dt {
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
}

.access-info dd {
  margin: 0;
  font-size: clamp(13px, 1.25vw, 17px);
  font-weight: 700;
  line-height: 1.7;
}

.access-info dd small {
  font-family: var(--condensed);
  font-size: 10px;
  letter-spacing: .13em;
}

.access-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 38px;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.access-actions a {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 126px;
  padding: 17px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.access-actions a + a {
  border-left: 2px solid var(--ink);
}

.access-actions b {
  font-size: 28px;
}

.action-line { background: var(--yellow); }
.action-insta { color: var(--white); background: var(--coral); }

.access-foot {
  position: relative;
  z-index: 2;
  margin: clamp(55px, 8vw, 100px) 0 0;
  padding: 18px 0 0;
  border-top: 2px solid var(--white);
  font-family: var(--condensed);
  font-size: clamp(16px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: .08em;
}

.site-footer {
  position: relative;
  padding: 70px clamp(20px, 5vw, 80px) 35px;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
}

.footer-flower {
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-size: clamp(68px, 16.7vw, 255px);
  line-height: .78;
  letter-spacing: -.1em;
}

.footer-flower span:nth-child(2) { color: var(--pink); }
.footer-flower span:nth-child(3) { color: var(--yellow); }
.footer-flower span:nth-child(4) { color: var(--blue); -webkit-text-stroke: 1px var(--white); }
.footer-flower span:nth-child(5) { color: var(--coral); }

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .4);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
}

.mobile-reserve {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .8s var(--ease), transform .9s var(--ease);
}

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

@media (max-width: 980px) {
  .desktop-nav,
  .header-reserve {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 62px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--yellow);
    border: 2px solid var(--ink);
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    transition: transform .3s, translate .3s;
  }

  .menu-toggle.is-open span:first-child {
    translate: 0 4px;
    transform: rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    translate: 0 -5px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 28px 34px;
    color: var(--white);
    background: var(--blue);
    transform: translateX(100%);
    transition: transform .6s var(--ease);
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu::before {
    position: absolute;
    right: -16vw;
    bottom: -8vw;
    width: 70vw;
    aspect-ratio: 1;
    content: "";
    background: var(--pink);
    border-radius: 50%;
  }

  .mobile-menu-label {
    position: relative;
    margin: 0 0 26px;
    font-family: var(--condensed);
    font-size: 10px;
    letter-spacing: .17em;
  }

  .mobile-menu > a:not(.mobile-line) {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 2px solid var(--white);
    font-family: var(--display);
    font-size: clamp(32px, 9vw, 54px);
    letter-spacing: -.06em;
  }

  .mobile-menu > a b {
    color: var(--yellow);
    font-family: var(--condensed);
    font-size: 11px;
    letter-spacing: .1em;
  }

  .mobile-line {
    position: relative;
    margin-top: 38px;
    padding: 15px 18px;
    color: var(--ink);
    background: var(--yellow);
    border: 2px solid var(--ink);
    box-shadow: 7px 7px 0 var(--ink);
    font-size: 13px;
    font-weight: 800;
  }

  .hero-photo-wrap {
    right: -3%;
    width: 67vw;
  }

  .hero-title {
    width: 84vw;
  }

  .concept-lead {
    grid-template-columns: .35fr 1fr;
  }

  .concept-copy {
    grid-column: 2;
  }

  .editorial-spread {
    grid-template-columns: 1.1fr .9fr;
    grid-template-rows: 80px 1fr 80px 250px;
  }

  .spread-photo-main { grid-column: 1; grid-row: 1 / 4; }
  .spread-copy { grid-column: 2; grid-row: 2 / 4; transform: translateX(-8%); }
  .spread-photo-sub { grid-column: 2; grid-row: 4; transform: rotate(2deg) translate(-8%, -8%); }

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

  .lookbook-heading > p:last-child {
    grid-column: 2;
  }

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

  .look-c,
  .look-d {
    margin-top: 0;
  }

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

  .menu-heading .section-index,
  .menu-heading h2 {
    grid-column: 1 / 3;
  }

  .menu-layout {
    grid-template-columns: .78fr 1.22fr;
  }

  .drink-strip {
    grid-template-columns: .4fr 1fr;
  }

  .takeout {
    position: absolute;
    right: -2%;
    bottom: -18%;
    width: 120px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 8px 14px;
  }

  .site-header.is-scrolled {
    background: rgba(10, 8, 16, .95);
  }

  .brand {
    width: 132px;
  }

  .hero {
    min-height: 790px;
    max-height: 930px;
  }

  .hero-photo-wrap {
    top: 10%;
    right: -21%;
    width: 94%;
    height: 90%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 3% 62%, 0 38%);
  }

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

  .hero-back-type {
    font-size: 35vw;
    line-height: 1.5;
    justify-content: center;
  }

  .block-pink {
    display: none;
    width: 10%;
    height: 42%;
  }

  .block-blue {
    width: 20%;
    height: 33%;
  }

  .block-yellow {
    top: 58%;
    width: 15vw;
    height: 15vh;
  }

  .hero-kicker {
    top: 12%;
    left: 16px;
    font-size: 8px;
  }

  .hero-title {
    top: 26%;
    left: 12px;
    width: calc(100vw - 24px);
  }

  .title-smoke {
    font-size: 26vw;
  }

  .title-flower {
    top: .72em;
    left: .18em;
    font-size: 31vw;
  }

  .title-bloom {
    top: 1.93em;
    left: .72em;
    font-size: 24vw;
  }

  .title-smoke b {
    -webkit-text-stroke-width: 2px;
    filter: drop-shadow(4px 4px 0 var(--pink));
  }

  .title-flower {
    text-shadow: 5px 5px 0 var(--coral);
  }

  .title-bloom b {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .hero-stamp {
    top: 50%;
    right: 4%;
    width: 92px;
    font-size: 7px;
  }

  .hero-stamp b {
    font-size: 18px;
  }

  .hero-read {
    right: 3%;
    bottom: 18%;
    width: 48vw;
    padding: 10px 11px;
    box-shadow: -5px 5px 0 var(--yellow);
  }

  .hero-read p {
    font-size: 17px;
  }

  .hero-read small {
    font-size: 9px;
  }

  .hero-ticket {
    bottom: 3%;
    left: 13px;
    width: 212px;
    min-height: 103px;
  }

  .ticket-main {
    font-size: 16px;
  }

  .hero-edge-copy {
    display: none;
  }

  .ticker {
    transform: rotate(-2deg) scale(1.03);
  }

  .section {
    max-width: 100%;
    overflow-x: clip;
    padding: 84px 18px;
  }

  .section-index {
    font-size: 8px;
  }

  .section-index b {
    font-size: 15px;
  }

  .concept::before {
    top: 10%;
    right: -24vw;
    width: 52vw;
    border-width: 8vw;
  }

  .concept-lead {
    display: block;
    margin: 56px 0 66px;
  }

  .concept-lead h2 {
    margin-top: 28px;
    font-size: 15vw;
  }

  .concept-copy {
    margin-top: 36px;
    font-size: 12px;
    line-height: 2;
  }

  .numbers {
    grid-template-columns: 1fr;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .number-card {
    min-height: 245px;
    padding: 25px;
  }

  .number-card + .number-card {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .number-card strong {
    margin: 22px 0 18px;
    font-size: 22vw;
  }

  .editorial-spread {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 105px;
  }

  .spread-photo-main {
    height: 520px;
  }

  .spread-copy {
    width: 94%;
    margin: -55px 0 0 auto;
    padding: 28px 24px;
    transform: none;
    box-shadow: 7px 7px 0 var(--yellow);
  }

  .spread-copy h3 {
    margin-top: 24px;
    font-size: 7vw;
  }

  .spread-photo-sub {
    width: 72%;
    height: 260px;
    margin: 45px 0 0 2%;
    transform: rotate(-3deg);
  }

  .flavor-title-wrap h2 {
    display: block;
    margin-top: 60px;
    text-align: center;
    font-size: 22vw;
  }

  .flavor-title-wrap h2 span {
    display: block;
    margin-bottom: 16px;
    font-size: .62em;
  }

  .flavor-title-wrap > p {
    padding: 0 12px;
    font-size: 12px;
  }

  .mood-tabs {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
  }

  .mood-tab {
    min-height: 120px;
    padding: 13px;
  }

  .mood-tab + .mood-tab {
    border-left: 0;
  }

  .mood-tab:nth-child(even) {
    border-left: 2px solid var(--white);
  }

  .mood-tab:nth-child(n+3) {
    border-top: 2px solid var(--white);
  }

  .mood-tab:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .mood-tab b {
    font-size: 20px;
  }

  .mood-result {
    grid-template-columns: 1fr;
    box-shadow: 8px 8px 0 var(--yellow);
  }

  .result-visual {
    min-height: 340px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .result-giant {
    font-size: 21vw;
  }

  .result-content {
    padding: 35px 25px 42px;
  }

  .result-content h3 {
    font-size: 9vw;
  }

  .lookbook::before {
    top: 6%;
    width: 38vw;
  }

  .lookbook-heading {
    display: block;
  }

  .lookbook-heading h2 {
    margin-top: 42px;
    font-size: 25vw;
  }

  .lookbook-heading > p:last-child {
    width: 64%;
    margin: 45px 0 0 auto;
    font-size: 12px;
  }

  .lookbook-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 75px;
  }

  .look-card figcaption {
    display: block;
    padding: 8px;
    font-size: 8px;
  }

  .look-card figcaption span {
    margin-bottom: 6px;
  }

  .look-a {
    box-shadow: 5px 5px 0 var(--pink);
  }

  .look-b {
    margin-top: 68px;
    box-shadow: 5px 5px 0 var(--blue);
  }

  .look-c {
    margin-top: -35px;
    box-shadow: 5px 5px 0 var(--blue);
  }

  .look-d {
    margin-top: 35px;
    box-shadow: 5px 5px 0 var(--yellow);
  }

  .menu-heading {
    display: block;
  }

  .menu-heading h2 {
    margin-top: 55px;
    font-size: 18vw;
  }

  .menu-heading h2 span {
    transform: translateX(.2em);
  }

  .menu-heading > p {
    margin-top: 28px;
    text-align: right;
  }

  .menu-layout {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .price-feature {
    padding: 34px 28px;
    box-shadow: 8px 8px 0 var(--blue);
  }

  .price-feature strong {
    font-size: 24vw;
  }

  .menu-list {
    margin-top: 48px;
  }

  .menu-row {
    min-height: 90px;
  }

  .menu-row > span {
    font-size: 14px;
  }

  .menu-row > strong {
    font-size: 26px;
  }

  .drink-strip {
    display: block;
    margin-top: 100px;
    padding: 28px 22px 48px;
    box-shadow: 8px 8px 0 var(--pink);
  }

  .drink-strip-label {
    display: block;
    margin-bottom: 24px;
  }

  .takeout {
    right: -1%;
    bottom: -15%;
    width: 90px;
  }

  .access-top h2 {
    margin: 56px 0 78px;
    font-size: 20vw;
  }

  .access-top h2 span {
    transform: translateX(.15em);
  }

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

  .access-photo {
    min-height: 390px;
  }

  .access-info {
    padding: 35px 24px;
    border-top: 0;
    border-left: 3px solid var(--ink);
  }

  .access-name {
    font-size: 17vw;
  }

  .access-info dl div {
    grid-template-columns: 72px 1fr;
  }

  .access-actions {
    grid-template-columns: 1fr;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .access-actions a {
    min-height: 105px;
  }

  .access-actions a + a {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .access-foot {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
  }

  .site-footer {
    padding: 58px 18px 100px;
  }

  .footer-flower {
    font-size: 16.8vw;
  }

  .footer-meta {
    display: grid;
    gap: 10px;
    margin-top: 38px;
    font-size: 8px;
  }

  .footer-meta a {
    margin-top: 10px;
  }

  .mobile-reserve {
    position: fixed;
    z-index: 800;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: block;
  }

  .mobile-reserve a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 10px 18px;
    color: var(--ink);
    background: var(--yellow);
    border: 2px solid var(--ink);
    box-shadow: 5px 5px 0 var(--blue);
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-reserve b {
    font-size: 22px;
  }
}

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

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

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