:root {
  --cream: #fff8ec;
  --paper: #fffdf8;
  --ink: #30251f;
  --muted: #74645a;
  --coral: #a93d32;
  --coral-dark: #8e3028;
  --sage: #51644c;
  --line: rgba(48, 37, 31, 0.13);
  --shadow: 0 18px 45px rgba(72, 44, 31, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { display: block; width: 100%; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: auto; }

.topbar {
  background: var(--ink);
  color: white;
  font-size: 0.93rem;
}
.topbar .wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar a { text-decoration: none; font-weight: 800; }
.language { opacity: 0.9; }

.hero {
  min-height: 680px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: #4a3128;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 22, 18, 0.88), rgba(35, 22, 18, 0.35)),
    url("assets/interior-wide-cover-original.jpeg") center/cover;
}
.hero-content { position: relative; z-index: 1; padding: 72px 0; }
.brand-mark {
  width: 124px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.85);
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 25px 0 8px;
  color: #ffe8b8;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 900;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.03; }
h1 { max-width: 780px; margin: 0; font-size: clamp(3.2rem, 8vw, 6.7rem); }
.lead { max-width: 650px; margin: 22px 0 30px; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.button:hover { background: var(--coral-dark); }
.button.secondary { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.65); }

section { padding: 88px 0; }
.intro-grid, .visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.section-kicker { color: var(--coral-dark); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 900; }
h2 { margin: 7px 0 20px; font-size: clamp(2.2rem, 5vw, 4.2rem); }
.large-copy { color: var(--muted); font-size: 1.12rem; }
.feature-photo { aspect-ratio: 4 / 5; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }

.menu { background: var(--paper); border-block: 1px solid var(--line); }
.menu-heading { max-width: 720px; margin-bottom: 42px; }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.menu-card { padding: 28px; background: white; border: 1px solid var(--line); border-radius: 22px; }
.menu-card h3 { margin: 0 0 18px; color: var(--coral-dark); font-size: 1.65rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-child { border: 0; }
.menu-item strong { white-space: nowrap; }
.note { color: var(--muted); font-size: .9rem; }

.gallery { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 14px; }
.gallery img { height: 330px; object-fit: cover; border-radius: 18px; }
.gallery img:first-child { height: 674px; grid-row: span 2; }

.visit { background: var(--sage); color: white; }
.visit .section-kicker { color: #fff1cd; }
.visit .large-copy { color: white; }
.details { display: grid; gap: 14px; }
.detail { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.detail b { display: block; color: #fff1cd; margin-bottom: 3px; }
.map-link { color: white; font-weight: 900; }

footer { padding: 32px 0; background: var(--ink); color: rgba(255,255,255,.8); font-size: .9rem; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

@media (max-width: 760px) {
  .hero { min-height: 620px; }
  .intro-grid, .visit-grid, .menu-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 34px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img, .gallery img:first-child { height: 250px; grid-row: auto; }
  .gallery img:first-child { grid-column: span 2; }
  section { padding: 64px 0; }
}
