* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f4ee;
  color: #1f2933;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid rgba(67, 56, 43, 0.16);
  background: rgba(247, 244, 238, 0.94);
  padding: 14px 26px;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.brand span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: #2f4a3c;
  color: #fff;
  font-size: 0.78rem;
}

nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #5d665f;
  font-weight: 850;
}

.nav-action {
  color: #9a3412;
}

.language-switcher {
  display: flex;
  gap: 6px;
}

.language-switcher button {
  width: 38px;
  height: 34px;
  border: 1px solid #cdbfae;
  border-radius: 7px;
  background: #fffaf4;
  color: #2f4a3c;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  border-color: #2f4a3c;
  background: #2f4a3c;
  color: #fff;
}

.hero,
.quick-info,
.section,
.contact {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
  padding: 58px 0 30px;
}

.hero-copy {
  display: grid;
  align-content: center;
  min-height: 560px;
  border-radius: 8px;
  background: #fffaf4;
  padding: 42px;
}

.hero-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
}

.hero-image img,
.photo-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 13px;
  color: #9a3412;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

p {
  color: #5d665f;
  font-size: 1.04rem;
  line-height: 1.65;
}

.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 1.16rem;
}

.actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 18px;
  font-weight: 950;
}

.primary {
  background: #2f4a3c;
  color: #fff;
}

.secondary {
  border: 1px solid #cdbfae;
  background: #fffaf4;
  color: #2f4a3c;
}

.primary.light {
  background: #fff;
  color: #2f4a3c;
}

.light-outline {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: #fff;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 16px 0 42px;
}

.quick-info div,
.menu-grid article,
.event-card {
  border: 1px solid rgba(67, 56, 43, 0.14);
  border-radius: 8px;
  background: #fffaf4;
  padding: 20px;
}

.quick-info strong {
  display: block;
  margin-bottom: 5px;
  color: #2f4a3c;
  font-size: 1.25rem;
}

.quick-info span {
  color: #6b756e;
  font-weight: 750;
}

.section {
  border-top: 1px solid rgba(67, 56, 43, 0.16);
  padding: 70px 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.menu-grid,
.photo-grid {
  display: grid;
  gap: 16px;
}

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

.menu-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: #9a3412;
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.event-card {
  display: grid;
  align-content: center;
  background: #2f4a3c;
  color: #fff;
}

.event-card p {
  color: #dce8df;
}

.photo-grid {
  grid-template-columns: 1.1fr 0.9fr 1fr;
}

.photo-grid img {
  min-height: 300px;
  border-radius: 8px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 42px;
  border-radius: 8px;
  background: #2f4a3c;
  color: #fff;
  padding: 36px;
}

.contact p {
  max-width: 720px;
  color: #dce8df;
}

.contact .eyebrow {
  color: #fed7aa;
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .quick-info,
  .menu-grid,
  .split,
  .photo-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-image {
    min-height: auto;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 12px 16px;
  }

  .hero,
  .quick-info,
  .section,
  .contact {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy,
  .contact {
    padding: 24px;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  h2 {
    font-size: 2rem;
  }
}
