:root {
  --ivory: #f6efe4;
  --paper: #fff8ef;
  --ink: #17110d;
  --muted: #6f6259;
  --tomato: #a9362b;
  --brass: #b8894a;
  --olive: #27251e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Inter Tight", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  transform: translateY(-140%);
  background: var(--tomato);
  color: white;
  padding: 10px 14px;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(169, 54, 43, 0.55);
  outline-offset: 3px;
}

.tr-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 239, 228, 0.94);
  border-bottom: 1px solid rgba(23, 17, 13, 0.16);
  backdrop-filter: blur(12px);
}

.tr-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 48px;
}

.tr-mark {
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.tr-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
}

.tr-book {
  justify-self: end;
  border: 1px solid var(--tomato);
  padding: 12px 18px;
  background: var(--tomato);
  color: white;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.tr-book:hover,
.tomato:hover {
  background: #8d2d24;
  transform: translateY(-1px);
}

.tr-hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  padding: 0 48px 48px;
  overflow: hidden;
}

.tr-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

.tr-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 17, 13, 0.82), rgba(23, 17, 13, 0.36), rgba(23, 17, 13, 0.1));
}

.tr-hero-copy {
  position: relative;
  z-index: 1;
  width: min(620px, 52%);
  color: white;
}

.tr-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tr-hero-copy h1,
.journal-heading h2,
.experience-copy h2,
.private-inner h2,
.contact-copy h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 76px;
  line-height: 1;
  font-weight: 480;
}

.tr-hero-copy p {
  max-width: 560px;
  font-size: 21px;
  line-height: 1.45;
}

.host-note {
  display: grid;
  gap: 5px;
  width: min(100%, 420px);
  margin-top: 24px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(246, 239, 228, 0.44);
}

.host-note span,
.kitchen-pass span,
.wine-card span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.host-note strong {
  color: white;
  font-weight: 800;
}

.reservation-sheet {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 48px;
  width: 440px;
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(23, 17, 13, 0.18);
}

.sheet-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(184, 137, 74, 0.55);
  margin-bottom: 18px;
}

.sheet-tabs button {
  border: 0;
  background: transparent;
  padding: 0 0 12px;
  color: var(--muted);
  cursor: pointer;
}

.sheet-tabs button:first-child {
  color: var(--ink);
  font-weight: 800;
}

.sheet-fields,
.paper-form {
  display: grid;
  gap: 16px;
}

.sheet-fields label,
.paper-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.sheet-fields input,
.sheet-fields select,
.paper-form input,
.paper-form select,
.paper-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(23, 17, 13, 0.36);
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
}

.paper-form textarea {
  min-height: 100px;
  resize: vertical;
}

.tomato {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 0;
  background: var(--tomato);
  color: white;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.journal-section,
.experience-section,
.contact-reserve {
  padding: 112px 48px;
}

.journal-heading {
  max-width: 1040px;
  margin: 0 auto 46px;
}

.journal-heading h2 {
  max-width: 780px;
  font-size: 58px;
}

.menu-journal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
}

.menu-column {
  min-height: 380px;
  padding: 30px;
  border-right: 1px solid rgba(184, 137, 74, 0.5);
}

.menu-column:last-child {
  border-right: 0;
}

.menu-column > span {
  display: block;
  margin-bottom: 34px;
  font-family: Fraunces, Georgia, serif;
  font-size: 31px;
}

.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(23, 17, 13, 0.16);
}

.dish em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(400px, 1fr);
  gap: 70px;
  align-items: center;
  background: var(--paper);
}

.experience-image {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 560px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(169, 54, 43, 0.08), transparent 42%),
    repeating-linear-gradient(0deg, rgba(23, 17, 13, 0.07), rgba(23, 17, 13, 0.07) 1px, transparent 1px, transparent 42px),
    var(--ivory);
  border: 1px solid rgba(23, 17, 13, 0.18);
}

.kitchen-pass,
.wine-card {
  display: grid;
  gap: 9px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid rgba(23, 17, 13, 0.18);
}

.kitchen-pass strong,
.wine-card strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 31px;
  font-weight: 520;
}

.kitchen-pass small,
.wine-card small {
  color: var(--muted);
}

.experience-copy h2,
.private-inner h2,
.contact-copy h2 {
  font-size: 54px;
}

.experience-copy p,
.private-inner p,
.contact-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.evening-list {
  margin-top: 34px;
  border-top: 1px solid rgba(23, 17, 13, 0.18);
}

.evening-list a {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 17, 13, 0.18);
}

.evening-list span {
  color: var(--tomato);
  font-weight: 900;
}

.evening-list small {
  color: var(--muted);
}

.private-band {
  background: var(--olive);
  color: var(--ivory);
  padding: 104px 48px;
}

.private-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.brass-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brass);
  border-bottom: 1px solid var(--brass);
  font-weight: 900;
}

.contact-reserve {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(340px, 0.7fr);
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto;
}

.paper-form {
  padding: 30px;
  background: var(--paper);
  border: 1px solid rgba(23, 17, 13, 0.16);
}

.tr-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 48px;
  border-top: 1px solid rgba(23, 17, 13, 0.16);
}

.tr-footer strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
}

.tr-footer p {
  color: var(--muted);
}

.tr-footer a {
  color: var(--tomato);
  font-weight: 900;
}

.tr-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.reveal {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1040px) {
  .tr-links {
    display: none;
  }

  .tr-nav {
    grid-template-columns: 1fr auto;
    padding: 18px 24px;
  }

  .reservation-sheet {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 520px);
    margin-top: 28px;
  }

  .tr-hero {
    align-items: center;
    padding: 120px 24px 40px;
  }

  .tr-hero::after {
    background: rgba(23, 17, 13, 0.62);
  }

  .experience-section,
  .contact-reserve,
  .menu-journal {
    grid-template-columns: 1fr;
  }

  .menu-column {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 137, 74, 0.5);
  }

  .menu-column:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1240px) and (min-width: 1041px) {
  .tr-hero-copy {
    width: 52%;
  }

  .tr-hero-copy h1 {
    font-size: 62px;
  }

  .reservation-sheet {
    width: 390px;
  }
}

@media (max-width: 680px) {
  .tr-book {
    padding: 10px 12px;
  }

  .tr-hero-copy h1,
  .journal-heading h2,
  .experience-copy h2,
  .private-inner h2,
  .contact-copy h2 {
    font-size: 42px;
  }

  .journal-section,
  .experience-section,
  .contact-reserve,
  .private-band {
    padding: 70px 22px;
  }

  .evening-list a {
    grid-template-columns: 44px 1fr;
  }

  .evening-list small {
    grid-column: 2;
  }

  .tr-footer {
    display: grid;
    padding: 28px 22px;
  }
}
