:root {
  color-scheme: light;
  --ink: #1d1410;
  --muted: #7a6758;
  --paper: #ffffff;
  --cream: #ffffff;
  --stone: #d9c3a8;
  --line: rgba(29, 20, 16, 0.14);
  --tomato: #c83a25;
  --tomato-dark: #862116;
  --basil: #17633f;
  --wine: #170f0c;
  --espresso: #251713;
  --gold: #d9ad6b;
  --shadow: 0 28px 90px rgba(23, 15, 12, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) auto minmax(18rem, 1fr);
  grid-template-areas: "nav brand lang";
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  min-height: 92px;
  padding: 0.75rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(29, 20, 16, 0.1);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: min(18rem, 46vw);
}

.brand img {
  width: min(16rem, 40vw);
  height: 4.45rem;
  object-fit: contain;
  object-position: center;
  filter: none;
}

nav {
  grid-area: nav;
  display: flex;
  justify-content: flex-start;
  gap: clamp(0.7rem, 2.5vw, 2rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 900;
}

nav a {
  position: relative;
  padding: 0.35rem 0;
}

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

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

.lang-switcher {
  grid-area: lang;
  justify-self: end;
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.28rem;
  border: 1px solid rgba(29, 20, 16, 0.12);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(52, 23, 13, 0.08);
}

.lang-switcher button {
  min-width: 2.35rem;
  min-height: 2.15rem;
  color: var(--muted);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 1000;
}

.lang-switcher button.is-active {
  color: #fff;
  background: var(--tomato);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4.1rem, 10vw, 8.7rem);
  line-height: 0.86;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5.25rem);
  line-height: 0.95;
}

h3 {
  margin: 0.95rem 0 0.45rem;
  font-size: 1.16rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  background: var(--wine);
}

.hero-media,
.hero-copy {
  grid-area: 1 / 1;
}

.hero-media {
  min-height: 34rem;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: brightness(0.58) saturate(1.08);
}

.hero-carousel {
  position: relative;
  background: var(--wine);
}

.hero-carousel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1200ms ease, transform 6500ms ease;
}

.hero-carousel img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  grid-area: 1 / 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 15, 12, 0.9), rgba(23, 15, 12, 0.5) 48%, rgba(23, 15, 12, 0.18)),
    linear-gradient(0deg, rgba(23, 15, 12, 0.86), rgba(23, 15, 12, 0.05)),
    radial-gradient(circle at 76% 23%, rgba(217, 173, 107, 0.22), transparent 18rem);
  pointer-events: none;
}

.hero-copy {
  z-index: 1;
  align-self: center;
  max-width: 72rem;
  padding: clamp(2rem, 7vw, 6rem);
  color: var(--paper);
}

.hero-copy p:not(.eyebrow) {
  max-width: 44rem;
  color: rgba(255, 248, 239, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 1000;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.primary {
  color: #fff;
  background: var(--tomato);
  box-shadow: 0 18px 40px rgba(186, 36, 26, 0.3);
}

.primary:hover,
.primary:focus-visible {
  background: var(--tomato-dark);
}

.secondary {
  color: var(--paper);
  border-color: rgba(255, 248, 239, 0.32);
  background: rgba(255, 248, 239, 0.08);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 238, 211, 0.13);
  border-bottom: 1px solid rgba(255, 238, 211, 0.16);
}

.info-strip div {
  position: relative;
  padding: 1.35rem clamp(1rem, 4vw, 4rem);
  color: var(--paper);
  background: var(--espresso);
}

.info-strip div::before {
  position: absolute;
  top: 0;
  right: clamp(1rem, 4vw, 4rem);
  left: clamp(1rem, 4vw, 4rem);
  height: 4px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--basil), var(--paper), var(--tomato));
}

.info-strip span,
footer span:last-child {
  display: block;
  color: rgba(255, 248, 239, 0.68);
  font-size: 0.9rem;
}

.info-strip strong {
  display: block;
  margin-top: 0.42rem;
  font-size: 1.04rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background: #ffffff;
}

.about-copy {
  max-width: 45rem;
}

.about-copy .eyebrow,
.plates .eyebrow,
.gallery .eyebrow,
.contact .eyebrow,
.banner .eyebrow,
.flipbook-copy .eyebrow,
.story-section .eyebrow {
  color: var(--tomato);
}

.about-copy p:not(.eyebrow),
.section-heading p,
.flipbook-copy p,
.story-text p,
.values-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  color: var(--tomato);
  border-bottom: 2px solid currentColor;
  font-weight: 1000;
}

.signature-card {
  position: relative;
  overflow: hidden;
  min-height: 34rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--wine);
}

.signature-card img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
  filter: brightness(0.74) saturate(1.05);
}

.signature-card div {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 248, 239, 0.22);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(33, 19, 15, 0.68);
  backdrop-filter: blur(12px);
}

.signature-card strong,
.signature-card span {
  display: block;
}

