@font-face {
  font-family: "Basis Grotesque";
  src: url("assets/fonts/BasisGrotesquePro-Regular.static.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Basis Grotesque";
  src: url("assets/fonts/BasisGrotesquePro-Medium.static.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Basis Grotesque";
  src: url("assets/fonts/BasisGrotesquePro-Bold.static.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-Medium.5ac62a65.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-Bold.839b16be.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --hero-progress: 0;
  --hero-copy-shift: 0px;
  --hero-copy-opacity: 1;
  --hero-overlay-strength: 0;
  --cream: #fefaef;
  --paper: #fffaf2;
  --paper-strong: #f7efdf;
  --forest: #11270e;
  --moss: #195908;
  --grass: #315424;
  --muted: rgba(25, 89, 8, 0.72);
  --line: rgba(25, 89, 8, 0.16);
  --line-strong: rgba(25, 89, 8, 0.3);
  --line-light: rgba(254, 250, 239, 0.18);
  --lime: #b6dc9e;
  --lime-deep: #92ba7f;
  --sand: #eadbc3;
  --butter: #efd092;
  --clay: #df8b68;
  --sage: #dbe6ca;
  --shadow: 0 24px 70px rgba(10, 28, 8, 0.12);
  --shadow-strong: 0 32px 110px rgba(5, 18, 4, 0.24);
  --header-h: 4.25rem;
  --container: min(1360px, calc(100% - 1.5rem));
  --overlay-width: min(1120px, 100%);
  --overlay-height: min(92svh, 920px);
  --overlay-radius: 1.9rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--moss);
  font-family: "Basis Grotesque", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 208, 146, 0.3), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(182, 220, 158, 0.22), transparent 24%),
    var(--cream);
}

html.drawer-open,
body.drawer-open,
html.lightbox-open,
body.lightbox-open,
html.nav-open,
body.nav-open {
  overflow: hidden;
}

body::selection {
  color: var(--cream);
  background: var(--moss);
}

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

a,
button {
  color: inherit;
}

a[href],
button:not([disabled]),
summary,
label[for],
[role="button"],
[data-open-drawer],
[data-close-drawer],
[data-open-lightbox],
[data-close-lightbox],
[data-open-nav],
[data-close-nav],
[data-category-trigger] {
  cursor: pointer;
}

button[disabled],
[aria-disabled="true"] {
  cursor: not-allowed;
}

button {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
}

main {
  padding-top: var(--header-h);
}

.section-shell {
  width: var(--container);
  margin-inline: auto;
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(254, 250, 239, 0.76);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.28rem;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 240ms var(--ease),
    border-color 240ms var(--ease),
    background-color 240ms var(--ease),
    color 240ms var(--ease);
}

