:root {
  --ink: #161712;
  --cream: #f7f3df;
  --powder: #c8dadd;
  --sage: #87a860;
  --sage-deep: #5f6f43;
  --mustard: #d6c452;
  --amber: #db9c45;
  --magenta: #c23a94;
  --wood: #8d6038;
  --card: rgba(255, 255, 255, 0.72);
  --shadow-soft: 0 18px 45px rgba(22, 23, 18, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito Sans", sans-serif;
  background: linear-gradient(180deg, #f8f6ed 0%, #f4efe0 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("assets/img/pattern-texture.webp");
  background-size: 360px auto;
  opacity: 0.13;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(500px 300px at 86% 16%, rgba(194, 58, 148, 0.2), transparent 70%),
    radial-gradient(520px 360px at 12% 60%, rgba(219, 156, 69, 0.2), transparent 72%);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  padding: 0.75rem clamp(1rem, 4vw, 3.4rem);
  background: rgba(247, 243, 223, 0.78);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(22, 23, 18, 0.1);
  transition: padding 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.site-header.scrolled {
  padding-top: 0.42rem;
  padding-bottom: 0.42rem;
  box-shadow: 0 8px 24px rgba(22, 23, 18, 0.12);
  background: rgba(247, 243, 223, 0.9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.brand-mark {
  width: 74px;
  height: auto;
}

.brand-subtitle {
  width: clamp(150px, 24vw, 260px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  overflow-x: auto;
  padding-bottom: 0.15rem;
}

.site-nav a {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.12rem;
  min-height: 38px;
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(95, 111, 67, 0.35);
  background: rgba(135, 168, 96, 0.12);
  outline: none;
}

main {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 92px;
}

.section-block {
  margin-top: clamp(2.8rem, 6vw, 6rem);
}

.hero {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: clamp(1.2rem, 3vw, 2.3rem);
  min-height: min(90vh, 880px);
  align-items: center;
  padding-top: clamp(1.2rem, 3vw, 2rem);
}

.hero-content {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  border-radius: 36px 36px 26px 26px;
  border: 1px solid rgba(95, 111, 67, 0.3);
  background: linear-gradient(180deg, rgba(247, 243, 223, 0.92), rgba(247, 243, 223, 0.78));
  box-shadow: var(--shadow-soft);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  border: 1px dashed rgba(95, 111, 67, 0.36);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.4rem;
  color: var(--sage-deep);
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  line-height: 1;
}

h1,
h2,
h3 {
  margin: 0;
  color: #13140f;
  font-family: "Cormorant Garamond", serif;
}

h1 {
  margin-bottom: 0.7rem;
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(1.7rem, 4.1vw, 3rem);
  line-height: 1.03;
}

h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.1;
}

p {
  margin: 0;
  line-height: 1.55;
}

.hero-copy {
  max-width: 44ch;
  font-size: clamp(1.02rem, 1.9vw, 1.18rem);
}

.hero-info {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.hero-info p {
  width: fit-content;
  padding: 0.26rem 0.68rem;
  border-radius: 999px;
  font-size: 0.97rem;
  background: rgba(135, 168, 96, 0.17);
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 44px;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(22, 23, 18, 0.16);
  outline: none;
}

.btn-primary {
  color: #fffdf8;
  background: linear-gradient(140deg, var(--sage-deep), var(--sage));
}

.btn-secondary {
  color: #181915;
  border-color: rgba(22, 23, 18, 0.2);
  background: rgba(255, 255, 255, 0.68);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(135, 168, 96, 0.8), rgba(200, 218, 221, 0.75));
  border: 1px solid rgba(95, 111, 67, 0.33);
  box-shadow: var(--shadow-soft);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto -42px -55px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 58, 148, 0.6), transparent 70%);
  filter: blur(8px);
}

.hero-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  max-width: 22ch;
  padding: 0.45rem 0.82rem;
  color: #fff;
  font-family: "Caveat", cursive;
  font-size: clamp(1.2rem, 3.2vw, 1.7rem);
  line-height: 1;
  border-radius: 14px;
  background: rgba(22, 23, 18, 0.68);
}

.section-head {
  display: grid;
  gap: 0.5rem;
  max-width: 68ch;
}

.identity-cards {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.identity-card {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(95, 111, 67, 0.32);
  box-shadow: var(--shadow-soft);
}

.identity-card:nth-child(2) {
  transform: translateY(-10px);
}

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

.atmosphere {
  padding: clamp(1rem, 2vw, 1.4rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(200, 218, 221, 0.38), rgba(247, 243, 223, 0.6));
  border: 1px solid rgba(95, 111, 67, 0.22);
}

.photo-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(22, 23, 18, 0.16);
}

.photo-grid figure:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-grid figure:nth-child(2) {
  grid-row: span 2;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.photo-grid figure:hover img {
  transform: scale(1.03);
}

.dishes {
  padding: clamp(1rem, 2vw, 1.4rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(247, 243, 223, 0.82), rgba(200, 218, 221, 0.35));
  border: 1px solid rgba(95, 111, 67, 0.2);
}

.dish-spotlight {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.dish-feature {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(95, 111, 67, 0.32);
  box-shadow: 0 14px 36px rgba(22, 23, 18, 0.12);
}

.dish-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.dish-feature-copy {
  display: grid;
  align-content: center;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(95, 111, 67, 0.26);
  background: rgba(255, 255, 255, 0.68);
}

.dish-kicker {
  font-family: "Caveat", cursive;
  font-size: 1.5rem;
  color: var(--sage-deep);
  line-height: 1;
}

.dish-picker {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.1rem 0.1rem 0.4rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.dish-picker::-webkit-scrollbar {
  height: 8px;
}

.dish-picker::-webkit-scrollbar-track {
  background: rgba(95, 111, 67, 0.12);
  border-radius: 999px;
}

.dish-picker::-webkit-scrollbar-thumb {
  background: rgba(95, 111, 67, 0.4);
  border-radius: 999px;
}

.dish-chip {
  appearance: none;
  border: 1px solid rgba(95, 111, 67, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.34rem 0.5rem 0.34rem 0.36rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-align: left;
  cursor: pointer;
  flex: 0 0 clamp(175px, 22vw, 230px);
  min-height: 70px;
  scroll-snap-align: start;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.dish-chip img {
  width: 56px;
  height: 56px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 56px;
}

.dish-chip span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dish-chip:hover,
.dish-chip:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(22, 23, 18, 0.12);
  border-color: rgba(95, 111, 67, 0.45);
  outline: none;
}

.dish-chip.is-active {
  border-color: rgba(95, 111, 67, 0.7);
  background: rgba(135, 168, 96, 0.2);
}

.dish-reels {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.dish-reel {
  padding: 0.7rem;
  border-radius: 20px;
  border: 1px solid rgba(95, 111, 67, 0.24);
  background: rgba(255, 255, 255, 0.7);
}

.dish-reel h3 {
  margin-bottom: 0.45rem;
  font-size: 1.4rem;
}

.dish-reel video {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 360px;
  object-fit: cover;
  border-radius: 14px;
  background: #000;
}

.chef {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: center;
  padding: clamp(0.9rem, 2vw, 1.2rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(148deg, rgba(219, 156, 69, 0.18), rgba(200, 218, 221, 0.34)),
    rgba(247, 243, 223, 0.64);
  border: 1px solid rgba(95, 111, 67, 0.24);
}

.chef-image {
  overflow: hidden;
  border-radius: 26px;
}

.chef-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.chef-copy {
  display: grid;
  gap: 0.65rem;
}

.menu-wine {
  position: relative;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(247, 243, 223, 0.74);
  border: 1px solid rgba(95, 111, 67, 0.24);
}

.menu-wine::before {
  content: "";
  position: absolute;
  inset: -38% -5% auto;
  height: 180px;
  transform: rotate(-3deg);
  background: linear-gradient(90deg, rgba(135, 168, 96, 0.2), rgba(200, 218, 221, 0.2));
}

.menu-hub {
  position: relative;
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.menu-card {
  padding: 0.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(95, 111, 67, 0.2);
  display: grid;
  gap: 0.45rem;
}

.menu-card-kicker {
  font-family: "Caveat", cursive;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--sage-deep);
}

.doc-note {
  font-size: 0.95rem;
  color: rgba(22, 23, 18, 0.7);
}

.doc-preview {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(95, 111, 67, 0.22);
  background: #fff;
}

.doc-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 760px) {
  .doc-preview img {
    height: 220px;
  }
}

.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.doc-actions .btn {
  min-width: 124px;
}

.menu-quick-links {
  position: relative;
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.menu-quick-links a {
  text-decoration: none;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.72rem;
  border: 1px solid rgba(95, 111, 67, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.menu-quick-links a:hover,
.menu-quick-links a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(22, 23, 18, 0.12);
  border-color: rgba(95, 111, 67, 0.45);
  outline: none;
}

.docs-page-main {
  width: min(980px, 92vw);
  margin: 0 auto;
}

.docs-intro {
  margin-top: clamp(1rem, 3vw, 2.2rem);
}

.docs-intro h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.docs-section {
  padding: clamp(1rem, 2vw, 1.4rem);
  border-radius: var(--radius-xl);
  background: rgba(247, 243, 223, 0.74);
  border: 1px solid rgba(95, 111, 67, 0.22);
}

.doc-stack {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.doc-sheet {
  max-width: min(760px, 100%);
  margin: 0 auto;
}

.doc-sheet[id] {
  scroll-margin-top: 104px;
}

.doc-sheet-preview {
  margin: 0;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid rgba(95, 111, 67, 0.22);
  background: #fff;
}

.doc-sheet-preview img {
  width: 100%;
  display: block;
  max-height: min(82vh, 1100px);
  object-fit: contain;
  background: #fff;
}

/* ── Booking Section ── */
.booking {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 15% 85%, rgba(135, 168, 96, 0.15), transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(200, 218, 221, 0.3), transparent 50%),
    rgba(247, 243, 223, 0.8);
  border: 1px solid rgba(95, 111, 67, 0.26);
  box-shadow: var(--shadow-soft);
}

.booking-card {
  max-width: 640px;
  margin: 0 auto;
}

.booking-header {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  text-align: center;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.35rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--sage-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  min-height: 48px;
  border: 1px solid rgba(95, 111, 67, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(135, 168, 96, 0.18);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(22, 23, 18, 0.38);
}

.form-group input.is-invalid,
.form-group select.is-invalid {
  border-color: #d44;
  box-shadow: 0 0 0 3px rgba(220, 68, 68, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-actions {
  margin-top: 0.6rem;
}

.btn-lg {
  min-height: 54px;
  padding: 0.8rem 2rem;
  font-size: 1.12rem;
  width: 100%;
  letter-spacing: 0.02em;
}

.booking-feedback {
  padding: 0;
  border-radius: 14px;
  font-size: 0.98rem;
  line-height: 1.45;
  text-align: center;
  transition: all 300ms ease;
}

.booking-feedback a {
  color: inherit;
  font-weight: 700;
}

.booking-feedback.is-success {
  margin-top: 0.5rem;
  padding: 1rem 1.2rem;
  background: rgba(135, 168, 96, 0.18);
  border: 1px solid rgba(95, 111, 67, 0.3);
  color: var(--sage-deep);
}

.booking-feedback.is-error {
  margin-top: 0.5rem;
  padding: 1rem 1.2rem;
  background: rgba(220, 68, 68, 0.08);
  border: 1px solid rgba(220, 68, 68, 0.25);
  color: #b33;
}

/* ── Booking CTA (nuova sezione) ── */
.booking-cta-wrap {
  text-align: center;
  padding: 1rem 0 0.5rem;
  display: grid;
  gap: 1.1rem;
}

.booking-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 2.5rem;
  font-size: 1.15rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--sage) 100%);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(95, 111, 67, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.booking-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(95, 111, 67, 0.45);
}

.booking-orari {
  font-size: 0.9rem;
  color: #888;
}

.booking-alt {
  font-size: 0.88rem;
  color: #999;
}

.booking-contact-link {
  color: var(--sage-deep);
  font-weight: 700;
  text-decoration: none;
}

.booking-contact-link:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact {
  display: grid;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: clamp(1rem, 3vw, 1.8rem);
  border: 1px solid rgba(95, 111, 67, 0.26);
  background:
    radial-gradient(circle at 12% 20%, rgba(135, 168, 96, 0.24), transparent 52%),
    radial-gradient(circle at 85% 80%, rgba(194, 58, 148, 0.15), transparent 50%),
    rgba(247, 243, 223, 0.8);
  box-shadow: var(--shadow-soft);
}

.contact-card ul {
  margin: 0.92rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.33rem;
}

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

.site-footer {
  margin-top: clamp(2.4rem, 5vw, 4.2rem);
  padding: 1.2rem 1rem 2rem;
  text-align: center;
  color: rgba(22, 23, 18, 0.92);
}

.site-footer p {
  margin: 0.2rem 0;
}

.site-footer a {
  text-decoration: none;
  font-weight: 700;
}

.mobile-cta {
  display: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

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

@supports not ((backdrop-filter: blur(1px))) {
  .site-header,
  .mobile-cta {
    background: rgba(247, 243, 223, 0.96);
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    width: min(540px, 100%);
    justify-self: center;
  }

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

  .identity-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 340px;
    justify-self: center;
  }

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

  .photo-grid figure:nth-child(1),
  .photo-grid figure:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .dish-spotlight {
    grid-template-columns: 1fr;
  }

  .dish-feature img {
    min-height: 320px;
  }

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

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.55rem 0.72rem 0.45rem;
  }

  .brand-mark {
    width: 58px;
  }

  .brand-subtitle {
    width: clamp(126px, 44vw, 185px);
  }

  .site-nav {
    width: 100%;
    gap: 0.45rem;
    padding-bottom: 0.22rem;
    scroll-snap-type: x proximity;
  }

  .site-nav a {
    font-size: 0.96rem;
    min-height: 36px;
    padding: 0.28rem 0.58rem;
    background: rgba(255, 255, 255, 0.44);
    border-color: rgba(95, 111, 67, 0.2);
  }

  .section-block {
    margin-top: 2.3rem;
  }

  .identity-cards,
  .photo-grid,
  .menu-hub {
    grid-template-columns: 1fr;
  }

  .identity-card:nth-child(3) {
    max-width: none;
  }

  .hero {
    gap: 0.9rem;
    padding-top: 0.65rem;
  }

  .hero-media {
    order: -1;
    width: 100%;
  }

  .hero-video {
    aspect-ratio: 4 / 5;
    max-height: 62vh;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-actions .btn {
    flex: 1;
    min-width: 0;
  }

  .dish-picker {
    gap: 0.45rem;
  }

  .dish-chip {
    flex-basis: clamp(145px, 48vw, 190px);
    min-height: 64px;
    padding-right: 0.4rem;
  }

  .dish-chip img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .dish-reels {
    display: flex;
    overflow-x: auto;
    gap: 0.55rem;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
  }

  .dish-reel {
    flex: 0 0 min(74vw, 320px);
    scroll-snap-align: start;
  }

  .dish-reel video {
    aspect-ratio: 4 / 5;
    max-height: 290px;
  }

  .doc-actions .btn {
    flex: 1;
    min-width: 0;
  }

  .menu-quick-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.3rem;
    scroll-snap-type: x proximity;
  }

  .menu-quick-links a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .doc-sheet-preview img {
    max-height: 76vh;
  }

  .chef {
    gap: 0.85rem;
  }

  .chef-image {
    max-width: min(88vw, 370px);
    margin: 0 auto;
  }

  .chef-image img {
    aspect-ratio: 3 / 4;
    max-height: 56vh;
    object-position: center 16%;
  }

  body.has-mobile-cta {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .mobile-cta {
    position: fixed;
    left: 0.6rem;
    right: 0.6rem;
    bottom: calc(0.5rem + env(safe-area-inset-bottom));
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.42rem;
    border-radius: 999px;
    border: 1px solid rgba(95, 111, 67, 0.25);
    background: rgba(247, 243, 223, 0.86);
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 28px rgba(22, 23, 18, 0.15);
  }

  .mobile-cta .btn {
    min-height: 40px;
    min-width: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.94rem;
  }
}

@media (max-width: 480px) {
  .hero-info p {
    font-size: 0.9rem;
  }

  .dish-chip {
    flex-basis: clamp(136px, 58vw, 172px);
  }

  .dish-chip span {
    font-size: 0.97rem;
  }

  .chef-image {
    max-width: min(86vw, 330px);
  }

  .chef-image img {
    max-height: 50vh;
  }

  .hero-tag {
    max-width: 100%;
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
  }
}

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

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

  .btn,
  .photo-grid img,
  .dish-chip,
  .dish-reel video {
    transition: none;
  }
}
