:root {
  --stone: #161310;
  --ink: #1f1a16;
  --paper: #f7f2ea;
  --cream: #fffaf3;
  --honey: #b8894a;
  --honey-deep: #8f6a32;
  --taupe: #85786c;
  --line: rgba(31, 26, 22, 0.12);
  --serif: "Newsreader", "Times New Roman", serif;
  --sans: "Figtree", system-ui, sans-serif;
  --nav-h: 86px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.display {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--honey-deep);
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin-bottom: 1rem;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  display: none;
}

@media (pointer: fine) {
  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button {
    cursor: none;
  }

  .cursor {
    display: block;
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 200;
  }

  .cursor__dot,
  .cursor__ring {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    translate: -50% -50%;
  }

  .cursor__dot {
    width: 5px;
    height: 5px;
    background: var(--honey);
  }

  .cursor__ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(184, 137, 74, 0.7);
    transition: width 0.35s var(--ease), height 0.35s var(--ease);
  }

  body.is-hovering .cursor__ring {
    width: 56px;
    height: 56px;
  }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  background: var(--paper);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
}

.loader__mark {
  font-family: var(--serif);
  font-size: 1.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.loader__line {
  position: absolute;
  bottom: 18%;
  width: min(220px, 50vw);
  height: 1px;
  background: rgba(31, 26, 22, 0.12);
  overflow: hidden;
}

.loader__line::after {
  content: "";
  display: block;
  height: 100%;
  width: 40%;
  background: var(--honey);
  animation: load 1.2s var(--ease) infinite;
}

@keyframes load {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(320%);
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(1.2rem, 5vw, 4.5rem);
  color: var(--cream);
  mix-blend-mode: difference;
}

body:not([data-page="home"]) .nav,
.nav.is-solid {
  mix-blend-mode: normal;
  background: rgba(247, 242, 234, 0.94);
  color: var(--ink);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav__links a[aria-current="page"] {
  color: var(--honey-deep);
}

.nav__cta {
  padding: 0.55rem 0.95rem;
  border: 1px solid currentColor;
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

@media (max-width: 980px) {
  .nav__toggle {
    display: inline-block;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.3rem;
  border: 1px solid transparent;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.btn--dark {
  background: var(--stone);
  color: var(--cream);
}

.btn--light {
  background: var(--cream);
  color: var(--stone);
}

.btn--ghost {
  border-color: currentColor;
  background: transparent;
}

.text-link {
  display: inline-block;
  margin-top: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--honey-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.32s;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
}

.hero__media img {
  animation: drift 22s ease-in-out infinite alternate;
  filter: saturate(0.85) contrast(1.05);
}

@keyframes drift {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.14) translateY(-3%);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 19, 16, 0.15) 0%, rgba(22, 19, 16, 0.2) 40%, rgba(22, 19, 16, 0.86) 100%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.2rem, 5vw, 4.5rem) 7rem;
  max-width: min(92vw, 58rem);
}

.hero__lede {
  margin-top: 1.2rem;
  max-width: 30rem;
  color: rgba(255, 250, 243, 0.78);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.hero__scroll {
  position: absolute;
  right: clamp(1.2rem, 5vw, 4.5rem);
  bottom: 2.3rem;
  z-index: 2;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--cream);
  padding: 1rem 0;
}

.marquee__track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.house,
.page {
  padding: clamp(4.2rem, 9vw, 7.5rem) clamp(1.2rem, 5vw, 4.5rem);
}

.page {
  padding-top: calc(var(--nav-h) + 2.4rem);
}

.house__grid,
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.house__portrait img,
.about img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.house__caption {
  margin-top: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}

.house__story h2,
.page h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 1.2rem;
}

.house__story p + p,
.page__lede {
  margin-top: 1rem;
  color: var(--taupe);
  max-width: 40rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.pillar {
  padding: clamp(2rem, 4vw, 3.2rem) clamp(1.2rem, 3vw, 2.3rem);
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: 0;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  margin: 0.6rem 0 0.7rem;
}

.pillar p {
  color: var(--taupe);
}

.tease {
  padding: 0 clamp(1.2rem, 5vw, 4.5rem) clamp(4rem, 8vw, 6.5rem);
}

.tease__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.3rem;
}

.tease__row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0.8rem;
}

.tease__card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  color: var(--cream);
}

.tease__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.tease__card:hover img {
  transform: scale(1.06);
}

.tease__card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.tease__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22, 19, 16, 0.75));
}

.hours {
  margin: 0 clamp(1.2rem, 5vw, 4.5rem) clamp(4rem, 8vw, 6rem);
  padding: clamp(2.6rem, 6vw, 4.5rem);
  background: var(--stone);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.hours h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 1rem;
}

.hours p,
.hours li {
  color: rgba(255, 250, 243, 0.72);
}

.hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 250, 243, 0.12);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.2rem clamp(1.2rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
  color: var(--taupe);
}

.footer .nav__logo {
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.menu-nav-wrap {
  margin: 2rem 0 2.4rem;
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  background: var(--paper);
}

.menu-nav__logo,
.menu-nav__links {
  display: none;
}

.menu-nav__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.menu-nav.is-pinned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 96;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem clamp(1.2rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.96);
  backdrop-filter: blur(16px);
}