.button-text,
.button-hover-text {
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.button-hover-bg,
.button-hover-text {
  position: absolute;
  inset: 0;
}

.button-hover-bg {
  z-index: 1;
  transform: translateY(102%);
  transition: transform 260ms var(--ease);
}

.button-hover-text {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(125%);
  transition: transform 260ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:hover .button-hover-bg,
.button:focus-visible .button-hover-bg,
.button:hover .button-hover-text,
.button:focus-visible .button-hover-text {
  transform: translateY(0);
}

.button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(25, 89, 8, 0.14);
}

.button-primary {
  color: var(--cream);
  background: var(--moss);
}

.button-primary .button-hover-bg {
  background: var(--lime);
}

.button-primary .button-hover-text {
  color: var(--moss);
}

.button-secondary {
  color: var(--moss);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(10px);
}

.button-secondary .button-hover-bg {
  background: var(--sand);
}

.button-secondary .button-hover-text {
  color: var(--moss);
}

.button-light {
  color: var(--moss);
  background: var(--cream);
}

.button-light .button-hover-bg {
  background: var(--lime);
}

.button-light .button-hover-text {
  color: var(--moss);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
}

.site-bar {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0 0.9rem;
  border-bottom: 1px solid var(--line);
  background: rgba(254, 250, 239, 0.98);
  backdrop-filter: blur(14px);
}

.site-edge {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 0;
  min-width: 0;
}

.site-edge-left {
  gap: 1.25rem;
}

.site-edge-right {
  justify-content: flex-end;
  gap: 1.2rem;
}

.header-booking {
  min-width: 7.8rem;
  font-weight: 600;
  box-shadow: 0 14px 26px rgba(25, 89, 8, 0.18);
}

.header-button {
  min-width: 9rem;
  font-weight: 600;
  border-color: rgba(25, 89, 8, 0.18);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 18px rgba(25, 89, 8, 0.08);
}

.site-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo-mark {
  position: relative;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  overflow: hidden;
  transform: translateY(0.38rem);
  background: rgba(255, 250, 241, 0.98);
  border: 1px solid rgba(25, 89, 8, 0.1);
  box-shadow:
    0 0 0 4px rgba(254, 250, 239, 0.96),
    0 14px 22px rgba(25, 89, 8, 0.12);
}

.site-logo-mark::after {
  content: "";
  position: absolute;
  inset: 0.18rem;
  border-radius: inherit;
  border: 1px solid rgba(239, 208, 146, 0.5);
  pointer-events: none;
}

.site-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-logo-text {
  font-family: "Recoleta", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.nav-toggle,
.desktop-nav a,
.desktop-nav button,
.footer-actions a,
.footer-actions button {
  position: relative;
  text-decoration: none;
}

.nav-toggle,
.desktop-nav a,
.desktop-nav button {
  font-size: 0.94rem;
  letter-spacing: -0.03em;
}

.nav-toggle::after,
.desktop-nav a::after,
.desktop-nav button::after,
.footer-actions a::after,
.footer-actions button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms var(--ease);
}

.nav-toggle:hover::after,
.nav-toggle:focus-visible::after,
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav button:hover::after,
.desktop-nav button:focus-visible::after,
.footer-actions a:hover::after,
.footer-actions a:focus-visible::after,
.footer-actions button:hover::after,
.footer-actions button:focus-visible::after {
  transform: scaleX(1);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.8rem;
}

.mobile-only {
  display: inline-flex;
}

.header-button {
  display: none;
  min-height: 2.65rem;
  padding-inline: 1.05rem;
}

.header-booking {
  display: none;
  min-height: 2.65rem;
  padding-inline: 1.05rem;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 6, 0.58);
  opacity: 0;
  transition: opacity 320ms var(--ease);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 30rem);
  display: flex;
  flex-direction: column;
  padding: 0 1rem 1rem;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 14%, rgba(239, 208, 146, 0.24), transparent 26%),
    linear-gradient(180deg, #173410 0%, #10250c 100%);
  transform: translateX(100%);
  transition: transform 360ms var(--ease);
}

.mobile-nav.is-open .mobile-nav-backdrop {
  opacity: 1;
}

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

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

.mobile-nav-close,
.drawer-close,
.lightbox-close {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  overflow: hidden;
}

.mobile-nav-close {
  color: var(--cream);
}

.drawer-close {
  color: var(--moss);
  background: var(--sand);
}

.lightbox-close {
  color: var(--moss);
}

.mobile-nav-close span,
.drawer-close span,
.lightbox-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: currentColor;
}

.mobile-nav-close span:first-child,
.drawer-close span:first-child,
.lightbox-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close span:last-child,
.drawer-close span:last-child,
.lightbox-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.8rem 0 1rem;
}

.mobile-nav-body a,
.mobile-nav-body button {
  width: 100%;
  padding: 0;
  text-align: left;
  font-family: "Recoleta", serif;
  font-size: clamp(2.1rem, 10vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 500;
  text-decoration: none;
}

.mobile-nav-footer {
  display: grid;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.mobile-nav-footer-actions {
  display: grid;
  gap: 0.75rem;
}

.mobile-nav-footer p {
  margin: 0;
  max-width: 18rem;
  line-height: 1.42;
  color: rgba(254, 250, 239, 0.72);
}

.hero {
  position: relative;
  height: 160svh;
  background: #111b10;
}

.hero-sticky {
  position: sticky;
  top: var(--header-h);
  min-height: calc(100svh - var(--header-h));
}

.hero-stage {
  display: grid;
  grid-template-areas: "stack";
  position: relative;
  min-height: inherit;
  overflow: clip;
}

.hero-copy {
  grid-area: stack;
  align-self: center;
  position: relative;
  z-index: 2;
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
  text-align: center;
  color: var(--cream);
  opacity: var(--hero-copy-opacity);
  transform: translateY(var(--hero-copy-shift));
  transition:
    opacity 180ms linear,
    transform 180ms linear;
}

.hero h1 {
  margin: 0.35rem 0 0;
  font-family: "Recoleta", serif;
  font-size: clamp(3.9rem, 13vw, 6.65rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.hero h1 span {
  display: block;
}

.hero .eyebrow {
  color: rgba(254, 250, 239, 0.8);
}

.hero-lead {
  max-width: 34rem;
  margin: 1rem auto 0;
  font-size: 0.98rem;
  line-height: 1.56;
  letter-spacing: -0.02em;
  color: rgba(254, 250, 239, 0.88);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.3rem;
}

.hero-actions .button {
  min-width: 11.5rem;
}

.hero .button-secondary {
  color: var(--cream);
  border-color: rgba(254, 250, 239, 0.32);
  background: rgba(254, 250, 239, 0.08);
}

.hero .button-secondary .button-hover-bg {
  background: rgba(254, 250, 239, 0.92);
}

.hero .button-secondary .button-hover-text {
  color: var(--moss);
}

.hero-visual {
  grid-area: stack;
  position: relative;
  min-height: inherit;
  padding: 0;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.02 + (var(--hero-progress) * 0.045)));
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 27, 13, 0.2), rgba(19, 27, 13, calc(0.42 + (var(--hero-overlay-strength) * 0.18)))),
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.04), transparent 24%);
}

