:root {
  --ink: #171513;
  --paper: #f7f0e6;
  --paper-soft: #fffaf2;
  --clay: #a7442b;
  --clay-dark: #6d2418;
  --olive: #57623a;
  --gold: #d8a547;
  --wine: #521c29;
  --rose: #b96d61;
  --night: #101616;
  --muted: #756d63;
  --line: rgba(23, 21, 19, 0.14);
  --shadow: 0 24px 80px rgba(23, 21, 19, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 58px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 240, 230, 0.92);
  box-shadow: 0 12px 40px rgba(23, 21, 19, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.brand small {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

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

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

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 170px clamp(18px, 5vw, 72px) 72px;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 34%, rgba(216, 165, 71, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(16, 22, 22, 0.9), rgba(16, 22, 22, 0.5) 48%, rgba(16, 22, 22, 0.28)),
    linear-gradient(0deg, rgba(16, 22, 22, 0.84), rgba(16, 22, 22, 0.04) 58%);
  content: "";
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.05);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.hero-slider img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

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

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  line-height: 0.95;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(58px, 10vw, 140px);
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.36);
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button.ghost.dark {
  border-color: var(--line);
  color: var(--ink);
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 72px);
  bottom: 72px;
  width: min(280px, calc(100% - 36px));
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 250, 242, 0.12);
  backdrop-filter: blur(18px);
}

.hero-collage {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 76px);
  bottom: 162px;
  display: grid;
  grid-template-columns: repeat(3, 96px);
  gap: 10px;
  transform: rotate(-3deg);
}

.hero-collage img {
  aspect-ratio: 0.78;
  height: auto;
  border: 2px solid rgba(255, 250, 242, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.hero-collage img:nth-child(2) {
  margin-top: 34px;
}

.hero-collage img:nth-child(3) {
  margin-top: 12px;
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  font-size: 18px;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--wine);
  color: var(--paper-soft);
}

.ticker span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid rgba(255, 250, 242, 0.16);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.section {
  scroll-margin-top: 82px;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

.section-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: 44px;
}

.section-copy.compact {
  display: block;
  max-width: 760px;
}

.section h2 {
  max-width: 860px;
  font-size: clamp(40px, 6vw, 76px);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.story-grid article {
  min-height: 260px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--paper-soft);
}

h3 {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

p {
  line-height: 1.7;
}

.story-grid p,
.night-cards p {
  margin: 0;
  color: var(--muted);
}

.menu {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(82, 28, 41, 0.94), rgba(16, 22, 22, 0.96)),
    var(--night);
  color: var(--paper-soft);
}

.menu::before {
  position: absolute;
  top: -18%;
  right: -10%;
  width: 42vw;
  min-width: 360px;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 165, 71, 0.34);
  border-radius: 50%;
  content: "";
}

.menu-heading {
  position: relative;
  z-index: 1;
}

.menu-heading > p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 250, 242, 0.7);
  font-size: 18px;
}

.menu-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
}

.menu-pdf {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: 0;
  border: 1px solid rgba(255, 250, 242, 0.22);
  color: inherit;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.menu-pdf.is-featured {
  min-height: 620px;
}

.menu-photo {
  position: absolute;
  inset: 0;
}

.menu-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(16, 22, 22, 0.9), rgba(16, 22, 22, 0.04) 62%),
    linear-gradient(90deg, rgba(82, 28, 41, 0.42), transparent);
  content: "";
}

.menu-photo img {
  filter: saturate(1.04) contrast(1.04);
  transition: transform 520ms ease;
}

.menu-photo .pdf-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  background: var(--paper-soft);
}

.menu-pdf:hover .menu-photo img {
  transform: scale(1.07);
}

.menu-sheet {
  position: relative;
  z-index: 1;
  width: min(82%, 340px);
  min-height: 258px;
  display: grid;
  align-content: end;
  margin: 0 0 26px 26px;
  padding: 26px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(247, 240, 230, 0.88)),
    var(--paper-soft);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(-2deg);
}

