:root {
  --container: 1320px;
  --forest: #254d3d;
  --green: #39644f;
  --mint: #dcebdd;
  --orange: #a63c0b;
  --ink: #17251d;
  --paper: #edf3ea;
  --surface: #fffaf2;
  --line: #afc3b4;
  color-scheme: light dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
.skip {
  position: fixed;
  z-index: 30;
  left: 10px;
  top: 8px;
  background: var(--forest);
  color: #fff;
  padding: 10px 14px;
  transform: translateY(-160%);
}
.skip:focus {
  transform: none;
}
header {
  height: 76px;
  background: rgba(237, 243, 234, 0.94);
  position: relative;
  z-index: 12;
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  width: min(var(--container), calc(100% - 40px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 68px;
  height: 68px;
}
.menu-button {
  display: none;
}
nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}
nav a {
  text-decoration: none;
  white-space: nowrap;
}
.order,
.primary {
  background: var(--orange);
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--orange);
  border-radius: 2px;
}
.hero {
  width: min(var(--container), calc(100% - 40px));
  min-height: 82vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}
.hero-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 60px clamp(32px, 6vw, 92px) 50px 0;
  position: relative;
}
.kicker {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(64px, 7.7vw, 118px);
  line-height: 0.82;
  letter-spacing: -0.065em;
  margin: 0;
  color: var(--forest);
}
.hero h1 span {
  display: block;
  white-space: nowrap;
}
.intro {
  font-size: clamp(19px, 1.7vw, 25px);
  max-width: 570px;
  margin: 34px 0;
}
.actions {
  display: flex;
  align-items: center;
  gap: 25px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.actions > a:last-child {
  text-underline-offset: 5px;
}
.availability {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  width: min(var(--container), calc(100% - 40px));
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 0;
  color: #52675b;
}
.hero-image {
  margin: 0;
  min-height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}
.hero-image figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: var(--forest);
  color: #fff;
  padding: 9px 13px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.story {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(55px, 9vw, 130px);
  align-items: center;
}
.story-image {
  height: 680px;
  border-radius: 18px;
  overflow: hidden;
  transform: rotate(-1.5deg);
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}
.story-copy h2,
.menu-title h2,
.visit h2 {
  font-size: clamp(46px, 5.3vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin: 0 0 28px;
}
.story-copy > p:not(.kicker) {
  font-size: 20px;
  max-width: 620px;
}
.story-copy > a {
  display: inline-block;
  margin-top: 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--orange);
  text-underline-offset: 6px;
}
.menu-section {
  background: var(--forest);
  color: #fff;
  padding: 120px max(20px, calc((100% - var(--container)) / 2));
}
.menu-title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}
.menu-title .kicker {
  grid-column: 1/-1;
  color: #ffbc95;
  margin-bottom: -35px;
}
.menu-title h2 {
  margin: 0;
}
.menu-title > p:last-child {
  font-size: 18px;
  max-width: 470px;
}
.menu-sheet {
  margin-top: 72px;
  border-top: 1px solid #81a290;
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.25fr;
}
.menu-group {
  padding: 34px 34px 25px 0;
  border-right: 1px solid #81a290;
}
.menu-group + .menu-group {
  padding-left: 34px;
}
.menu-group:last-child {
  border-right: 0;
}
.menu-group h3 {
  font-size: 30px;
  margin: 0 0 22px;
  color: #ffd3b9;
}
.menu-group dl {
  margin: 0;
}
.menu-group dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #6c8e7c;
}
.menu-group dt {
  font-size: 17px;
}
.menu-group dd {
  margin: 0;
  white-space: nowrap;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.menu-group p {
  font-size: 13px;
  color: #cde0d4;
}
.full-menu {
  display: inline-block;
  margin-top: 35px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-underline-offset: 6px;
}
.visit {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.visit-links {
  border-top: 2px solid var(--ink);
}
.visit-links a {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-family: Arial, Helvetica, sans-serif;
}
.visit-links small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #607166;
}
.visit-links strong {
  font-size: 18px;
}
.visit-links span {
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
}
footer {
  background: var(--mint);
  padding: 45px max(20px, calc((100% - var(--container)) / 2));
  display: flex;
  justify-content: space-between;
  gap: 55px;
  align-items: center;
}
.footer-mark {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-mark img {
  width: 64px;
  height: 64px;
}
.demo-note {
  max-width: 540px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #4f6558;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.no-js .reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #edf6ed;
    --paper: #101d17;
    --surface: #17271f;
    --line: #3a5949;
    --mint: #183226;
  }
  .hero h1 {
    color: #9ed0b3;
  }
  header {
    background: rgba(16, 29, 23, 0.95);
  }
  .availability,
  .demo-note {
    color: #b8cbbf;
  }
  .kicker,
  .story-copy > a,
  .visit-links span {
    color: #ff9e6e;
  }
  .menu-section {
    background: #1c3d30;
  }
  .footer-mark img,
  .logo img {
    background: #edf3ea;
    border-radius: 50%;
    padding: 2px;
  }
}
@media (max-width: 850px) {
  header {
    height: 70px;
  }
  .nav-wrap {
    width: calc(100% - 28px);
  }
  .logo img {
    width: 62px;
    height: 62px;
  }
  .menu-button {
    display: block;
    background: none;
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 9px 12px;
    font-weight: 800;
  }
  .js nav {
    display: none;
  }
  .js nav.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .no-js .menu-button {
    display: none;
  }
  .no-js nav {
    font-size: 12px;
    gap: 10px;
  }
  .no-js nav a:not(.order) {
    display: none;
  }
  .hero {
    width: 100%;
    grid-template-columns: 1fr;
    min-height: calc(100svh - 70px);
  }
  .hero-copy {
    padding: 50px 20px 38px;
    min-height: 56svh;
  }
  .hero h1 {
    font-size: clamp(56px, 16vw, 84px);
  }
  .hero h1 span {
    white-space: normal;
  }
  .hero-image {
    height: 44svh;
    min-height: 320px;
    border-radius: 0;
  }
  .story {
    grid-template-columns: 1fr;
    padding: 84px 0;
    gap: 48px;
  }
  .story-image {
    height: 500px;
    width: 82%;
    margin-left: auto;
  }
  .menu-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .menu-title {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .menu-title .kicker {
    grid-column: auto;
    margin-bottom: 0;
  }
  .menu-sheet {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }
  .menu-group,
  .menu-group + .menu-group {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid #81a290;
  }
  .visit {
    grid-template-columns: 1fr;
    padding: 84px 0;
    gap: 40px;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 470px) {
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .story-image {
    width: 92%;
    height: 440px;
  }
  .visit-links a {
    grid-template-columns: 70px 1fr;
  }
  .visit-links span {
    grid-column: 2;
  }
  .menu-group h3 {
    font-size: 26px;
  }
  .story-copy h2,
  .menu-title h2,
  .visit h2 {
    font-size: 43px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