.editorial-badge {
  position: absolute;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  background: rgba(254, 250, 239, 0.9);
  box-shadow: 0 18px 45px rgba(11, 28, 8, 0.16);
}

.statement {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 16%, rgba(239, 208, 146, 0.14), transparent 24%),
    radial-gradient(circle at 88% 28%, rgba(182, 220, 158, 0.1), transparent 22%),
    linear-gradient(180deg, #173410 0%, #11260c 100%);
}

.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.32;
  pointer-events: none;
}

.statement .section-shell {
  position: relative;
  z-index: 1;
  padding-block: clamp(4.75rem, 12vw, 8.25rem);
}

.statement-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.7rem;
  max-width: 62rem;
  margin: 1rem auto 0;
  text-align: center;
  font-family: "Recoleta", serif;
  font-size: clamp(2.45rem, 9.2vw, 5.3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.statement-word,
.statement-chip {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.statement-chip {
  display: inline-block;
  width: clamp(3.8rem, 12vw, 5.9rem);
  height: clamp(3.8rem, 12vw, 5.9rem);
  overflow: hidden;
  border-radius: 999px;
  vertical-align: middle;
  box-shadow: 0 18px 40px rgba(5, 16, 4, 0.18);
}

.statement-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.statement-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.marquee-band {
  overflow: hidden;
  border-block: 1px solid rgba(17, 39, 14, 0.24);
  background: var(--lime);
}

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

.marquee-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.marquee-item::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--moss);
  box-shadow: 0 0 0 3px rgba(25, 89, 8, 0.08);
}

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

.section-heading {
  max-width: 47rem;
  margin: 0 auto 2.5rem;
}

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

.section-heading h2 {
  margin: 0.45rem 0 0;
  font-family: "Recoleta", serif;
  font-size: clamp(2.5rem, 9vw, 4.9rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.menu-index,
.month-section,
.editorial-section,
.moments-section,
.beverage-section,
.lunch-section,
.contact-section,
.cta-section {
  padding-bottom: clamp(4.75rem, 11vw, 8.25rem);
}

.menu-index {
  padding-top: clamp(4.75rem, 11vw, 8rem);
}

.menu-index-shell {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: background-color 320ms var(--ease);
}

.menu-intro {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(254, 250, 239, 0.82);
}

.menu-intro h3 {
  margin: 0.55rem 0 0;
  font-family: "Recoleta", serif;
  font-size: clamp(1.95rem, 6vw, 3.15rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.menu-intro p {
  margin: 0.9rem 0 0;
  line-height: 1.48;
  color: var(--muted);
}

.menu-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0 1.25rem;
}

.menu-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 500;
}

.menu-lines {
  display: flex;
  flex-direction: column;
}

.menu-line {
  position: relative;
  display: grid;
  gap: 0.45rem;
  width: 100%;
  padding: 1.35rem 1.25rem 1.45rem;
  text-align: left;
  border-top: 1px solid var(--line);
  transition: background-color 240ms var(--ease);
}

.menu-line:first-child {
  border-top: 0;
}

.menu-line-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grass);
}

.menu-line-title {
  max-width: 12ch;
  font-family: "Recoleta", serif;
  font-size: clamp(2.45rem, 10vw, 5.65rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.menu-line-meta {
  max-width: 34rem;
  padding-right: 3.7rem;
  line-height: 1.46;
  color: var(--muted);
}

.menu-line-button {
  position: absolute;
  top: 50%;
  right: 0.1rem;
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition:
    transform 240ms var(--ease),
    border-color 240ms var(--ease),
    background-color 240ms var(--ease);
}

.menu-line-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.95rem;
  height: 1px;
  background: var(--moss);
  transform: translate(-50%, -50%);
  transition: background-color 240ms var(--ease);
}

.menu-line-button span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.menu-line:hover,
.menu-line:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.menu-line:hover .menu-line-button,
.menu-line:focus-visible .menu-line-button {
  background: var(--moss);
  border-color: var(--moss);
  transform: scale(1.04);
}

.menu-line:hover .menu-line-button span,
.menu-line:focus-visible .menu-line-button span {
  background: var(--cream);
}

.menu-line:focus-visible {
  outline: 0;
  border-radius: 1.5rem;
}

.month-shell {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(17, 39, 14, 0.96), rgba(17, 39, 14, 0.9)),
    #111b10;
  box-shadow: var(--shadow-strong);
}

