:root {
  --orange: #e15d19;
  --orange-deep: #b83e0d;
  --cream: #fff9e9;
  --paper: #fffdf6;
  --yellow: #f9b100;
  --ink: #2d1a12;
  --muted: #725e54;
  --line: rgba(45, 26, 18, 0.18);
  --white: #ffffff;
  --font-display: "Italiana", Georgia, serif;
  --font-sans: "DM Sans", Arial, sans-serif;
  --page: min(1240px, calc(100vw - 64px));
  --header-height: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.skip-link-section {
  position: absolute;
}

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

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

h2 {
  font-size: clamp(3rem, 6.4vw, 6.2rem);
}

p {
  margin-top: 0;
}

.lead {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 25px;
  border: 1px solid var(--orange);
  border-radius: 100px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 250ms ease, border-color 250ms ease, color 250ms ease, transform 250ms ease;
}

.button:hover {
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-2px);
}

.button-small {
  min-height: 45px;
  padding-inline: 21px;
  font-size: 0.68rem;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--orange);
}

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

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--white);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-block: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 250ms ease;
}

.text-link:hover {
  gap: 22px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  background: linear-gradient(
    180deg,
    rgba(45, 26, 18, 0.34) 0%,
    rgba(45, 26, 18, 0.14) 64%,
    rgba(45, 26, 18, 0) 100%
  );
  color: var(--white);
  transition: background 300ms ease, box-shadow 300ms ease, color 300ms ease, height 300ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
}

.site-header.is-scrolled,
.site-header-solid {
  height: 78px;
  background: rgba(255, 249, 233, 0.97);
  box-shadow: 0 10px 40px rgba(53, 26, 14, 0.08);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled::after,
.site-header-solid::after {
  background: var(--line);
}

.header-inner {
  display: flex;
  width: min(1380px, calc(100vw - 48px));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  display: block;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 300ms var(--ease);
}

.brand:hover img {
  transform: rotate(-3deg) scale(1.04);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 32px);
}

.main-nav > a:not(.button) {
  position: relative;
  padding-block: 9px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav > a:not(.button, .nav-instagram)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-instagram {
  width: 25px;
  padding: 0;
}

.nav-instagram svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.nav-instagram svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.nav-info {
  margin-left: 6px;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  min-width: 74px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--orange-deep);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  animation: hero-in 1.4s var(--ease) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(43, 14, 4, 0.72) 0%, rgba(43, 14, 4, 0.22) 55%, rgba(43, 14, 4, 0.08) 100%),
    linear-gradient(0deg, rgba(43, 14, 4, 0.38) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: var(--page);
  min-height: 100svh;
  margin-inline: auto;
  padding-top: calc(var(--header-height) + 7vh);
  padding-bottom: 11vh;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  text-shadow: 0 6px 40px rgba(32, 9, 2, 0.16);
}

.hero-intro {
  margin: 28px 0 32px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  z-index: 1;
  right: 4vw;
  bottom: 36px;
  display: flex;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  gap: 15px;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: bottom left;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

/* Story */
.story {
  position: relative;
  display: grid;
  min-height: 980px;
  padding-block: clamp(100px, 13vw, 190px);
  grid-template-columns: 0.95fr 0.8fr 0.5fr;
  gap: clamp(30px, 5vw, 75px);
  align-items: center;
}

.story-copy {
  max-width: 530px;
  align-self: center;
}

.story-copy h2 {
  margin-bottom: 42px;
}

.story-copy .lead {
  margin-bottom: 22px;
}

.story-copy > p:not(.eyebrow, .lead) {
  max-width: 470px;
  margin-bottom: 34px;
  color: var(--muted);
}

.story-visual {
  margin: 0;
  align-self: start;
}

.image-frame {
  overflow: hidden;
}

.image-frame-tall {
  aspect-ratio: 0.78;
}

.image-frame img,
.story-detail img,
.aperitivo-photo img,
.gallery-grid img,
.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.image-frame:hover img,
.story-detail:hover img,
.aperitivo-photo:hover img,
.gallery-grid figure:hover img,
.food-card:hover img {
  transform: scale(1.035);
}

.story-visual figcaption {
  margin-top: 18px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
}

.story-detail {
  width: 100%;
  aspect-ratio: 0.74;
  margin: 190px 0 0;
  overflow: hidden;
}

/* Cuisine */
.cuisine {
  overflow: hidden;
  padding-top: clamp(100px, 12vw, 170px);
  background: var(--orange);
  color: var(--white);
}

.cuisine-heading {
  display: grid;
  padding-bottom: clamp(65px, 8vw, 110px);
  grid-template-columns: 1.2fr 0.58fr;
  column-gap: 8vw;
  align-items: end;
}

.cuisine-heading .eyebrow {
  grid-column: 1 / -1;
}

.cuisine-heading h2 {
  font-size: clamp(4.2rem, 9vw, 9rem);
}

.cuisine-heading h2 em {
  font-style: italic;
}

.cuisine-heading > p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: 30px;
  font-size: 1.15rem;
}

