:root {
  --paper: #f7f0e3;
  --paper-deep: #efe2cc;
  --ink: #393225;
  --muted: #6f6757;
  --olive: #39431f;
  --olive-2: #596533;
  --red: #8d3026;
  --red-deep: #6d241d;
  --gold: #b99a5b;
  --line: rgba(84, 72, 51, 0.22);
  --shadow: 0 20px 40px rgba(58, 45, 25, 0.16);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Times New Roman", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  --latin: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 12% 20%, rgba(185, 154, 91, 0.12), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(141, 48, 38, 0.08), transparent 26%),
    var(--paper);
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
  font-family: var(--serif);
  line-height: 1.85;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    repeating-linear-gradient(0deg, rgba(70, 54, 34, 0.018) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(70, 54, 34, 0.012) 0 1px, transparent 1px 6px);
  mix-blend-mode: multiply;
  z-index: 20;
}

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

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

.anchor-marker {
  position: relative;
  top: -80px;
  display: block;
  height: 0;
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.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;
}

.site-header {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: 240px minmax(520px, 1fr) 230px;
  align-items: center;
  gap: 28px;
  width: min(1680px, calc(100% - 96px));
  margin: 0 auto;
  padding: 18px 0 12px;
}

.brand,
.footer-brand {
  display: grid;
  justify-items: center;
  align-content: start;
  width: max-content;
  text-align: center;
}

.brand-logo {
  display: block;
  width: 170px;
  max-width: 100%;
  height: auto;
}

.crest {
  position: relative;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--red);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--latin);
  font-weight: 700;
}

.crest::before,
.crest::after {
  content: "";
  position: absolute;
  inset: -13px;
  border: 1px solid currentColor;
  opacity: 0.6;
  transform: rotate(45deg);
}

.crest::after {
  inset: -5px;
  border-radius: 50%;
  transform: none;
}

.crest-num {
  position: relative;
  z-index: 1;
  font-size: 25px;
}

.brand-name {
  margin-top: 20px;
  font-family: var(--latin);
  font-size: 33px;
  line-height: 1;
  letter-spacing: 1px;
}

.brand-sub {
  margin-top: 10px;
  color: var(--red);
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: 2px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 56px);
  padding-top: 0;
  color: #2e2b23;
  font-family: var(--sans);
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.reserve-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid transparent;
  background: var(--olive);
  color: #fff8e8;
  font-family: var(--sans);
  font-size: 14px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.reserve-button {
  justify-self: end;
  margin-top: 0;
  min-width: 206px;
}

.button:hover,
.button:focus-visible,
.reserve-button:hover,
.reserve-button:focus-visible {
  background: var(--olive-2);
  transform: translateY(-1px);
}

.button-outline {
  background: transparent;
  border-color: #4c432f;
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(57, 67, 31, 0.08);
  border-color: var(--olive);
  color: var(--ink);
}

.button-ghost {
  min-height: 44px;
  padding-inline: 26px;
  border-color: rgba(255, 248, 232, 0.48);
  background: transparent;
  color: #fff8e8;
}

.compact {
  min-height: 52px;
  min-width: 210px;
}

.calendar-icon {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
}

.calendar-icon::before,
.calendar-icon::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
}

.calendar-icon::before {
  left: 3px;
}

.calendar-icon::after {
  right: 3px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 239, 0.75);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 0.88fr) minmax(680px, 1.24fr);
  gap: 46px;
  align-items: center;
  width: min(1680px, calc(100% - 96px));
  margin: 0 auto;
  min-height: calc(100svh - 156px);
  padding: 28px 0 38px;
}

.hero::after {
  content: "";
  position: absolute;
  left: -7vw;
  right: -7vw;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--red);
  font-family: var(--latin);
  font-size: 14px;
  letter-spacing: 3px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 4.45vw, 78px);
  font-weight: 400;
  line-height: 1.22;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.lead-red {
  margin: 30px 0 22px;
  color: var(--red);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.65;
}