.month-copy {
  color: var(--cream);
  padding: 0.35rem;
}

.month-copy h2 {
  margin: 0.45rem 0 0;
  font-family: "Recoleta", serif;
  font-size: clamp(2.55rem, 9vw, 5rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.month-copy p:last-of-type {
  max-width: 34rem;
  margin: 0.95rem 0 0;
  line-height: 1.5;
  color: rgba(254, 250, 239, 0.78);
}

.month-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.month-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(254, 250, 239, 0.16);
  border-radius: 999px;
  background: rgba(254, 250, 239, 0.08);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream);
}

.month-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.35rem;
}

.month-media {
  overflow: hidden;
  min-height: 22rem;
  border: 1px solid rgba(254, 250, 239, 0.12);
  border-radius: 1.65rem;
  background: #111;
}

.month-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-grid {
  display: grid;
  gap: 1rem;
}

.editorial-media {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-badge {
  left: 1rem;
  bottom: 1rem;
  color: var(--cream);
  background: rgba(17, 39, 14, 0.9);
}

.editorial-copy {
  padding-top: 0.25rem;
}

.editorial-copy h2 {
  margin: 0.45rem 0 0;
  font-family: "Recoleta", serif;
  font-size: clamp(2.45rem, 8.2vw, 4.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.editorial-copy > p:last-of-type {
  margin: 0.95rem 0 0;
  max-width: 38rem;
  line-height: 1.5;
  color: var(--muted);
}

.editorial-points {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 1.4rem;
}

.editorial-points article {
  padding: 1rem 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 30px rgba(10, 28, 8, 0.06);
}

.editorial-points span {
  display: block;
  margin-bottom: 0.38rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-points p {
  margin: 0;
  line-height: 1.46;
  color: var(--muted);
}

.moments-grid {
  display: grid;
  gap: 1rem;
}

.moment-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.moment-card-sand {
  background: var(--sand);
}

.moment-card-butter {
  background: var(--butter);
}

.moment-card-lime {
  background: var(--lime);
}

.moment-media {
  aspect-ratio: 1 / 1.04;
}

.moment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moment-body {
  padding: 1.25rem 1.25rem 1.4rem;
}

.moment-body h3 {
  margin: 0.42rem 0 0.7rem;
  font-family: "Recoleta", serif;
  font-size: clamp(1.9rem, 6.4vw, 2.75rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.moment-body p:last-child {
  margin: 0;
  line-height: 1.46;
  color: rgba(17, 39, 14, 0.82);
}

.beverage-section,
.lunch-section {
  position: relative;
}

.beverage-section::before,
.lunch-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.beverage-section::before {
  background:
    radial-gradient(circle at 10% 12%, rgba(239, 208, 146, 0.26), transparent 26%),
    radial-gradient(circle at 100% 40%, rgba(182, 220, 158, 0.16), transparent 24%);
}

.lunch-section::before {
  background:
    radial-gradient(circle at 0% 100%, rgba(239, 208, 146, 0.18), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(223, 139, 104, 0.12), transparent 22%);
}

.beverage-shell,
.lunch-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.beverage-intro,
.lunch-hero {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.beverage-intro {
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(254, 250, 239, 0.82)),
    var(--paper);
}

.lunch-hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(182, 220, 158, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(239, 208, 146, 0.54), rgba(255, 250, 242, 0.92) 62%);
}

.beverage-intro h2,
.lunch-hero h2 {
  margin: 0.45rem 0 0;
  max-width: 12ch;
  font-family: "Recoleta", serif;
  font-size: clamp(2.3rem, 8.4vw, 4.7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.beverage-intro p:last-of-type,
.lunch-hero > p:last-of-type {
  max-width: 34rem;
  margin: 0.95rem 0 0;
  line-height: 1.5;
  color: var(--muted);
}

.beverage-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.35rem;
}

.beverage-grid,
.lunch-grid {
  display: grid;
  gap: 1rem;
}

.beverage-card,
.lunch-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  background: rgba(255, 251, 245, 0.88);
  box-shadow: 0 18px 36px rgba(10, 28, 8, 0.06);
}

.beverage-card-wide {
  background:
    linear-gradient(135deg, rgba(239, 208, 146, 0.26), rgba(255, 251, 245, 0.92) 58%);
}

.beverage-card .eyebrow,
.lunch-card .eyebrow {
  margin-bottom: 0.9rem;
}

.beverage-list,
.lunch-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.beverage-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(25, 89, 8, 0.1);
}

.beverage-list li:first-child,
.lunch-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.beverage-list span,
.lunch-list li {
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.beverage-list span {
  max-width: 22rem;
  color: var(--grass);
}

.beverage-list strong {
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.lunch-price {
  margin: 1.2rem 0 0;
  font-family: "Recoleta", serif;
  font-size: clamp(4.2rem, 16vw, 6.1rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.lunch-actions {
  margin-top: 1.35rem;
}

.lunch-card {
  display: grid;
  align-content: start;
}

.lunch-list li {
  padding-top: 0.65rem;
  border-top: 1px solid rgba(25, 89, 8, 0.1);
  color: var(--grass);
}

.lunch-card-note {
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.96), rgba(254, 250, 239, 0.96));
}

.lunch-card-note p {
  margin: 0;
  line-height: 1.5;
  color: var(--muted);
}

.lunch-mini-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.lunch-mini-prices span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(25, 89, 8, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
}

.cta-shell {
  padding: clamp(2rem, 7vw, 4.6rem) 1.2rem;
  text-align: center;
  border: 1px solid rgba(25, 89, 8, 0.18);
  border-radius: 2rem;
  background: linear-gradient(135deg, var(--lime), #d1e9b5 58%, #f7eecf);
  box-shadow: var(--shadow);
}

.cta-shell h2 {
  max-width: 14ch;
  margin: 0.45rem auto 0;
  font-family: "Recoleta", serif;
  font-size: clamp(2.7rem, 10vw, 5.25rem);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.06em;
}

.cta-shell p:last-of-type {
  max-width: 37rem;
  margin: 0.95rem auto 0;
  line-height: 1.48;
  color: var(--grass);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

.contact-shell {
  display: grid;
  gap: 1rem;
}

.contact-intro {
  padding: 1.4rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 252, 247, 0.72));
  box-shadow: var(--shadow);
}

.contact-intro h2 {
  margin: 0.45rem 0 0;
  max-width: 11ch;
  font-family: "Recoleta", serif;
  font-size: clamp(2.35rem, 8vw, 4.45rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.contact-intro p:last-of-type {
  max-width: 34rem;
  margin: 0.95rem 0 0;
  line-height: 1.5;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.35rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 245, 0.94));
  box-shadow: 0 18px 36px rgba(10, 28, 8, 0.06);
}

.contact-card .eyebrow {
  margin-bottom: 0.85rem;
}

.contact-links,
.resource-links {
  display: grid;
  gap: 0.7rem;
}

.review-icons {
  display: grid;
  gap: 0.7rem;
}

.contact-card-social {
  display: grid;
  gap: 0.85rem;
}

.review-link {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  min-height: 4.25rem;
  padding: 0.88rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    background-color 220ms var(--ease);
}

.review-link:hover,
.review-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(25, 89, 8, 0.28);
  background: rgba(255, 255, 255, 0.98);
}

.review-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.95rem;
  background: linear-gradient(180deg, rgba(216, 236, 193, 0.7), rgba(241, 247, 233, 0.9));
  color: var(--moss);
  flex: 0 0 auto;
}

.review-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.review-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.review-copy strong,
.review-copy small {
  display: block;
  min-width: 0;
}

.review-copy strong {
  font-size: 0.98rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.review-copy small {
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--muted);
}

.contact-links a,
.contact-links span,
.contact-links button,
.resource-links a,
.resource-links button {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: left;
  text-decoration: none;
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    background-color 220ms var(--ease);
}

.contact-links a:hover,
.contact-links a:focus-visible,
.contact-links button:hover,
.contact-links button:focus-visible,
.resource-links a:hover,
.resource-links a:focus-visible,
.resource-links button:hover,
.resource-links button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(25, 89, 8, 0.28);
  background: rgba(255, 255, 255, 0.98);
}

.contact-hours {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-hours li {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 1.18rem;
  background: rgba(255, 255, 255, 0.88);
}

.hours-day {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #6f8f64;
}

.hours-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hours-status {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(25, 89, 8, 0.14);
  border-radius: 999px;
  background: rgba(243, 249, 235, 0.9);
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hours-status-closed {
  background: rgba(255, 244, 239, 0.92);
  border-color: rgba(125, 68, 34, 0.12);
  color: #7d4422;
}

.contact-hours li.is-closed .hours-day {
  color: var(--grass);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 14% 18%, rgba(239, 208, 146, 0.16), transparent 22%),
    linear-gradient(180deg, #173410 0%, #11260c 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.28;
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  padding: 2.25rem 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.footer-copy p:last-child {
  margin: 0.45rem 0 0;
  max-width: 30rem;
  line-height: 1.45;
  color: rgba(254, 250, 239, 0.74);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.footer-actions a {
  color: rgba(254, 250, 239, 0.82);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .footer-shell {
    padding: 2rem 0 2.25rem;
    gap: 1.25rem;
  }

  .footer-brand {
    gap: 0.6rem;
    font-size: 1rem;
  }

  .footer-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    align-items: stretch;
  }

  .footer-actions a,
  .footer-actions button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-actions .footer-cta {
    grid-column: 1 / -1;
    margin-top: 0.35rem;
  }
}

.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 0.75rem;
}

.menu-drawer[hidden] {
  display: none;
}


.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 18, 6, 0.72);
  opacity: 0;
  transition: opacity 340ms var(--ease);
}

.drawer-panel {
  position: relative;
  width: var(--overlay-width);
  height: var(--overlay-height);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(25, 89, 8, 0.14);
  border-radius: var(--overlay-radius);
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(254, 250, 239, 0.96)),
    var(--cream);
  opacity: 0;
  transform: translateY(1.75rem) scale(0.975);
  transition:
    transform 380ms var(--ease),
    opacity 280ms var(--ease);
  box-shadow: var(--shadow-strong);
}

.menu-drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.menu-drawer.is-open .drawer-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.drawer-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.1rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(254, 250, 239, 0.92);
  backdrop-filter: blur(18px);
}

.drawer-header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.drawer-booking {
  min-height: 2.75rem;
  min-width: 8.9rem;
  padding-inline: 1.2rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(25, 89, 8, 0.16);
}

.drawer-heading {
  display: grid;
  gap: 0.38rem;
  min-width: 0;
  padding-right: 0.75rem;
}

.drawer-header h2 {
  margin: 0;
  font-family: "Recoleta", serif;
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.drawer-tabs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1rem 1.1rem;
  overflow: auto hidden;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.drawer-tabs::-webkit-scrollbar {
  display: none;
}

.drawer-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 7.7rem;
  min-height: 3rem;
  padding: 0.72rem 1.22rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition:
    background-color 220ms var(--ease),
    color 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.drawer-tab:hover,
.drawer-tab:focus-visible {
  transform: translateY(-1px);
}

.drawer-tab.is-active {
  color: var(--cream);
  background: var(--moss);
  border-color: var(--moss);
}

@media (max-width: 640px) {
  .drawer-header {
    padding: 0.95rem 0.85rem 0.8rem;
    gap: 0.75rem;
  }

  .drawer-header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .drawer-booking {
    min-height: 2.4rem;
    min-width: auto;
    padding-inline: 0.85rem;
    font-size: 0.85rem;
  }

  .drawer-close {
    width: 2.6rem;
    height: 2.6rem;
  }

  .drawer-tabs {
    gap: 0.5rem;
    padding: 0.75rem 0.75rem 0.85rem;
  }

  .drawer-tab {
    min-width: 6rem;
    min-height: 2.6rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
  }

  .drawer-tab-featured {
    min-width: 7.2rem;
  }
}

.drawer-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 1rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(239, 208, 146, 0.16), transparent 24%),
    radial-gradient(circle at 100% 100%, rgba(182, 220, 158, 0.12), transparent 24%);
}

