:root {
  --paper: #f3ece0;
  --paper-soft: #ebe2d2;
  --ink: #1a1611;
  --ink-soft: #4a3f33;
  --oxblood: #6e2a1c;
  --brass: #9a7a4a;
  --rule: rgba(26, 22, 17, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { background: var(--paper); color: var(--ink); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: "Fraunces", "Times New Roman", Georgia, serif;
  font-variation-settings: "opsz" 14;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

img { display: block; width: 100%; height: auto; }
a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 1px; transition: color 300ms, border-color 300ms; }
a:hover { color: var(--oxblood); border-color: var(--oxblood); }

/* TOP */
.top {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  font-size: 13px;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.top > * { pointer-events: auto; }

.wordmark .bh {
  font-variation-settings: "opsz" 144;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0;
  color: var(--ink);
  display: none;
}
.wordmark .full {
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  font-style: italic;
}
.wordmark em { font-style: italic; }

.res { font-style: italic; font-size: 13px; }

@media (max-width: 720px) {
  .wordmark .full { display: none; }
  .wordmark .bh { display: inline; }
}

/* HERO */
.hero {
  position: relative;
  padding-top: 0;
}
.hero img { width: 100%; height: 100vh; min-height: 560px; max-height: 920px; object-fit: cover; }
.caption {
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
  margin: 18px auto 60px;
  letter-spacing: 0;
}

/* ESSAY */
.essay {
  max-width: 640px;
  margin: 90px auto 140px;
  padding: 0 28px;
}
.essay .lede {
  font-variation-settings: "opsz" 144;
  font-weight: 350;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  font-style: italic;
  color: var(--ink);
}
.essay p {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--ink);
}

/* FULL BLEED PHOTO */
.full {
  margin: 80px 0 40px;
}
.full img { width: 100%; height: auto; max-height: 86vh; object-fit: cover; }
.full .caption { margin: 18px auto 0; max-width: 640px; padding: 0 28px; }

/* ROOMS */
.rooms {
  max-width: 760px;
  margin: 140px auto;
  padding: 0 28px;
}
.rooms h2 {
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 40px);
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.rooms h2 em { font-style: italic; }
.rooms .sub {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 56px;
  max-width: 60ch;
}

.room-list { list-style: none; border-top: 1px solid var(--rule); }
.room-list li {
  display: grid;
  grid-template-columns: 48px 1.1fr 2fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.room-list .num {
  font-style: italic;
  color: var(--brass);
  font-size: 14px;
  letter-spacing: 0.06em;
}
.room-list .name {
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.room-list .desc {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}
.room-list .price {
  color: var(--oxblood);
  font-variation-settings: "opsz" 14;
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 720px) {
  .room-list li {
    grid-template-columns: 36px 1fr auto;
  }
  .room-list .desc {
    grid-column: 2 / 4;
    margin-top: 4px;
  }
  .room-list .price { font-size: 15px; }
}

/* KITCHEN */
.kitchen {
  max-width: 1200px;
  margin: 140px auto;
  padding: 0 28px;
}
.kitchen h2 {
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 40px);
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin-bottom: 56px;
}
.kitchen h2 em { font-style: italic; }

.kitchen-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.kitchen-prose {
  grid-column: 1 / span 12;
  max-width: 56ch;
}
.kitchen-prose p {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.dish {
  grid-column: span 12;
  margin-top: 32px;
}
.dish figcaption {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 12px;
}

@media (min-width: 900px) {
  .kitchen-prose { grid-column: 1 / span 7; }
  .dish-1 { grid-column: 9 / span 4; margin-top: 0; }
  .dish-2 { grid-column: 1 / span 5; margin-top: 80px; }
  .dish-3 { grid-column: 7 / span 5; margin-top: 80px; }
}

/* DAYS */
.days {
  max-width: 640px;
  margin: 140px auto;
  padding: 0 28px;
}
.days h2 {
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 40px);
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin-bottom: 48px;
}
.days h2 em { font-style: italic; }

.schedule { border-top: 1px solid var(--rule); }
.schedule > div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.schedule dt {
  font-variation-settings: "opsz" 14;
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 0.04em;
  font-size: 14px;
  padding-top: 3px;
}
.schedule dd {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}

/* FIND */
.find {
  max-width: 1000px;
  margin: 140px auto;
  padding: 0 28px;
}
.find h2 {
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 40px);
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin-bottom: 64px;
}
.find h2 em { font-style: italic; }

.find-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 48px;
}
.find .label {
  font-style: italic;
  color: var(--brass);
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  text-transform: lowercase;
}
.find p:not(.label) { font-size: 17px; line-height: 1.55; }

@media (min-width: 720px) {
  .find-grid { grid-template-columns: repeat(3, 1fr); }
}

/* FOOTER */
footer {
  margin-top: 140px;
  padding: 60px 28px 80px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.monogram {
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: 30px;
  font-style: italic;
  letter-spacing: 0;
  color: var(--brass);
  margin-bottom: 20px;
}
.copy {
  font-size: 13px;
  color: var(--ink-soft);
  font-style: normal;
  letter-spacing: 0.02em;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.copy em { font-style: italic; }

/* REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 900ms cubic-bezier(0.19, 1, 0.22, 1), transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

::selection { background: var(--oxblood); color: var(--paper); }