.body-copy {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.hero-actions .button {
  min-width: 242px;
}

.hero-art {
  position: relative;
  margin-right: 46px;
  transform-origin: 58% 50%;
  animation: heroPhotoPop 900ms cubic-bezier(0.18, 0.78, 0.18, 1) both;
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  aspect-ratio: 1.64 / 1;
  height: min(58svh, 600px);
  object-fit: cover;
}

@keyframes heroPhotoPop {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.965);
    filter: saturate(0.82) contrast(0.94);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1.04) contrast(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art {
    animation: none;
  }
}

.vertical-ribbon {
  position: absolute;
  top: 0;
  right: -86px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 100%;
  padding: 22px 0;
  background: var(--red-deep);
  color: #edd8bd;
  font-family: var(--latin);
  font-size: 18px;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.vertical-ribbon::before {
  content: "21";
  position: absolute;
  top: 40px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(237, 216, 189, 0.35);
  border-radius: 50%;
  font-size: 16px;
  letter-spacing: 0;
}

.round-seal {
  position: absolute;
  right: -56px;
  bottom: -64px;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  padding: 20px;
  border: 2px solid rgba(117, 76, 44, 0.62);
  border-radius: 50%;
  background: #efe2cc;
  color: #8d5b35;
  text-align: center;
  box-shadow: 0 8px 18px rgba(76, 54, 31, 0.18);
}

.round-seal::before,
.round-seal::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(117, 76, 44, 0.48);
  border-radius: 50%;
}

.round-seal span {
  display: block;
  margin-top: 4px;
  font-family: var(--latin);
  font-size: 52px;
  line-height: 0.9;
}

.round-seal small {
  display: block;
  font-family: var(--latin);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 1px;
}

.italia-sign {
  position: absolute;
  left: 36%;
  top: 38%;
  z-index: 0;
  margin: 0;
  color: rgba(142, 103, 65, 0.2);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 46px;
  transform: rotate(-9deg);
}

.italia-sign::before {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 36px;
  width: 190px;
  height: 170px;
  border: 1px solid rgba(142, 103, 65, 0.1);
  clip-path: polygon(38% 0, 54% 21%, 49% 39%, 72% 49%, 57% 74%, 63% 100%, 34% 88%, 19% 64%, 5% 47%, 20% 25%);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.9fr) minmax(340px, 1fr);
  align-items: center;
  gap: 54px;
  width: min(1500px, calc(100% - 128px));
  margin: 0 auto;
  padding: 84px 0 54px;
}

.section-label {
  margin: 0 0 16px;
  color: #4b4637;
  font-family: var(--latin);
  font-size: 14px;
  letter-spacing: 1px;
  text-align: inherit;
}

h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.35;
}

.section-copy p:not(.section-label) {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
}

.map-wrap {
  position: relative;
  justify-self: center;
  width: min(100%, 520px);
}

.map-wrap img {
  mix-blend-mode: multiply;
  filter: contrast(0.94) saturate(0.9);
}

.compass {
  position: absolute;
  left: 3%;
  bottom: 9%;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(56, 47, 32, 0.38);
  border-radius: 50%;
}

.compass::before,
.compass::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(56, 47, 32, 0.48);
  transform: translateX(-50%);
}

.compass::after {
  transform: translateX(-50%) rotate(90deg);
}

.promise-card {
  position: relative;
  isolation: isolate;
  padding: 52px 58px 58px;
  border: 7px double rgba(75, 67, 48, 0.35);
  background: rgba(255, 250, 239, 0.38);
}

.promise-card > * {
  position: relative;
  z-index: 1;
}

.script {
  margin: 0 0 32px;
  color: #8d5b35;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
}

.promise-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-card li {
  position: relative;
  padding: 18px 0 18px 42px;
  border-top: 1px solid rgba(82, 71, 50, 0.22);
  color: #5a5140;
  font-size: 14px;
}

.promise-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-family: var(--sans);
}

.olive-line {
  position: absolute;
  z-index: 0;
  right: -104px;
  bottom: -82px;
  width: 260px;
  height: 166px;
  opacity: 0.38;
  background: url("assets/images/olive-branch.svg") center / contain no-repeat;
  transform: rotate(-10deg);
}

.signature {
  position: relative;
  width: min(1680px, calc(100% - 96px));
  margin: 0 auto;
  padding: 44px 0 50px;
  text-align: center;
}

