:root {
  --ink: #171615;
  --cream: #f1ede5;
  --paper: #e7e0d5;
  --wine: #6f2530;
  --brass: #c29555;
  --sage: #4d5a4b;
  --muted: #746f68;
  --line: #17161538;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  color: inherit;
}

.site {
  overflow: hidden;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 5;
  display: flex;
  width: 100%;
  height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  color: var(--cream);
}

.site-header.on-light {
  color: var(--ink);
  position: relative;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.site-header.on-light .main-nav {
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-header.on-light .main-nav {
    color: var(--cream);
  }
}

.wordmark,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  line-height: 0.88;
}

.wordmark span,
.footer-brand span {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: -0.08em;
}

.wordmark strong {
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  letter-spacing: 0.04em;
  font-size: 13px;
}

.main-nav a {
  opacity: 0.8;
  transition: opacity 0.2s;
}

.main-nav a:hover {
  opacity: 1;
}

.main-nav .nav-ticket {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--brass);
  color: var(--brass);
  opacity: 1;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  padding: 170px 5vw 90px;
  background: var(--ink);
  color: var(--cream);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 46%;
}

.eyebrow,
.section-tag,
.kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
}

.hero h1 {
  margin: 50px 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 10vw, 145px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.83;
}

.hero h1 em,
h2 i {
  color: var(--brass);
  font-style: italic;
}

.hero-lede {
  max-width: 440px;
  margin: 0 0 38px;
  color: #c5c0b8;
  font-size: 19px;
  line-height: 1.5;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 57%;
  height: 70%;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink), transparent 45%),
    linear-gradient(0deg, #171615bf, transparent 40%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 80px;
  display: flex;
  width: 108px;
  height: 108px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  text-align: center;
}

.hero-stamp span {
  font-family: Georgia, serif;
  font-size: 33px;
}

.hero-stamp small {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 8px;
}

.hero-index {
  position: absolute;
  bottom: 30px;
  left: 5vw;
  font-size: 12px;
}

.hero-index span {
  padding: 0 10px;
  color: var(--brass);
}

/* Buttons & links */
.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 15px 19px;
  border: 1px solid;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.button:hover {
  opacity: 0.92;
}

.button-brass {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}

.button-outline {
  margin-top: 22px;
  color: var(--ink);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--brass);
  font-size: 13px;
}

.text-link.light {
  color: var(--cream);
}

/* Manifesto */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 50px;
  padding: 145px 10vw 160px;
}

.section-tag {
  color: var(--wine);
  font-weight: 700;
}

.manifesto-content {
  max-width: 650px;
}

.manifesto h2,
.rooms h2,
.table-section h2,
.visit h2,
.faq-section h2,
.page-hero h1,
.legal-body h2,
.content-block h2 {
  margin: 0 0 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.manifesto h2 span {
  color: var(--wine);
}

.manifesto-content > p:not(.kicker),
.table-layout p,
.faq-intro p,
.legal-body p,
.content-block p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.55;
}

.manifesto-aside {
  align-self: end;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.35;
}

.vertical-rule {
  width: 1px;
  height: 50px;
  margin-bottom: 20px;
  background: var(--wine);
}

.manifesto-aside span {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 11px;
}

/* Rooms */
.rooms {
  padding: 120px 5vw 140px;
  background: var(--sage);
  color: var(--cream);
}

.rooms .section-tag {
  color: var(--brass);
}

.rooms-heading {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 30px;
  margin-bottom: 65px;
}

.rooms-heading p {
  max-width: 320px;
  align-self: end;
  color: #d3d6ca;
  line-height: 1.5;
}

.room-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
}

.room-card {
  position: relative;
  min-height: 405px;
  padding: 25px;
  overflow: hidden;
}

.room-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#0000 35%, #171615e6);
}

.room-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.room-card:hover img {
  transform: scale(1.04);
}

.room-card > div:last-child {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 26px;
  left: 26px;
}

.room-card span {
  color: var(--brass);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}

