:root {
  --ink: #101820;
  --paper: #f8f3ea;
  --panel: #fff9ee;
  --muted: #6a6258;
  --line: #ded2c0;
  --gold: #c9973f;
  --ruby: #8d2f2f;
  --green: #245244;
  --white: #fffdf7;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(248, 243, 234, 0.93);
  border-bottom: 1px solid rgba(16, 24, 32, 0.09);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  background: var(--ink);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 25px;
}

.brand-name,
.brand-place {
  display: block;
}

.brand-name {
  font-weight: 800;
}

.brand-place {
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a,
.site-footer a,
.menu-grid a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 188px;
}

.lang-toggle {
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  background: #24323e;
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: stretch;
  min-height: calc(100vh - 76px);
  padding: clamp(18px, 4vw, 48px);
}

.hero-media {
  min-height: 540px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(12px, 2vw, 28px) 0;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: #3b3834;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.facts-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.facts-strip div {
  min-width: 0;
  padding: 16px;
  background: var(--panel);
}

.facts-strip dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.facts-strip dd {
  margin: 8px 0 0;
  font-weight: 800;
}

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

.quick-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 92px;
  padding: 22px clamp(16px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.quick-panel strong {
  color: #f7d48b;
}

.section {
  padding: clamp(54px, 7vw, 112px) clamp(16px, 4vw, 48px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 34px;
}

.section-intro p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.menu-grid article {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.menu-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.menu-grid h3,
.menu-grid p,
.menu-grid a {
  margin-inline: 18px;
}

.menu-grid h3 {
  margin-top: 18px;
}

.menu-grid p {
  min-height: 74px;
  color: var(--muted);
}

.menu-grid a {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 900;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.visit-section .eyebrow {
  color: #f7d48b;
}

.visit-copy p {
  max-width: 760px;
  color: #d9d4cc;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

.visit-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.visit-card p {
  margin: 0;
  color: var(--muted);
}

.visit-card a:not(.btn) {
  font-weight: 800;
}

.gallery-section {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 14px;
}

.gallery-section img {
  width: 100%;
  height: clamp(280px, 42vw, 560px);
  object-fit: cover;
}

.gallery-section img:nth-child(2) {
  margin-top: 42px;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.proof-grid {
  display: grid;
  gap: 12px;
}

.proof-grid div {
  display: grid;
  grid-template-columns: minmax(110px, 0.4fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.proof-grid strong {
  color: var(--ruby);
  font-size: 1.25rem;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--gold);
}

.contact-content {
  max-width: 780px;
}

.contact-content .eyebrow {
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(16px, 4vw, 48px) 96px;
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  max-width: 760px;
  margin: 0;
  color: #d9d4cc;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.mobile-cta a {
  display: grid;
  min-height: 54px;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.mobile-cta a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand,
  .header-actions {
    min-width: 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .section-intro,
  .visit-section,
  .reviews-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 360px;
  }

  .facts-strip,
  .quick-panel,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .quick-panel a {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .gallery-section img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-section img:nth-child(2) {
    margin-top: 0;
  }

  .contact-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 72px;
  }

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

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .main-nav {
    gap: 8px 16px;
    font-size: 0.86rem;
  }

  .header-actions .btn-small {
    display: none;
  }

  .hero {
    padding: 14px;
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .facts-strip div,
  .visit-card,
  .proof-grid div {
    padding: 16px;
  }

  .proof-grid div {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 14px;
  }

  .mobile-cta {
    display: grid;
  }
}
