:root {
  --ink: #211713;
  --espresso: #4a2e20;
  --cocoa: #724933;
  --caramel: #c98035;
  --gold: #e0a64b;
  --cream: #f6ecdf;
  --porcelain: #fffaf4;
  --blush: #d8a09c;
  --strawberry: #ba4047;
  --mango: #e79727;
  --matcha: #768653;
  --taro: #8b72ac;
  --oreo: #9a8a7c;
  --midnight: #07182b;
  --midnight-soft: #102945;
  --line: rgba(74, 46, 32, 0.2);
  --shadow: 0 24px 70px rgba(33, 23, 19, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 96px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Avenir, "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.site-sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  contain: paint;
  background:
    radial-gradient(circle at 82% 30%, rgba(224, 166, 75, 0.22), transparent 30rem),
    radial-gradient(circle at 18% 78%, rgba(216, 160, 156, 0.12), transparent 24rem),
    linear-gradient(135deg, #061526 0%, #07182b 46%, #0d1f36 100%);
  transform: translateZ(0);
}

.site-sky::before,
.site-sky::after {
  content: "";
  position: absolute;
  inset: -8vmax;
  background-repeat: repeat;
  will-change: opacity, transform;
}

.site-sky::before {
  opacity: 0.56;
  background-image:
    radial-gradient(circle, rgba(255, 250, 244, 0.62) 0 0.78px, rgba(255, 250, 244, 0.18) 1.5px, transparent 2.7px),
    radial-gradient(circle, rgba(224, 166, 75, 0.54) 0 0.72px, rgba(224, 166, 75, 0.15) 1.55px, transparent 2.8px),
    radial-gradient(circle, rgba(255, 250, 244, 0.42) 0 0.68px, rgba(255, 250, 244, 0.12) 1.35px, transparent 2.45px),
    radial-gradient(circle, rgba(216, 160, 156, 0.34) 0 0.68px, rgba(216, 160, 156, 0.11) 1.35px, transparent 2.5px);
  background-size: 132px 132px, 204px 204px, 296px 296px, 430px 430px;
  background-position: 14px 22px, 86px 124px, 210px 70px, 318px 188px;
  animation: star-layer-one 12s ease-in-out infinite alternate;
}

.site-sky::after {
  opacity: 0.34;
  background-image:
    radial-gradient(circle, rgba(255, 250, 244, 0.48) 0 0.72px, rgba(255, 250, 244, 0.15) 1.45px, transparent 2.6px),
    radial-gradient(circle, rgba(216, 160, 156, 0.42) 0 0.7px, rgba(216, 160, 156, 0.13) 1.35px, transparent 2.55px),
    radial-gradient(circle, rgba(224, 166, 75, 0.43) 0 0.7px, rgba(224, 166, 75, 0.13) 1.35px, transparent 2.55px),
    radial-gradient(circle, rgba(255, 250, 244, 0.34) 0 0.62px, rgba(255, 250, 244, 0.1) 1.25px, transparent 2.35px);
  background-size: 166px 166px, 248px 248px, 360px 360px, 560px 560px;
  background-position: 114px 38px, 28px 198px, 310px 136px, 420px 24px;
  animation: star-layer-two 15s ease-in-out 1.2s infinite alternate;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--porcelain);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 10px max(20px, calc((100% - 1120px) / 2));
  color: var(--porcelain);
  background: rgba(7, 24, 43, 0.97);
  border-bottom: 1px solid rgba(224, 166, 75, 0.24);
}

.brand,
.footer-brand,
.thanks-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand img,
.footer-brand img,
.thanks-logo img {
  border-radius: 50%;
  background: var(--porcelain);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 6px;
  color: rgba(255, 250, 244, 0.86);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--porcelain);
  background: rgba(255, 250, 244, 0.1);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: var(--ink);
  background: var(--gold);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--ink);
  background: #f1bd68;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 244, 0.28);
  border-radius: 6px;
  background: rgba(255, 250, 244, 0.08);
  color: var(--porcelain);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(760px, 84svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--porcelain);
  background-color: rgba(7, 24, 43, 0.78);
  background:
    linear-gradient(122deg, rgba(7, 24, 43, 0.76) 0%, rgba(7, 24, 43, 0.68) 34%, rgba(50, 34, 62, 0.6) 59%, rgba(135, 78, 78, 0.48) 78%, rgba(224, 166, 75, 0.34) 100%),
    linear-gradient(32deg, transparent 0 18%, rgba(224, 166, 75, 0.28) 28%, transparent 44%),
    linear-gradient(145deg, transparent 0 48%, rgba(216, 160, 156, 0.24) 60%, transparent 74%);
  background-size: 100% 100%, 120% 120%, 140% 140%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: 0;
  opacity: 0.98;
  background:
    linear-gradient(116deg, transparent 0 16%, rgba(224, 166, 75, 0.38) 25%, rgba(216, 160, 156, 0.22) 32%, transparent 45%),
    linear-gradient(64deg, transparent 0 41%, rgba(255, 250, 244, 0.2) 50%, rgba(118, 134, 83, 0.22) 58%, transparent 70%),
    linear-gradient(153deg, transparent 0 58%, rgba(224, 166, 75, 0.2) 68%, transparent 79%);
  filter: blur(16px);
  transform: translate3d(-2%, -2%, 0) rotate(-3deg) scale(1.05);
  animation: hero-ribbon-drift 12s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 43, 0.56), rgba(7, 24, 43, 0.38) 48%, rgba(7, 24, 43, 0.14) 100%),
    linear-gradient(0deg, rgba(7, 24, 43, 0.56), transparent 34%);
  pointer-events: none;
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.shooting-star {
  position: absolute;
  width: 116px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 250, 244, 0), rgba(255, 250, 244, 0.94) 64%, rgba(224, 166, 75, 0.74));
  box-shadow: 0 0 16px rgba(224, 166, 75, 0.56), 0 0 28px rgba(216, 160, 156, 0.22);
  opacity: 0;
  transform: rotate(-16deg) translate3d(0, 0, 0);
  animation: shooting-star 20s cubic-bezier(0.26, 0.04, 0.34, 1) infinite;
}

