:root {
  --ink: #1c1713;
  --muted: #6d6259;
  --paper: #fffaf4;
  --panel: #ffffff;
  --line: #e8ded2;
  --green: #1f6b55;
  --green-dark: #14513f;
  --red: #ba3d2d;
  --gold: #d89b3a;
  --shadow: 0 18px 60px rgba(43, 31, 20, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 8px 28px rgba(26, 20, 13, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  white-space: nowrap;
  font-size: 0.98rem;
}

.brand small {
  color: currentColor;
  opacity: 0.78;
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
}

.nav a,
.icon-link,
.lang-toggle {
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  min-height: 2.45rem;
}

.site-header.scrolled .nav a,
.site-header.scrolled .icon-link,
.site-header.scrolled .lang-toggle {
  border-color: var(--line);
}

.nav a {
  padding: 0.55rem 0.9rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-link,
.lang-toggle {
  display: grid;
  place-items: center;
  min-width: 2.45rem;
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  cursor: pointer;
}

.site-header.scrolled .icon-link,
.site-header.scrolled .lang-toggle {
  background: white;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1rem, 4vw, 3rem) 5rem;
  color: white;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 12, 8, 0.88), rgba(20, 12, 8, 0.5) 48%, rgba(20, 12, 8, 0.14)),
    linear-gradient(0deg, rgba(20, 12, 8, 0.68), transparent 45%);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.3rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
}

.btn.primary {
  color: white;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(186, 61, 45, 0.32);
}

.btn.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.contact-actions .btn.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: white;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.quick-panel {
  width: min(1120px, calc(100% - 2rem));
  margin: -2.5rem auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-panel a {
  min-height: 6.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem;
  text-decoration: none;
  border-right: 1px solid var(--line);
}

.quick-panel a:last-child {
  border-right: 0;
}

.quick-panel span {
  color: var(--muted);
  font-size: 0.85rem;
}

.quick-panel strong {
  font-size: clamp(0.98rem, 1.5vw, 1.2rem);
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.intro-grid,
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: clamp(2rem, 6vw, 4.5rem);
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.offer-list {
  display: grid;
  gap: 1rem;
}

.offer-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.1rem;
  align-items: center;
  padding: 0.8rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.offer-list img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.offer-list h3,
.menu-grid h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.offer-list p,
.menu-grid p {
  margin: 0;
}

.menu-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

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

.menu-grid article {
  min-height: 15rem;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
}

.menu-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: #f3e5d0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.gallery {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 0.8rem;
}

.gallery-item {
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: #eee;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.contact-section {
  align-items: start;
}

.contact-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 36px rgba(43, 31, 20, 0.08);
}

dl {
  margin: 0;
}

.contact-card dl > div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-card dl > div:first-child {
  padding-top: 0;
}

dt {
  color: var(--muted);
  font-size: 0.9rem;
}

dd {
  margin: 0;
  font-weight: 800;
}

.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  margin-top: 1rem;
  color: white;
  background: var(--green);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

.footer {
  padding: 3rem 1rem 6rem;
  text-align: center;
  color: var(--muted);
  background: #19130f;
}

.footer p:first-child {
  color: white;
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 0.85rem;
  z-index: 30;
  display: none;
  width: min(360px, calc(100% - 1rem));
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sticky-cta a {
  flex: 1;
  min-height: 3.2rem;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  text-decoration: none;
  font-weight: 900;
}

.sticky-cta a:first-child {
  background: var(--red);
}

.lightbox {
  width: min(920px, calc(100% - 2rem));
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(18, 13, 9, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  background: black;
  border-radius: var(--radius);
}

.lightbox button {
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 50%;
  background: white;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .brand strong {
    white-space: normal;
  }

  .hero {
    min-height: 88vh;
    padding-top: 7rem;
  }

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

  .quick-panel a {
    border-bottom: 1px solid var(--line);
  }

  .quick-panel a:nth-child(2n) {
    border-right: 0;
  }

  .intro-grid,
  .contact-section,
  .section-head,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .offer-list article {
    grid-template-columns: 120px 1fr;
  }

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

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

  .sticky-cta {
    display: flex;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 0.8rem;
  }

  .brand-mark {
    width: 2.1rem;
    height: 2.1rem;
  }

  .brand strong {
    max-width: 14rem;
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .quick-panel {
    width: calc(100% - 1rem);
  }

  .quick-panel a {
    min-height: 5.6rem;
    padding: 0.8rem;
  }

  .section {
    width: calc(100% - 1.2rem);
  }

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

  .offer-list img {
    aspect-ratio: 16 / 9;
  }

  .contact-card dl > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
