:root {
  --ink: #1d211e;
  --muted: #626861;
  --paper: #fbfaf5;
  --surface: #ffffff;
  --line: #e5ded2;
  --red: #b83227;
  --red-dark: #8d241c;
  --green: #23664a;
  --green-dark: #143f2d;
  --gold: #b47c2f;
  --shadow: 0 18px 42px rgba(30, 33, 30, 0.12);
  --header-height: 78px;
  --container: 1120px;
  --page-gutter: clamp(1rem, 5vw, 4rem);
  --font-sans: "Be Vietnam Pro", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + constant(safe-area-inset-top) + 1rem);
  scroll-padding-top: calc(var(--header-height) + env(safe-area-inset-top) + 1rem);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open,
body.announcement-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.announcement-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.announcement-modal[hidden] {
  display: none;
}

.announcement-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(184, 50, 39, 0.24), transparent 42%),
    rgba(13, 15, 13, 0.72);
  backdrop-filter: blur(8px);
}

.announcement-card {
  position: relative;
  display: grid;
  width: min(540px, 100%);
  gap: 1.05rem;
  overflow: hidden;
  border: 2px solid rgba(255, 250, 241, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #d43a2d 0%, #ad2a22 52%, #862016 100%),
    var(--red);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 0 8px rgba(212, 58, 45, 0.22);
  padding: clamp(2.1rem, 5vw, 2.65rem) clamp(1.25rem, 5vw, 2.5rem) clamp(1.7rem, 4vw, 2.15rem);
  text-align: center;
  transform: translateY(0);
  animation: announcement-pop 360ms ease both;
}

.announcement-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: linear-gradient(90deg, #fffaf1, #ffd081, #fffaf1);
}

.announcement-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(141, 36, 28, 0.18);
  border-radius: 999px;
  background: #fffaf1;
  color: var(--red-dark);
  cursor: pointer;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.announcement-close:hover,
.announcement-close:focus-visible {
  background: #ffd081;
  color: var(--red-dark);
  transform: scale(1.04);
}

.announcement-badge {
  justify-self: center;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.16);
  color: #fffaf1;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid rgba(255, 250, 241, 0.32);
  padding: 0.58rem 1rem;
  text-transform: uppercase;
}

.announcement-badge::before,
.announcement-badge::after {
  content: "\1F389";
  margin-inline: 0.35rem;
}

.announcement-card h2 {
  justify-self: center;
  max-width: 10.5em;
  margin: 0;
  color: #fffaf1;
  font-size: clamp(2rem, 6vw, 3.05rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.announcement-card p {
  justify-self: center;
  max-width: 22rem;
  margin: 0;
  color: rgba(255, 250, 241, 0.94);
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
  text-wrap: balance;
}

.announcement-card strong {
  color: #ffd081;
  font-size: 1.15em;
  font-weight: 950;
}

@keyframes announcement-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  min-height: calc(var(--header-height) + env(safe-area-inset-top));
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(229, 222, 210, 0.86);
  background: rgba(251, 250, 245, 0.95);
  padding: calc(0.9rem + env(safe-area-inset-top)) var(--page-gutter) 0.9rem;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: #fffaf1;
  font-weight: 900;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  min-height: 48px;
  min-width: 0;
  align-content: center;
  gap: 0.02rem;
  overflow: visible;
  padding: 0.2rem 0 0;
  transform: translateY(2px);
}

.brand strong,
.brand small {
  display: block;
  overflow: visible;
  line-height: normal;
  text-overflow: clip;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 850;
  padding: 0.62rem 0.78rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: #eee8dc;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: none;
}

.nav-toggle svg,
.button svg,
.quick-info svg,
.opening-hours svg,
.group-icon svg,
.check-list svg,
.mobile-actions svg {
  width: 1.12rem;
  height: 1.12rem;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, 72svh);
  overflow: hidden;
  color: #fffaf1;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background-image: url("images/menu/background.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 20, 17, 0.82), rgba(17, 20, 17, 0.46) 58%, rgba(17, 20, 17, 0.18)),
    linear-gradient(0deg, rgba(17, 20, 17, 0.62), rgba(17, 20, 17, 0.08) 54%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(var(--container), calc(100% - var(--page-gutter) - var(--page-gutter)));
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 4.7rem 0 5.4rem;
}

.eyebrow,
.section-kicker,
.group-heading p {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd081;
  margin-bottom: 0.9rem;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 1.1rem 0 0;
  color: rgba(255, 250, 241, 0.92);
  font-size: clamp(1rem, 2vw, 1.16rem);
  overflow-wrap: anywhere;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  padding: 0.78rem 1rem;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 10px 24px rgba(30, 33, 30, 0.16);
  transform: translateY(-1px);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red-dark);
}

