:root {
  --bg: #261410;
  --cream: #f4e7d2;
  --text: #fff8ed;
  --muted: #d1bda4;
  --wine: #743124;
  --leaf: #6c7650;
  --line: rgba(255, 248, 237, 0.18);
  --container: min(1260px, calc(100% - 44px));
  --serif: "Iowan Old Style", Georgia, serif;
  --sans: "Aptos", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.58 var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
button,
input,
textarea {
  font: inherit;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 9;
  transform: translateY(-180%);
  background: var(--cream);
  color: #111;
  padding: 0.7rem 1rem;
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem max(22px, calc((100vw - 1260px) / 2));
  background: linear-gradient(180deg, rgba(38, 20, 16, 0.84), transparent);
}
.brand {
  font-family: var(--serif);
  font-size: 1.65rem;
}
.site-nav {
  display: flex;
  gap: 1.1rem;
}
.site-nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--muted);
}
.site-nav a:hover {
  color: var(--text);
}
.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  width: 3rem;
  height: 3rem;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0.35rem auto;
  background: currentColor;
}
.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: end;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.58) saturate(0.9);
}
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    0deg,
    rgba(38, 20, 16, 0.92),
    rgba(38, 20, 16, 0.18),
    rgba(38, 20, 16, 0.72)
  );
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 8rem 0 5rem;
}
.hero-copy p,
.menu-heading p,
.room p,
.private p,
.reserve p {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.75rem;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}
h1 {
  max-width: 9em;
  font-size: 6.6rem;
  line-height: 0.9;
}
h2 {
  font-size: 4.6rem;
  line-height: 0.94;
}
.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  margin-top: 1.4rem;
  border: 1px solid var(--cream);
  padding: 0.78rem 1rem;
  background: var(--cream);
  color: #261410;
  cursor: pointer;
  transition:
    transform 0.28s var(--ease),
    background 0.28s var(--ease),
    color 0.28s var(--ease);
}
.button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--cream);
}
.story,
.menu,
.room,
.private,
.reserve {
  width: var(--container);
  margin: 0 auto;
  padding: 6.5rem 0;
}
.story {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
}
.story > p {
  max-width: 48rem;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}