.food-gallery {
  display: grid;
  width: min(1600px, 100%);
  margin-inline: auto;
  padding: 0 5vw clamp(110px, 12vw, 180px);
  grid-template-columns: 0.9fr 1.12fr 0.84fr;
  gap: clamp(16px, 2.4vw, 40px);
  align-items: start;
}

.food-card {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.food-card img {
  aspect-ratio: 0.78;
}

.food-card-two {
  margin-top: 100px;
}

.food-card-three {
  margin-top: 25px;
}

.food-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  background: rgba(255, 249, 233, 0.96);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.05;
}

/* Aperitivo */
.aperitivo {
  position: relative;
  display: grid;
  padding-block: clamp(100px, 13vw, 190px);
  grid-template-columns: 0.95fr 0.8fr;
  gap: clamp(45px, 8vw, 130px);
  align-items: center;
}

.aperitivo-photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 0.8;
  margin: 0;
  overflow: hidden;
}

.aperitivo-copy {
  position: relative;
  z-index: 1;
}

.aperitivo-copy h2 {
  margin-bottom: 36px;
}

.aperitivo-copy .lead {
  max-width: 570px;
}

.handwritten {
  margin: 35px 0 0;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-style: italic;
  line-height: 1;
  transform: rotate(-5deg);
}

.aperitivo-pattern {
  position: absolute;
  top: 15%;
  right: -5vw;
  width: 38vw;
  height: 38vw;
  max-width: 560px;
  max-height: 560px;
  border-radius: 50%;
  background: url("../images/pattern-citrons.png") center / 700px auto;
  opacity: 0.18;
}

/* Gallery */
.gallery {
  padding-block: clamp(90px, 11vw, 160px);
  background: var(--paper);
}

.gallery-title {
  display: grid;
  margin-bottom: 55px;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.gallery-title .eyebrow {
  grid-column: 1 / -1;
}

.gallery-title h2 {
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.gallery-grid {
  display: grid;
  width: var(--page);
  margin-inline: auto;
  grid-template-columns: 1.05fr 0.7fr;
  grid-template-rows: 560px 390px;
  gap: clamp(16px, 2vw, 30px);
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
}

.gallery-main {
  grid-row: 1 / 3;
}

.gallery-wide img {
  object-position: center;
}

/* Reservation */
.reservation {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 12vw, 170px);
  background: var(--yellow);
}

.reservation-pattern {
  position: absolute;
  inset: 0;
  background: url("../images/pattern-citrons.png") center / 920px auto;
  opacity: 0.25;
}

.reservation::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 249, 233, 0.12);
  content: "";
}

.reservation-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 490px;
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
}

.reservation-copy {
  max-width: 620px;
}

.reservation-copy h2 {
  margin-bottom: 35px;
  font-size: clamp(4rem, 7.4vw, 7.8rem);
}

.reservation-copy p:last-child {
  max-width: 430px;
  font-size: 1.2rem;
}