.room-card h3 {
  margin: 9px 0;
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 400;
}

.room-card p {
  margin: 0;
  color: #d2d3ca;
  font-size: 15px;
  line-height: 1.45;
}

.room-card-dark {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--wine);
}

.room-card-dark::after {
  display: none;
}

.room-card-dark .card-symbol {
  position: absolute;
  top: 18px;
  left: 25px;
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 72px;
}

.room-card-dark h3 {
  font-size: 35px;
}

/* Gallery */
.gallery {
  padding: 100px 5vw 120px;
  background: var(--ink);
  color: var(--cream);
}

.gallery .section-tag {
  color: var(--brass);
}

.gallery-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin: 40px 0 50px;
}

.gallery-intro p {
  max-width: 480px;
  color: #c5c0b8;
  line-height: 1.55;
  align-self: end;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.gallery-grid figure:first-child {
  grid-row: span 2;
  min-height: 576px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-grid figure:hover img {
  transform: scale(1.03);
}

.gallery-grid figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--brass);
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, #171615cc);
}

/* Table / restaurant */
.table-section {
  padding: 140px 10vw;
}

.table-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
  margin-top: 55px;
}

.table-layout h2 {
  color: var(--wine);
}

.food-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.food-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Visit */
.visit {
  padding: 110px 10vw 125px;
  background: var(--paper);
}

.visit-top {
  display: flex;
  justify-content: space-between;
}

