:root {
  --ink: #0f0b08;
  --black: #080604;
  --espresso: #18110d;
  --brown: #2a1c14;
  --cream: #fff7eb;
  --paper: #fbf4e9;
  --muted: #d6c6b4;
  --soft: #ad9b89;
  --gold: #c7a15a;
  --gold-2: #e4c982;
  --line: rgba(255, 247, 235, 0.16);
  --shadow: rgba(0, 0, 0, 0.38);
  --serif: "Lora", Georgia, serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 247, 235, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 235, 0.018) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 52px);
  background: linear-gradient(to bottom, rgba(8, 6, 4, 0.9), rgba(8, 6, 4, 0.36));
  border-bottom: 1px solid rgba(255, 247, 235, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-logo {
  width: clamp(164px, 14vw, 216px);
  height: auto;
  max-height: 84px;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 600;
}

.brand-sub {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 18px;
  background: rgba(8, 6, 4, 0.98);
  border-bottom: 1px solid var(--line);
}

.site-nav.is-open {
  display: grid;
  gap: 14px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--gold-2);
}

.btn.secondary {
  color: var(--cream);
  background: rgba(8, 6, 4, 0.34);
  border-color: rgba(255, 247, 235, 0.36);
}

.btn.secondary:hover {
  background: rgba(255, 247, 235, 0.1);
}

.utility-btn {
  min-height: 40px;
  padding: 10px 14px;
  color: var(--cream);
  background: transparent;
  border-color: var(--gold);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 72px) 54px;
}

.hero-video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster {
  z-index: -3;
}

.hero-video {
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.88), rgba(8, 6, 4, 0.54), rgba(8, 6, 4, 0.34)),
    linear-gradient(to top, var(--black), rgba(8, 6, 4, 0.18) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
}

.transition-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 10px 16px;
  background: rgba(8, 6, 4, 0.6);
  border: 1px solid rgba(255, 247, 235, 0.18);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.transition-strip img {
  width: 188px;
  max-height: 58px;
  object-fit: contain;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(3.55rem, 10vw, 7.5rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
}

h3 {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
}

.lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.14rem, 2vw, 1.38rem);
  overflow-wrap: break-word;
}

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

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
  background: var(--black);
}

.section.alt {
  background:
    linear-gradient(rgba(255, 247, 235, 0.03), rgba(255, 247, 235, 0.03)),
    var(--espresso);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  min-width: 0;
}

.split {
  display: grid;
  gap: clamp(30px, 6vw, 82px);
}

.split > *,
.menu-grid > *,
.contact-grid > *,
.event-grid > *,
.catering-grid > *,
.gallery-grid > * {
  min-width: 0;
}

.section-copy {
  max-width: 650px;
}

.body-copy {
  color: var(--muted);
  font-size: 1rem;
}

.feature-image,
.media-grid img,
.event-card img,
.menu-photo,
.catering-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px var(--shadow);
}

.media-grid {
  display: grid;
  gap: 12px;
}

.media-grid img {
  min-height: 240px;
}

.media-grid img:first-child {
  min-height: 420px;
}

.feature-list,
.contact-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.info-panel,
.contact-card,
.menu-link,
.event-card,
.legal-card,
.form-panel {
  padding: 24px;
  background: rgba(255, 247, 235, 0.035);
  border: 1px solid var(--line);
}

.feature-list strong,
.contact-card strong,
.menu-link strong,
.event-card strong {
  display: block;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.08;
}

.feature-list span,
.contact-card span,
.menu-link span,
.event-card span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
}

.page-hero {
  padding: 118px clamp(18px, 5vw, 72px) 44px;
  background:
    linear-gradient(rgba(8, 6, 4, 0.7), rgba(8, 6, 4, 0.94)),
    var(--page-image, none) center / cover;
  border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
  display: grid;
  gap: 20px;
}

.page-hero h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 4.8vw, 3.65rem);
  line-height: 1;
}

.page-hero .lead {
  max-width: 560px;
  margin-top: 0;
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
}

.page-hero + .section {
  padding-top: clamp(34px, 4.5vw, 56px);
}