.hours {
  display: grid;
  gap: 0.4rem;
  min-width: 16rem;
  border-left: 1px solid var(--line);
  padding-left: 1.4rem;
}
.hours span {
  color: var(--muted);
}
.hours strong {
  font-weight: 400;
}
.menu {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  border-top: 1px solid var(--line);
}
.menu-list {
  display: grid;
  gap: 0;
}
.menu-list p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  color: var(--cream);
}
.menu-list strong {
  font-weight: 400;
  color: var(--muted);
}
.room {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.room img {
  width: 100%;
  height: 42rem;
}
.room p:not(:first-child) {
  max-width: 30rem;
  color: var(--muted);
}
.private {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 3rem;
  align-items: end;
}
.private img {
  width: 100%;
  height: 32rem;
}
.reserve {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 3rem;
  background: #1c0e0b;
  width: 100%;
  padding-left: max(22px, calc((100vw - 1260px) / 2));
  padding-right: max(22px, calc((100vw - 1260px) / 2));
}
.reserve-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.full {
  grid-column: 1/-1;
}
label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #2d1711;
  color: var(--text);
  padding: 0.9rem;
}
footer {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding: 2rem max(22px, calc((100vw - 1260px) / 2))
    max(2rem, env(safe-area-inset-bottom));
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.reveal {
  opacity: 0;
  transform: translate3d(0, 1.4rem, 0);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .site-header {
    background: #261410;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 22px;
    display: none;
    flex-direction: column;
    background: #1c0e0b;
    border: 1px solid var(--line);
    padding: 1rem;
  }
  .site-nav.is-open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 3rem;
  }
  .story,
  .menu,
  .room,
  .private,
  .reserve {
    grid-template-columns: 1fr;
  }
  .story > p {
    font-size: 2.2rem;
  }
  .reserve-form {
    grid-template-columns: 1fr;
  }
  .room img,
  .private img {
    height: 24rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

html,
body {
  max-width: 100%;
  min-height: 100%;
  background: var(--bg);
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior: none;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(
      ellipse at 22% 18%,
      rgba(116, 49, 36, 0.42),
      transparent 34rem
    ),
    radial-gradient(
      ellipse at 82% 72%,
      rgba(108, 118, 80, 0.18),
      transparent 30rem
    );
}

.site-header {
  isolation: isolate;
}

.hero > img,
.room img,
.private img {
  transform: translate3d(0, var(--parallax, 0), 0) scale(1.012);
  will-change: transform;
}

.room,
.private {
  overflow: hidden;
}

.room img,
.private img {
  clip-path: inset(8% 0 8% 0);
  transition:
    opacity 1100ms var(--ease),
    transform 1300ms var(--ease),
    clip-path 1300ms var(--ease),
    filter 700ms ease;
}

.room img.is-visible,
.private img.is-visible {
  clip-path: inset(0);
}

.room img:hover,
.private img:hover {
  filter: saturate(0.92) brightness(1.06);
  transform: translate3d(0, calc(var(--parallax, 0) - 0.7rem), 0) scale(1.018);
}

.menu-list p {
  transition:
    color 420ms var(--ease),
    padding-left 420ms var(--ease),
    border-color 420ms ease;
}

.menu-list p:hover {
  padding-left: 0.8rem;
  border-color: rgba(255, 248, 237, 0.34);
}

.site-nav {
  max-width: calc(100vw - 44px);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 50%;
  bottom: -0.28rem;
  width: 1.6rem;
  height: 1px;
  content: "";
  transform: translateX(-50%) scaleX(0);
  background: var(--cream);
  transition: transform 420ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateX(-110%) skewX(-16deg);
  background: rgba(255, 255, 255, 0.22);
  transition: transform 600ms var(--ease);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(110%) skewX(-16deg);
}

.reveal {
  clip-path: inset(12% 0 12% 0);
  transition:
    opacity 1050ms var(--ease),
    transform 1050ms var(--ease),
    clip-path 1050ms var(--ease);
}

.reveal.is-visible {
  clip-path: inset(0);
}

.preview-world .site-header {
  position: sticky;
}

.preview-world,
.preview-world body {
  overscroll-behavior: contain;
  scroll-padding-top: 5.5rem;
}

.preview-world .site-nav {
  contain: paint;
}

.story,
.menu,
.room,
.private,
.reserve {
  position: relative;
}

.menu::before,
.reserve::before {
  position: absolute;
  left: 0;
  top: 3rem;
  width: 10rem;
  height: 1px;
  content: "";
  background: var(--cream);
  opacity: 0.28;
}

.hours,
.reserve-form {
  box-shadow: 0 2rem 5rem rgba(28, 14, 11, 0.26);
}

.reserve-form {
  padding: 1rem;
  border: 1px solid rgba(255, 248, 237, 0.12);
  background: rgba(255, 248, 237, 0.025);
}

input,
textarea {
  transition:
    border-color 360ms var(--ease),
    background 360ms ease,
    transform 360ms var(--ease);
}

input:focus,
textarea:focus {
  border-color: rgba(244, 231, 210, 0.68);
  background: #341a13;
  outline: none;
  transform: translate3d(0, -0.12rem, 0);
}

.story > p {
  text-wrap: balance;
}

.private h2::after {
  display: block;
  width: 8rem;
  height: 1px;
  margin-top: 1rem;
  content: "";
  background: var(--cream);
  opacity: 0.46;
}

@media (max-width: 900px) {
  .site-nav {
    right: 22px;
    width: min(21rem, calc(100vw - 44px));
    max-height: min(24rem, calc(100svh - 5.5rem));
    overflow: auto;
    box-shadow: 0 2rem 5rem rgba(28, 14, 11, 0.54);
  }

  .site-nav.is-open {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero > img,
  .room img,
  .private img,
  .room img:hover,
  .private img:hover {
    transform: none;
  }

  .reveal,
  .room img,
  .private img {
    clip-path: none;
  }
}
