:root {
  color-scheme: light;
  --ink: #202322;
  --muted: #5f6764;
  --paper: #f5f7f4;
  --white: #ffffff;
  --green: #173b35;
  --green-soft: #dce8e2;
  --accent: #b44e3a;
  --line: #cdd5d0;
}

* {
  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.6;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 18px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: min(760px, 82svh);
  display: flex;
  align-items: end;
  overflow: hidden;
  background: url("/images/ban.jpg") center 35% / cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 23, 20, 0.52);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 clamp(20px, 10vw, 148px) clamp(54px, 10vh, 96px);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: inherit;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.primary-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--white);
  border-radius: 4px;
  background: var(--white);
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: transparent;
  color: var(--white);
}

.intro,
.visit {
  width: min(1180px, calc(100% - 40px));
  margin: 84px auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
}

.intro-image,
.visit-photo {
  min-height: 460px;
}

.intro-copy,
.visit-details {
  padding: clamp(38px, 6vw, 76px);
  background: var(--white);
}

.section-label {
  color: var(--accent);
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.intro-copy > p:not(.section-label) {
  margin: 22px 0 0;
  color: var(--muted);
}

.facts {
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.facts div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  color: var(--muted);
}

.facts dd {
  margin: 0;
  font-weight: 700;
}

.menu-band {
  padding: 84px max(20px, calc((100% - 1180px) / 2));
  background: var(--green);
  color: var(--white);
}

.menu-band .section-heading {
  max-width: 680px;
}

.menu-band .section-label {
  color: #b9d2c7;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.menu-grid article {
  min-height: 250px;
  padding: 26px 28px 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.menu-grid article + article {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.menu-grid span {
  color: #b9d2c7;
  font-size: 12px;
  font-weight: 750;
}

.menu-grid h3 {
  margin: 54px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0;
}

.menu-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.visit {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.visit-photo {
  order: 2;
}

.visit-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--green-soft);
}

.hours {
  margin-top: 30px;
  border-top: 1px solid #aebdb6;
}

.hours p {
  margin: 0;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #aebdb6;
}

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

.hours strong {
  white-space: nowrap;
}

.location {
  margin: 28px 0 0;
  color: var(--green);
  font-weight: 750;
}

footer {
  min-height: 90px;
  padding: 26px max(20px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

footer span:first-child {
  color: var(--white);
  font-weight: 750;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
    padding: 14px 20px;
  }

  nav {
    gap: 14px;
  }

  nav a:not(:last-child) {
    display: none;
  }

  .hero {
    min-height: 74svh;
    background-position: 58% center;
  }

  .hero-inner {
    margin: 0 20px 48px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .intro,
  .visit {
    margin: 52px auto;
    grid-template-columns: 1fr;
  }

  .intro-image,
  .visit-photo {
    min-height: 300px;
  }

  .intro-copy,
  .visit-details {
    padding: 36px 26px;
  }

  h2 {
    font-size: 34px;
  }

  .menu-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .menu-grid article {
    min-height: auto;
    padding: 22px 0 28px;
  }

  .menu-grid article + article {
    padding-left: 0;
    border-left: 0;
  }

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

  .visit-photo {
    order: 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