.button.light {
  border-color: rgba(255, 250, 241, 0.48);
  background: rgba(255, 250, 241, 0.13);
  color: #fffaf1;
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-info div {
  display: flex;
  min-width: 0;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #fffaf1;
  color: var(--green-dark);
  font-weight: 900;
  padding: 1rem;
  text-align: center;
}

.quick-info span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.section {
  padding: clamp(3.25rem, 6vw, 5.25rem) 0;
}

.section-inner {
  width: min(var(--container), calc(100% - var(--page-gutter) - var(--page-gutter)));
  margin: 0 auto;
}

.intro-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.section h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.intro-copy,
.about-copy {
  display: grid;
  gap: 1rem;
  color: var(--muted);
}

.intro-copy p,
.about-copy p,
.allergen-box p {
  margin: 0;
}

.menu-section {
  background: linear-gradient(180deg, #f2efe6 0, var(--paper) 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.menu-jump {
  position: sticky;
  top: calc(var(--header-height) + env(safe-area-inset-top));
  z-index: 10;
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.94);
  padding: 0.8rem 0;
  scrollbar-width: none;
  backdrop-filter: blur(12px);
}

.menu-jump::-webkit-scrollbar {
  display: none;
}

.menu-jump a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 0.48rem 0.68rem;
}

.menu-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  align-items: start;
}

.menu-group {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 1.1rem;
  box-shadow: 0 1px 0 rgba(30, 33, 30, 0.04);
}

.menu-group-wide,
.menu-group-full {
  grid-column: 1 / -1;
}

.group-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
}

.group-heading h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.group-heading p {
  color: var(--muted);
  font-size: 0.72rem;
}

.group-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fffaf1;
}

.menu-group-wide:first-child .group-icon,
.button.primary {
  background: var(--red);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: start;
}

.menu-item.has-photo {
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 100px;
}

.menu-item + .menu-item {
  border-top: 1px dashed var(--line);
  padding-top: 0.95rem;
}

.dish-thumb {
  width: 90px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd5c8;
}

.dish-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item h4,
.drink-card h4 {
  overflow-wrap: anywhere;
}

.menu-item h4 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.28;
}

.menu-item p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.menu-item strong {
  align-self: center;
  color: var(--red-dark);
  font-size: 1.02rem;
  white-space: nowrap;
}

.allergens,
.drink-card span {
  display: inline-flex;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: #eee8dc;
  color: #4d514c;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.26rem 0.5rem;
}

.group-note {
  margin: auto 0 0;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 900;
  padding-top: 0.85rem;
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.drink-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
}

.drink-card picture {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f7f1e8;
}

.drink-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.drink-card div {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  padding: 0.85rem;
}

.drink-card h4,
.drink-card p {
  margin: 0;
}

.drink-card h4 {
  font-size: 1rem;
  line-height: 1.18;
}

.drink-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.drink-card strong {
  align-self: end;
  color: var(--red-dark);
  font-size: 0.98rem;
}

.drink-card-wide {
  grid-column: auto;
  grid-template-columns: none;
  align-items: stretch;
}

.allergen-box {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
  padding: 1.15rem;
}

.allergen-box h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.allergen-box p + p {
  margin-top: 0.5rem;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(35, 102, 74, 0.09), transparent 46%),
    var(--paper);
}

.seat-note {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 0.65rem;
  border-radius: 8px;
  background: var(--red);
  color: #fffaf1;
  font-weight: 900;
  padding: 0.82rem 1rem;
}

.seat-note svg {
  width: 1.12rem;
  height: 1.12rem;
  flex: 0 0 auto;
  color: #ffd081;
}

.seat-note span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-weight: 850;
}

.check-list svg {
  color: var(--green);
}

.contact-section {
  background: var(--surface);
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
}

.contact-details,
.map-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-details {
  padding: 1.25rem;
}

address {
  display: grid;
  gap: 0.2rem;
  color: var(--muted);
  font-style: normal;
}

address strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.opening-hours {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.95rem;
  color: var(--green-dark);
  font-weight: 800;
}

.contact-actions {
  flex-direction: column;
  align-items: stretch;
}

.map-wrap {
  min-height: 390px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.mobile-actions {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 250, 241, 0.84);
  padding: 1.2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-weight: 850;
}