.drawer-layout {
  display: grid;
  gap: 1rem;
}

.drawer-aside,
.drawer-main {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.drawer-main {
  min-height: 0;
}

.drawer-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.65rem;
  background: rgba(255, 251, 245, 0.96);
  box-shadow: 0 18px 36px rgba(10, 28, 8, 0.08);
}

.drawer-card-media {
  aspect-ratio: 16 / 10;
}

.drawer-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-card-copy {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

.drawer-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  width: max-content;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(182, 220, 158, 0.34);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drawer-card-copy h3 {
  margin: 0;
  font-family: "Recoleta", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.drawer-card-copy p {
  margin: 0;
  line-height: 1.46;
  color: var(--muted);
}

.drawer-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.drawer-card-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 500;
}

.drawer-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.drawer-section {
  display: grid;
  gap: 0.75rem;
}

.drawer-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.drawer-section-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grass);
}

.drawer-section-meta {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
}

.drawer-items,
.drawer-extra-grid {
  display: grid;
  gap: 0.75rem;
}

.drawer-item,
.drawer-extra-card,
.drawer-note {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: #fff;
}

.drawer-item.is-featured {
  grid-column: 1 / -1;
  padding: 1.15rem 1.25rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 242, 224, 0.96));
  box-shadow: 0 18px 30px rgba(25, 89, 8, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.9rem;
}

