:root {
  --paper: #f5efe3;
  --paper-deep: #ebe0cf;
  --cream: #fffaf0;
  --ink: #241b18;
  --ink-soft: #645a52;
  --olive: #314536;
  --olive-light: #506250;
  --wine: #782b35;
  --wine-dark: #5e2028;
  --brass: #b99258;
  --brass-light: #e8d4a7;
  --rose: #c58d88;
  --line: rgba(36, 27, 24, 0.14);
  --shadow: 0 28px 80px rgba(57, 38, 28, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
  --shell: min(1180px, calc(100% - 64px));
  --header-height: 94px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(185, 146, 88, 0.55);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.6vw, 72px);
  letter-spacing: -0.045em;
}

h3 {
  letter-spacing: -0.025em;
}

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

.section {
  padding-block: 132px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--cream);
  background: var(--wine);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.tricolore {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 4px;
}

.tricolore span:nth-child(1) { background: #2f6a44; }
.tricolore span:nth-child(2) { background: #f7f2e9; }
.tricolore span:nth-child(3) { background: #a6313c; }

.utility-bar {
  color: rgba(255, 250, 240, 0.86);
  background: var(--olive);
  font-size: 13px;
  letter-spacing: 0.035em;
}

.utility-bar__inner,
.utility-bar__right,
.open-state {
  display: flex;
  align-items: center;
}

.utility-bar__inner {
  min-height: 39px;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar a {
  transition: color 180ms ease;
}

.utility-bar a:hover {
  color: #fff;
}

.utility-bar__right {
  gap: 24px;
}

.open-state {
  gap: 8px;
}

.open-state__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #91c99f;
  box-shadow: 0 0 0 4px rgba(145, 201, 159, 0.14);
}

.open-state.is-closed .open-state__dot {
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(197, 141, 136, 0.14);
}

.utility-phone {
  color: var(--brass-light);
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(245, 239, 227, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(36, 27, 24, 0.07);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 54px;
  height: 48px;
  fill: none;
  stroke: var(--wine);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__wording {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__wording strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.brand__wording small {
  margin-top: 7px;
  color: var(--wine);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  padding-block: 8px;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.065em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--dark {
  color: var(--cream);
  background: var(--olive);
  box-shadow: 0 10px 24px rgba(49, 69, 54, 0.2);
}

.button--dark:hover {
  background: #26372b;
  box-shadow: 0 14px 30px rgba(49, 69, 54, 0.28);
}

.button--wine {
  color: var(--cream);
  background: var(--wine);
  box-shadow: 0 10px 24px rgba(120, 43, 53, 0.2);
}

.button--wine:hover {
  background: var(--wine-dark);
  box-shadow: 0 14px 30px rgba(120, 43, 53, 0.28);
}

.button--cream {
  color: var(--olive);
  background: var(--cream);
  box-shadow: 0 12px 30px rgba(14, 31, 20, 0.18);
}

.button--cream:hover {
  background: #fff;
}

.button--outline-light {
  color: var(--cream);
  border-color: rgba(255, 250, 240, 0.45);
  background: transparent;
}

.button--outline-light:hover {
  color: var(--olive);
  background: var(--cream);
  border-color: var(--cream);
}

.button--wide {
  width: 100%;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 4%, rgba(197, 141, 136, 0.17), transparent 23%),
    radial-gradient(circle at 78% 74%, rgba(185, 146, 88, 0.12), transparent 26%),
    linear-gradient(135deg, #f8f2e8 0%, var(--paper) 65%, #eadfce 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.13;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 70px;
  right: 4%;
  width: 38vw;
  height: 38vw;
  max-width: 580px;
  max-height: 580px;
  border: 1px solid rgba(185, 146, 88, 0.27);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  display: grid;
  min-height: min(820px, calc(100svh - 40px));
  padding-block: 58px 78px;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  grid-template-columns: minmax(0, 0.96fr) minmax(410px, 0.78fr);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}

.eyebrow {
  margin-bottom: 19px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow--light {
  color: var(--brass-light);
}

.hero h1 {
  max-width: 740px;
  margin-bottom: 30px;
  font-size: clamp(58px, 7vw, 98px);
  letter-spacing: -0.06em;
}

.hero h1 em {
  color: var(--wine);
  font-weight: 500;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.65;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.text-link__icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--wine);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.text-link:hover .text-link__icon {
  color: var(--cream);
  background: var(--wine);
  transform: rotate(45deg);
}

.hero__today {
  display: flex;
  max-width: 520px;
  margin-top: 46px;
  padding-top: 21px;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.hero__today-label {
  color: var(--wine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__today strong {
  font-weight: 650;
}

.hero__media {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.75;
  border: 10px solid rgba(255, 250, 240, 0.8);
  border-radius: 260px 260px 22px 22px;
  box-shadow: var(--shadow);
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(43, 24, 17, 0.15));
  content: "";
  pointer-events: none;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 45%;
  transform: scale(1.035);
  transition: transform 800ms cubic-bezier(.2, .7, .2, 1);
}

.hero__media:hover .hero__image-wrap img {
  transform: scale(1.075);
}

.hero__media figcaption {
  position: absolute;
  right: -36px;
  bottom: 78px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  letter-spacing: 0.04em;
  transform: rotate(90deg);
  transform-origin: center;
}

.anniversary-seal {
  position: absolute;
  top: 51px;
  left: -53px;
  display: grid;
  width: 128px;
  height: 128px;
  padding: 18px;
  place-content: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--cream);
  background: var(--wine);
  box-shadow: 0 16px 35px rgba(84, 32, 38, 0.25);
  line-height: 0.78;
  text-align: center;
  transform: rotate(-8deg);
}

.anniversary-seal::before {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(232, 212, 167, 0.72);
  border-radius: inherit;
  content: "";
}

.anniversary-seal span,
.anniversary-seal small {
  position: relative;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.anniversary-seal strong {
  position: relative;
  margin-block: 9px 7px;
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 500;
  letter-spacing: -0.08em;
}

.hero__wing {
  position: absolute;
  z-index: -1;
  right: -89px;
  bottom: -27px;
  width: 175px;
  fill: none;
  stroke: var(--brass);
  stroke-width: 1.1;
  opacity: 0.55;
}

.hero__ornament {
  position: absolute;
  z-index: -1;
  bottom: -86px;
  left: 1vw;
  color: rgba(120, 43, 53, 0.045);
  font-family: var(--serif);
  font-size: 330px;
  font-style: italic;
  line-height: 1;
  transform: rotate(-15deg);
  user-select: none;
}

.trust-strip {
  position: relative;
  z-index: 2;
  color: var(--cream);
  background: var(--wine);
}

.trust-strip__inner {
  display: grid;
  min-height: 108px;
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__inner > div {
  display: flex;
  padding: 22px clamp(18px, 2.8vw, 38px);
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-right: 1px solid rgba(255, 250, 240, 0.17);
}

.trust-strip__inner > div:first-child {
  border-left: 1px solid rgba(255, 250, 240, 0.17);
}

.trust-strip strong {
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

.trust-strip span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.trust-strip svg {
  width: 32px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--brass-light);
  stroke-width: 1.5;
}

.story {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.story::after {
  position: absolute;
  z-index: 0;
  top: 18%;
  right: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(185, 146, 88, 0.2);
  border-radius: 50%;
  content: "";
}

.story__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(70px, 11vw, 170px);
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.25fr);
}

.story__number {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50% 50% 8px 8px;
  color: var(--wine);
  background: linear-gradient(155deg, var(--paper), #fffaf0 68%);
  box-shadow: 0 24px 70px rgba(70, 48, 35, 0.1);
  line-height: 0.85;
}

.story__number::before,
.story__number::after {
  position: absolute;
  width: 55px;
  height: 1px;
  top: 71px;
  background: var(--brass);
  content: "";
}

.story__number::before { left: 45px; }
.story__number::after { right: 45px; }

.story__number span,
.story__number small {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.story__number strong {
  margin-block: 23px 19px;
  font-family: var(--serif);
  font-size: clamp(118px, 12vw, 176px);
  font-weight: 400;
  letter-spacing: -0.1em;
  transform: translateX(-5px);
}

.story__copy h2 {
  max-width: 760px;
}

.story__copy .lead {
  max-width: 730px;
  margin-bottom: 21px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.5;
}

.story__copy > p:not(.eyebrow):not(.lead) {
  max-width: 680px;
  color: var(--ink-soft);
}

.signature {
  display: flex;
  margin-top: 34px;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.signature i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brass);
}

.vespa-route {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 105px;
  padding: 34px 46px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(49, 69, 54, 0.13);
  background: var(--paper);
  grid-template-columns: 150px 1fr auto;
}

.vespa-route::after {
  position: absolute;
  right: -12px;
  bottom: -51px;
  color: rgba(120, 43, 53, 0.05);
  content: "ITALIA";
  font-family: var(--serif);
  font-size: 120px;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.08em;
}

.scooter {
  position: relative;
  z-index: 2;
  width: 130px;
  fill: none;
  stroke: var(--wine);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vespa-route__line {
  height: 1px;
  margin-right: 40px;
  background-image: repeating-linear-gradient(90deg, var(--brass) 0 8px, transparent 8px 15px);
}

.vespa-route__caption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

.vespa-route__caption span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
}

.vespa-route__caption strong {
  margin-top: 9px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 84%, rgba(197, 141, 136, 0.16), transparent 25%),
    var(--paper);
}

.menu-section::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 450px;
  background: var(--olive);
  content: "";
}

.menu-section__watermark {
  position: absolute;
  z-index: -1;
  top: 26px;
  right: max(34px, calc((100vw - 1180px) / 2));
  width: 200px;
  fill: none;
  stroke: rgba(232, 212, 167, 0.13);
  stroke-width: 1.2;
}

.section-heading {
  display: grid;
  margin-bottom: 58px;
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.65fr);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--ink-soft);
}

.section-heading--menu {
  position: relative;
  z-index: 1;
  color: var(--cream);
}

.section-heading--menu > p {
  color: rgba(255, 250, 240, 0.72);
}

.section-heading--menu .eyebrow {
  color: var(--brass-light);
}

.menu-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(36, 27, 24, 0.1);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.menu-card__tabs {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.menu-card__tabs button {
  position: relative;
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 53px);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 18px;
  transition: color 180ms ease, background 180ms ease;
}

.menu-card__tabs button::after {
  position: absolute;
  right: 22px;
  bottom: -1px;
  left: 22px;
  height: 3px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.menu-card__tabs button:hover,
.menu-card__tabs button[aria-selected="true"] {
  color: var(--wine);
  background: rgba(197, 141, 136, 0.07);
}

.menu-card__tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.menu-card__body {
  display: grid;
  min-height: 585px;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.62fr);
}

.menu-panels {
  padding: 54px clamp(35px, 5vw, 74px) 38px;
}

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

.menu-panel {
  animation: menu-in 280ms ease both;
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dish {
  display: flex;
  position: relative;
  padding: 23px 0;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 1px dotted rgba(36, 27, 24, 0.27);
}

.dish:first-child {
  padding-top: 4px;
}

.dish h3 {
  margin: 0 0 7px;
  font-size: clamp(22px, 2.1vw, 28px);
}

.dish p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.dish > strong {
  flex: 0 0 auto;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.dish__tag {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--wine);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-note {
  display: flex;
  margin: 28px 0 0;
  align-items: flex-start;
  gap: 11px;
  color: #776e67;
  font-size: 11px;
  line-height: 1.5;
}

.menu-note span {
  flex: 0 0 auto;
  padding: 2px 7px;
  border: 1px solid rgba(120, 43, 53, 0.25);
  border-radius: 999px;
  color: var(--wine);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-card__photo {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.menu-card__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(27, 19, 15, 0.72));
  content: "";
}

.menu-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.menu-card__photo figcaption {
  position: absolute;
  z-index: 1;
  right: 36px;
  bottom: 35px;
  left: 36px;
  display: flex;
  flex-direction: column;
  color: var(--cream);
}

.menu-card__photo figcaption span {
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
}

.menu-card__photo figcaption strong {
  margin-top: 5px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-reserve {
  display: grid;
  margin-top: 38px;
  padding: 30px 34px;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(260px, .8fr) minmax(300px, 1fr) auto;
}

.menu-reserve .eyebrow {
  margin-bottom: 7px;
}

.menu-reserve h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 39px);
}

.menu-reserve > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.garden {
  position: relative;
  display: grid;
  min-height: 735px;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--olive);
}

.garden__image,
.garden__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.garden__image {
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.85) contrast(1.02);
  transform: scale(1.015);
}

.garden__shade {
  background:
    linear-gradient(90deg, rgba(18, 39, 24, 0.9) 0%, rgba(18, 39, 24, 0.7) 37%, rgba(18, 39, 24, 0.2) 74%, rgba(18, 39, 24, 0.1) 100%),
    linear-gradient(0deg, rgba(18, 39, 24, 0.46), transparent 52%);
}

.garden__inner {
  position: relative;
  z-index: 2;
  display: grid;
  padding-block: 110px;
  align-items: end;
  gap: 80px;
  grid-template-columns: minmax(0, 0.8fr) minmax(180px, 0.3fr);
}

.garden__copy {
  max-width: 670px;
}

.garden h2 {
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(55px, 7vw, 92px);
}

.garden__copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 18px;
}

.garden__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.garden__badge {
  display: flex;
  width: 190px;
  height: 190px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid rgba(255, 250, 240, 0.6);
  border-radius: 50%;
  background: rgba(49, 69, 54, 0.3);
  backdrop-filter: blur(8px);
}

.garden__badge strong {
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.garden__badge span {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-band {
  color: var(--ink);
  background: var(--brass-light);
}

.service-band__inner {
  display: grid;
  min-height: 185px;
  padding-block: 32px;
  align-items: center;
  gap: 28px;
  grid-template-columns: auto minmax(270px, 0.85fr) minmax(270px, 0.75fr) auto;
}

.service-band__icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(36, 27, 24, 0.28);
  border-radius: 50%;
}

.service-band__icon svg {
  width: 34px;
  fill: none;
  stroke: var(--wine);
  stroke-width: 1.6;
}

.service-band .eyebrow {
  margin-bottom: 8px;
}

.service-band h2 {
  margin-bottom: 0;
  font-size: clamp(29px, 3.1vw, 43px);
}

.service-band__inner > p {
  margin: 0;
  color: #62513c;
  font-size: 15px;
}

.visit {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.visit::before {
  position: absolute;
  top: 70px;
  right: -210px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(185, 146, 88, 0.18);
  border-radius: 50%;
  content: "";
}

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

.hours-card,
.location-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: 0 24px 60px rgba(70, 48, 35, 0.09);
}

.hours-card {
  padding: clamp(34px, 4.5vw, 59px);
}

.hours-card__head {
  display: flex;
  margin-bottom: 37px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.card-kicker {
  display: block;
  margin-bottom: 11px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hours-card h3,
.location-card h3 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

.hours-card__status {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--olive);
  background: #dfe9df;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hours-card__status.is-closed {
  color: var(--wine);
  background: #eedbdb;
}

.hours-list {
  margin: 0;
}

.hours-list > div {
  display: grid;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 115px 1fr;
}

.hours-list > div.is-today {
  color: var(--wine);
}

.hours-list > div.is-today dt::after {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  vertical-align: middle;
}

.hours-list dt {
  font-weight: 700;
}

.hours-list dd {
  margin: 0;
  text-align: right;
}

.hours-list dd span {
  margin-left: 12px;
}

.hours-card__note {
  margin: 20px 0 0;
  color: #837970;
  font-size: 11px;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1fr);
}

.location-card figure {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.location-card figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(31, 24, 20, 0.46), transparent 47%);
  content: "";
}

.location-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 55%;
  transition: transform 600ms ease;
}

.location-card:hover figure img {
  transform: scale(1.035);
}

.location-card figcaption {
  position: absolute;
  z-index: 1;
  bottom: 28px;
  left: 27px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.location-card__body {
  display: flex;
  padding: clamp(33px, 4vw, 52px);
  flex-direction: column;
}

.location-card__facts {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 8px;
}

.location-card__facts span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card__actions {
  display: flex;
  margin-top: auto;
  padding-top: 38px;
  align-items: center;
  gap: 14px;
}

.round-link {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.round-link:hover {
  color: var(--cream);
  background: var(--wine);
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 30%, rgba(185, 146, 88, 0.16), transparent 28%),
    var(--wine);
}

.final-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.09;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 660px;
  padding-block: 90px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.final-cta__halo {
  width: 64px;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--brass-light);
  stroke-width: 1;
}

.final-cta h2 {
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(59px, 8vw, 104px);
}

.final-cta__inner > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 37px;
  color: rgba(255, 250, 240, 0.76);
  font-size: 18px;
}

.final-cta__actions {
  justify-content: center;
}

.final-cta__wing {
  position: absolute;
  z-index: 0;
  top: 115px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(232, 212, 167, 0.15);
  border-radius: 85% 18% 78% 25%;
}

.final-cta__wing::before,
.final-cta__wing::after {
  position: absolute;
  width: 78%;
  height: 78%;
  border: 1px solid rgba(232, 212, 167, 0.12);
  border-radius: inherit;
  content: "";
}

.final-cta__wing::before { inset: 10%; }
.final-cta__wing::after { inset: 21%; }
.final-cta__wing--left { left: -170px; transform: rotate(-34deg); }
.final-cta__wing--right { right: -170px; transform: scaleX(-1) rotate(-34deg); }

.site-footer {
  padding-block: 78px 22px;
  color: rgba(255, 250, 240, 0.72);
  background: #1d2c22;
}

.site-footer__main {
  display: grid;
  padding-bottom: 66px;
  gap: 50px;
  grid-template-columns: 1.5fr 0.85fr 0.65fr 0.65fr;
}

.brand--footer {
  color: var(--cream);
}

.brand--footer .brand__mark {
  stroke: var(--brass-light);
}

.brand--footer .brand__wording small {
  color: var(--brass-light);
}

.footer-brand > p {
  max-width: 280px;
  margin: 25px 0 0;
  color: rgba(255, 250, 240, 0.52);
  font-size: 14px;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: var(--brass-light);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-footer address {
  margin-bottom: 13px;
  font-style: normal;
}

.site-footer__main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
}

.site-footer__main a,
.site-footer__main button {
  margin-bottom: 9px;
  color: rgba(255, 250, 240, 0.72);
  text-align: left;
  transition: color 180ms ease;
}

.site-footer__main a:hover,
.site-footer__main button:hover {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.43);
  font-size: 11px;
}

.site-footer__bottom > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer__bottom button {
  color: inherit;
}

.site-footer__bottom .prototype-compare {
  color: var(--brass-light);
  font-weight: 700;
  transition: color 180ms ease;
}

.site-footer__bottom .prototype-compare:hover {
  color: #fff;
}

.prototype-pill {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid rgba(232, 212, 167, 0.3);
  border-radius: 999px;
  color: var(--brass-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-actions {
  display: none;
}

.reservation {
  width: min(760px, calc(100% - 32px));
  max-height: min(90svh, 830px);
  padding: 0;
  overflow: auto;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.reservation::backdrop {
  background: rgba(18, 24, 19, 0.76);
  backdrop-filter: blur(8px);
}

.reservation[open] {
  animation: dialog-in 230ms ease both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.reservation__panel {
  position: relative;
  padding: clamp(32px, 6vw, 62px);
  border: 1px solid rgba(185, 146, 88, 0.48);
  background: var(--cream);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
}

.reservation__panel::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(185, 146, 88, 0.24);
  content: "";
  pointer-events: none;
}

.reservation__close {
  position: absolute;
  z-index: 2;
  top: 21px;
  right: 22px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  font-size: 26px;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease;
}

.reservation__close:hover {
  color: var(--cream);
  background: var(--wine);
}

.reservation__intro {
  max-width: 600px;
  margin-bottom: 34px;
  padding-right: 35px;
}

.reservation__intro h2,
.reservation__success h2 {
  margin-bottom: 17px;
  font-size: clamp(39px, 5.5vw, 58px);
}

.reservation__intro > p:last-child,
.reservation__success > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.reservation__halo {
  display: block;
  width: 40px;
  height: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--brass);
  border-radius: 50%;
}

.reservation__form {
  position: relative;
  z-index: 1;
}

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

.form-row--three {
  grid-template-columns: 1.2fr 1fr 0.85fr;
}

.reservation__form label {
  display: block;
  margin-bottom: 17px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.reservation__form label > span {
  color: var(--ink-soft);
  font-weight: 400;
}

.reservation__form input,
.reservation__form select,
.reservation__form textarea {
  width: 100%;
  min-height: 49px;
  margin-top: 7px;
  padding: 11px 13px;
  border: 1px solid rgba(36, 27, 24, 0.2);
  border-radius: 0;
  outline: none;
  background: #fffdf7;
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.reservation__form textarea {
  min-height: 88px;
  resize: vertical;
}

.reservation__form input:focus,
.reservation__form select:focus,
.reservation__form textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(120, 43, 53, 0.09);
}

.form-privacy {
  margin: 15px 0 0;
  color: #817870;
  font-size: 10px;
  text-align: center;
}

.form-privacy a {
  color: var(--wine);
  font-weight: 700;
}

.reservation__success {
  position: relative;
  z-index: 1;
  padding-block: 44px 20px;
  text-align: center;
}

.reservation__success[hidden] {
  display: none;
}

.reservation__success svg {
  width: 74px;
  margin: 0 auto 28px;
  fill: none;
  stroke: var(--olive);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reservation__success > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 auto 31px;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 14px 18px;
  border-left: 3px solid var(--brass);
  color: var(--cream);
  background: var(--olive);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .7, .2, 1);
}

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

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 48px, 1040px);
  }

  .primary-nav {
    gap: 19px;
  }

  .header-cta {
    padding-inline: 18px;
  }

  .hero__grid {
    gap: 58px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  }

  .hero h1 {
    font-size: clamp(58px, 7.5vw, 80px);
  }

  .anniversary-seal {
    left: -38px;
    width: 112px;
    height: 112px;
  }

  .anniversary-seal strong {
    font-size: 42px;
  }

  .menu-card__body {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.58fr);
  }

  .location-card {
    grid-template-columns: minmax(155px, 0.55fr) minmax(0, 1fr);
  }

  .service-band__inner {
    grid-template-columns: auto minmax(240px, .9fr) minmax(230px, .7fr) auto;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 82px;
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    margin-left: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 19px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mobile-nav {
    position: absolute;
    z-index: 90;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    padding-inline: 24px;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    color: var(--cream);
    background: var(--olive);
    opacity: 0;
    transition: max-height 300ms ease, padding 300ms ease, opacity 200ms ease;
  }

  .mobile-nav.is-open {
    max-height: calc(100svh - var(--header-height));
    padding-block: 22px 30px;
    opacity: 1;
  }

  .mobile-nav > a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 250, 240, 0.13);
    font-family: var(--serif);
    font-size: 24px;
  }

  .mobile-nav .button {
    margin-top: 22px;
    background: var(--wine);
  }

  .hero__grid {
    min-height: auto;
    padding-block: 72px 90px;
    gap: 80px;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero__media {
    max-width: 570px;
  }

  .hero__image-wrap {
    aspect-ratio: 0.86;
  }

  .story__grid {
    gap: 55px;
    grid-template-columns: minmax(240px, .55fr) minmax(0, 1fr);
  }

  .story__number {
    min-height: 340px;
  }

  .story__number::before,
  .story__number::after {
    width: 30px;
  }

  .story__number::before { left: 30px; }
  .story__number::after { right: 30px; }

  .vespa-route {
    grid-template-columns: 135px 1fr auto;
  }

  .menu-card__body {
    grid-template-columns: 1fr;
  }

  .menu-card__photo {
    min-height: 420px;
  }

  .menu-card__photo img {
    object-position: 50% 45%;
  }

  .garden__inner {
    grid-template-columns: minmax(0, .9fr) auto;
  }

  .service-band__inner {
    padding-block: 40px;
    grid-template-columns: auto 1fr auto;
  }

  .service-band__inner > p {
    display: none;
  }

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

  .location-card {
    min-height: 520px;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr);
  }

  .site-footer__main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .site-footer__main > div:last-child {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 36px);
    --header-height: 76px;
  }

  body {
    padding-bottom: 68px;
    font-size: 16px;
  }

  .section {
    padding-block: 88px;
  }

  .utility-bar__inner {
    min-height: 35px;
    justify-content: center;
  }

  .utility-bar__inner > a,
  .utility-phone {
    display: none;
  }

  .utility-bar__right {
    width: 100%;
    justify-content: center;
  }

  .site-header__inner {
    min-height: var(--header-height);
  }

  .brand__mark {
    width: 46px;
    height: 41px;
  }

  .brand__wording strong {
    font-size: 23px;
  }

  .brand__wording small {
    font-size: 8px;
  }

  .hero__grid {
    padding-block: 61px 77px;
    gap: 64px;
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(51px, 15.2vw, 71px);
  }

  .hero__lead {
    font-size: 17px;
  }

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

  .hero__today {
    margin-top: 38px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hero__media {
    width: calc(100% - 18px);
  }

  .hero__image-wrap {
    aspect-ratio: 0.83;
    border-width: 7px;
    border-radius: 220px 220px 15px 15px;
  }

  .hero__image-wrap img {
    object-position: 50% 46%;
  }

  .anniversary-seal {
    top: 26px;
    left: -23px;
    width: 98px;
    height: 98px;
    padding: 13px;
  }

  .anniversary-seal strong {
    margin-block: 8px 6px;
    font-size: 37px;
  }

  .anniversary-seal span,
  .anniversary-seal small {
    font-size: 12px;
  }

  .hero__media figcaption,
  .hero__wing {
    display: none;
  }

  .trust-strip__inner {
    min-height: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__inner > div {
    min-height: 90px;
    padding: 16px 12px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 250, 240, 0.17);
  }

  .trust-strip__inner > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip__inner > div:nth-child(n+3) {
    border-bottom: 0;
  }

  .trust-strip strong {
    font-size: 28px;
  }

  .trust-strip span {
    font-size: 9px;
  }

  .story__grid {
    gap: 55px;
    grid-template-columns: 1fr;
  }

  .story__number {
    width: min(320px, 92%);
    min-height: 330px;
    margin-inline: auto;
  }

  .story__number strong {
    font-size: 132px;
  }

  .story__copy h2 {
    font-size: clamp(43px, 13vw, 59px);
  }

  .story__copy .lead {
    font-size: 21px;
  }

  .vespa-route {
    margin-top: 70px;
    padding: 27px 25px;
    gap: 20px;
    grid-template-columns: 105px 1fr;
  }

  .scooter {
    width: 100px;
  }

  .vespa-route__line {
    display: none;
  }

  .vespa-route__caption {
    align-items: flex-start;
  }

  .vespa-route__caption span {
    font-size: 18px;
  }

  .vespa-route__caption strong {
    font-size: 9px;
  }

  .section-heading {
    margin-bottom: 40px;
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .menu-section::before {
    height: 470px;
  }

  .menu-section__watermark {
    top: 55px;
    right: -45px;
    width: 180px;
  }

  .section-heading--menu > p {
    max-width: 440px;
  }

  .menu-card {
    margin-inline: -2px;
  }

  .menu-card__tabs {
    min-height: 68px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .menu-card__tabs button {
    min-height: 68px;
    padding-inline: 24px;
    flex: 0 0 auto;
    font-size: 16px;
  }

  .menu-panels {
    padding: 40px 25px 28px;
  }

  .dish {
    padding-block: 20px;
    gap: 16px;
  }

  .dish h3 {
    font-size: 23px;
  }

  .dish p {
    font-size: 12px;
  }

  .dish > strong {
    font-size: 17px;
  }

  .menu-note {
    display: block;
  }

  .menu-note span {
    margin-right: 5px;
  }

  .menu-card__photo {
    min-height: 330px;
  }

  .menu-reserve {
    margin-top: 30px;
    padding: 27px 5px;
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .menu-reserve .button {
    width: 100%;
  }

  .garden {
    min-height: 760px;
  }

  .garden__image {
    object-position: 60% 50%;
  }

  .garden__shade {
    background: linear-gradient(0deg, rgba(18, 39, 24, .92) 0%, rgba(18, 39, 24, .67) 55%, rgba(18, 39, 24, .22) 100%);
  }

  .garden__inner {
    padding-block: 86px 70px;
    align-items: end;
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .garden h2 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .garden__copy > p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .garden__actions .button {
    width: 100%;
  }

  .garden__badge {
    width: 142px;
    height: 142px;
    margin-left: 0;
  }

  .garden__badge strong {
    font-size: 47px;
  }

  .service-band__inner {
    padding-block: 44px;
    text-align: center;
    grid-template-columns: 1fr;
  }

  .service-band__icon {
    margin-inline: auto;
  }

  .service-band .button {
    justify-self: center;
  }

  .hours-card__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hours-list > div {
    grid-template-columns: 90px 1fr;
    font-size: 13px;
  }

  .hours-list dd span {
    display: block;
    margin-left: 0;
  }

  .location-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .location-card figure {
    min-height: 330px;
  }

  .location-card__body {
    min-height: 340px;
  }

  .final-cta__inner {
    min-height: 620px;
  }

  .final-cta h2 {
    font-size: clamp(55px, 17vw, 76px);
  }

  .final-cta__actions {
    width: min(100%, 340px);
    flex-direction: column;
  }

  .final-cta__actions .button {
    width: 100%;
  }

  .site-footer {
    padding-block: 66px 20px;
  }

  .site-footer__main {
    gap: 42px 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__bottom > div {
    flex-wrap: wrap;
  }

  .mobile-actions {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 68px;
    border-top: 1px solid rgba(255, 250, 240, 0.15);
    color: var(--cream);
    background: rgba(29, 44, 34, 0.97);
    backdrop-filter: blur(14px);
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid rgba(255, 250, 240, 0.12);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-actions a:last-child {
    border-right: 0;
  }

  .mobile-actions svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--brass-light);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .reservation {
    width: calc(100% - 18px);
    max-height: calc(100svh - 28px);
  }

  .reservation__panel {
    padding: 43px 26px 32px;
  }

  .reservation__close {
    top: 15px;
    right: 15px;
  }

  .form-row,
  .form-row--three {
    grid-template-columns: 1fr;
  }

  .toast {
    right: 14px;
    bottom: 83px;
    left: 14px;
    max-width: none;
  }
}

@media (max-width: 390px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand__mark {
    width: 42px;
  }

  .brand__wording strong {
    font-size: 21px;
  }

  .brand__wording small {
    letter-spacing: .13em;
  }

  .hero h1 {
    font-size: 49px;
  }

  .button {
    min-height: 50px;
    padding-inline: 20px;
  }

  .trust-strip__inner > div {
    gap: 9px;
  }

  .story__number {
    min-height: 300px;
  }

  .story__number strong {
    font-size: 116px;
  }

  .vespa-route {
    padding-inline: 18px;
    grid-template-columns: 92px 1fr;
  }

  .scooter {
    width: 90px;
  }

  .hours-card,
  .location-card__body {
    padding-inline: 25px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