.signature-card strong {
  margin-bottom: 0.32rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.signature-card span {
  color: rgba(255, 248, 239, 0.84);
  line-height: 1.55;
}

.section-heading {
  max-width: 66rem;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 48rem;
}

.plates {
  background: #ffffff;
}

.plate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.plate-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(52, 23, 13, 0.08);
}

.plate-grid img,
.dish-carousel {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border-radius: 8px;
}

.plate-grid img {
  object-fit: cover;
}

.dish-carousel {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}

.dish-carousel img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 850ms ease, transform 4200ms ease;
}

.dish-carousel img.is-active {
  opacity: 1;
  transform: scale(1);
}

.plate-grid h3,
.plate-grid p {
  padding: 0 0.55rem;
}

.plate-grid p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.flipbook {
  display: grid;
  grid-template-columns: minmax(17rem, 0.55fr) minmax(20rem, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 16%, rgba(217, 173, 107, 0.18), transparent 18rem),
    linear-gradient(180deg, var(--espresso), var(--wine));
}

.flipbook-copy {
  position: sticky;
  top: 100px;
  color: var(--paper);
}

.flipbook-copy p {
  color: rgba(255, 248, 239, 0.78);
}

.flipbook-panel {
  padding: clamp(0.8rem, 2vw, 1.15rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  perspective: 1800px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 9%, transparent 91%, rgba(0, 0, 0, 0.14)),
    #2b1d17;
  box-shadow: var(--shadow);
}

.flipbook-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.flipbook-controls button {
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: var(--tomato);
  font-weight: 1000;
}

.flipbook-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.flipbook-controls span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 1000;
  text-align: center;
}

.book-stage {
  position: relative;
  overflow: hidden;
  padding: clamp(0.5rem, 1.8vw, 1rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at left center, rgba(33, 19, 15, 0.16), transparent 19%),
    linear-gradient(90deg, rgba(122, 23, 18, 0.13), transparent 12%, transparent 88%, rgba(122, 23, 18, 0.08)),
    #ffffff;
}

.book-stage::before,
.book-stage::after {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  z-index: 2;
  width: 18%;
  content: "";
  pointer-events: none;
}

.book-stage::before {
  left: 0.65rem;
  background: linear-gradient(90deg, rgba(33, 19, 15, 0.16), transparent);
}

.book-stage::after {
  right: 0.65rem;
  background: linear-gradient(270deg, rgba(33, 19, 15, 0.1), transparent);
}

.book-spine {
  position: absolute;
  top: 0.8rem;
  bottom: 0.8rem;
  left: 50%;
  z-index: 3;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(33, 19, 15, 0.25), transparent);
  box-shadow:
    -6px 0 18px rgba(33, 19, 15, 0.12),
    6px 0 18px rgba(33, 19, 15, 0.08);
  pointer-events: none;
}

#menu-page {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border: 0;
  border-radius: 6px;
  background: #fff;
  box-shadow:
    0 22px 48px rgba(52, 23, 13, 0.18),
    inset 0 0 0 1px rgba(33, 19, 15, 0.08);
  transform-origin: left center;
  transition: transform 420ms ease, filter 420ms ease, opacity 220ms ease;
}

.book-stage.is-turning-forward #menu-page {
  transform: rotateY(-15deg) translateX(1.2%);
  filter: brightness(0.96);
}

.book-stage.is-turning-back #menu-page {
  transform: rotateY(15deg) translateX(-1.2%);
  filter: brightness(0.96);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.menu-list div {
  padding: clamp(1.4rem, 3.2vw, 2.4rem) clamp(1rem, 4vw, 4rem);
  background: var(--wine);
}

.menu-list div:nth-child(2) {
  background: var(--basil);
}

.menu-list div:nth-child(3) {
  background: var(--tomato-dark);
}

.menu-list h3 {
  margin-top: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.menu-list p {
  margin: 0.9rem 0 0;
  color: rgba(255, 248, 239, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.menu-list strong {
  color: #fff;
}

.banner {
  position: relative;
  display: grid;
  min-height: 34rem;
  overflow: hidden;
  background: var(--wine);
}

.banner img,
.banner div {
  grid-area: 1 / 1;
}

.banner img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
  filter: brightness(0.56) saturate(1.04);
}

.banner div {
  align-self: end;
  max-width: 58rem;
  padding: clamp(2rem, 6vw, 5rem);
  color: var(--paper);
}

.banner h2 {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.36);
}

.banner .eyebrow {
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.95fr;
  gap: 1rem;
}

.gallery-grid img,
.about-gallery img {
  width: 100%;
  height: 17rem;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery-grid img:first-child,
.gallery-grid img:nth-child(4) {
  height: 35rem;
  grid-row: span 2;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(186, 36, 26, 0.28), transparent 42%),
    var(--wine);
}

.contact p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.82);
  font-size: 1.04rem;
  line-height: 1.65;
}

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

