:root {
  --cream: #f7efe2;
  --paper: #fffaf1;
  --paper-warm: #fbf2e2;
  --ink: #241a14;
  --muted: #75685c;
  --green: #183f32;
  --green-soft: #285b49;
  --brick: #a6422b;
  --gold: #c1934e;
  --gold-soft: #e0c58d;
  --line: rgba(36, 26, 20, 0.14);
  --line-strong: rgba(36, 26, 20, 0.22);
  --shadow: 0 18px 50px rgba(36, 26, 20, 0.13);
  --shadow-lift: 0 24px 70px rgba(36, 26, 20, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.76), rgba(247, 239, 226, 0.96)),
    var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 239, 226, 0.88);
  border-bottom: 1px solid rgba(36, 26, 20, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(36, 26, 20, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(193, 147, 78, 0.68);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 250, 241, 0.17), transparent 30%),
    linear-gradient(145deg, #1f4d3f, #102d24);
  color: var(--paper);
  box-shadow: inset 0 0 0 5px rgba(255, 250, 241, 0.06), 0 10px 24px rgba(24, 63, 50, 0.16);
}

.asset-img.is-missing {
  display: none;
}

.brand-fallback {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-fallback::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}

.brand-text {
  display: grid;
  gap: 0;
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.02;
}

.brand-text span:last-child {
  color: var(--green);
  font-style: italic;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a:not(.btn) {
  position: relative;
  padding-block: 6px;
}

.main-nav a:not(.btn)::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.main-nav a:not(.btn):hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  overflow: hidden;
  border: 1px solid rgba(24, 63, 50, 0.9);
  border-radius: 999px;
  background: var(--green);
  color: var(--paper);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(24, 63, 50, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 250, 241, 0.2), transparent);
  transform: translateX(-110%);
  transition: transform 0.58s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--green-soft);
  box-shadow: 0 18px 42px rgba(24, 63, 50, 0.22);
}

.btn:hover::before {
  transform: translateX(110%);
}

.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
.nav-toggle:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid rgba(193, 147, 78, 0.42);
  outline-offset: 3px;
}

.btn-outline {
  background: rgba(255, 250, 241, 0.1);
  color: var(--paper);
  border-color: rgba(255, 250, 241, 0.74);
  box-shadow: 0 12px 28px rgba(36, 26, 20, 0.12);
}

.btn-small {
  min-height: 40px;
  padding: 9px 16px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--green);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding: clamp(112px, 16vh, 178px) clamp(18px, 5vw, 72px) clamp(64px, 10vh, 96px);
  overflow: hidden;
  background: #102d24;
  color: var(--paper);
}

.hero::before,
.hero::after,
.hero-vignette {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    radial-gradient(circle at 68% 16%, rgba(245, 205, 135, 0.26), transparent 28%),
    radial-gradient(circle at 18% 92%, rgba(166, 66, 43, 0.24), transparent 36%),
    linear-gradient(90deg, rgba(13, 32, 26, 0.9) 0%, rgba(24, 63, 50, 0.64) 44%, rgba(36, 26, 20, 0.34) 100%);
}

.hero::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 30%, rgba(20, 12, 8, 0.42)),
    radial-gradient(ellipse at center, transparent 46%, rgba(8, 14, 12, 0.28) 100%);
  mix-blend-mode: multiply;
}

.hero-vignette {
  z-index: 3;
  background: linear-gradient(180deg, transparent 70%, rgba(10, 22, 18, 0.64));
}