.menu-grid,
.contact-grid,
.event-grid,
.catering-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.menu-link {
  min-height: 166px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-link em,
.event-card em {
  margin-top: 22px;
  color: var(--gold);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-download {
  max-width: 780px;
  padding: clamp(24px, 5vw, 48px);
  background: rgba(255, 247, 235, 0.035);
  border: 1px solid var(--line);
}

.event-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.flyer-card {
  padding: clamp(10px, 1.5vw, 18px);
}

.flyer-card a {
  display: block;
}

.event-card img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: rgba(255, 247, 235, 0.04);
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.gallery-card {
  display: grid;
  gap: 13px;
  align-content: start;
  color: var(--cream);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  background: rgba(255, 247, 235, 0.04);
  box-shadow: 0 20px 60px var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.gallery-card:hover img {
  transform: translateY(-2px);
  border-color: rgba(228, 201, 130, 0.64);
}

.gallery-card span {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.05;
}

.event-meta {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.klaviyo-wrap {
  min-height: 320px;
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(199, 161, 90, 0.5);
}

.hours {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

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

.form-grid {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  max-width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 235, 0.08);
  color: var(--cream);
  font: inherit;
}

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

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255, 247, 235, 0.45);
}

.legal-body {
  background: var(--paper);
  color: #211914;
}

.legal-body::before {
  display: none;
}

.legal-body .site-header {
  position: sticky;
  background: rgba(251, 244, 233, 0.96);
  border-bottom-color: rgba(33, 25, 20, 0.12);
}

.legal-body .brand-name,
.legal-body .site-nav a,
.legal-body .nav-toggle {
  color: #211914;
}

.legal-body .utility-btn {
  color: #211914;
}

.legal-main {
  padding: 74px clamp(18px, 5vw, 72px) 90px;
}

.legal-card {
  width: min(900px, 100%);
  margin: 0 auto;
  background: #fff;
  color: #211914;
  border-color: rgba(33, 25, 20, 0.12);
  box-shadow: 0 24px 80px rgba(33, 25, 20, 0.1);
}

.legal-card h1,
.legal-card h2 {
  color: #211914;
}

.legal-card h1 {
  font-size: clamp(2.8rem, 8vw, 5.4rem);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 1.8rem;
}

.legal-card p,
.legal-card li {
  color: #463a33;
}

.legal-card a {
  color: #8a6427;
  text-decoration: underline;
}

.site-footer {
  padding: 48px clamp(18px, 5vw, 72px);
  background: #050403;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.footer-brand {
  color: var(--cream);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fine-print {
  color: rgba(255, 247, 235, 0.54);
  font-size: 0.84rem;
}

@media (min-width: 1120px) {
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.55vw, 22px);
    padding: 0;
    background: transparent;
    border: 0;
  }

  .nav-toggle {
    display: none;
  }
}

@media (min-width: 900px) {
  .split,
  .page-hero .section-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
  }

  .media-grid {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .media-grid img:first-child {
    grid-row: span 2;
  }

  .menu-grid,
  .contact-grid,
  .event-grid,
  .catering-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .fine-print {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1060px) {
  .event-grid,
  .catering-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-grid,
  .contact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 8px;
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 6px;
    margin-left: auto;
  }

  .brand-sub {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-logo {
    width: 66px;
    max-height: 66px;
  }

  .utility-btn {
    width: 64px;
    max-width: 64px;
    min-height: 38px;
    flex: 0 0 64px;
    padding-inline: 8px;
    font-size: 0;
    overflow: hidden;
  }

  .utility-btn::after {
    content: "Order";
    font-size: 0.66rem;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .transition-strip {
    display: grid;
    justify-items: start;
    width: 100%;
    margin-bottom: 22px;
  }

  .transition-strip img {
    width: min(176px, 100%);
  }

  .hero {
    padding: 100px 24px 44px;
  }

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

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 2.5rem);
    line-height: 1.02;
  }

  .lead {
    font-size: 1.05rem;
  }

  .hero-actions,
  .page-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .btn,
  .page-actions .btn {
    min-height: 44px;
    padding-inline: 16px;
  }

  .page-hero {
    padding: 96px 24px 36px;
  }

  .page-hero h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.1rem);
    line-height: 1.04;
  }

  .page-hero .lead {
    font-size: 1rem;
  }

  .section {
    padding-inline: 24px;
  }

  .section.alt .split {
    gap: 24px;
  }

  .media-grid {
    gap: 10px;
    order: 2;
  }

  .media-grid img,
  .media-grid img:first-child {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .section.alt .section-copy {
    order: 1;
  }

  .form-panel {
    padding: 18px;
  }

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

  .gallery-card span {
    font-size: 1.35rem;
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 1.75rem);
    line-height: 1.04;
  }

  .event-grid {
    gap: 22px;
  }

  .event-card {
    padding: 14px;
    gap: 14px;
  }

  .event-card img {
    max-height: none;
    object-fit: contain;
    box-shadow: none;
  }

  .event-card strong {
    font-size: 1.32rem;
  }

  .flyer-card {
    padding: 10px;
  }
}
