@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&family=Prata&display=swap");

:root {
  --dark: #222;
  --ink: #353535;
  --muted: #777;
  --sage: #aec099;
  --soft: #f7f5f0;
  --line: #e8e2d8;
  --white: #fff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Heebo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background: var(--white);
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  background: rgba(34, 34, 34, .98);
  transition: height .25s ease, box-shadow .25s ease;
}

.site-header.is-compact {
  height: 72px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.brand img { width: 174px; }

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav a { opacity: .9; }
.nav a:hover, .nav a.active { color: var(--sage); opacity: 1; }

.lang { display: flex; gap: 12px; margin-left: 8px; color: #ccc; }
.lang a { font-size: 12px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: 72vh;
  margin-top: 90px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero.full { min-height: calc(100vh - 90px); }

.hero img,
.hero .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .slide {
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}

.hero .slide.active { opacity: 1; }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.24));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 80px 24px;
  text-align: center;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(38px, 7vw, 82px);
  line-height: 1.08;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.page-title {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.section {
  padding: 82px 50px;
}

.section.tight { padding-top: 45px; }
.section.alt { background: var(--soft); }

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.intro {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  margin-bottom: 36px;
  color: var(--sage);
  font-size: clamp(30px, 4vw, 48px);
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 22px auto 0;
  background: var(--sage);
}

.lead {
  font-size: 18px;
  color: #555;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.photo-grid img,
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform .28s ease, filter .28s ease;
}

.photo-grid a,
.gallery a {
  display: block;
  overflow: hidden;
  background: #ddd;
}

.photo-grid a { aspect-ratio: 1 / 1; }
.gallery a { aspect-ratio: 4 / 3; }
.photo-grid a:first-child { aspect-ratio: 2 / 3; }

.photo-grid img:hover,
.gallery img:hover {
  transform: scale(1.04);
  filter: brightness(.9);
}

.feature-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 48px;
}

.feature {
  text-align: center;
  padding: 16px 18px;
}

.feature img {
  height: 52px;
  margin: 0 auto 18px;
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1.1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse { grid-template-columns: 1.1fr minmax(280px, .9fr); }

.round-image {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  padding: 9px;
  border: 1px solid var(--sage);
}

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

.menu-section h2 {
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 28px;
  text-transform: uppercase;
}

.menu-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item h3 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: "Heebo", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.price {
  flex: 0 0 auto;
  color: #aaa;
}

.menu-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.notice {
  max-width: 820px;
  margin: 60px auto 0;
  text-align: center;
  color: #555;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contacts {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
}

.contact-card {
  background: var(--soft);
  padding: 36px;
}

.contact-card h2 {
  color: var(--sage);
  font-size: 30px;
  margin-bottom: 20px;
}

.contact-card p { margin: 0 0 8px; }

.map iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  filter: grayscale(.2);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}

.contact-form textarea { min-height: 150px; resize: vertical; }

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--sage);
  padding: 0 28px;
  background: var(--sage);
  color: #fff;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}

.button:hover { background: #92a97a; }

.policy {
  max-width: 950px;
  margin: 0 auto;
}

.policy h2 {
  margin: 34px 0 12px;
  color: var(--sage);
  font-size: 28px;
}

.site-footer {
  background: #1f1f1f;
  color: #fff;
  padding: 58px 50px 46px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 48px;
}

.site-footer h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.site-footer p { margin: 0 0 7px; color: rgba(255,255,255,.78); }
.site-footer a { color: #fff; }
.footer-logo { width: 200px; }

.copyright {
  max-width: 1180px;
  margin: 42px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0,0,0,.88);
}

.lightbox.is-open { display: grid; }
.lightbox img { max-height: 88vh; width: auto; }
.lightbox button {
  position: absolute;
  top: 18px;
  right: 20px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header { height: 72px; padding: 0 22px; }
  .brand img { width: 148px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 72px 0 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 34px;
    background: rgba(34,34,34,.98);
  }
  body.menu-open .nav { display: flex; }
  .lang { margin-left: 0; }
  .hero { margin-top: 72px; min-height: 56vh; }
  .hero.full { min-height: 68vh; }
  .section { padding: 64px 22px; }
  .photo-grid, .gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .feature-links, .split, .split.reverse, .menu-board, .contacts, .footer-grid {
    grid-template-columns: 1fr;
  }
  .split, .split.reverse { gap: 32px; }
  .footer-grid { gap: 28px; }
}

@media (max-width: 560px) {
  .photo-grid, .gallery { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .page-title { font-size: 34px; }
  .menu-item h3 { display: block; }
  .price { display: block; margin-top: 2px; }
}
