:root {
  --ink: #1b211f;
  --muted: #5e6863;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #d8ddd4;
  --green: #0d6b3d;
  --green-dark: #084a2c;
  --red: #b93225;
  --gold: #cc9a3a;
  --shadow: 0 22px 60px rgba(21, 31, 26, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 48px);
  color: var(--white);
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(251, 250, 246, .96);
  color: var(--ink);
  box-shadow: 0 1px 20px rgba(20, 28, 24, .12);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 54px;
  height: 48px;
  object-fit: contain;
  background: rgba(255, 255, 255, .9);
  border-radius: 8px;
  padding: 4px;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1;
}

.brand small {
  display: block;
  color: currentColor;
  opacity: .8;
  font-size: .78rem;
  margin-top: 4px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav a,
.footer-links a {
  text-decoration: none;
}

.nav a {
  padding: 10px 12px;
  font-size: .9rem;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle,
.icon-link,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: inherit;
  font-weight: 800;
  cursor: pointer;
}

.icon-link svg,
.menu-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.icon-link svg {
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(800px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 13, 10, .86), rgba(7, 13, 10, .34) 52%, rgba(7, 13, 10, .1)), linear-gradient(0deg, rgba(7, 13, 10, .88), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  padding: 140px clamp(18px, 6vw, 80px) 150px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 6.6rem);
  max-width: 900px;
}

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

p {
  line-height: 1.65;
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--red);
  color: var(--white);
}

.btn.secondary {
  background: var(--green);
  color: var(--white);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
}

.btn.ghost.dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.btn.light {
  background: var(--white);
  color: var(--green-dark);
}

.hero-facts {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 6vw, 80px);
  right: clamp(18px, 6vw, 80px);
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(14px);
}

.hero-facts span {
  min-width: 0;
  padding: 18px;
  background: rgba(8, 14, 10, .24);
}

.hero-facts strong {
  display: block;
  font-size: clamp(1.3rem, 3vw, 2.3rem);
}

.hero-facts small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .78);
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-panel div {
  min-width: 0;
  padding: 24px clamp(18px, 3vw, 34px);
  background: var(--white);
}

.quick-panel span,
dt {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quick-panel strong,
dd {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.section {
  padding: clamp(70px, 9vw, 130px) clamp(18px, 6vw, 80px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.section-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.feature-list span {
  padding: 9px 12px;
  border-radius: 8px;
  background: #e7f0ea;
  color: var(--green-dark);
  font-weight: 800;
}

.text-link {
  color: var(--red);
  font-weight: 900;
  text-underline-offset: 5px;
}

.menu-preview {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.menu-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-preview div {
  position: relative;
  margin: 18px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
}

.menu-preview strong {
  display: block;
  font-size: 1.25rem;
}

.menu-preview p {
  margin: 6px 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  grid-auto-rows: 240px;
  gap: 12px;
}

.gallery button {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--line);
  cursor: zoom-in;
}

.gallery button:first-child {
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

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

.dark-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--green-dark);
  color: var(--white);
}

.dark-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, .82);
}

.reviews {
  background: #f1f4ef;
}

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

.review-grid article {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.review-grid strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--green-dark);
}

.review-grid p {
  color: var(--muted);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.visit-card {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

dl {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

dt,
dd {
  margin-left: 0;
}

.map-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-dark);
}

.map-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 16, 10, .82), rgba(5, 16, 10, .08));
}

.map-panel div {
  position: relative;
  z-index: 1;
  margin: 18px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 74, 44, .9);
}

.map-panel span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.map-panel strong {
  display: block;
  margin: 8px 0 18px;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1;
}

.map-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(18px, 6vw, 80px) 92px;
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: start;
  flex-wrap: wrap;
}

.mobile-sticky {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(8, 12, 10, .86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    background: rgba(251, 250, 246, .98);
    color: var(--ink);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(20, 28, 24, .12);
  }

  .site-header.nav-active .nav {
    display: grid;
  }

  .quick-panel,
  .split,
  .dark-band,
  .visit {
    grid-template-columns: 1fr;
  }

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

  .dark-band .btn {
    width: max-content;
  }

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

@media (max-width: 680px) {
  .brand small {
    display: none;
  }

  .brand img {
    width: 46px;
    height: 42px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .nav {
    top: 68px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(7, 13, 10, .93), rgba(7, 13, 10, .58) 58%, rgba(7, 13, 10, .2));
  }

  .hero-content {
    padding: 118px 18px 220px;
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 4.3rem);
  }

  .hero-facts {
    grid-template-columns: 1fr;
    left: 18px;
    right: 18px;
    bottom: 76px;
  }

  .quick-panel {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 18px;
  }

  .menu-preview {
    min-height: 360px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
    gap: 8px;
  }

  .gallery button:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .map-panel {
    min-height: 360px;
  }

  .site-footer {
    display: block;
    padding-bottom: 96px;
  }

  .footer-links {
    margin-top: 20px;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 60;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(251, 250, 246, .96);
    box-shadow: 0 18px 50px rgba(20, 28, 24, .22);
  }

  .mobile-sticky a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    color: var(--white);
    background: var(--green);
  }

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