:root {
  --black: #050505;
  --panel: #141414;
  --paper: #f7f2e8;
  --paper-2: #e9dfcf;
  --white: #ffffff;
  --ink: #171714;
  --muted: #6f6a5e;
  --lime: #d7ef00;
  --line: rgba(23, 23, 20, .14);
  --line-dark: rgba(255, 255, 255, .16);
  --radius: 8px;
  --bar-h: 84px;
  --wrap: min(1160px, calc(100% - 32px));
  --display: "Inter", "Noto Sans JP", sans-serif;
  --num: "Cormorant Garamond", "Shippori Mincho", serif;
  --serif: "Shippori Mincho", "Noto Sans JP", serif;
  --sans: "Noto Sans JP", sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  overflow-x: hidden;
  scroll-behavior: auto;
  scroll-padding-top: var(--bar-h);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.15;
  word-break: normal;
  overflow-wrap: anywhere;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

button {
  border: 0;
  padding: 0;
  color: inherit;
  background: none;
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.nowrap {
  white-space: nowrap;
}

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

.section {
  padding-block: 72px;
}

.eyebrow {
  color: var(--lime);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.page-aura {
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: env(safe-area-inset-top, 0) 18px 0;
  color: var(--white);
  background: rgba(5, 5, 5, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  width: 132px;
}

.brand img {
  width: 100%;
}

.nav {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 55;
  width: min(330px, 84vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  padding: 96px 38px 48px;
  color: var(--white);
  background: var(--black);
  border-left: 1px solid var(--line-dark);
  transform: translateX(104%);
  transition: transform .25s var(--ease);
}

body.nav-open .nav {
  transform: translateX(0);
}

.nav a {
  color: rgba(255, 255, 255, .84);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--lime);
}

.burger {
  z-index: 60;
  display: flex;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.burger span {
  width: 28px;
  height: 3px;
  background: var(--lime);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}

body.nav-open .burger span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

body.nav-open .burger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .burger span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, .64);
  opacity: 0;
  transition: opacity .25s var(--ease);
}

.nav-backdrop.is-visible {
  opacity: 1;
}

.mobile-top {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9em 1.25em;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
}

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

.button--line {
  color: var(--white);
  border: 1px solid var(--line-dark);
}

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

.top-frame {
  color: var(--white);
  background: var(--black);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: start;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .42), rgba(5, 5, 5, .78) 48%, rgba(5, 5, 5, .98)),
    linear-gradient(90deg, rgba(5, 5, 5, .86), rgba(5, 5, 5, .2));
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% top;
}

.hero__ice {
  position: absolute;
  z-index: 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(223, 247, 255, .7);
  box-shadow:
    22vw 12vh 0 rgba(255, 255, 255, .22),
    48vw 26vh 0 rgba(223, 247, 255, .18),
    78vw 56vh 0 rgba(255, 255, 255, .16);
  opacity: .38;
}

.hero__ice--one {
  left: 12vw;
  top: 26vh;
}

.hero__ice--two {
  right: 18vw;
  bottom: 18vh;
}

.hero__inner {
  position: relative;
  z-index: 4;
  width: var(--wrap);
  margin-inline: auto;
  padding: calc(var(--bar-h) + 72px) 0 40px;
}

.hero .eyebrow {
  max-width: 100%;
  line-height: 1.45;
}

.hero__title {
  margin-top: 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 10.5vw, 2.95rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .01em;
}

.hero__title span {
  display: block;
}

.hero__lead {
  max-width: 34em;
  margin-top: 20px;
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.78;
}

.hero__lead .nowrap {
  white-space: normal;
}

.hero__actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.hero__actions .button {
  width: 100%;
}

.intro {
  padding-block: 30px 34px;
  color: var(--white);
  background: var(--black);
}

.intro__grid {
  display: grid;
  gap: 24px;
}

.intro h2 {
  margin-top: 12px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.3;
}

.intro__prices {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line-dark);
}

.intro__prices div {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-dark);
}

.intro__prices div:last-child {
  border-bottom: 0;
}