.signature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 1px solid rgba(84, 72, 51, 0.1);
  background: linear-gradient(180deg, rgba(255, 250, 239, 0.3), transparent);
}

.menu-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 22px;
  align-items: center;
}

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

.dish-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(94, 80, 56, 0.22);
  border-radius: 2px;
  background: rgba(255, 250, 239, 0.78);
  box-shadow: 0 8px 18px rgba(78, 58, 36, 0.08);
}

.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
}

.dish-card h3 {
  min-height: 78px;
  margin: 22px 16px 4px;
  font-size: clamp(16px, 1.3vw, 21px);
  font-weight: 400;
  line-height: 1.6;
}

.dish-card p {
  margin: 0 0 18px;
  font-family: var(--latin);
  font-size: 20px;
}

.ribbon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  min-width: 88px;
  padding: 5px 12px;
  color: #fff8e8;
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: 1px;
}

.ribbon.red {
  background: var(--red);
}

.ribbon.green {
  background: var(--olive-2);
}

.arrow-button {
  width: 48px;
  height: 72px;
  border: 0;
  background: transparent;
  color: #625844;
  font-size: 58px;
  line-height: 1;
  cursor: pointer;
}

.regioni {
  width: min(1500px, calc(100% - 128px));
  margin: 0 auto;
  padding: 8px 0 64px;
  text-align: center;
}

.lined {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.lined::before,
.lined::after {
  content: "";
  width: min(28vw, 380px);
  height: 1px;
  background: var(--line);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 190px;
  gap: 24px;
  margin-top: 36px;
  text-align: left;
}

.region-card {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 205px;
  border: 1px solid rgba(94, 80, 56, 0.18);
  background: rgba(255, 250, 239, 0.72);
}

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

.region-card div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 18px 18px;
}

.region-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 400;
}

.region-card p {
  margin: 0 0 16px;
  color: #5f5848;
  font-size: 13px;
  line-height: 1.7;
}

.region-card a {
  align-self: flex-start;
  padding: 7px 20px;
  border: 1px solid rgba(67, 59, 41, 0.45);
  font-family: var(--sans);
  font-size: 12px;
}

.region-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 205px;
  padding: 24px;
  overflow: hidden;
  background: var(--red);
  color: #fff1db;
  text-align: center;
}

.region-cta::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -46px;
  width: 120px;
  height: 130px;
  border: 2px solid rgba(255, 241, 219, 0.35);
  border-radius: 54% 46% 44% 56%;
  transform: rotate(-22deg);
}

.region-cta span {
  font-size: 24px;
  line-height: 1.75;
}

.region-cta strong {
  font-family: var(--latin);
  font-size: 32px;
  font-weight: 400;
}

.story {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(480px, 1fr);
  min-height: 390px;
  margin-top: 20px;
  background: var(--olive);
  color: #fbf1dc;
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.story-copy {
  position: relative;
  padding: 60px clamp(220px, 17vw, 330px) 58px 72px;
  overflow: hidden;
}

.story-copy::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 300px;
  top: 22px;
  width: 250px;
  height: 160px;
  opacity: 0.24;
  background: url("assets/images/olive-branch.svg") center / contain no-repeat;
  filter: brightness(0) saturate(100%) invert(93%) sepia(25%) saturate(325%) hue-rotate(350deg) brightness(97%) contrast(92%);
  transform: rotate(-18deg);
}

.story-copy > * {
  position: relative;
  z-index: 1;
}

.story-copy .section-label {
  color: #d8c39e;
}

.story-copy h2 {
  margin-bottom: 20px;
  color: #fff6e4;
  max-width: 560px;
}

.story-copy p {
  max-width: 620px;
  margin: 0 0 12px;
  color: rgba(255, 246, 228, 0.82);
  font-size: 15px;
}

.story-copy .button {
  position: relative;
  margin-top: 22px;
}

.vintage-photo {
  position: absolute;
  z-index: 1;
  right: 70px;
  bottom: 44px;
  width: min(210px, 24vw);
  border: 10px solid #eee0c7;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
  transform: rotate(7deg);
}

