:root {
  --stone: #f4efe6;
  --paper: #fbf7f0;
  --ink: #2c1c12;
  --muted: #6d5746;
  --brass: #c4a574;
  --wine: #6b3e26;
  --deep: #1a100c;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100%;
  min-height: 0;
  align-items: start;
}
body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, .btn { font: inherit; cursor: pointer; }

.ico {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: -4px;
  stroke: currentColor;
  fill: none;
  flex: 0 0 auto;
}
.ico-lg { width: 26px; height: 26px; }

.site-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 32px;
  background: rgba(251, 247, 240, 0.96);
  border-bottom: 1px solid var(--brass);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  flex: 0 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand img { width: 36px; height: 36px; flex: 0 0 auto; }
.brand span {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-head nav { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 14px; justify-content: flex-end; }
.site-head nav a {
  color: var(--muted);
  padding: 8px 0 3px;
  border-bottom: 1px solid transparent;
}
.site-head nav a:hover,
.site-head nav a.active { color: var(--wine); border-color: var(--wine); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--brass);
  background: transparent;
  color: var(--wine);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex: 0 0 auto;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(78vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 40%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 48%, rgba(26,16,12,0.42), rgba(26,16,12,0.62) 70%, rgba(26,16,12,0.78)),
    linear-gradient(180deg, rgba(26,16,12,0.28) 0%, rgba(26,16,12,0.18) 40%, rgba(26,16,12,0.55) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-width: 100%;
  padding: 80px 32px 88px;
  text-align: center;
  margin: 0 auto;
}
.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--brass);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(40px, 11vw, 84px);
  font-weight: 400;
  line-height: 1.06;
  margin: 0 auto 18px;
  max-width: 16ch;
  overflow-wrap: break-word;
}
.hero p {
  font-size: clamp(16px, 2vw, 18px);
  max-width: 38ch;
  margin: 0 auto;
  color: #f4efe6;
}
.hero .btn { margin-top: 28px; }

.btn {
  display: inline-block;
  border: 1px solid var(--brass);
  color: var(--paper);
  padding: 12px 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  background: transparent;
}
.btn:hover { background: var(--wine); border-color: var(--wine); }
.btn-solid {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--paper);
}
.btn-ghost {
  color: var(--wine);
  border-color: var(--wine);
}
.btn-ghost:hover { color: var(--paper); }

.page { max-width: 1120px; margin: 0 auto; padding: 0 40px 40px; }
.section { padding: 72px 0; border-bottom: 1px solid rgba(196,165,116,0.35); }
.section h2 {
  font-weight: 400;
  font-size: clamp(26px, 4vw, 34px);
  margin: 10px 0 14px;
  overflow-wrap: break-word;
}
.lede { color: var(--muted); font-size: 18px; max-width: 48ch; }
.rule {
  width: 48px;
  height: 1px;
  background: var(--brass);
  border: 0;
  margin-bottom: 16px;
}

.banners { padding-top: 36px; }
.banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--brass);
  background: var(--stone);
  padding: 16px 20px;
  margin-bottom: 12px;
  color: var(--wine);
  overflow-wrap: anywhere;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 420px;
  max-height: 56vw;
  object-fit: cover;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }

.courses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.course {
  border: 1px solid var(--brass);
  padding: 22px 20px 24px;
  background: var(--stone);
  min-height: 170px;
  min-width: 0;
}
.course .ico { color: var(--wine); margin-bottom: 14px; }
.course strong {
  display: block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
  color: var(--wine);
  margin-bottom: 8px;
}
.course span { font-size: 20px; overflow-wrap: anywhere; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}
.feature {
  cursor: pointer;
  background: var(--paper);
  min-width: 0;
  overflow: hidden;
}
.feature:hover img,
.item:hover img { opacity: 0.88; }
.feature:focus { outline: 1px solid var(--brass); outline-offset: 6px; }
.feature img { width: 100%; height: 240px; object-fit: cover; }
.feature .meta {
  padding: 16px 2px 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--wine);
}
.feature h3 { font-weight: 400; font-size: clamp(20px, 3vw, 26px); margin: 6px 0 8px; overflow-wrap: break-word; }
.feature p { color: var(--muted); }
.feature .price { margin-top: 10px; color: var(--wine); }
.old { text-decoration: line-through; color: #8a7a68; margin-right: 8px; }

.house-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}
.member {
  padding: 8px 0 0;
  border-top: 1px solid var(--brass);
  min-width: 0;
}
.member.gm { grid-row: span 1; }
.member .role {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--wine);
  margin-bottom: 8px;
}
.member h3 { font-weight: 400; font-size: clamp(20px, 3vw, 26px); margin-bottom: 8px; overflow-wrap: break-word; }
.member p { color: var(--muted); }

.visit-card p { color: var(--muted); margin: 8px 0; }
.visit-meta { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; color: var(--wine); }
.visit-card .btn { margin: 8px 8px 0 0; }

form { max-width: min(560px, 100%); }
label {
  display: block;
  margin: 16px 0 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
}
input, textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--brass);
  background: #fff;
  font: inherit;
  color: var(--ink);
}
button[type="submit"] {
  margin-top: 20px;
  background: var(--wine);
  color: var(--paper);
  border: 0;
  padding: 12px 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}
.note { color: var(--muted); font-size: 14px; margin-top: 14px; }

.page-hero {
  position: relative;
  height: min(168px, 22vw);
  min-height: 96px;
  max-height: 200px;
  overflow: hidden;
  flex: 0 0 auto;
}
.page-hero img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,16,12,0.15), rgba(26,16,12,0.45));
}
.page-intro { padding: 48px 0 8px; }
.page-intro h1 {
  font-weight: 400;
  font-size: clamp(28px, 6vw, 48px);
  margin: 8px 0 10px;
  line-height: 1.12;
  overflow-wrap: break-word;
}