.drawer-item.is-featured strong {
  font-size: 1.2rem;
  line-height: 1.1;
}

.drawer-item.is-featured p {
  font-size: 0.98rem;
  color: var(--grass);
}

.drawer-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.drawer-item-main {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 0.35rem;
}

.drawer-item-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.drawer-item strong,
.drawer-extra-card strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.drawer-item p,
.drawer-extra-card p,
.drawer-note p {
  margin: 0.28rem 0 0;
  line-height: 1.45;
  color: var(--muted);
}

.drawer-price,
.drawer-extra-card span {
  flex: 0 0 auto;
  font-weight: 700;
  white-space: nowrap;
}

.drawer-price-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grass);
  background: rgba(182, 220, 158, 0.3);
}

.drawer-note {
  background: var(--sand);
}

.pizza-grid {
  display: grid;
  gap: 0.85rem;
}

.pizza-card {
  display: grid;
  gap: 0.85rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 32px rgba(10, 28, 8, 0.06);
}

/* Temporarily hide pizza photos inside the menu grid */
.drawer-layout-gallery .pizza-card-media {
  display: none;
}

.drawer-layout-gallery .pizza-card {
  gap: 0.6rem;
}

/* Temporarily hide menu cover photos */
.menu-drawer .drawer-card-media {
  display: none;
}