.stores {
  width: min(1680px, calc(100% - 96px));
  margin: 0 auto;
  padding: 58px 0 72px;
  text-align: center;
}

.stores h2 {
  margin-bottom: 42px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr)) minmax(250px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.store-card {
  display: grid;
  grid-template-columns: minmax(150px, 43%) 1fr;
  min-height: 0;
  height: 220px;
  overflow: hidden;
  border: 1px solid rgba(94, 80, 56, 0.18);
  background: rgba(255, 250, 239, 0.78);
  box-shadow: 0 12px 28px rgba(80, 58, 32, 0.08);
  text-align: left;
}

.store-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.store-card div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 24px 24px 24px 28px;
}

.store-card h3 {
  margin: 0 0 12px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.35;
}

.store-card p {
  margin: 0 0 18px;
  color: #5d5545;
  font-size: 14px;
  line-height: 1.7;
}

.store-card a,
.reserve-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0 22px;
  background: var(--olive);
  color: #fff8e8;
  font-family: var(--sans);
  font-size: 13px;
}

.reserve-card {
  position: relative;
  display: flex;
  height: 220px;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: 28px 118px 28px 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(232, 213, 181, 0.98) 0 58%, rgba(232, 213, 181, 0.8) 70%, rgba(232, 213, 181, 0.12) 100%),
    #e7d5b5;
  text-align: left;
  box-shadow: 0 12px 28px rgba(78, 58, 36, 0.12);
}

.reserve-card p {
  position: relative;
  z-index: 2;
  max-width: 170px;
  margin: 0 0 22px;
  font-size: 25px;
  line-height: 1.55;
  white-space: normal;
}

.reserve-card a {
  position: relative;
  z-index: 2;
  align-self: flex-start;
}

.reserve-card img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 132px;
  height: 100%;
  object-fit: cover;
  object-position: 65% 50%;
  opacity: 0.82;
  mix-blend-mode: multiply;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.2fr) minmax(260px, 1fr);
  gap: 60px;
  align-items: center;
  padding: 58px max(48px, calc((100vw - 1500px) / 2)) 54px;
  background: #263318;
  color: #f4e8cc;
}

.footer-brand {
  color: #f4e8cc;
}

.footer-logo {
  width: 250px;
  filter: brightness(0) saturate(100%) invert(89%) sepia(20%) saturate(525%) hue-rotate(348deg) brightness(100%) contrast(91%);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 42px;
  color: rgba(244, 232, 204, 0.78);
  font-family: var(--sans);
  font-size: 14px;
}

.social {
  display: grid;
  grid-template-columns: repeat(3, 42px);
  gap: 20px;
  justify-content: start;
  align-items: center;
  border-left: 1px solid rgba(244, 232, 204, 0.35);
  padding-left: 58px;
}

.social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 232, 204, 0.45);
  border-radius: 50%;
  font-family: var(--latin);
}

.social small {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: rgba(244, 232, 204, 0.78);
  font-family: var(--latin);
  font-size: 12px;
}

