:root {
  --bg: #ffffff;
  --ink: #171513;
  --muted: #6f6960;
  --line: #ece5da;
  --accent: #f4e0bb;
  --accent-strong: #d7aa67;
  --accent-soft: #fbf4ea;
  --green: #6f7d62;
  --shadow: 0 24px 70px rgba(37, 29, 18, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 48px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(23, 21, 19, 0.08);
  backdrop-filter: blur(14px);
}

.simple-page .site-header {
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(244, 224, 187, 0.55);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 650;
}

.nav a {
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

.nav a[aria-current="page"] {
  color: var(--accent-strong);
  opacity: 1;
}

.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(244, 224, 187, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.site-header[data-elevated="true"] .language-switcher {
  background: var(--accent-soft);
}

.lang-button {
  min-width: 42px;
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--accent);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 13, 10, 0.76), rgba(16, 13, 10, 0.36) 46%, rgba(16, 13, 10, 0.08)),
    linear-gradient(0deg, rgba(16, 13, 10, 0.62), rgba(16, 13, 10, 0.06) 45%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 82px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 8.4rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.15;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(244, 224, 187, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.band {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 116px) 0;
}

.band.alt {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--accent-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(30px, 6vw, 58px);
}

.section-heading .eyebrow {
  margin-bottom: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 80px);
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.intro-grid p {
  margin: 0;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-panel {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(215, 170, 103, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(80, 63, 36, 0.06);
}

.info-label {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-panel p {
  margin: 0 0 24px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 850;
  border-bottom: 2px solid var(--accent-strong);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  grid-auto-rows: clamp(190px, 24vw, 310px);
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(37, 29, 18, 0.08);
}

.gallery img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.page-hero {
  padding-top: clamp(150px, 18vw, 210px);
  padding-bottom: clamp(48px, 7vw, 86px);
}

.page-hero h1 {
  max-width: none;
  color: var(--ink);
}

.page-lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.menu-preview {
  padding-top: clamp(54px, 8vw, 92px);
  padding-bottom: clamp(54px, 8vw, 92px);
}

.menu-year {
  margin-bottom: 24px;
}

.menu-year:not(:first-child) {
  margin-top: clamp(56px, 8vw, 90px);
}

.menu-pages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
}

.menu-pages-short {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
}

.menu-pages img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 55px rgba(80, 63, 36, 0.1);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

.footer p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  font-weight: 750;
  color: var(--ink);
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
  }

  .section-heading,
  .intro-grid,
  .details-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .details-grid {
    gap: 14px;
  }

  .info-panel {
    min-height: auto;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }

  .gallery img:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 14px 14px;
  }

  .brand span {
    max-width: 42vw;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .lang-button {
    min-width: 36px;
    padding: 7px 8px;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 5.2rem);
  }

  .hero-content {
    padding-bottom: 54px;
  }

  .button {
    width: 100%;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery img:first-child {
    grid-column: span 1;
  }
}