.visit h2 {
  margin-top: 68px;
  color: var(--wine);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.addresses-stack {
  display: grid;
  gap: 28px;
}

.visit-grid h3 {
  margin: 22px 0 13px;
  font-size: 15px;
}

.visit-grid p,
.visit-grid a,
.hours-block dd,
.hours-block dt {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.visit-grid a {
  margin-top: 8px;
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hours-block dl {
  margin: 0;
}

.hours-block dl div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.hours-block dd,
.hours-block dt {
  margin: 0;
}

.hours-block dd {
  color: var(--ink);
}

.hours-block small {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.contact-block {
  align-self: end;
}

.contact-block p {
  max-width: 280px;
}

.contact-block .text-link {
  margin-top: 15px;
  margin-right: 20px;
}

/* FAQ */
.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.4fr;
  gap: 60px;
  padding: 140px 10vw;
}

.faq-intro p {
  font-size: 16px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border: 0;
  background: none;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
}

.faq-item button svg {
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-item .faq-panel {
  display: none;
  margin: 0 30px 25px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.faq-item.is-open .faq-panel {
  display: block;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 45px;
  padding: 75px 5vw 35px;
  background: var(--ink);
  color: var(--cream);
}

.footer-brand {
  flex-direction: column;
  align-items: flex-start;
  align-self: start;
}

.footer-brand h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.06em;
  text-transform: none;
}

.site-footer p,
.site-footer a {
  color: #aaa59d;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer a {
  display: block;
  margin-top: 10px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.footer-links a {
  margin: 0;
}

.footer-links a:hover {
  color: var(--cream);
}

.site-footer > small {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid #494643;
  color: #807b73;
  font-size: 11px;
}

/* Age gate */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #0d0c0bd1;
}

.age-overlay[hidden] {
  display: none !important;
}

.age-modal {
  max-width: 500px;
  padding: 55px;
  background: var(--cream);
  text-align: center;
}

.age-mark {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  border: 1px solid var(--wine);
  border-radius: 50%;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 43px;
  line-height: 80px;
}

.age-mark span {
  font-size: 19px;
}

.age-modal .eyebrow {
  color: var(--wine);
}

.age-modal h2 {
  margin: 25px 0;
  font-family: Georgia, serif;
  font-size: 55px;
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.age-modal p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.age-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.age-exit {
  color: var(--muted);
  font-size: 12px;
  text-decoration: underline;
}

body.age-locked {
  overflow: hidden;
}

/* Inner pages */
.page-hero {
  padding: 140px 10vw 70px;
  background: var(--ink);
  color: var(--cream);
}

.page-hero.on-cream {
  background: var(--cream);
  color: var(--ink);
  padding-top: 40px;
}

.page-hero .eyebrow {
  color: var(--brass);
}

.page-hero.on-cream .eyebrow {
  color: var(--wine);
}

.page-hero p {
  max-width: 560px;
  color: #c5c0b8;
  line-height: 1.55;
}

.page-hero.on-cream p {
  color: var(--muted);
}

.legal-body,
.content-wrap {
  padding: 80px 10vw 120px;
  max-width: 920px;
}

.legal-body h2,
.content-block h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-top: 48px;
}

.legal-body ul,
.content-block ul {
  margin: 16px 0 24px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-body li + li,
.content-block li + li {
  margin-top: 8px;
}

.job-list,
.partner-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.job-card,
.partner-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.job-card h3,
.partner-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.job-card p,
.partner-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 16px;
  color: var(--wine);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  max-width: 520px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--sage);
  color: var(--sage);
  font-size: 15px;
}

.form-success.is-visible {
  display: block;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 70px 10vw;
  background: var(--paper);
}

.highlight-strip article h3 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.highlight-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.split-media .copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 8vw;
  background: var(--cream);
}

.split-media .media {
  position: relative;
  min-height: 360px;
}

.split-media .media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  z-index: 30;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 520px;
  margin-left: auto;
  padding: 22px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 12px 40px #0006;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0 0 16px;
  color: #c5c0b8;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-actions a {
  color: var(--brass);
  font-size: 13px;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 900px) {
  body {
    font-size: 17px;
  }

  .site-header {
    height: 70px;
  }

  .menu-toggle {
    display: block;
    z-index: 6;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 5;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    background: var(--ink);
    color: var(--cream);
  }

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

  .main-nav .nav-ticket {
    margin: 10px 0 0;
  }

  .hero {
    min-height: 800px;
    padding: 140px 7vw 70px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    margin-top: 70px;
    font-size: clamp(66px, 18vw, 115px);
  }

  .hero-lede {
    max-width: 330px;
  }

  .hero-visual {
    top: auto;
    width: 100%;
    height: 55%;
  }

  .hero-visual::after {
    background: linear-gradient(0deg, var(--ink), transparent 60%);
  }

  .hero-stamp {
    right: 7vw;
    bottom: 42px;
  }

  .manifesto,
  .rooms-heading,
  .table-layout,
  .faq-section,
  .gallery-intro,
  .highlight-strip,
  .split-media {
    display: block;
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .manifesto {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .manifesto-content {
    margin: 60px 0;
  }

  .manifesto h2,
  .rooms h2,
  .table-section h2,
  .visit h2,
  .faq-section h2,
  .page-hero h1 {
    font-size: 58px;
  }

  .rooms,
  .gallery {
    padding: 90px 7vw;
  }

  .rooms-heading p {
    margin-top: 30px;
  }

  .room-grid,
  .gallery-grid,
  .visit-grid {
    display: block;
  }

  .room-card,
  .gallery-grid figure {
    min-height: 370px;
    margin-top: 18px;
  }

  .gallery-grid figure:first-child {
    min-height: 370px;
  }

  .table-section,
  .faq-section,
  .visit,
  .legal-body,
  .content-wrap,
  .page-hero {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .table-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .food-image {
    min-height: 320px;
    margin-top: 50px;
  }

  .visit {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .visit-top {
    display: block;
  }

  .visit-grid {
    margin-top: 50px;
  }

  .visit-grid > div {
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
  }

  .faq-intro {
    margin: 50px 0;
  }

  .site-footer {
    display: block;
    padding: 65px 7vw 30px;
  }

  .site-footer > div {
    margin-bottom: 40px;
  }

  .age-modal {
    padding: 40px 25px;
  }

  .age-modal h2 {
    font-size: 48px;
  }

  .split-media .copy {
    padding: 50px 7vw;
  }

  .highlight-strip article {
    margin-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