.menu-nav.is-pinned .menu-nav__logo {
  display: inline-block;
  justify-self: start;
  font-family: var(--serif);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 0;
  padding: 0;
}

.menu-nav.is-pinned .menu-nav__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  grid-column: 2;
}

.menu-nav.is-pinned .menu-nav__links {
  display: flex;
  justify-self: end;
  gap: 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-nav.is-pinned .menu-nav__links a {
  border: 0;
  padding: 0;
}

.menu-nav__tabs a {
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.menu-nav__tabs a.is-active {
  background: var(--stone);
  color: var(--cream);
  border-color: var(--stone);
}

.room-hero {
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
}

.room-hero__media,
.room-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
}

.room-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 19, 16, 0.12) 0%, rgba(22, 19, 16, 0.78) 100%);
}

.room-hero__copy {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.2rem, 5vw, 4.5rem) 4rem;
  max-width: min(92vw, 42rem);
}

.room-hero__copy p:last-child {
  margin-top: 1rem;
  color: rgba(255, 250, 243, 0.74);
}

.archive {
  padding: 2.4rem clamp(1.2rem, 5vw, 4.5rem) clamp(4rem, 8vw, 6.5rem);
}

.menu-section {
  padding: 1.4rem 0 2.6rem;
  border-top: 1px solid var(--line);
  scroll-margin-top: 6.5rem;
}

.menu-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.5rem;
}

.menu-section > p {
  color: var(--taupe);
  margin-bottom: 1.6rem;
  max-width: 36rem;
}

.menu-list {
  display: grid;
  gap: 1.15rem;
}

.menu-item {
  display: grid;
  gap: 0.2rem;
}

.menu-item__row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.menu-item h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.menu-item__rule {
  flex: 1 1 auto;
  border-bottom: 1px dotted rgba(31, 26, 22, 0.28);
  transform: translateY(-0.35em);
}

.menu-item .price {
  font-family: var(--serif);
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.menu-item p {
  color: var(--taupe);
  font-size: 0.95rem;
}

.filters-wrap {
  margin: 1.8rem 0;
}

.filters {
  display: flex;
  justify-content: center;
  background: var(--paper);
}

.filters__logo {
  display: none;
  font-family: var(--serif);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.filters__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.filters__links {
  display: none;
}

.filters.is-pinned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 96;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem clamp(1.2rem, 5vw, 4.5rem);
  background: rgba(247, 242, 234, 0.96);
  border-bottom: 1px solid var(--line);
}

.filters.is-pinned .filters__logo {
  display: inline-block;
  justify-self: start;
}

.filters.is-pinned .filters__tabs {
  grid-column: 2;
}

.filters.is-pinned .filters__links {
  display: flex;
  justify-self: end;
  gap: 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.filters button {
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.5rem 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.66rem;
}

.filters button.is-active {
  background: var(--stone);
  color: var(--cream);
  border-color: var(--stone);
}

.masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 86px;
  gap: 12px;
  perspective: 1100px;
}

.tile {
  position: relative;
  overflow: hidden;
  background: #ddd4c8;
  color: var(--cream);
  transform-style: preserve-3d;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(22, 19, 16, 0.72));
}

.tile__meta {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 2;
}

.tile__meta p {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e6c896;
}

.tile__meta h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.tile.is-wide {
  grid-column: span 8;
  grid-row: span 5;
}

.tile.is-tall {
  grid-column: span 4;
  grid-row: span 7;
}

.tile.is-square {
  grid-column: span 4;
  grid-row: span 5;
}

.tile.is-feature {
  grid-column: span 12;
  grid-row: span 6;
}

.tile:hover img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.7fr);
  background: rgba(22, 19, 16, 0.94);
  color: var(--cream);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.lightbox__copy {
  padding: 2rem 1.5rem;
  align-self: center;
}

.lightbox__copy p:first-child {
  color: #e6c896;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.lightbox__copy h2 {
  font-family: var(--serif);
  font-size: 2.3rem;
  margin: 0.55rem 0 0.9rem;
}

.lightbox__nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.3rem;
}

@media (max-width: 980px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    padding: 1.1rem 1.3rem 1.5rem;
    background: var(--paper);
    color: var(--ink);
    mix-blend-mode: normal;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open .nav__links {
    display: flex;
  }

  .display {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .hero__copy {
    padding: 0 1.2rem 3.2rem;
    max-width: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__scroll {
    display: none;
  }

  .house__grid,
  .about,
  .pillars,
  .tease__row,
  .hours,
  .lightbox {
    grid-template-columns: 1fr;
  }

  .pillar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .filters.is-pinned,
  .menu-nav.is-pinned {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
  }

  .filters.is-pinned .filters__logo,
  .filters.is-pinned .filters__links,
  .menu-nav.is-pinned .menu-nav__logo,
  .menu-nav.is-pinned .menu-nav__links {
    display: none;
  }

  .filters.is-pinned .filters__tabs,
  .menu-nav.is-pinned .menu-nav__tabs {
    grid-column: auto;
    justify-content: center;
  }

  .menu-item h3 {
    font-size: 1.25rem;
  }

  .footer {
    flex-direction: column;
    gap: 1rem;
  }

  .tile.is-wide,
  .tile.is-tall,
  .tile.is-square,
  .tile.is-feature {
    grid-column: span 12;
    grid-row: span 5;
  }

  .lightbox img {
    height: 42vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