.shooting-star::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--porcelain);
  box-shadow: 0 0 12px rgba(255, 250, 244, 0.9), 0 0 22px rgba(224, 166, 75, 0.58);
  transform: translate(50%, -50%);
}

.shooting-star--one {
  top: 24%;
  left: -24%;
  animation-delay: 3s;
}

.shooting-star--two {
  top: 56%;
  left: -32%;
  width: 92px;
  animation-delay: 13.5s;
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--caramel);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.thanks-main h1 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

.hero h1 {
  max-width: 700px;
  font-size: 5.6rem;
}

.hero__lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 250, 244, 0.9);
  font-size: 1.22rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--outline {
  color: var(--porcelain);
  border-color: rgba(255, 250, 244, 0.48);
  background: rgba(255, 250, 244, 0.08);
}

.button--dark {
  color: var(--porcelain);
  background: var(--midnight);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 12px 24px rgba(7, 24, 43, 0.18);
  transform: translateY(-2px);
}

.launch-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin: 34px 0 0;
}

.launch-notes div {
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(224, 166, 75, 0.32);
  border-radius: 8px;
  background: rgba(7, 24, 43, 0.52);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.launch-notes div:hover {
  border-color: rgba(224, 166, 75, 0.68);
  background: rgba(7, 24, 43, 0.68);
  transform: translateY(-3px);
}

.launch-notes dt {
  color: rgba(255, 250, 244, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-notes dd {
  margin: 4px 0 0;
  color: var(--porcelain);
  font-weight: 800;
}

.intro-band {
  color: var(--ink);
  background: var(--gold);
}

.intro-band__inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  margin: 0 auto;
}

.intro-band p {
  margin: 0;
  font-weight: 900;
  text-align: center;
}

.section {
  padding: 82px 0;
  background: var(--cream);
}

.section h2 {
  max-width: 760px;
  color: var(--espresso);
  font-size: 3.2rem;
}

.section p {
  max-width: 680px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0;
}

.section-heading--center {
  justify-items: center;
  text-align: center;
}

.story-grid,
.experience-grid,
.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 52px;
  align-items: center;
}

.story-copy p,
.experience-copy > p,
.inquiry-copy > p {
  color: rgba(33, 23, 19, 0.78);
}

.menu-board {
  margin: 0;
}

.menu-board img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 250, 244, 0.66)),
    var(--porcelain);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.booking-card:hover,
.service-card:hover,
.occasion-grid article:hover,
.flavor-card:hover,
.flavor-showcase-card:hover,
.faq-list details:hover {
  transform: translateY(-4px);
}

.booking-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: transform 420ms ease;
}

.booking-card:hover img {
  transform: rotate(4deg) scale(1.04);
}

