:root {
  --coal: #15120f;
  --ink: #211b16;
  --paper: #f3eee3;
  --flour: #fff9ec;
  --tomato: #b4422d;
  --ember: #f28a31;
  --basil: #50694a;
  --line: rgba(33, 27, 22, 0.18);
  --line-dark: rgba(255, 249, 236, 0.2);
  --sans: "Archivo", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; cursor: pointer; }
img { max-width: 100%; }
.skip-link { position: fixed; left: 14px; top: -50px; z-index: 100; padding: 12px 14px; background: var(--flour); color: var(--ink); }
.skip-link:focus { top: 14px; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 4vw;
  color: var(--flour);
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}
.brand span { font-size: 24px; }
.brand small { font-size: 9px; letter-spacing: 0.24em; }
.site-header nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-header a { transition: opacity 0.2s ease; }
.site-header a:hover { opacity: 0.65; }
.header-call {
  border: 1px solid rgba(255, 249, 236, 0.72);
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--flour);
  background: var(--coal);
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 11, 8, 0.86), rgba(15, 11, 8, 0.2) 62%, rgba(15, 11, 8, 0.04)),
    linear-gradient(0deg, rgba(15, 11, 8, 0.76), transparent 48%);
}
.hero-copy {
  position: absolute;
  z-index: 1;
  left: 7.5vw;
  bottom: 20vh;
  max-width: 760px;
}
.eyebrow {
  margin: 0 0 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}
.hero h1,
.intro h2,
.feature-copy h2,
.menu-title h2,
.room-copy h2,
.springs-section h2,
.visit h2,
.menu-paper h1,
.menu-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.95;
}
.hero h1 { font-size: clamp(64px, 9.5vw, 146px); }
.hero-copy p:last-child {
  max-width: 430px;
  margin: 30px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 249, 236, 0.86);
}
.hero-actions {
  position: absolute;
  z-index: 2;
  left: 7.5vw;
  bottom: 44px;
  display: flex;
  gap: 12px;
}
.hero-actions a,
.room-copy a,
.visit-actions a,
.menu-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid currentColor;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-actions a:hover,
.room-copy a:hover,
.visit-actions a:hover,
.menu-cta a:hover { transform: translateY(-2px); }
.hero-actions a:first-child { background: var(--flour); color: var(--coal); border-color: var(--flour); }
.oven-meter {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: rgba(15, 11, 8, 0.5);
  color: var(--flour);
  padding: 13px 15px;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 10px;
}
.oven-meter span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 7px rgba(242, 138, 49, 0.18);
}
.oven-meter.is-active span { background: var(--tomato); }

.intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 9vw;
  padding: 140px 8vw 150px;
}
.intro h2,
.menu-title h2,
.visit h2 { font-size: clamp(52px, 6vw, 96px); }
.intro > p {
  max-width: 370px;
  align-self: end;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.65;
}
.feature-photo {
  position: relative;
  min-height: 82vh;
  margin: 0 4vw;
  overflow: hidden;
  background: var(--coal);
  color: var(--flour);
}
.feature-photo img {
  width: 100%;
  height: 82vh;
  display: block;
  object-fit: cover;
}
.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 56%);
}
.feature-copy {
  position: absolute;
  z-index: 1;
  left: 42px;
  right: 42px;
  bottom: 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.feature-copy p {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.feature-copy h2 { font-size: clamp(44px, 5.8vw, 88px); }
.feature-copy button {
  min-width: 132px;
  min-height: 44px;
  border: 1px solid rgba(255, 249, 236, 0.76);
  background: rgba(0, 0, 0, 0.2);
  color: var(--flour);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-section {
  padding: 150px 8vw;
  background: var(--coal);
  color: var(--flour);
}
.menu-title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.menu-title .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.menu-studio {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  margin-top: 76px;
  border-top: 1px solid var(--line-dark);
}
.menu-tabs {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 6px;
  padding-top: 20px;
}
.menu-tabs button,
.menu-filters button {
  border: 0;
  background: transparent;
  color: rgba(255, 249, 236, 0.55);
  padding: 10px 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.menu-tabs button.is-active,
.menu-filters button.is-active { color: var(--flour); }
.dish-card {
  min-height: 430px;
  padding: 42px 5vw 46px;
  border-left: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
}
.dish-card > span {
  display: block;
  margin-bottom: 60px;
  color: rgba(255, 249, 236, 0.52);
  font-size: 11px;
}
.dish-card > p:first-of-type {
  margin: 0 0 14px;
  color: rgba(255, 249, 236, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.dish-card h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 70px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.dish-card p:last-of-type {
  max-width: 320px;
  color: rgba(255, 249, 236, 0.74);
  line-height: 1.6;
}
.dish-card a {
  display: inline-flex;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dish-list {
  grid-column: 2;
  border-right: 1px solid var(--line-dark);
}
.dish-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(255, 249, 236, 0.58);
  padding: 20px 26px;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease;
}
.dish-row span { font-size: 10px; }
.dish-row strong { font-size: 15px; font-weight: 700; }
.dish-row:hover,
.dish-row.is-selected { background: rgba(255, 249, 236, 0.055); color: var(--flour); }
.dish-row[hidden],
[data-page-category][hidden] { display: none; }

.room-section,
.springs-section,
.visit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  padding: 145px 8vw;
}
.room-section {
  background: var(--flour);
}
.room-copy { padding-top: 54px; }
.room-copy h2,
.springs-section h2,
.menu-cta h2 { font-size: clamp(48px, 5.6vw, 88px); }
.room-copy p:not(.eyebrow),
.springs-section p:not(.eyebrow),
.visit-actions p {
  max-width: 360px;
  line-height: 1.62;
}
.room-copy a {
  margin-top: 34px;
  background: var(--coal);
  color: var(--flour);
  border-color: var(--coal);
}
.room-section img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
}
.springs-section {
  background: #dbe5cb;
  align-items: center;
}
.springs-section img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}
.visit {
  background: var(--tomato);
  color: var(--flour);
}
.visit-actions {
  align-self: end;
}
.visit-actions a {
  display: flex;
  width: max-content;
  margin-top: 14px;
}
.visit-actions a:first-of-type {
  background: var(--flour);
  color: var(--tomato);
  border-color: var(--flour);
}
footer {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 5vw;
  padding: 44px 4vw 90px;
  background: var(--coal);
  color: var(--flour);
}
footer p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 249, 236, 0.68);
  line-height: 1.55;
}
footer div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 13px;
}
.mobile-dock { display: none; }