.intro__prices span {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-family: var(--display);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price {
  display: inline-flex;
  align-items: baseline;
  gap: .07em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.price__num {
  font-family: var(--num);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: .86;
}

.price__yen {
  font-family: var(--sans);
  font-size: .48em;
  font-weight: 800;
  line-height: 1;
}

.intro__prices .price {
  margin-top: 10px;
  color: var(--lime);
  font-size: 2.25rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-head h2,
.drink__body h2,
.cups__copy h2,
.event__body h2,
.social__copy h2 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 600;
  line-height: 1.22;
}

.section-head p:not(.eyebrow),
.cups__copy p,
.event__body p,
.social__copy p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 600;
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.menu-card,
.kids-card,
.option-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.menu-card img,
.kids-card img,
.option-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.menu-card div,
.kids-card div,
.option-card div {
  padding: 22px;
}

.menu-card div > span,
.kids-card div > span,
.option-card div > span {
  display: block;
  color: var(--muted);
  font-family: var(--display);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.menu-card h3,
.kids-card h3,
.option-card h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.menu-card .price,
.kids-card .price,
.option-card .price {
  margin-top: 14px;
  color: var(--black);
  font-size: 3rem;
  line-height: 1;
}

.kids-card {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(215, 239, 0, .16), transparent 48%),
    #fff9e8;
}

.kids-card p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
}

.kids-card .price {
  color: #2f7b18;
}

.option-card {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(245, 233, 187, .4), transparent 50%),
    #fffdf2;
}

.option-card p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
}

.option-card .price {
  color: #8a6d1f;
}

.price__plus {
  font-family: var(--sans);
  font-size: .48em;
  font-weight: 900;
  line-height: 1;
}

.drink,
.event,
.social {
  color: var(--white);
  background: var(--black);
}

.drink__grid,
.event__grid {
  display: grid;
  gap: 30px;
}

.drink__image,
.event__image,
.cup-photo {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--panel);
}

.drink__image img,
.event__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.drink__image i {
  display: none;
}

.drink__body h2,
.event__body h2 {
  color: var(--white);
}

.line-list {
  margin-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.line-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.line-list span {
  font-weight: 800;
}

.line-list .price {
  color: var(--lime);
  font-size: 2rem;
}

.size-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.size-note p {
  padding: 9px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}

.size-note b {
  color: var(--white);
}

.size-note .price {
  margin-left: 4px;
  color: var(--lime);
  font-size: 1.1rem;
}

.quality {
  background: var(--paper-2);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.quality-item {
  min-height: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .28);
}

.quality-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quality-number {
  color: var(--lime);
  font-family: var(--num);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 0 var(--black);
}

.quality-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 1px solid color-mix(in srgb, var(--lime) 46%, var(--line));
  border-radius: 50%;
  background: rgba(215, 239, 0, .1);
}

.quality-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quality-item h3 {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.quality-item p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

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

.cups__grid,
.cup-showcase,
.cup-list,
.social__grid,
.social-cards {
  display: grid;
  gap: 18px;
}

.cup-photo {
  border-color: var(--line);
  background: var(--white);
}

.cup-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cup-list div {
  min-height: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.cup-list span {
  display: inline-flex;
  padding: .35em .65em;
  border-radius: 999px;
  color: var(--black);
  background: var(--lime);
  font-size: .82rem;
  font-weight: 900;
}

.cup-list h3 {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.cup-list p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
}

.event__body p,
.social__copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.event__body .button {
  margin-top: 28px;
  color: var(--black);
  background: var(--white);
}

.social {
  border-top: 1px solid var(--line-dark);
}

.social__copy {
  max-width: 900px;
}

.social-card {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.social-card--line {
  --social-accent: #06c755;
}

.social-card--insta {
  --social-accent: #ff4f8b;
}

.social-card__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--black);
  background: var(--social-accent);
}

.social-card__icon i {
  font-size: 1.75rem;
}

.social-card span {
  color: var(--social-accent);
  font-family: var(--display);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.social-card h3 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.social-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .72);
  font-weight: 600;
}

.social-qr {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}

.social-qr img {
  width: min(100%, 240px);
  aspect-ratio: 1;
  height: auto;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
}

.social-card a {
  display: flex;
  justify-content: center;
  width: min(100%, 240px);
  margin: 22px auto 0;
  padding: .8em 1em;
  border: 1px solid color-mix(in srgb, var(--social-accent) 56%, var(--line-dark));
  border-radius: 999px;
  color: var(--social-accent);
  font-size: .86rem;
  font-weight: 800;
}

.footer {
  padding-block: 46px 40px;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  text-align: center;
}