.contact-actions .secondary {
  color: var(--paper);
}

.contact-card,
.reviews-panel {
  border: 1px solid rgba(255, 248, 239, 0.18);
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.08);
  backdrop-filter: blur(10px);
}

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

.reviews-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.reviews-panel .eyebrow {
  color: var(--gold);
}

.reviews-panel h3 {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.reviews-panel p:not(.eyebrow) {
  margin: 1rem 0 1.4rem;
}

.review-cards {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 1.4rem;
}

.review-cards article {
  padding: 0.9rem;
  border: 1px solid rgba(255, 248, 239, 0.16);
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.09);
}

.review-cards span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.review-cards p {
  margin: 0;
  color: rgba(255, 248, 239, 0.9);
  font-size: 0.98rem;
  line-height: 1.55;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(22rem, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: stretch;
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
  background: #ffffff;
}

.location-photo {
  min-height: 35rem;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.location-map {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.location-map .eyebrow {
  color: var(--tomato);
}

.location-map iframe {
  width: 100%;
  min-height: 27rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--stone);
  box-shadow: var(--shadow);
}

.location-map .button {
  color: #fff;
}

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

.full {
  width: 100%;
}

.about-hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 78px));
  overflow: hidden;
  color: var(--paper);
  background: var(--wine);
}

.about-hero img,
.about-hero div {
  grid-area: 1 / 1;
}

.about-hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: brightness(0.48) saturate(1.05);
}

.about-hero::after {
  grid-area: 1 / 1;
  content: "";
  background: linear-gradient(90deg, rgba(33, 19, 15, 0.88), rgba(33, 19, 15, 0.44), rgba(33, 19, 15, 0.12));
  pointer-events: none;
}

.about-hero div {
  z-index: 1;
  align-self: end;
  max-width: 70rem;
  padding: clamp(2rem, 7vw, 6rem);
}

.about-hero p:not(.eyebrow) {
  max-width: 44rem;
  color: rgba(255, 248, 239, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
  background: var(--paper);
}

.story-lead {
  position: sticky;
  top: 104px;
  align-self: start;
}

.story-text {
  display: grid;
  gap: 1.25rem;
}

.story-text p {
  margin: 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.values-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-section article {
  min-height: 17rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: var(--cream);
}

.values-section span {
  color: var(--tomato);
  font-weight: 1000;
}

.values-section h3 {
  margin-top: 3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 4rem);
  background: var(--cream);
}

.about-gallery img {
  height: clamp(18rem, 36vw, 34rem);
  box-shadow: none;
}

.about-gallery img:nth-child(2) {
  margin-top: clamp(1.5rem, 4vw, 4rem);
}

.compact-contact {
  grid-template-columns: 1fr minmax(16rem, 0.55fr);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  color: #fff;
  border-radius: 999px;
  background: #1f9d55;
  box-shadow: 0 16px 36px rgba(31, 157, 85, 0.32);
  font-size: 0.95rem;
  font-weight: 1000;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  color: var(--paper);
  background: var(--wine);
  font-weight: 1000;
}

footer span:first-child {
  color: var(--gold);
}

footer span:last-child {
  color: rgba(255, 248, 239, 0.68);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand lang"
      "nav nav";
  }

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

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

  .menu-list,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(4) {
    height: 19rem;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .hero,
  .about-hero {
    min-height: 72vh;
  }

  .hero::after,
  .about-hero::after {
    background: linear-gradient(0deg, rgba(33, 19, 15, 0.88), rgba(33, 19, 15, 0.2));
  }

  .about-preview,
  .flipbook,
  .contact,
  .location-section,
  .story-section,
  .compact-contact {
    grid-template-columns: 1fr;
  }

  .flipbook-copy,
  .story-lead {
    position: static;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-gallery img,
  .about-gallery img:nth-child(2) {
    height: 18rem;
    margin-top: 0;
  }

  .location-photo {
    min-height: 20rem;
  }
}

@media (max-width: 640px) {
  .site-header,
  footer {
    align-items: flex-start;
  }

  footer {
    flex-direction: column;
  }

  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "lang";
    justify-items: center;
    min-height: auto;
  }

  .brand img {
    width: min(13rem, 70vw);
    height: 3.45rem;
  }

  .lang-switcher {
    width: 100%;
    justify-content: space-between;
    justify-self: stretch;
  }

  .lang-switcher button {
    flex: 1;
  }

  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.88rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(3.15rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.35rem);
  }

  .info-strip,
  .plate-grid,
  .menu-list,
  .gallery-grid,
  .values-section {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .about-hero div {
    padding: 6rem 1rem 2rem;
  }

  .hero-media,
  .signature-card,
  .signature-card img {
    min-height: 30rem;
  }

  .flipbook-controls {
    grid-template-columns: 1fr 1fr;
  }

  .flipbook-controls span {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .floating-whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
