:root {
  --green-980: #020805;
  --green-950: #06140a;
  --green-900: #0d2414;
  --green-800: #14391f;
  --olive: #6f8b2f;
  --cream: #fff1ad;
  --paper: #fff8e2;
  --gold: #e7c95e;
  --ink: #111b12;
  --muted: rgba(255, 248, 226, .78);
  --line: rgba(255, 241, 173, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--green-980);
  color: var(--paper);
  font-family: "Trebuchet MS", Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.photo-link {
  display: block;
  color: inherit;
  cursor: zoom-in;
}

.photo-link img {
  transition: filter .18s ease;
}

.photo-link:hover img {
  filter: brightness(1.04);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(2, 8, 5, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
  font-weight: 900;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(231, 201, 94, .45);
}

.brand span {
  font-size: 1.12rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 800;
  font-size: .94rem;
}

nav a:hover {
  background: rgba(255, 241, 173, .08);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cream);
}

.hero {
  min-height: min(820px, calc(100vh - 76px));
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(74px, 8vw, 106px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}

.hero-photo-link,
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: center 54%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 5, .82), rgba(2, 8, 5, .46) 48%, rgba(2, 8, 5, .18)),
    linear-gradient(0deg, rgba(2, 8, 5, .76), transparent 48%);
}

.hero-content,
.logo-card {
  position: relative;
  z-index: 1;
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--cream);
  font-family: "Trebuchet MS", Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(2.35rem, 5.8vw, 5.4rem);
  font-weight: 900;
  line-height: .98;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .35);
}

h2 {
  font-family: "Trebuchet MS", Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3.45rem);
  line-height: 1.04;
  margin-bottom: 18px;
}

.lead {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 700;
}

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

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

.primary {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(231, 201, 94, .18);
}

.secondary {
  border-color: rgba(17, 27, 18, .22);
  background: var(--olive);
  color: var(--paper);
}

.map-link {
  border-color: rgba(17, 27, 18, .22);
  background: transparent;
  color: var(--ink);
}

.ghost {
  border-color: var(--line);
  color: var(--cream);
  background: rgba(2, 8, 5, .42);
}

.logo-card {
  position: absolute;
  top: clamp(96px, 9vw, 120px);
  right: clamp(20px, 5vw, 72px);
  width: min(230px, 30vw);
  text-align: center;
}

.logo-card img {
  width: min(164px, 100%);
  margin: 0 auto;
  border-radius: 0;
  border: 0;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .36));
}

.logo-card p {
  margin: 10px 0 0;
  color: var(--paper);
  font-size: .88rem;
  font-weight: 900;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .52);
}

.story,
.menu,
.course,
.visit {
  padding: clamp(58px, 8vw, 106px) clamp(20px, 5vw, 72px);
}

.story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 6vw, 76px);
  overflow: hidden;
  background: var(--green-900);
  color: var(--paper);
}

.section-bg-link,
.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.section-bg {
  object-fit: cover;
  opacity: .5;
}

.story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 8, 5, .74), rgba(2, 8, 5, .48));
}

.story > div,
.story > p {
  position: relative;
  z-index: 1;
}

.story p:last-child,
.course .section-head p {
  color: var(--muted);
  font-size: 1.07rem;
}

.section-head p,
.food-grid span,
.visit p {
  color: rgba(17, 27, 18, .7);
  font-size: 1.07rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 48px) clamp(20px, 5vw, 72px);
  background: var(--green-950);
}

.gallery-strip .photo-link,
.gallery-strip img {
  width: 100%;
  height: 100%;
}

.gallery-strip .photo-link {
  aspect-ratio: 16 / 9;
  grid-column: span 2;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .26);
}

.gallery-strip img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 241, 173, .16);
}

.gallery-strip .photo-link:nth-child(4) {
  grid-column: 2 / span 2;
}

.gallery-strip .photo-link:nth-child(5) {
  grid-column: 4 / span 2;
}

.gallery-strip .photo-link:first-child img {
  object-position: center 45%;
}

.gallery-strip .photo-link:nth-child(2) img {
  object-position: center 58%;
}

.section-light {
  background: #f5ead0;
  color: var(--ink);
}

.section-light .kicker,
.visit .kicker {
  color: #6e862d;
}

.section-head {
  max-width: 880px;
  margin-bottom: 32px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 8px;
}

.inline-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #52651f;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.feature-dish,
.visit-card,
.scorecard {
  border: 1px solid rgba(17, 27, 18, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .5);
}

.feature-dish {
  min-height: 430px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(13, 36, 20, .08), rgba(13, 36, 20, .86)), url("../assets/photos/new/burger-plate.jpg") center / cover no-repeat;
  color: var(--paper);
}

.feature-dish h3 {
  font-family: "Trebuchet MS", Inter, Arial, Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  margin: 10px 0;
}

.feature-dish p {
  color: rgba(255, 248, 226, .82);
  font-weight: 700;
}

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

.food-grid .photo-link,
.food-grid img {
  width: 100%;
  height: 208px;
}

.food-grid img {
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(17, 27, 18, .16);
}

.food-grid .photo-link:last-child img {
  object-position: center 42%;
}

.course {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: center;
  background: var(--green-900);
}

.course h2 {
  color: var(--cream);
}

.scorecard {
  overflow: hidden;
  background: rgba(255, 241, 173, .08);
  border-color: var(--line);
  padding: 0 18px 18px;
  color: var(--paper);
}

.scorecard-photo,
.scorecard img {
  width: calc(100% + 36px);
  height: 280px;
  margin: 0 -18px 10px;
}

.scorecard img {
  object-fit: cover;
}

.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
}

.score-row:last-child {
  border-bottom: 0;
}

.score-row span {
  color: var(--muted);
  font-weight: 800;
}

.score-row strong {
  color: var(--cream);
  font-size: 1.12rem;
  text-align: right;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(26px, 6vw, 76px);
  background: #ead492;
  color: var(--ink);
}

.visit-card {
  padding: 24px;
  background: #fff8e2;
  box-shadow: 0 24px 70px rgba(17, 27, 18, .16);
}

.visit-card div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 27, 18, .12);
}

.visit-card span {
  color: rgba(17, 27, 18, .58);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.visit-card .btn {
  width: 100%;
  margin-top: 12px;
}

.visit-card div + .btn {
  margin-top: 18px;
}

footer {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-strip .photo-link:nth-child(4),
  .gallery-strip .photo-link:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .hero,
  .story,
  .menu-layout,
  .course,
  .visit {
    grid-template-columns: 1fr;
  }

  .logo-card {
    width: 180px;
  }

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

@media (max-width: 720px) {
  .topbar {
    min-height: 68px;
    padding: 8px 16px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--green-900);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .42);
  }

  body.nav-open nav {
    display: flex;
  }

  .hero,
  .story,
  .menu,
  .course,
  .visit {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
  }

  .hero-photo {
    object-position: center;
  }

  .logo-card {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: min(210px, 72vw);
    margin-top: 34px;
  }

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

  .btn {
    width: 100%;
  }

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

  .food-grid .photo-link,
  .food-grid img {
    height: 220px;
  }

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

  .gallery-strip .photo-link,
  .gallery-strip .photo-link:nth-child(4),
  .gallery-strip .photo-link:nth-child(5) {
    aspect-ratio: 16 / 10;
    grid-column: auto;
  }

  .feature-dish {
    min-height: 360px;
  }

  .score-row {
    min-height: 64px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .score-row strong {
    text-align: left;
  }

  h1 {
    font-size: clamp(2.18rem, 12vw, 4.1rem);
  }
}