.menu-course { margin: 48px 0; }
.menu-course .period {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine);
  font-size: 12px;
  margin-bottom: 8px;
}
.item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px dotted var(--brass);
  cursor: pointer;
  min-width: 0;
}
.item:focus { outline: 1px solid var(--brass); outline-offset: 4px; }
.item img, .thumb { width: 88px; height: 88px; object-fit: cover; flex: 0 0 auto; }
.item h3 { font-weight: 400; font-size: clamp(18px, 2.4vw, 22px); overflow-wrap: break-word; }
.item p { color: var(--muted); margin-top: 6px; }
.allergens { font-size: 12px; color: var(--wine); margin-top: 6px; font-style: italic; overflow-wrap: anywhere; }
.price { font-variant-numeric: tabular-nums; color: var(--wine); white-space: nowrap; }
.closed { opacity: 0.5; }

.branch-list { display: grid; gap: 40px; }
.branch-block h2 {
  font-weight: 400;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--wine);
  margin-bottom: 8px;
}
.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.hours div {
  border: 1px solid var(--brass);
  padding: 16px;
  background: var(--stone);
  min-width: 0;
}
.hours strong {
  display: block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
  color: var(--wine);
  margin-bottom: 6px;
}

.site-foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 40px 64px;
  border-top: 1px solid var(--brass);
  color: var(--muted);
  font-size: 14px;
}
.foot-brand { display: flex; gap: 14px; align-items: flex-start; min-width: 0; }
.foot-brand img { width: 40px; height: 40px; flex: 0 0 auto; }
.foot-brand strong {
  display: block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 6px;
}
.site-foot nav { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end; align-items: flex-start; }
.site-foot nav a { padding: 6px 0; }
.site-foot nav a:hover { color: var(--wine); }

.dish-viewer { position: fixed; inset: 0; z-index: 50; display: none; }
.dish-viewer.open { display: block; }
.dv-backdrop { position: absolute; inset: 0; background: rgba(26,16,12,0.72); }
.dv-stage {
  position: relative;
  z-index: 1;
  min-height: 100%;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 56px 88px;
  overflow: auto;
}
.dv-card {
  max-width: 720px;
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--brass);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
  max-height: min(86vh, 860px);
  overflow: hidden;
}
.dv-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: min(86vh, 860px);
  object-fit: cover;
}
.dv-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow: auto;
}
.dv-count {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--wine);
  margin-bottom: 12px;
}
.dv-body h2 { font-weight: 400; font-size: clamp(22px, 3vw, 32px); margin-bottom: 12px; overflow-wrap: break-word; }
.dv-body .lede { font-size: 16px; margin-bottom: 16px; }
.dv-nav, .dv-close {
  position: absolute;
  background: rgba(26,16,12,0.35);
  border: 1px solid var(--brass);
  color: var(--paper);
  padding: 8px 14px;
  margin: 0;
  letter-spacing: 0.12em;
  min-width: 44px;
  min-height: 44px;
}
.dv-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.dv-next { right: 24px; top: 50%; transform: translateY(-50%); }
.dv-close {
  top: 24px;
  right: 24px;
  font-size: 11px;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .site-head { padding: 10px 24px; }
  .page, .site-foot { padding-left: 24px; padding-right: 24px; }
  .courses { grid-template-columns: 1fr 1fr; }
  .house-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { height: min(148px, 20vw); }
}

@media (max-width: 768px) {
  .site-head { padding: 8px 16px; gap: 12px; }
  .page, .site-foot { padding-left: 16px; padding-right: 16px; }
  .hero-copy { padding: 56px 16px 64px; }
  .nav-toggle { display: flex; }
  .site-head nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 16px 16px;
    background: var(--paper);
    border-bottom: 1px solid var(--brass);
  }
  .site-head.nav-open nav { display: flex; }
  .site-head nav a { padding: 12px 0; border-bottom: 1px solid rgba(196,165,116,0.35); }
  .split, .split.reverse, .site-foot, .dv-card {
    grid-template-columns: 1fr;
  }
  .split img { height: 240px; max-height: 42vw; }
  .dv-card {
    max-height: none;
    overflow: visible;
  }
  .dv-card img {
    min-height: 0;
    height: min(38vh, 240px);
    max-height: 240px;
  }
  .dv-stage { padding: 68px 16px 96px; align-content: start; }
  .dv-body { padding: 22px 20px 24px; }
  .dv-prev, .dv-next {
    top: auto;
    bottom: 18px;
    transform: none;
  }
  .dv-prev { left: 16px; }
  .dv-next { right: 16px; }
  .dv-close { top: 12px; right: 12px; }
  .item { grid-template-columns: 72px minmax(0, 1fr); }
  .item .price { grid-column: 2; }
  .page-hero { height: 120px; min-height: 96px; }
  .course { min-height: 0; }
  .feature-grid, .house-grid, .hours, .courses { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .page-intro { padding-top: 28px; }
  .hero { min-height: min(62vh, 560px); }
}

@media (max-width: 375px) {
  .site-head { padding: 8px 12px; }
  .page, .site-foot, .hero-copy { padding-left: 12px; padding-right: 12px; }
  .brand span { letter-spacing: 0.1em; font-size: 12px; }
  .feature img { height: 180px; }
  .item { grid-template-columns: 1fr; gap: 12px; }
  .item img, .thumb { width: 100%; height: 160px; }
  .item .price { grid-column: 1; }
  .dv-stage { padding: 60px 12px 92px; }
  .banner { padding: 12px; }
  .page-hero { height: 96px; min-height: 88px; }
  .hero { min-height: min(58vh, 480px); }
}