.menu-drawer .drawer-card {
  padding-top: 0.4rem;
}

.pizza-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.28;
  overflow: hidden;
  border: 1px solid rgba(25, 89, 8, 0.08);
  border-radius: 1.15rem;
  cursor: pointer;
}

.pizza-card-media::after {
  content: "Dettagli";
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  min-height: 1.85rem;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  color: var(--moss);
  background: rgba(254, 250, 239, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.pizza-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms var(--ease);
}

.pizza-card-media:hover img,
.pizza-card-media:focus-visible img {
  transform: scale(1.05);
}

.pizza-card-copy {
  display: grid;
  gap: 0.45rem;
}

.pizza-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}

.pizza-card-head strong {
  font-size: 1.06rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pizza-card-copy p {
  margin: 0;
  line-height: 1.45;
  color: var(--muted);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 0.75rem;
}

.image-lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 18, 6, 0.82);
  opacity: 0;
  transition: opacity 280ms var(--ease);
}

.lightbox-panel {
  position: relative;
  width: var(--overlay-width);
  height: var(--overlay-height);
  overflow: hidden;
  border-radius: var(--overlay-radius);
  background: var(--paper);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transform: translateY(1.5rem) scale(0.975);
  transition:
    transform 320ms var(--ease),
    opacity 240ms var(--ease);
}

.image-lightbox.is-open .lightbox-backdrop {
  opacity: 1;
}

.image-lightbox.is-open .lightbox-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  color: var(--moss);
  background: rgba(254, 250, 239, 0.86);
}

.lightbox-media {
  background: #111b10;
}

.lightbox-media img {
  width: 100%;
  max-height: 68svh;
  object-fit: cover;
}

.lightbox-copy {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
}