@media (max-width: 1280px) {
  .site-header,
  .hero,
  .signature,
  .stores {
    width: min(100% - 56px, 1180px);
  }

  .site-header {
    grid-template-columns: 200px 1fr 190px;
    gap: 16px;
  }

  .brand-name {
    font-size: 28px;
  }

  .brand-logo {
    width: 154px;
  }

  .site-nav {
    gap: 22px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: minmax(430px, 0.86fr) minmax(530px, 1.14fr);
    gap: 34px;
    min-height: calc(100svh - 138px);
  }

  .section-grid,
  .regioni {
    width: min(100% - 72px, 1120px);
  }

  .menu-grid {
    gap: 18px;
  }

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

  .region-cta {
    grid-column: span 2;
    min-height: 150px;
  }

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

  .reserve-card {
    grid-column: span 2;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px 0 14px;
  }

  .brand {
    justify-items: start;
    text-align: left;
    transform: translateX(-8px);
  }

  .brand .crest {
    width: 46px;
    height: 46px;
  }

  .brand .crest::before {
    inset: -8px;
  }

  .brand-name {
    margin-top: 12px;
    font-size: 23px;
  }

  .brand-sub {
    margin-top: 5px;
    font-size: 10px;
  }

  .brand-logo {
    width: 168px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    margin-top: 2px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 239, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(84, 72, 51, 0.12);
  }

  .reserve-button {
    display: none;
  }

  .hero,
  .section-grid,
  .story {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 18px;
    min-height: auto;
  }

  .hero-art {
    order: -1;
    margin-right: 0;
  }

  .hero-art img {
    height: auto;
  }

  .hero h1 {
    font-size: clamp(44px, 11vw, 68px);
  }

  .hero h1 span {
    white-space: normal;
  }

  .vertical-ribbon {
    right: 0;
    width: 58px;
    font-size: 12px;
  }

  .round-seal {
    right: 20px;
    bottom: -50px;
    width: 118px;
    height: 118px;
  }

  .round-seal span {
    font-size: 38px;
  }

  .round-seal small {
    font-size: 9px;
  }

  .italia-sign {
    display: none;
  }

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

  .arrow-button {
    display: none;
  }

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

  .story-copy {
    padding: 46px 36px 64px;
  }

  .story-copy::before {
    right: 28px;
    opacity: 0.12;
  }

  .vintage-photo {
    right: 34px;
    bottom: 24px;
    width: 150px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
    padding: 46px 32px 48px;
  }

  .footer-brand {
    width: 100%;
    justify-items: start;
    text-align: left;
  }

  .footer-logo {
    width: 172px;
    margin-left: -8px;
  }

  .footer-links {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 68px;
    row-gap: 13px;
  }

  .social {
    width: 100%;
    grid-template-columns: repeat(3, 40px);
    gap: 18px;
    border-left: 0;
    padding-left: 0;
  }

  .social a {
    width: 40px;
    height: 40px;
  }

  .social small {
    grid-column: 1 / -1;
    max-width: 260px;
    margin-top: 12px;
    line-height: 1.75;
  }
}

@media (max-width: 680px) {
  body {
    line-height: 1.75;
  }

  .site-header,
  .hero,
  .signature,
  .stores,
  .section-grid,
  .regioni {
    width: calc(100% - 28px);
  }

  .brand {
    transform: translateX(-10px);
  }

  .brand-logo {
    width: 154px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.28;
  }

  .lead-red {
    margin-top: 28px;
    font-size: 22px;
  }

  .body-copy {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    gap: 14px;
    margin-top: 34px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .section-grid {
    gap: 34px;
    padding-top: 62px;
  }

  .promise-card {
    padding: 34px 24px;
  }

  .olive-line {
    display: none;
  }

  .menu-grid,
  .region-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .dish-card h3 {
    min-height: auto;
  }

  .region-card {
    grid-template-columns: 42% 58%;
  }

  .region-cta,
  .reserve-card {
    grid-column: auto;
  }

  .reserve-card {
    padding: 26px 134px 26px 22px;
  }

  .reserve-card img {
    width: 132px;
  }

  .story-photo img {
    min-height: 260px;
  }

  .story-copy {
    padding: 38px 24px;
  }

  .vintage-photo {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: 132px;
    margin: 26px 0 0 auto;
  }

  .store-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .store-card img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

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

@media (max-width: 430px) {
  .hero h1 {
    font-size: 40px;
  }

  .region-card {
    grid-template-columns: 1fr;
  }

  .region-card img {
    aspect-ratio: 16 / 10;
  }

  .vertical-ribbon {
    display: none;
  }

  .reserve-card {
    padding: 24px 116px 24px 20px;
  }

  .reserve-card p {
    font-size: 23px;
  }

  .reserve-card img {
    width: 112px;
  }

  .round-seal {
    width: 96px;
    height: 96px;
    right: 10px;
    bottom: -38px;
  }

  .round-seal span {
    font-size: 30px;
  }

  .site-footer {
    padding: 42px 20px 46px;
    gap: 28px;
  }

  .footer-logo {
    width: 160px;
    margin-left: -7px;
  }

  .footer-links {
    column-gap: 46px;
    row-gap: 12px;
  }

  .social {
    gap: 16px;
  }

  .social small {
    max-width: 230px;
  }
}