.photo-dialog {
  max-width: min(900px, 92vw);
  padding: 0;
  border: 0;
  background: transparent;
}
.photo-dialog::backdrop { background: rgba(0, 0, 0, 0.74); backdrop-filter: blur(4px); }
.photo-dialog img { display: block; max-height: 86vh; object-fit: contain; }
.dialog-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: white;
  text-transform: uppercase;
}

.menu-page {
  background: var(--paper);
}
.menu-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 4vw;
}
.menu-header .brand { color: var(--ink); }
.menu-header > a:last-child {
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.menu-paper {
  padding: 90px 8vw 128px;
}
.menu-paper h1 { font-size: clamp(62px, 9vw, 142px); }
.menu-note {
  max-width: 520px;
  margin: 34px 0 62px;
  line-height: 1.62;
}
.menu-filters {
  display: flex;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.menu-filters button {
  color: rgba(33, 27, 22, 0.48);
}
.menu-filters button.is-active { color: var(--ink); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.menu-grid article {
  min-height: 245px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.menu-grid span {
  color: rgba(33, 27, 22, 0.45);
  font-size: 11px;
}
.menu-grid h2 {
  margin: 56px 0 14px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}
.menu-grid p {
  margin: 0;
  line-height: 1.45;
  color: rgba(33, 27, 22, 0.72);
}
.menu-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 7vw;
  padding: 0 8vw 130px;
}
.menu-cta img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}
.menu-cta a {
  margin-top: 30px;
  background: var(--tomato);
  color: var(--flour);
  border-color: var(--tomato);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.78s ease, transform 0.78s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 760px) {
  .site-header {
    padding: 20px;
    align-items: center;
  }
  .brand span { font-size: 20px; }
  .site-header nav { display: none; }
  .header-call {
    min-height: 42px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
  }
  .hero { min-height: 100svh; }
  .hero img { object-position: 42% center; }
  .hero-copy {
    left: 22px;
    right: 20px;
    bottom: 24vh;
  }
  .hero h1 { font-size: clamp(58px, 18vw, 84px); }
  .hero-copy p:last-child {
    max-width: 310px;
    font-size: 13px;
  }
  .hero-actions {
    left: 22px;
    right: 22px;
    bottom: 88px;
  }
  .hero-actions a {
    flex: 1;
    justify-content: center;
    padding: 0 12px;
  }
  .oven-meter {
    right: 22px;
    bottom: 155px;
    font-size: 9px;
  }
  .intro,
  .menu-title,
  .room-section,
  .springs-section,
  .visit,
  footer,
  .menu-cta {
    grid-template-columns: 1fr;
  }
  .intro {
    padding: 92px 22px;
    gap: 34px;
  }
  .intro h2,
  .menu-title h2,
  .visit h2,
  .room-copy h2,
  .springs-section h2,
  .menu-cta h2 { font-size: 52px; }
  .feature-photo {
    margin: 0;
    min-height: 620px;
  }
  .feature-photo img { height: 620px; }
  .feature-copy {
    left: 22px;
    right: 22px;
    bottom: 28px;
    display: block;
  }
  .feature-copy h2 { font-size: 48px; }
  .feature-copy button { margin-top: 24px; }
  .menu-section {
    padding: 94px 22px 80px;
  }
  .menu-studio {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }
  .menu-tabs {
    flex-direction: row;
    gap: 23px;
    overflow-x: auto;
    padding-bottom: 14px;
  }
  .menu-tabs button { white-space: nowrap; }
  .dish-card {
    min-height: 360px;
    padding: 30px 20px;
    border: 1px solid var(--line-dark);
  }
  .dish-card > span { margin-bottom: 38px; }
  .dish-list {
    grid-column: 1;
    border-left: 1px solid var(--line-dark);
  }
  .dish-row { padding: 18px 16px; }
  .room-section,
  .springs-section,
  .visit {
    padding: 92px 22px;
    gap: 34px;
  }
  .room-copy { padding-top: 0; }
  .room-section img,
  .springs-section img {
    aspect-ratio: 0.86;
  }
  .springs-section img { grid-row: 2; }
  footer {
    display: block;
    padding: 34px 22px 104px;
  }
  footer p { margin: 30px 0; }
  footer div { align-items: flex-start; }
  .mobile-dock {
    position: fixed;
    z-index: 20;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 68px;
    background: rgba(21, 18, 15, 0.96);
    color: var(--flour);
    border-top: 1px solid var(--line-dark);
    backdrop-filter: blur(12px);
  }
  .mobile-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .mobile-dock a:last-child {
    background: var(--tomato);
    border-right: 0;
  }
  .menu-header { padding: 22px; }
  .menu-paper { padding: 70px 22px 92px; }
  .menu-paper h1 { font-size: 58px; }
  .menu-filters {
    gap: 20px;
    overflow-x: auto;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid article {
    min-height: 210px;
  }
  .menu-cta {
    padding: 0 22px 106px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