.lightbox-copy h2 {
  margin: 0;
  font-family: "Recoleta", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.lightbox-copy p:last-child {
  margin: 0;
  max-width: 44rem;
  line-height: 1.5;
  color: var(--muted);
}

@media (min-width: 800px) {
  :root {
    --header-h: 5rem;
    --container: min(1360px, calc(100% - 5rem));
    --overlay-radius: 2rem;
  }

  .site-bar {
    gap: 1.6rem;
    padding: 0 1.9rem;
  }

  .mobile-only {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  .site-logo-mark {
    width: 2.75rem;
    height: 2.75rem;
    transform: translateY(0.48rem);
  }

  .site-logo-text {
    font-size: 1.18rem;
  }

  .header-button {
    display: inline-flex;
    min-width: 9.6rem;
  }

  .header-booking {
    display: inline-flex;
  }

  .hero {
    height: 150svh;
  }

  .hero-stage {
    min-height: inherit;
  }

  .hero-copy {
    max-width: 56rem;
    padding: 2rem 1.5rem 5rem;
  }

  .hero h1 {
    font-size: clamp(5.4rem, 8.1vw, 7.95rem);
  }

  .hero-lead {
    max-width: 36rem;
    font-size: 1.08rem;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    margin-top: 1.35rem;
  }

  .hero-visual {
    min-height: inherit;
    padding: 0;
  }

  .hero-card {
    inset: 0;
    border-radius: 0;
  }

  .statement .section-shell {
    padding-block: 7.5rem 8rem;
  }

  .statement-text {
    gap: 0.65rem 1rem;
  }

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

  .menu-index-shell {
    grid-template-columns: minmax(18rem, 23rem) 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 3.2rem;
  }

  .menu-intro {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    align-self: start;
    padding: 1.5rem;
    border-radius: 2rem;
  }

  .menu-lines {
    padding-block: 0.25rem;
  }

  .menu-line {
    padding: 2rem 5.5rem 2rem 1.5rem;
    text-align: center;
  }

  .menu-line-title {
    max-width: none;
  }

  .menu-line-meta {
    margin-inline: auto;
    padding-right: 0;
  }

  .menu-line-button {
    right: 1rem;
    width: 4rem;
    height: 4rem;
    margin-top: -2rem;
  }

  .month-shell {
    grid-template-columns: minmax(19rem, 0.9fr) minmax(0, 1.1fr);
    gap: 1.25rem;
    align-items: center;
    padding: 1.2rem;
    border-radius: 3rem;
  }

  .month-copy {
    padding: 1rem 0.8rem 1rem 0.45rem;
  }

  .month-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .month-media {
    min-height: 35rem;
    border-radius: 2.2rem;
  }

  .editorial-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2rem;
    align-items: center;
  }

  .editorial-media {
    min-height: 42rem;
    border-radius: 3.2rem;
  }

  .moments-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .beverage-shell {
    grid-template-columns: minmax(19rem, 0.92fr) minmax(0, 1.08fr);
    gap: 1.25rem;
    align-items: start;
  }

  .beverage-intro {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    padding: 1.65rem;
    border-radius: 2.3rem;
  }

  .beverage-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .beverage-card {
    padding: 1.15rem;
    border-radius: 1.9rem;
  }

  .beverage-card-wide {
    grid-column: 1 / -1;
  }

  .lunch-shell {
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
    gap: 1.25rem;
    align-items: start;
  }

  .lunch-hero {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    padding: 1.65rem;
    border-radius: 2.3rem;
  }

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

  .lunch-card {
    min-height: 100%;
    padding: 1.15rem;
    border-radius: 1.9rem;
  }

  .cta-shell {
    padding: 4.6rem 4rem;
    border-radius: 3.2rem;
  }

  .cta-actions {
    flex-direction: row;
  }

  .contact-shell {
    grid-template-columns: minmax(19rem, 0.95fr) minmax(0, 1.05fr);
    gap: 1.25rem;
    align-items: start;
  }

  .contact-intro {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    padding: 1.6rem;
    border-radius: 2.3rem;
  }

  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .contact-card-wide {
    grid-column: 1 / -1;
  }

  .contact-card-hours {
    align-self: start;
  }

  .contact-hours li {
    grid-template-columns: minmax(7rem, 0.8fr) minmax(0, 1fr);
    align-items: center;
  }

  .hours-slots {
    justify-content: flex-end;
  }

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

  .footer-shell {
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 3rem 0;
  }

  .footer-actions {
    justify-content: flex-end;
  }

  .drawer-header {
    padding: 1.3rem 1.5rem 1.05rem;
  }

  .drawer-tabs {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.75rem;
    min-height: 5.5rem;
    padding: 1.05rem 1.5rem 1.2rem;
    overflow: visible;
  }

  .drawer-tab {
    width: 100%;
    min-width: 0;
  }

  .drawer-content {
    padding: 1.35rem 1.5rem 1.5rem;
    overflow: auto;
    scrollbar-gutter: stable;
  }

  .drawer-layout {
    min-height: 100%;
    grid-template-columns: minmax(18rem, 21rem) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
  }

  .drawer-aside {
    position: sticky;
    top: 0;
    align-self: start;
  }

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

  .drawer-card {
    position: sticky;
    top: 0;
  }

  .drawer-card-copy h3 {
    font-size: 2.4rem;
  }

  .drawer-main {
    overflow: visible;
    padding-right: 0;
  }

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

  .lightbox-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
    grid-template-rows: minmax(0, 1fr);
    align-items: stretch;
  }

  .lightbox-media {
    min-height: 100%;
  }

  .lightbox-media img {
    height: 100%;
    max-height: none;
  }

  .lightbox-copy {
    align-content: end;
    padding: 1.5rem;
  }
}

@media (min-width: 1100px) {
  .pizza-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .drawer-layout {
    grid-template-columns: minmax(19rem, 23rem) minmax(0, 1fr);
  }

  .drawer-card-copy h3 {
    font-size: 2.55rem;
  }
}

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

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