.reservation-widget {
  min-height: 550px;
  padding: 22px;
  border: 1px solid rgba(45, 26, 18, 0.22);
  background: var(--paper);
  box-shadow: 14px 14px 0 rgba(225, 93, 25, 0.8);
}

.reservation-widget iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-height: 500px;
  border: 0;
}

/* Info */
.info {
  display: grid;
  min-height: 760px;
  background: var(--orange);
  color: var(--white);
  grid-template-columns: 1.08fr 0.92fr;
}

.info-photo {
  min-height: 680px;
  overflow: hidden;
}

.info-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-content {
  display: flex;
  max-width: 620px;
  padding: clamp(70px, 9vw, 130px) clamp(45px, 7vw, 110px);
  flex-direction: column;
  justify-content: center;
}

.info-content h2 {
  margin-bottom: 46px;
}

.info-list {
  display: grid;
  margin-bottom: 40px;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-list div {
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.info-list span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.info-list p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.4;
}

.info-content .button {
  align-self: flex-start;
}

/* Footer */
.site-footer {
  padding-block: 65px 28px;
  background: var(--ink);
  color: var(--cream);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}

.footer-brand img {
  width: 105px;
  height: 90px;
  object-fit: contain;
}

.footer-brand p {
  margin: 12px 0 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-links p {
  color: rgba(255, 249, 233, 0.75);
  font-size: 0.9rem;
}

.footer-links strong {
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 8px 25px;
}

.footer-links a {
  color: var(--cream);
  font-size: 0.82rem;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-column: 1 / -1;
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 249, 233, 0.52);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-booking-wrap,
.mobile-booking {
  display: none;
}

/* Legal page */
.legal-page {
  background: var(--paper);
}

.legal-main {
  padding-top: 78px;
}

.legal-hero {
  padding-block: clamp(95px, 12vw, 160px) clamp(70px, 9vw, 110px);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.legal-intro {
  max-width: 520px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.legal-section {
  display: grid;
  padding-block: clamp(70px, 9vw, 115px);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}

.legal-section h2 {
  color: var(--orange);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.legal-list {
  margin: 0;
}

.legal-list div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.72fr 1.28fr;
  gap: 25px;
}

.legal-list div:last-child {
  border-bottom: 0;
}

.legal-list dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-list dd {
  margin: 0;
  font-size: 1.05rem;
}

.legal-list a {
  color: var(--orange);
  text-underline-offset: 4px;
}

.legal-back {
  padding-block: 55px 100px;
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

@media (max-width: 1100px) {
  :root {
    --page: min(100% - 48px, 940px);
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.63rem;
  }

  .nav-info {
    display: none;
  }

  .story {
    min-height: 0;
    grid-template-columns: 1fr 0.82fr;
  }

  .story-detail {
    display: none;
  }

  .cuisine-heading {
    grid-template-columns: 1fr 0.55fr;
  }

  .gallery-grid {
    grid-template-rows: 440px 330px;
  }

  .reservation-inner {
    grid-template-columns: 1fr 430px;
    gap: 60px;
  }

  .info-content {
    padding-inline: 55px;
  }
}

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

  .header-inner {
    width: calc(100% - 32px);
  }

  .brand {
    width: 62px;
    height: 62px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .menu-toggle[aria-expanded="true"] {
    color: var(--ink);
  }

  .menu-toggle-lines {
    position: relative;
    width: 23px;
    height: 14px;
  }

  .menu-toggle-lines i {
    position: absolute;
    right: 0;
    width: 23px;
    height: 1px;
    background: currentColor;
    transition: transform 250ms ease, top 250ms ease;
  }

  .menu-toggle-lines i:first-child { top: 3px; }
  .menu-toggle-lines i:last-child { top: 11px; }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child { top: 7px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child { top: 7px; transform: rotate(-45deg); }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 120px 28px 55px;
    background: var(--cream);
    color: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 250ms ease, transform 250ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .main-nav .nav-instagram {
    width: 100%;
  }

  .nav-instagram svg {
    width: 26px;
    height: 26px;
  }

  .main-nav .nav-info {
    display: block;
    margin-left: 0;
  }

  .main-nav .button {
    width: 100%;
    margin-top: 22px;
  }

  .hero-content {
    padding-bottom: 130px;
  }

  .hero h1 {
    font-size: clamp(4rem, 15vw, 7rem);
  }

  .hero-scroll {
    right: 22px;
  }

  .story {
    display: flex;
    flex-direction: column;
    gap: 55px;
  }

  .story-copy {
    max-width: 620px;
  }

  .story-visual {
    width: min(88%, 560px);
    margin-left: auto;
  }

  .cuisine-heading {
    display: block;
  }

  .cuisine-heading h2 {
    margin-bottom: 35px;
  }

  .food-gallery {
    padding-inline: 18px;
    grid-template-columns: 1fr 1fr;
  }

  .food-card-three {
    width: 72%;
    margin: 10px auto 0;
    grid-column: 1 / -1;
  }

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

  .aperitivo-photo {
    width: min(88%, 580px);
  }

  .aperitivo-copy {
    max-width: 620px;
    margin-left: auto;
  }

  .aperitivo-pattern {
    top: 48%;
    width: 64vw;
    height: 64vw;
  }

  .gallery-title {
    display: block;
  }

  .gallery-title h2 {
    margin-bottom: 28px;
  }

  .gallery-grid {
    grid-template-rows: 400px 280px;
  }

  .reservation-inner {
    grid-template-columns: 1fr;
  }

  .reservation-widget {
    width: min(100%, 500px);
    margin-inline: auto;
  }

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

  .info-photo {
    min-height: 470px;
  }

  .info-content {
    max-width: none;
    padding: 80px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-image {
    object-position: 56% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(43, 14, 4, 0.73), rgba(43, 14, 4, 0.12)), linear-gradient(0deg, rgba(43, 14, 4, 0.45), transparent 60%);
  }

  .hero-content {
    justify-content: flex-end;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 13.2vw, 4.1rem);
  }

  .hero-intro {
    margin: 20px 0 25px;
    font-size: 0.9rem;
  }

  .hero-scroll {
    display: none;
  }

  .story {
    padding-block: 90px;
  }

  .story-copy h2 {
    margin-bottom: 30px;
  }

  .story-visual {
    width: 100%;
  }

  .cuisine {
    padding-top: 90px;
  }

  .cuisine-heading h2 {
    font-size: 3.9rem;
  }

  .food-gallery {
    display: flex;
    padding-bottom: 100px;
    flex-direction: column;
    gap: 18px;
  }

  .food-card,
  .food-card-two,
  .food-card-three {
    width: 100%;
    margin: 0;
  }

  .food-card img {
    aspect-ratio: 0.9;
  }

  .food-card figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .aperitivo {
    padding-block: 90px;
  }

  .aperitivo-photo {
    width: 100%;
  }

  .handwritten {
    font-size: 3.4rem;
  }

  .gallery {
    padding-block: 85px;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
  }

  .gallery-grid figure {
    aspect-ratio: 0.85;
  }

  .gallery-grid .gallery-wide {
    aspect-ratio: 1.25;
  }

  .reservation {
    padding-block: 90px 110px;
  }

  .reservation-copy h2 {
    font-size: 4rem;
  }

  .reservation-widget {
    min-height: 520px;
    padding: 12px;
    box-shadow: 8px 8px 0 rgba(225, 93, 25, 0.8);
  }

  .info-photo {
    min-height: 360px;
  }

  .info-content {
    padding: 75px 16px;
  }

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

  .footer-links,
  .footer-links nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-booking-wrap {
    display: block;
  }

  .mobile-booking {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 52px;
    border-radius: 100px;
    background: var(--orange);
    box-shadow: 0 8px 28px rgba(63, 19, 4, 0.25);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .mobile-booking.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .legal-hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 3.6rem);
    line-height: 1.02;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .mobile-booking-wrap,
  .mobile-booking,
  .skip-link,
  .legal-back {
    display: none;
  }

  .reveal,
  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .legal-main {
    padding-top: 0;
  }
}