.booking-card__label,
.service-card__label {
  margin: 0;
  color: var(--caramel);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-card h3 {
  margin: 0;
  color: var(--espresso);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 2rem;
  line-height: 1.08;
}

.booking-card p {
  margin: 0;
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.mini-stat-grid span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(224, 166, 75, 0.14);
  color: var(--espresso);
  font-weight: 900;
}

.section--menu {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--porcelain);
  background:
    linear-gradient(180deg, rgba(7, 24, 43, 0.42), rgba(7, 24, 43, 0.54)),
    rgba(7, 24, 43, 0.78);
}

.section--menu > .container,
.section--inquire > .container,
.site-footer > .container {
  position: relative;
  z-index: 1;
}

.section--menu .section-kicker,
.section--menu h2 {
  color: var(--gold);
}

.section--menu .section-heading p {
  color: rgba(255, 250, 244, 0.78);
}

.flavor-heading {
  max-width: 820px;
}

.flavor-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -8px 0 30px;
  padding: 16px 18px;
  border: 1px solid rgba(224, 166, 75, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.08);
}

.flavor-note p {
  margin: 0;
  color: rgba(255, 250, 244, 0.82);
}

.flavor-note a {
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 900;
  text-decoration-color: rgba(224, 166, 75, 0.72);
  text-underline-offset: 4px;
}

.flavor-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.flavor-showcase-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.08);
  transition: border-color 220ms ease, background 220ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.flavor-showcase-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--porcelain);
  transition: transform 520ms ease;
}

.flavor-showcase-card:hover {
  border-color: rgba(224, 166, 75, 0.42);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.flavor-showcase-card:hover img {
  transform: scale(1.055);
}

.flavor-card__body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.flavor-card__body h3 {
  margin: 2px 0 0;
  color: var(--porcelain);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.05;
}

.flavor-card__body p {
  margin: 0;
  color: rgba(255, 250, 244, 0.78);
}

.flavor-card__body .flavor-base {
  color: rgba(255, 250, 244, 0.9);
  font-size: 0.9rem;
}

.flavor-base strong {
  color: var(--gold);
}

.flavor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.flavor-chips span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: 6px;
  color: rgba(255, 250, 244, 0.78);
  background: rgba(255, 250, 244, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.flavor-showcase-card:hover .flavor-chips span {
  border-color: rgba(224, 166, 75, 0.34);
  color: var(--porcelain);
  background: rgba(224, 166, 75, 0.1);
}

.flavor-showcase-card--milky {
  border-top: 5px solid var(--porcelain);
}

.flavor-showcase-card--mango {
  border-top: 5px solid var(--mango);
}

.flavor-showcase-card--berry {
  border-top: 5px solid var(--strawberry);
}

.flavor-showcase-card--matcha {
  border-top: 5px solid var(--matcha);
}

.flavor-showcase-card--taro {
  border-top: 5px solid var(--taro);
}

.flavor-showcase-card--oreo {
  border-top: 5px solid var(--oreo);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  gap: 28px;
  align-items: start;
}

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

.flavor-card {
  min-height: 265px;
  padding: 20px;
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.08);
  transition: border-color 220ms ease, background 220ms ease, transform 260ms ease;
}

.flavor-card:hover {
  border-color: rgba(224, 166, 75, 0.36);
  background: rgba(255, 250, 244, 0.12);
}

.flavor-card--milky {
  border-top: 5px solid var(--porcelain);
}

.flavor-card--mango {
  border-top: 5px solid var(--mango);
}

.flavor-card--berry {
  border-top: 5px solid var(--strawberry);
}

.flavor-card--matcha {
  border-top: 5px solid var(--matcha);
}

.flavor-card--taro {
  border-top: 5px solid var(--taro);
}

.flavor-card__tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--midnight);
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.flavor-card h3,
.feature-list h3,
.occasion-grid h3 {
  margin: 14px 0 6px;
  color: inherit;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.flavor-card p,
.flavor-card li {
  color: rgba(255, 250, 244, 0.82);
}

.flavor-card p {
  margin: 0 0 12px;
}

.flavor-card ul {
  margin: 0;
  padding-left: 20px;
}

.menu-board img {
  aspect-ratio: 5 / 4;
}

.section--experience {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.68), rgba(246, 236, 223, 0.98)),
    var(--cream);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.feature-list article {
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 250, 244, 0.58);
}

.feature-list h3 {
  margin-top: 0;
  color: var(--espresso);
}

.feature-list p {
  margin: 0;
}