.menu-pdf:nth-child(2) .menu-sheet {
  transform: rotate(2.2deg);
}

.menu-pdf:nth-child(3) .menu-sheet {
  transform: rotate(-1deg);
}

.menu-kicker,
.menu-sheet strong,
.menu-sheet small {
  display: block;
}

.menu-kicker {
  margin-bottom: 64px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-sheet strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.96;
}

.menu-sheet small {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
  transform: rotate(-1deg);
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 18px 52px rgba(23, 21, 19, 0.14);
}

.gallery-grid figure:nth-child(even) {
  transform: translateY(18px) rotate(1.4deg);
}

.gallery-grid figure:nth-child(3n) {
  transform: translateY(-10px) rotate(-1.2deg);
}

.gallery-grid img {
  transition: transform 500ms ease;
}

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

.gallery-grid .wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.menu-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(16px);
}

.menu-modal.is-open {
  display: flex;
}

.modal-panel {
  width: min(920px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: var(--paper-soft);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.modal-panel iframe {
  display: block;
  width: 100%;
  height: 82vh;
  border: 0;
}

.modal-panel .menu-sheet {
  width: min(680px, calc(100vw - 42px));
  min-height: min(82vh, 860px);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 74px);
  box-shadow: none;
  transform: none;
}

.modal-panel .menu-kicker {
  margin-bottom: clamp(120px, 24vh, 260px);
}

.modal-panel .menu-sheet strong {
  font-size: clamp(48px, 9vw, 96px);
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 250, 242, 0.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.nights {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  background: var(--olive);
  color: var(--paper-soft);
}

.nights .eyebrow {
  color: #f3c561;
}

.night-cards {
  display: grid;
  gap: 14px;
}

.night-cards article {
  padding: 28px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  background: rgba(255, 250, 242, 0.06);
}

.night-cards span {
  color: #f3c561;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.night-cards h3 {
  margin-top: 10px;
}

.night-cards p {
  color: rgba(255, 250, 242, 0.74);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  gap: 1px;
  background: var(--ink);
}

.contact-card {
  padding: clamp(34px, 5vw, 64px);
  background: var(--paper-soft);
}

.contact-card h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.contact-lines {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-lines p {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-lines strong {
  color: var(--clay-dark);
}

.contact-lines span {
  color: var(--muted);
}

.contact-image {
  min-height: 520px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 250, 242, 0.72);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 8px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--paper-soft);
    color: var(--ink);
    box-shadow: 0 22px 60px rgba(23, 21, 19, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 92vh;
    padding-top: 140px;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .ticker,
  .story-grid,
  .menu-showcase,
  .nights,
  .contact,
  .section-copy {
    grid-template-columns: 1fr;
  }

  .ticker {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-image {
    min-height: 420px;
  }

  .hero-collage {
    right: 20px;
    bottom: 118px;
    grid-template-columns: repeat(3, 72px);
    opacity: 0.76;
  }

  .menu-pdf,
  .menu-pdf.is-featured {
    min-height: 460px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand small {
    max-width: 132px;
    font-size: 9px;
  }

  .hero {
    min-height: 100svh;
    padding: 122px 18px 36px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 7.4ch;
    font-size: clamp(48px, 14vw, 56px);
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 34ch;
    font-size: 16px;
    line-height: 1.55;
  }

  .button {
    width: 100%;
  }

  .hero-collage {
    display: none;
  }

  .ticker {
    grid-template-columns: 1fr;
  }

  .ticker span {
    min-height: 56px;
  }

  .section {
    padding: 64px 18px;
  }

  .story-grid article,
  .night-cards article {
    padding: 24px;
  }

  .menu-pdf,
  .menu-pdf.is-featured {
    min-height: 420px;
  }

  .menu-sheet {
    width: calc(100% - 42px);
    min-height: 224px;
    margin: 0 0 20px 20px;
  }

  .gallery-grid {
    display: block;
    transform: none;
  }

  .gallery-grid figure {
    height: 260px;
    margin-bottom: 12px;
  }

  .contact-lines p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    display: grid;
  }
}
