:root {
  --bg: #f7efdf;
  --paper: #fff9ec;
  --ink: #241d17;
  --muted: #766a5c;
  --line: rgba(36, 29, 23, 0.14);
  --green: #1f4935;
  --green-dark: #122b20;
  --red: #b22b26;
  --slate: #202522;
  --gold: #dea950;
  --kraft: #cba065;
  --shadow: 0 22px 58px rgba(36, 29, 23, 0.18);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.demo-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 7px 16px;
  color: #fff9ec;
  background: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 31px;
  z-index: 29;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 12px max(16px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: rgba(31, 73, 53, 0.96);
  border-bottom: 3px solid var(--gold);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 880;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  background: var(--gold);
  border-radius: var(--radius);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 900;
}

.brand span:last-child {
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 249, 236, 0.78);
  font-size: 14px;
  font-weight: 780;
}

.site-header nav a,
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius);
}

.site-header nav a:hover {
  color: var(--paper);
  background: rgba(255, 249, 236, 0.1);
}

.header-cta {
  color: var(--paper);
  background: var(--red);
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.76fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  min-height: clamp(560px, 72svh, 760px);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 0 44px;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.08;
}

.lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.58;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 640px;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid rgba(31, 73, 53, 0.18);
  border-radius: var(--radius);
  background: rgba(31, 73, 53, 0.18);
}

.hero-details div {
  padding: 16px;
  background: var(--paper);
}

.hero-details dt {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-details dd {
  margin: 7px 0 0;
  color: var(--green-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
}

.button.primary {
  color: var(--paper);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(178, 43, 38, 0.18);
}

.button.secondary {
  color: var(--green-dark);
  border-color: rgba(31, 73, 53, 0.24);
  background: rgba(255, 249, 236, 0.72);
}

.button.secondary.dark {
  color: var(--green-dark);
  background: var(--paper);
}

.hero-board {
  padding: clamp(24px, 4vw, 38px);
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(255, 249, 236, 0.05), rgba(255, 249, 236, 0)),
    var(--slate);
  border: 8px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.board-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 249, 236, 0.18);
}

.board-header span,
.board-note span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.board-header strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.98;
}

.hero-board ul {
  display: grid;
  gap: 0;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.hero-board li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 249, 236, 0.14);
}

.hero-board li span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 800;
}

.hero-board li strong {
  color: rgba(255, 249, 236, 0.75);
  font-size: 14px;
  text-align: right;
}

.board-note {
  padding: 18px;
  background: rgba(255, 249, 236, 0.08);
  border: 1px solid rgba(255, 249, 236, 0.13);
  border-radius: var(--radius);
}

.board-note strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  overflow: hidden;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-strip div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  border-right: 1px solid rgba(255, 249, 236, 0.14);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip span,
.section-label,
.services article span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.1;
}

.story,
.section,
.week-band,
.order-band,
.contact-band,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 88px auto 0;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 48px;
  align-items: start;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.story p,
.week-copy p,
.services p,
.order-band li span,
.contact-band p,
.modal-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.story p {
  margin: 30px 0 0;
  font-size: 19px;
}

.week-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.week-photo {
  overflow: hidden;
  border: 1px solid rgba(31, 73, 53, 0.14);
  border-radius: var(--radius);
  background: #eadcc2;
}

.week-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.week-copy p {
  max-width: 620px;
  font-size: 18px;
}

.menu-list {
  display: grid;
  gap: 0;
  margin: 26px 0 24px;
  border-top: 1px solid var(--line);
}

.menu-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  gap: 18px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 800;
}

.menu-list dd {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
  text-align: right;
}

.section-heading {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 34px;
}

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

.services article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  color: var(--paper);
  background: var(--green);
  border: 1px solid rgba(255, 249, 236, 0.14);
  border-radius: var(--radius);
}

.services h3 {
  margin: auto 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.04;
}

.services p {
  margin: 12px 0 0;
  color: rgba(255, 249, 236, 0.74);
}

.order-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 48px;
  padding: clamp(34px, 6vw, 60px);
  color: var(--paper);
  background: var(--slate);
  border-radius: var(--radius);
}

.order-band ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.order-band li {
  position: relative;
  min-height: 86px;
  padding: 16px 16px 16px 70px;
  border: 1px solid rgba(255, 249, 236, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 249, 236, 0.06);
  counter-increment: steps;
}

.order-band li::before {
  content: counter(steps);
  position: absolute;
  left: 16px;
  top: 17px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.order-band li strong,
.order-band li span {
  display: block;
}

.order-band li strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.order-band li span {
  color: rgba(255, 249, 236, 0.74);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 42px;
  align-items: center;
  padding: clamp(34px, 6vw, 60px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-band p {
  max-width: 620px;
  font-size: 18px;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list a,
.contact-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--green-dark);
  background: #fbf1dd;
  border: 1px solid rgba(36, 29, 23, 0.14);
  border-radius: var(--radius);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.site-footer span {
  color: var(--muted);
}

.footer-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--green-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 820;
}

.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.reservation-modal:target {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 43, 32, 0.74);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(100%, 620px);
  max-height: min(720px, calc(100svh - 40px));
  overflow: auto;
  padding: clamp(26px, 5vw, 42px);
  background: var(--paper);
  border: 1px solid rgba(31, 73, 53, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.modal-panel h2 {
  margin-top: 12px;
  font-size: clamp(32px, 5vw, 48px);
}

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

  .site-header nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .quick-strip,
  .story,
  .week-band,
  .section-heading,
  .services,
  .order-band,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .quick-strip div {
    min-height: 90px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 249, 236, 0.14);
  }

  .quick-strip div:last-child {
    border-bottom: 0;
  }

  .services article {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .demo-bar {
    font-size: 11px;
  }

  .site-header {
    min-height: 68px;
    padding: 12px;
  }

  .brand span:last-child {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero,
  .quick-strip,
  .story,
  .section,
  .week-band,
  .order-band,
  .contact-band,
  .site-footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .hero-subtitle {
    font-size: 26px;
  }

  .lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-details {
    grid-template-columns: 1fr;
  }

  .hero-board {
    border-width: 5px;
  }

  .hero-board li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-board li strong {
    text-align: left;
  }

  .week-photo img {
    min-height: 300px;
  }

  .story,
  .section,
  .week-band,
  .order-band,
  .contact-band {
    margin-top: 64px;
  }

  .menu-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .menu-list dd {
    text-align: left;
  }

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

  .footer-actions,
  .footer-actions a {
    width: 100%;
  }

  .footer-actions a {
    justify-content: center;
  }
}