.footer__inner {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.footer img {
  width: 210px;
}

.footer p {
  color: var(--lime);
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.footer small {
  color: rgba(255, 255, 255, .5);
}

html.is-booted .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

html.is-booted .hero .reveal,
html.is-booted .reveal.is-in {
  opacity: 1;
  transform: none;
}

html.is-booted .reveal[data-reveal-delay="1"] {
  transition-delay: .06s;
}

html.is-booted .reveal[data-reveal-delay="2"] {
  transition-delay: .12s;
}

html.is-booted .reveal[data-reveal-delay="3"] {
  transition-delay: .18s;
}

@media (min-width: 681px) {
  :root {
    --bar-h: 74px;
    --wrap: min(1160px, calc(100% - clamp(48px, 7vw, 96px)));
  }

  .site-header {
    height: var(--bar-h);
    padding: 0 clamp(20px, 4vw, 44px);
  }

  .brand {
    width: 154px;
  }

  .hero__actions {
    display: flex;
  }

  .hero__actions .button {
    width: auto;
  }

  .intro__prices {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro__prices div {
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .intro__prices div:last-child {
    border-right: 0;
  }

  .menu-grid,
  .quality-grid,
  .cup-list,
  .social-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kids-card,
  .option-card {
    display: grid;
    grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
  }

  .kids-card img,
  .option-card img {
    height: 100%;
  }
}

@media (min-width: 921px) {
  .section {
    padding-block: clamp(88px, 10vw, 132px);
  }

  .nav {
    position: static;
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 3vw, 34px);
    padding: 0;
    background: transparent;
    border-left: 0;
    transform: none;
  }

  .nav a {
    font-size: .78rem;
  }

  .burger {
    display: none;
  }

  .top-frame {
    min-height: 100svh;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .hero {
    min-height: 0;
    align-items: end;
  }

  .hero__media img {
    object-position: 65% top;
    transform: none;
    animation: none;
  }

  .hero__inner {
    padding: calc(var(--bar-h) + 48px) 0 58px;
  }

  .hero__title {
    max-width: min(980px, 76vw);
    font-size: clamp(3rem, 4.7vw, 5rem);
    line-height: 1.16;
    white-space: nowrap;
  }

  .hero__title span {
    display: inline;
  }

  .hero__lead {
    max-width: 580px;
    font-size: clamp(.95rem, 1.2vw, 1.05rem);
    line-height: 2;
  }

  .intro {
    padding-block: clamp(24px, 3.2vw, 40px);
  }

  .intro__grid,
  .drink__grid,
  .event__grid,
  .cups__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .95fr);
    align-items: center;
    gap: clamp(34px, 6vw, 76px);
  }

  .intro h2 {
    font-size: clamp(1.85rem, 3.2vw, 3.05rem);
  }

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

  .menu-card {
    grid-column: span 3;
  }

  .menu-card--hero {
    grid-column: span 6;
    grid-row: span 2;
  }

  .kids-card,
  .option-card {
    grid-column: 1 / -1;
  }

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

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

  .cup-list {
    grid-column: 1 / -1;
  }

  .social-cards {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

}

@media (hover: hover) and (pointer: fine) {
  .menu-card,
  .kids-card,
  .option-card,
  .social-card,
  .cup-photo,
  .quality-item {
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
  }

  .menu-card:hover,
  .kids-card:hover,
  .option-card:hover,
  .social-card:hover,
  .cup-photo:hover,
  .quality-item:hover {
    transform: translateY(-4px);
  }
}

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

  html.is-booted .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 680px) {
  :root {
    --wrap: calc(100vw - 28px);
    --header-h: 76px;
    --section-y: 56px;
  }

  *,
  *::before,
  *::after {
    max-width: 100%;
  }

  html,
  body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
    line-height: 1.75;
  }

  .page-aura,
  .hero__ice {
    display: none;
  }

  .wrap {
    width: var(--wrap);
  }

  .site-header {
    position: fixed;
    inset: 0 0 auto;
    height: calc(var(--header-h) + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 14px 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    z-index: 30;
  }

  .brand {
    width: 126px;
    height: 52px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .brand img {
    width: 126px;
    height: auto;
    display: block;
  }

  .burger {
    display: none;
  }

  .nav,
  .nav-backdrop {
    display: none !important;
  }

  .mobile-top {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 45;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    gap: 2px;
    color: var(--black);
    background: var(--lime);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .36);
    font-family: var(--display);
    font-size: .62rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .08em;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(16px) scale(.9);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
  }

  .mobile-top.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none;
    transition-delay: 0s;
  }

  .mobile-top i {
    font-size: 1rem;
    line-height: 1;
  }

  .top-frame {
    display: block;
    min-height: 0;
    background: #030303;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    height: auto;
    display: block;
    padding: 0;
    overflow: hidden;
    background: #030303;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .46) 0%, rgba(0, 0, 0, .2) 55%, rgba(0, 0, 0, .08) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .04) 42%, rgba(0, 0, 0, .78) 100%);
    pointer-events: none;
  }

  .hero::after {
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .1) 48%, rgba(0, 0, 0, .82)),
      linear-gradient(90deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .06));
  }

  .hero__media {
    position: absolute;
    inset: -16svh 0 auto;
    width: 100%;
    height: 116svh;
    z-index: 0;
    transform: none !important;
  }

  .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: .98;
    transform: none !important;
    animation: none !important;
  }

  .hero__inner {
    position: relative;
    z-index: 3;
    width: var(--wrap);
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--header-h) + env(safe-area-inset-top) + 24px) 0 calc(34px + env(safe-area-inset-bottom));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .eyebrow,
  .hero .eyebrow {
    font-size: .64rem;
    line-height: 1.35;
    letter-spacing: .18em;
  }

  .hero__title {
    width: 100%;
    margin: 14px 0 0;
    font-size: clamp(1.95rem, 8.8vw, 2.32rem);
    line-height: 1.18;
    letter-spacing: 0;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .56);
  }

  .hero__title span {
    display: block;
    white-space: nowrap;
  }

  .hero__lead {
    width: 100%;
    max-width: 22.5em;
    margin: 12px 0 0;
    font-size: .84rem;
    line-height: 1.65;
    letter-spacing: 0;
    word-break: normal;
    overflow-wrap: anywhere;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .62);
  }

  .hero__actions {
    width: 100%;
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .button,
  .hero__actions .button {
    width: 100%;
    min-height: 44px;
    padding: 0 18px;
    justify-content: center;
    border-radius: 999px;
    font-size: .86rem;
    line-height: 1;
    white-space: nowrap;
  }

  .intro {
    padding: 32px 0 38px;
    background: #030303;
  }

  .intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro h2 {
    font-size: clamp(1.85rem, 8.6vw, 2.45rem);
    line-height: 1.32;
  }

  .intro__prices {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .13);
  }

  .intro__prices div {
    min-width: 0;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .intro__prices div:last-child {
    border-bottom: 0;
  }

  .intro__prices span {
    font-size: .72rem;
  }

  .intro__prices .price {
    font-size: 1.55rem;
    white-space: nowrap;
  }

  .section {
    padding-block: var(--section-y);
    overflow: hidden;
  }

  .section-head {
    width: 100%;
    margin: 0 0 28px;
  }

  .section-head h2,
  .drink__body h2,
  .event__body h2,
  .cups__copy h2,
  .social__copy h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.25;
    letter-spacing: 0;
  }

  .section-head p,
  .drink__body > p,
  .event__body p,
  .cups__copy p,
  .social__copy p {
    max-width: 100%;
    font-size: .94rem;
    line-height: 1.85;
  }

  .menu-grid,
  .quality-grid,
  .cup-showcase,
  .cup-list,
  .social-cards {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .menu-card,
  .menu-card--hero,
  .kids-card,
  .option-card {
    width: 100%;
    min-width: 0;
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    border-radius: 10px;
    transform: none !important;
  }

  .menu-card img,
  .kids-card img,
  .option-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transform: none !important;
  }

  .menu-card div,
  .kids-card div,
  .option-card div {
    min-width: 0;
    padding: 20px;
  }

  .menu-card h3,
  .kids-card h3,
  .option-card h3 {
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .menu-card .price,
  .kids-card .price,
  .option-card .price {
    margin-top: 12px;
    font-size: 2rem;
    line-height: 1;
  }

  .kids-card,
  .option-card {
    background: #fff;
    color: var(--ink);
  }

  .kids-card p,
  .option-card p {
    color: rgba(17, 17, 17, .66);
  }

  .drink__grid,
  .event__grid,
  .cups__grid,
  .social__grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .drink__image,
  .event__image,
  .cup-photo {
    width: 100%;
    border-radius: 10px;
    transform: none !important;
  }

  .drink__image img,
  .event__image img,
  .cup-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .line-list {
    margin-top: 22px;
  }

  .line-list li {
    min-width: 0;
    padding: 16px 0;
    gap: 14px;
  }

  .line-list .price {
    white-space: nowrap;
  }

  .size-note {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quality-item {
    min-width: 0;
    padding: 18px;
    transform: none !important;
  }

  .quality-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .quality-number {
    flex: 0 0 auto;
    font-size: 1.45rem;
  }

  .quality-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .cup-list {
    margin-top: 0;
  }

  .cup-list div,
  .social-card {
    min-width: 0;
    padding: 20px;
    border-radius: 10px;
    transform: none !important;
  }

  .social-card__icon {
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }

  .social-card h3 {
    font-size: 1.45rem;
    line-height: 1.45;
  }

  .social-qr {
    display: flex;
    justify-content: center;
  }

  .social-qr img {
    width: min(100%, 216px);
    height: auto;
  }

  .footer {
    padding: 42px 0 calc(42px + env(safe-area-inset-bottom));
  }

  .footer img {
    width: 138px;
  }

  html.is-booted .reveal,
  html.is-booted .hero .reveal,
  html.is-booted .reveal.is-in {
    opacity: 1;
    transform: none !important;
  }
}

@media (max-width: 390px) {
  :root {
    --wrap: calc(100vw - 24px);
  }

  .hero__title {
    font-size: clamp(2rem, 9.5vw, 2.32rem);
  }

  .hero__lead {
    font-size: .9rem;
  }

  .brand,
  .brand img {
    width: 118px;
  }
}