.service-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--porcelain);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.service-card:hover,
.booking-card:hover {
  box-shadow: 0 28px 74px rgba(33, 23, 19, 0.24);
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(33, 23, 19, 0.78);
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.section--events {
  background: var(--porcelain);
}

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

.occasion-grid article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  transition: border-color 220ms ease, background 220ms ease, transform 260ms ease;
}

.occasion-grid article:hover {
  border-color: rgba(201, 128, 53, 0.36);
  background: var(--porcelain);
}

.occasion-grid h3 {
  color: var(--espresso);
}

.occasion-grid p {
  margin: 0;
  color: rgba(33, 23, 19, 0.72);
}

.section--offer {
  padding: 46px 0;
  background: var(--gold);
}

.offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.offer-actions,
.faq-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.offer-panel h2 {
  font-size: 2.4rem;
}

.offer-panel p {
  margin-bottom: 0;
}

.faq-page-hero {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.86), rgba(246, 236, 223, 0.96)),
    var(--cream);
}

.faq-page-hero__inner {
  display: grid;
  gap: 18px;
}

.faq-page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--espresso);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 4.2rem;
  line-height: 0.98;
}

.faq-page-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(33, 23, 19, 0.74);
  font-size: 1.1rem;
}

.faq-page-list {
  padding-top: 34px;
}

.section--faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.72);
  transition: border-color 220ms ease, background 220ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.faq-list details[open],
.faq-list details:hover {
  border-color: rgba(201, 128, 53, 0.34);
  background: rgba(255, 250, 244, 0.9);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: var(--espresso);
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease;
}

.faq-list summary:hover {
  color: var(--caramel);
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(33, 23, 19, 0.72);
}

.section--inquire {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--porcelain);
  background:
    radial-gradient(circle at top left, rgba(224, 166, 75, 0.18), transparent 34rem),
    linear-gradient(180deg, rgba(7, 24, 43, 0.44), rgba(7, 24, 43, 0.58)),
    rgba(7, 24, 43, 0.78);
}

.section--inquire .inquiry-grid {
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.section--inquire h2,
.section--inquire .section-kicker {
  color: var(--gold);
}

.section--inquire .inquiry-copy {
  display: grid;
  gap: 12px;
  max-width: 100%;
}

.section--inquire h2 {
  max-width: none;
  white-space: nowrap;
}

.section--inquire .inquiry-copy > p {
  color: rgba(255, 250, 244, 0.78);
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(224, 166, 75, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.08);
}

.section--inquire .inquiry-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.section--inquire .form-section,
.section--inquire .form-fieldset {
  grid-column: 1 / -1;
}

.section--inquire .form-row--message {
  grid-column: 1 / -1;
}

.form-actions {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 14px 18px;
  align-items: center;
}

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

.form-section {
  display: grid;
  gap: 14px;
}

.form-section--contact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  color: rgba(255, 250, 244, 0.8);
  font-size: 0.88rem;
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 6px;
  color: var(--ink);
  background: var(--porcelain);
  padding: 11px 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.form-row textarea {
  resize: vertical;
}

.form-fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 250, 244, 0.2);
  border-radius: 8px;
}

.form-fieldset legend {
  padding: 0 6px;
  color: rgba(255, 250, 244, 0.8);
  font-size: 0.88rem;
  font-weight: 900;
}

.form-fieldset p {
  margin: 0;
  color: rgba(255, 250, 244, 0.68);
  font-size: 0.9rem;
}

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

.checkbox-grid label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 244, 0.16);
  border-radius: 6px;
  background: rgba(255, 250, 244, 0.08);
  color: var(--porcelain);
  font-weight: 800;
}

.checkbox-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.button:focus-visible {
  outline: 3px solid rgba(224, 166, 75, 0.48);
  outline-offset: 2px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(224, 166, 75, 0.74);
  box-shadow: 0 0 0 4px rgba(224, 166, 75, 0.18);
  transform: translateY(-1px);
}

.motion-ready .reveal-in {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}

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

.form-note {
  margin: 0;
  color: rgba(255, 250, 244, 0.66);
  font-size: 0.9rem;
}

.form-note a {
  color: var(--porcelain);
  font-weight: 900;
  text-decoration-color: rgba(224, 166, 75, 0.62);
  text-underline-offset: 3px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 26px 0;
  color: var(--porcelain);
  background:
    linear-gradient(180deg, rgba(4, 13, 24, 0.78), rgba(4, 13, 24, 0.86)),
    rgba(4, 13, 24, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 18px 24px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 250, 244, 0.72);
}

.footer-grid > p:not(.footer-social) {
  justify-self: center;
  text-align: center;
}

