:root {
  --ink: #17252a;
  --muted: #667176;
  --paper: #fffaf3;
  --surface: #f0f4f2;
  --line: #d4dfdc;
  --red: #0b4d64;
  --red-dark: #083a4b;
  --green: #2f5a43;
  --gold: #c58a35;
  --teal: #073f55;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(34, 28, 23, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 250, 243, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(34, 28, 23, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
  padding: 3px;
  box-shadow: 0 8px 24px rgba(7, 63, 85, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
  text-transform: lowercase;
}

.brand small {
  margin-top: 2px;
  font-size: 0.75rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  text-underline-offset: 5px;
}

.site-nav a:hover {
  text-decoration: underline;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px clamp(20px, 5vw, 72px) 80px;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(22, 16, 12, 0.86) 0%, rgba(22, 16, 12, 0.64) 38%, rgba(22, 16, 12, 0.2) 72%),
    linear-gradient(0deg, rgba(22, 16, 12, 0.28), rgba(22, 16, 12, 0.08));
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-logo {
  display: block;
  width: clamp(128px, 18vw, 210px);
  height: auto;
  margin: 0 0 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(10px, 1.8vw, 18px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.26);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.holiday-note,
.closed-note {
  max-width: 620px;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.45;
}

.holiday-note {
  display: inline-block;
  margin: 0 0 28px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.closed-note {
  margin: 0 0 20px;
  padding: 14px 16px;
  background: var(--surface);
  color: var(--red-dark);
}

.hero-actions,
.quick-info,
.order-band {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.1);
}

.quick-info {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: -46px auto 0;
  padding: 22px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-info div {
  flex: 1 1 220px;
  min-width: 0;
  padding: 10px 16px;
  border-left: 3px solid var(--gold);
}

.quick-info .quick-info-alert {
  flex-basis: 280px;
  border-left-color: var(--red);
}

.quick-info span,
.timeline span,
.room-card span,
.legal,
.site-footer span {
  color: var(--muted);
  font-size: 0.88rem;
}

.quick-info strong,
.timeline strong {
  display: block;
  margin-top: 4px;
  font-size: 1.12rem;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 116px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.section-copy p,
.section-heading p,
.order-band p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article,
.room-card,
.contact-panel,
.hours {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.feature-list article {
  padding: 24px;
}

.feature-list span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--red);
  font-weight: 900;
}

.feature-list p,
.room-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.menu-section {
  border-top: 1px solid var(--line);
}

.menu-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.menu-preview {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.menu-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-copy {
  max-width: 560px;
}

.menu-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.menu-copy .button {
  margin-top: 10px;
}

.rooms {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.room-card {
  min-height: 260px;
  padding: 28px;
}

.room-card strong {
  display: block;
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}

.timeline div {
  padding: 20px;
  background: var(--green);
  color: var(--white);
}

.timeline span {
  color: rgba(255, 255, 255, 0.72);
}

.order-band {
  width: 100%;
  max-width: none;
  align-items: center;
  justify-content: space-between;
  padding: clamp(56px, 8vw, 88px) clamp(20px, 5vw, 72px);
  background: var(--green);
  color: var(--white);
}

.order-band div {
  max-width: 760px;
}

.order-band p {
  color: rgba(255, 255, 255, 0.82);
}

.hours-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 22px;
}

.hours,
.contact-panel {
  padding: clamp(24px, 4vw, 40px);
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

address {
  margin-bottom: 22px;
  font-style: normal;
  line-height: 1.65;
}

.contact-panel p {
  margin-bottom: 12px;
  font-weight: 800;
}

.contact-panel .button {
  margin-top: 18px;
}

.legal-sections {
  display: grid;
  gap: 22px;
  border-top: 1px solid var(--line);
}

.legal-section {
  scroll-margin-top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.62);
}

.legal-section h2 {
  max-width: 780px;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
}

.legal-section h3 {
  margin: 0 0 10px;
}

.legal-section p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.disclosure,
.privacy-block {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #17120f;
  color: var(--white);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.legal a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal span,
.site-footer span {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 840px) {
  .site-header {
    background: rgba(255, 250, 243, 0.98);
    color: var(--ink);
    box-shadow: 0 1px 0 rgba(34, 28, 23, 0.08);
    backdrop-filter: blur(14px);
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 22;
    background: var(--paper);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 96px 32px 32px;
    min-height: 100svh;
    background: rgba(255, 250, 243, 0.99);
    color: var(--ink);
    font-size: 2rem;
  }

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

  .hero {
    min-height: 88svh;
    padding-top: 118px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(22, 16, 12, 0.86), rgba(22, 16, 12, 0.48)),
      linear-gradient(0deg, rgba(22, 16, 12, 0.42), rgba(22, 16, 12, 0.04));
  }

  .split,
  .section-heading,
  .menu-panel,
  .hours-contact {
    grid-template-columns: 1fr;
  }

  .room-grid,
  .timeline,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .room-card {
    min-height: 0;
  }

  .site-footer {
    display: block;
  }

  .legal {
    justify-content: flex-start;
    margin-top: 18px;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .hero-actions .button,
  .order-band .button {
    width: 100%;
  }

  .quick-info {
    width: calc(100% - 28px);
  }

  .section {
    width: calc(100% - 28px);
  }

  dl div {
    display: block;
  }

  dd {
    margin-top: 4px;
    text-align: left;
  }
}
