/* ── Active nav link ──────────────────────────────────────────── */
.nav__links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

/* ── Menu header (purple zone) ────────────────────────────────── */
.menu-header {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  padding-block:
    calc(var(--nav-h) + clamp(3.5rem, 7vw, 5.5rem))
    clamp(3.5rem, 7vw, 5.5rem);
}

/* Top-right decorative ring */
.menu-header::before {
  content: '';
  position: absolute;
  inset-inline-end: -180px;
  inset-block-start: -180px;
  width: 560px;
  height: 560px;
  border: 72px solid oklch(1 0 0 / 0.09);
  border-radius: 50%;
  pointer-events: none;
}

/* Bottom-left accent ring */
.menu-header::after {
  content: '';
  position: absolute;
  inset-inline-start: -100px;
  inset-block-end: -100px;
  width: 340px;
  height: 340px;
  border: 48px solid oklch(0.50 0.22 22 / 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.menu-header__inner {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1.75rem, 5vw, 4rem);
}

.menu-header__title {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: white;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.menu-header__sub {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 500;
  color: var(--primary-light);
  letter-spacing: 0.005em;
}

/* ── Main body ────────────────────────────────────────────────── */
.menu-main {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.menu-main__inner {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: clamp(1.75rem, 5vw, 4rem);
}

/* ── Section title ────────────────────────────────────────────── */
.menu-section {
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}
.menu-section:last-child {
  margin-bottom: 0;
}

.menu-section__title {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.5rem;
  text-wrap: balance;
}

.menu-section__desc {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
  max-width: 52ch;
  text-wrap: pretty;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

/* ── Flavor list ──────────────────────────────────────────────── */
.flavor-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flavor-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--border);
}

.flavor-list .flavor-item:first-child {
  border-top: 1px solid var(--border);
}

.flavor-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  flex-shrink: 0;
}

.flavor-note {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--muted);
  text-align: right;
  text-wrap: pretty;
}


/* ── CTA strip ────────────────────────────────────────────────── */
.menu-cta {
  margin-top: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}

.menu-cta__text {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: white;
  text-wrap: balance;
  flex: 1;
  min-width: 200px;
}

.menu-cta__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.625rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--accent);
  color: white;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background 0.2s var(--ease-quart),
    box-shadow 0.2s var(--ease-quart);
}

.btn-primary:is(:hover, :focus-visible) {
  background: var(--accent-h);
  box-shadow: 0 4px 16px oklch(0.50 0.22 22 / 0.28);
  outline: none;
}

.btn-primary:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
}

.btn-primary:active { box-shadow: none; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.375rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: oklch(1 0 0 / 0.75);
  border: 1.5px solid oklch(1 0 0 / 0.25);
  transition:
    color 0.2s var(--ease-quart),
    border-color 0.2s var(--ease-quart);
}

.btn-ghost:hover {
  color: white;
  border-color: oklch(1 0 0 / 0.5);
}

.btn-ghost:focus-visible {
  color: white;
  border-color: oklch(1 0 0 / 0.5);
  outline: 2px solid white;
  outline-offset: 3px;
}

.btn-ghost:active {
  transform: scale(0.98);
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 2.25rem;
  background: var(--bg);
}

.site-footer__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2.5rem;
  flex-wrap: wrap;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-footer__name {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.site-footer__tagline {
  font-size: 0.8125rem;
  color: var(--muted);
}

.site-footer__info {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.125rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  border: 2px solid var(--accent);
  color: var(--accent-deep);
  transition:
    background 0.2s var(--ease-quart),
    color      0.2s var(--ease-quart);
}
.btn-outline:hover {
  background: var(--accent);
  color: white;
}

.btn-outline:focus-visible {
  background: var(--accent);
  color: white;
  outline: 2px solid white;
  outline-offset: 3px;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 699px) {
  .flavor-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .flavor-note {
    text-align: left;
    font-size: 0.875rem;
  }

  .menu-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

@media (min-width: 700px) and (max-width: 899px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .btn-ghost,
  .btn-outline { transition: none; }

  .btn-ghost:active { transform: none; }
}