.hero-media {
  position: absolute;
  inset: -2%;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
  transform: scale(1.045);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(800px, 100%);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.hero-note {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(24px, 5vw, 56px);
  z-index: 4;
  display: grid;
  gap: 2px;
  max-width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 8px;
  background: rgba(20, 43, 35, 0.48);
  color: var(--paper);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

.hero-note span {
  color: var(--gold-soft);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 1.18rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: clamp(3rem, 8vw, 6.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

section:not(.hero) {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.intro,
.menu-section,
.specialties,
.gallery,
.reservation {
  max-width: 1240px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.intro p,
.reservation-copy p,
.special-card p,
.menu-highlight p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.text-link {
  position: relative;
  color: var(--brick);
  font-weight: 800;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

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

.menu-category,
.menu-highlight,
.info-panel,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: var(--shadow);
}

.menu-category,
.special-card,
.menu-highlight,
.info-panel,
.booking-form,
.map-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.menu-category:hover,
.special-card:hover,
.menu-highlight:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 147, 78, 0.42);
  box-shadow: var(--shadow-lift);
}

.menu-category {
  padding: 24px;
}

.menu-category h3 {
  margin-bottom: 18px;
  color: var(--green);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.menu-item strong,
.menu-item span {
  display: block;
}

.menu-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.94rem;
}

.menu-item b {
  color: var(--brick);
  white-space: nowrap;
}

.menu-highlight {
  overflow: hidden;
  border-color: rgba(193, 147, 78, 0.5);
}

.menu-highlight img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.menu-highlight div {
  padding: 24px;
}

.menu-highlight h3 {
  color: var(--green);
  margin-bottom: 10px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.special-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 12px 40px rgba(36, 26, 20, 0.09);
}

.special-card h3,
.special-card p {
  padding: 0 22px;
}

.special-card h3 {
  margin-top: 22px;
}

.special-card p {
  margin-bottom: 24px;
}

.card-image,
.gallery-item {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(24, 63, 50, 0.82), rgba(166, 66, 43, 0.78)),
    repeating-linear-gradient(45deg, rgba(255, 250, 241, 0.18) 0 1px, transparent 1px 13px);
}

.card-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.special-card:hover .card-image img,
.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-item {
  border-radius: 8px;
  margin: 0;
  box-shadow: 0 15px 40px rgba(36, 26, 20, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(36, 26, 20, 0.18);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item::before,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.gallery-item::before {
  background: linear-gradient(180deg, transparent 38%, rgba(36, 26, 20, 0.74));
}

.gallery-item::after {
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(36, 26, 20, 0.08);
}

.gallery-item figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.25;
  transform: translateY(3px);
  transition: transform 0.3s ease;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.info-contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.info-panel {
  padding: clamp(26px, 4vw, 42px);
}

.info-list {
  margin: 24px 0;
}

.info-list div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.info-list dt {
  color: var(--green);
  font-weight: 900;
}

.info-list dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.map-card {
  position: relative;
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  background: #efe2ce;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-lines {
  position: absolute;
  inset: -20px;
  background:
    linear-gradient(38deg, transparent 18%, rgba(24, 63, 50, 0.15) 18% 20%, transparent 20% 44%, rgba(166, 66, 43, 0.15) 44% 46%, transparent 46%),
    linear-gradient(122deg, transparent 24%, rgba(24, 63, 50, 0.14) 24% 26%, transparent 26% 58%, rgba(193, 147, 78, 0.22) 58% 60%, transparent 60%),
    linear-gradient(rgba(24, 63, 50, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 63, 50, 0.1) 1px, transparent 1px);
  background-size: auto, auto, 54px 54px, 54px 54px;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  gap: 4px;
  width: min(280px, calc(100% - 44px));
  padding: 18px;
  border-radius: 8px;
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 18px 44px rgba(24, 63, 50, 0.28);
  transform: translate(-50%, -50%);
}

.map-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 22px;
  height: 22px;
  background: var(--green);
  transform: translateX(-50%) rotate(45deg);
}

.map-pin span,
.map-pin small {
  position: relative;
  z-index: 1;
}

.map-pin span {
  font-family: var(--serif);
  font-size: 1.45rem;
}

.map-pin small {
  color: rgba(255, 250, 241, 0.76);
}

.reservation {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.booking-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
}

.booking-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--brick));
}

label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 26, 20, 0.13);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(117, 104, 92, 0.68);
}

input:focus,
textarea:focus {
  border-color: rgba(193, 147, 78, 0.78);
  background: #fffaf1;
  box-shadow: 0 0 0 4px rgba(193, 147, 78, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

textarea {
  resize: vertical;
}

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

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 7vw, 76px) clamp(18px, 5vw, 72px) 26px;
  background:
    radial-gradient(circle at 18% 0%, rgba(193, 147, 78, 0.18), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(166, 66, 43, 0.18), transparent 30%),
    linear-gradient(135deg, #102d24, #183f32 52%, #0f261f);
  color: var(--paper);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 250, 241, 0.04) 1px, transparent 1px);
  background-size: 100% 38px;
  opacity: 0.38;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand > span:last-child {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-mark {
  width: 46px;
  height: 46px;
  background: var(--paper);
  color: var(--green);
}

.footer-lead p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 250, 241, 0.82);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.footer-links,
.footer-address {
  display: grid;
  align-content: start;
  gap: 12px;
  color: rgba(255, 250, 241, 0.8);
}

.footer-links a {
  width: fit-content;
  color: var(--paper);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 250, 241, 0.32);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links a:first-child {
  color: var(--gold-soft);
}

.footer-links a:hover {
  color: var(--gold-soft);
  border-color: currentColor;
}

.footer-address p {
  margin: 0;
}

.demo-note {
  max-width: 310px;
  color: rgba(255, 250, 241, 0.58);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1240px;
  margin: 48px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 250, 241, 0.15);
  color: rgba(255, 250, 241, 0.58);
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 50%;
  background: var(--brick);
  color: var(--paper);
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 28px rgba(166, 66, 43, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.section-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.045) translate3d(-0.4%, -0.3%, 0);
  }
  to {
    transform: scale(1.075) translate3d(0.5%, 0.4%, 0);
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

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

  .main-nav a {
    padding: 12px;
  }

  .main-nav .btn {
    margin-top: 8px;
  }

  .hero-note {
    right: 18px;
    bottom: 24px;
  }

  .intro-grid,
  .menu-layout,
  .info-contact,
  .reservation,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .menu-board,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero {
    min-height: 78vh;
    padding: 104px 18px 132px;
  }

  .hero::before {
    background:
      radial-gradient(circle at 72% 18%, rgba(245, 205, 135, 0.2), transparent 30%),
      linear-gradient(90deg, rgba(13, 32, 26, 0.92), rgba(24, 63, 50, 0.64));
  }

  .hero-note {
    right: 18px;
    bottom: 22px;
    left: 18px;
    max-width: none;
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .hero-note strong {
    text-align: right;
  }

  .hero-actions,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  section:not(.hero) {
    padding-block: 58px;
  }

  .menu-category,
  .menu-highlight div,
  .booking-form,
  .info-panel {
    padding: 22px;
  }

  .gallery-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .map-card {
    min-height: 300px;
  }

  .footer-inner {
    gap: 30px;
  }

  .footer-bottom {
    display: grid;
  }
}

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

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

@media (scripting: none) {
  .section-reveal {
    opacity: 1;
    transform: none;
  }
}