.footer-social {
  display: grid;
  gap: 4px;
  font-weight: 900;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--porcelain);
  background:
    linear-gradient(rgba(7, 24, 43, 0.82), rgba(7, 24, 43, 0.9)),
    url("assets/hero-bingsu.jpg") center / cover;
}

.thanks-main {
  width: min(680px, 100%);
  padding: 34px;
  border: 1px solid rgba(224, 166, 75, 0.3);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.thanks-logo {
  margin-bottom: 28px;
}

.thanks-main h1 {
  color: var(--espresso);
  font-size: 3rem;
}

.thanks-main p {
  max-width: 580px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    padding: 16px 20px 22px;
    background: rgba(7, 24, 43, 0.98);
    border-bottom: 1px solid rgba(224, 166, 75, 0.24);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 82svh;
  }

  .hero h1 {
    font-size: 4.1rem;
  }

  .story-grid,
  .experience-grid,
  .inquiry-grid,
  .menu-layout,
  .faq-grid,
  .offer-panel {
    grid-template-columns: 1fr;
  }

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

  .section--inquire .inquiry-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section--inquire .form-row--message,
  .form-actions {
    grid-column: 1 / -1;
  }

  .form-section--event {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 720px) {
  .container,
  .hero__inner,
  .intro-band__inner {
    width: min(100% - 28px, 1120px);
  }

  .brand span {
    font-size: 1.1rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero__inner {
    padding: 60px 0 66px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .hero__actions,
  .intro-band__inner,
  .flavor-grid,
  .flavor-showcase,
  .section--inquire .inquiry-form,
  .form-section--contact,
  .form-section--event,
  .checkbox-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    display: grid;
  }

  .launch-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .launch-notes div {
    min-height: 74px;
    padding: 10px;
  }

  .launch-notes dt {
    font-size: 0.68rem;
  }

  .launch-notes dd {
    font-size: 0.82rem;
  }

  .intro-band__inner {
    padding: 14px 0;
  }

  .section {
    padding: 62px 0;
  }

  .section h2,
  .thanks-main h1,
  .faq-page-hero h1 {
    font-size: 2.35rem;
  }

  .section--inquire h2 {
    white-space: normal;
  }

  .offer-actions,
  .faq-page-actions {
    display: grid;
  }

  .flavor-note {
    display: grid;
    align-items: start;
  }

  .flavor-note a {
    width: fit-content;
  }

  .flavor-card__body h3 {
    font-size: 1.55rem;
  }

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

  .occasion-grid article,
  .flavor-card {
    min-height: auto;
  }

  .inquiry-form {
    padding: 18px;
  }

  .section--inquire .form-fieldset,
  .section--inquire .form-row--message,
  .form-actions {
    grid-column: 1 / -1;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    justify-items: start;
  }

  .footer-grid > p:not(.footer-social) {
    justify-self: start;
    text-align: left;
  }
}

@keyframes hero-ribbon-drift {
  0% {
    transform: translate3d(-4%, -2%, 0) rotate(-4deg) scale(1.04);
  }

  100% {
    transform: translate3d(3%, 2%, 0) rotate(3deg) scale(1.08);
  }
}

@keyframes star-layer-one {
  0% {
    opacity: 0.48;
    transform: translate3d(0, 0, 0) scale(1);
  }

  45% {
    opacity: 0.72;
    transform: translate3d(7px, -5px, 0) scale(1.01);
  }

  100% {
    opacity: 0.56;
    transform: translate3d(13px, -9px, 0) scale(1);
  }
}

@keyframes star-layer-two {
  0% {
    opacity: 0.28;
    transform: translate3d(0, 0, 0) scale(1.02);
  }

  55% {
    opacity: 0.5;
    transform: translate3d(-6px, 8px, 0) scale(1);
  }

  100% {
    opacity: 0.34;
    transform: translate3d(-12px, 14px, 0) scale(1.02);
  }
}

@keyframes shooting-star {
  0%,
  12% {
    opacity: 0;
    transform: rotate(-16deg) translate3d(-14vw, -5vh, 0) scale(0.88);
  }

  15% {
    opacity: 0.9;
  }

  22% {
    opacity: 0.82;
  }

  30%,
  100% {
    opacity: 0;
    transform: rotate(-16deg) translate3d(94vw, 22vh, 0) scale(0.98);
  }
}

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

  .site-sky,
  .site-sky::before,
  .site-sky::after,
  .hero::before,
  .shooting-star {
    animation: none;
  }

  .motion-ready .reveal-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

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