.site-footer p + p {
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    gap: 0.75rem;
    padding: calc(0.75rem + env(safe-area-inset-top)) var(--page-gutter) 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + env(safe-area-inset-top)) 0 auto 0;
    display: grid;
    gap: 0;
    max-height: calc(100svh - var(--header-height) - env(safe-area-inset-top));
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: 0.5rem var(--page-gutter) 1rem;
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    padding: 0.85rem 0.7rem;
  }

  .hero {
    min-height: min(560px, 64svh);
  }

  .hero-photo {
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(17, 20, 17, 0.78), rgba(17, 20, 17, 0.18)),
      linear-gradient(90deg, rgba(17, 20, 17, 0.76), rgba(17, 20, 17, 0.38));
  }

  .hero-inner {
    padding: 3.5rem 0 3.9rem;
  }

  .quick-info,
  .intro-grid,
  .about-grid,
  .contact-grid,
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    justify-content: flex-start;
    min-height: 52px;
    padding: 0.72rem var(--page-gutter);
    font-size: 0.9rem;
    text-align: left;
  }

  .menu-group-wide,
  .menu-group-full {
    grid-column: auto;
  }

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

  .check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 70px;
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
    font-size: 0.96rem;
  }

  .site-header {
    padding: calc(0.65rem + env(safe-area-inset-top)) var(--page-gutter) 0.65rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-copy {
    min-height: 42px;
    padding-top: 0.24rem;
    transform: translateY(2px);
  }

  .brand strong {
    font-size: 0.9rem;
    line-height: normal;
  }

  .brand small {
    max-width: min(13.5rem, 58vw);
    font-size: 0.7rem;
    line-height: normal;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: min(520px, 66svh);
  }

  .hero-inner {
    padding: 2.7rem 0 3rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    line-height: 1.02;
  }

  .hero-copy {
    margin-top: 0.9rem;
    font-size: 0.98rem;
  }

  .section {
    padding: 2.65rem 0;
  }

  .section h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .button {
    min-height: 44px;
    padding: 0.72rem 0.8rem;
    width: 100%;
  }

  .hero-actions .button.primary {
    grid-column: 1 / -1;
  }

  .menu-jump {
    margin-inline: calc(var(--page-gutter) * -1);
    padding: 0.62rem var(--page-gutter);
  }

  .menu-jump a {
    min-height: 38px;
    padding: 0.5rem 0.72rem;
  }

  .menu-group,
  .contact-details,
  .allergen-box {
    padding: 0.95rem;
  }

  .menu-item.has-photo {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    min-height: auto;
  }

  .dish-thumb {
    width: 82px;
  }

  .menu-item.has-photo strong {
    grid-column: 2;
    justify-self: start;
  }

  .menu-item h4 {
    font-size: 0.98rem;
  }

  .menu-item p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .menu-item strong {
    display: inline-flex;
    border-radius: 999px;
    background: #fff1eb;
    font-size: 0.94rem;
    line-height: 1;
    padding: 0.36rem 0.55rem;
  }

  .drink-grid {
    gap: 0.75rem;
  }

  .drink-card div {
    padding: 0.72rem;
  }

  .drink-card h4 {
    font-size: 0.94rem;
  }

  .drink-card p {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .drink-card span {
    font-size: 0.66rem;
    padding: 0.24rem 0.42rem;
  }

  .drink-card strong {
    font-size: 0.92rem;
  }

  .drink-card-wide {
    grid-column: auto;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
  }

  .mobile-actions {
    position: fixed;
    right: 0.65rem;
    bottom: max(0.65rem, env(safe-area-inset-bottom));
    left: 0.65rem;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    border: 1px solid rgba(229, 222, 210, 0.92);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.96);
    box-shadow: 0 16px 32px rgba(30, 33, 30, 0.2);
    backdrop-filter: blur(12px);
  }

  .mobile-actions a {
    display: grid;
    min-width: 0;
    min-height: 58px;
    place-items: center;
    gap: 0.12rem;
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1;
  }

  .mobile-actions span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-actions a + a {
    border-left: 1px solid var(--line);
  }

  .footer-inner {
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .announcement-card {
    padding-inline: 1rem;
  }

  .announcement-close {
    top: 0.62rem;
    right: 0.62rem;
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }

  .announcement-badge {
    font-size: 0.74rem;
  }
}

@media (max-width: 340px) {
  .brand small {
    display: none;
  }

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

  .drink-card-wide {
    grid-column: auto;
  }
}
