:root {
  color-scheme: dark;
  --ink: #fff8ea;
  --muted: #d7c7ad;
  --coffee: #251913;
  --coffee-2: #3a271d;
  --espresso: #130d0a;
  --cream: #f7d26a;
  --copper: #d89034;
  --gold: #e4b83f;
  --black: #070504;
  --line: rgba(247, 210, 106, 0.38);
  --shadow: 8px 8px 0 rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(228, 184, 63, 0.14), transparent 30rem),
    linear-gradient(180deg, var(--espresso), var(--coffee) 42rem, #1a110d);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  min-height: 100vh;
  padding: 22px clamp(18px, 4vw, 56px) 64px;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

.brand,
.nav-links {
  align-items: center;
  display: flex;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--black);
  color: var(--espresso);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.nav-links {
  background: rgba(19, 13, 10, 0.66);
  border: 2px solid var(--line);
  gap: 6px;
  padding: 6px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 8px 14px;
  text-transform: uppercase;
}

.nav-links a:hover {
  background: var(--cream);
  color: var(--espresso);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  margin: 84px auto 0;
  max-width: 1180px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  background: var(--cream);
  box-shadow: 3px 3px 0 var(--black);
  color: var(--espresso);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  padding: 4px 8px;
  transform: rotate(-0.8deg);
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  margin-bottom: 24px;
  max-width: 880px;
  text-shadow: 4px 4px 0 var(--black);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  max-width: 660px;
}

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

.button {
  align-items: center;
  border: 2px solid transparent;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  text-transform: uppercase;
}

.button-primary {
  background: var(--cream);
  border-color: var(--black);
  box-shadow: 5px 5px 0 var(--black);
  color: var(--espresso);
}

.button-primary:hover {
  background: #ffe17f;
  box-shadow: 3px 3px 0 var(--black);
  transform: translate(2px, 2px);
}

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

.button-secondary:hover {
  background: rgba(247, 210, 106, 0.18);
}

.hero-card {
  background: rgba(255, 248, 234, 0.06);
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.hero-card img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  width: 100%;
}

.hero-card::after {
  background: linear-gradient(180deg, transparent 45%, rgba(19, 13, 10, 0.88));
  content: "";
  inset: 0;
  position: absolute;
}

.status-card {
  align-items: flex-start;
  background: rgba(19, 13, 10, 0.82);
  border: 2px solid var(--line);
  bottom: 20px;
  display: flex;
  gap: 12px;
  left: 20px;
  padding: 16px;
  position: absolute;
  right: 20px;
  z-index: 1;
}

.status-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.status-dot {
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(228, 184, 63, 0.14);
  flex: 0 0 auto;
  height: 12px;
  margin-top: 6px;
  width: 12px;
}

main {
  overflow: hidden;
}

section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.band,
.features,
.menu-section,
.space,
.visit {
  margin: 0 auto;
  max-width: 1180px;
}

.intro {
  align-items: end;
  border-bottom: 2px solid var(--line);
  border-top: 2px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 0.8fr 1fr;
}

.intro p:last-child,
.space-copy p,
.space-copy li,
.menu-item p,
.features p,
.visit-card dd,
.address {
  color: var(--muted);
}

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

.features article,
.menu-item,
.visit-card,
.map-card {
  background:
    linear-gradient(90deg, var(--cream) 0 5px, rgba(255, 248, 234, 0.055) 5px),
    rgba(255, 248, 234, 0.055);
  border: 2px solid var(--line);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.44);
}

.features article {
  padding: 24px;
}

.icon {
  display: inline-block;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

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

.menu-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.menu-item {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 22px;
}

.menu-item:hover,
.features article:hover {
  border-color: var(--cream);
}

.menu-item p {
  margin-bottom: 0;
}

.menu-item strong {
  color: var(--cream);
  white-space: nowrap;
}

.space {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 70px);
  grid-template-columns: 0.9fr 1fr;
}

.space img {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.space-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.quote {
  border-bottom: 2px solid var(--line);
  border-top: 2px solid var(--line);
  text-align: center;
}

.quote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 0 auto 18px;
  max-width: 960px;
}

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

.visit {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: 0.8fr 1fr;
}

.visit-card {
  padding: clamp(24px, 5vw, 42px);
}

.visit-card h2 {
  overflow-wrap: anywhere;
}

.visit-card dl {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.visit-card div {
  border-top: 2px solid var(--line);
  padding-top: 14px;
}

.visit-card dt {
  color: var(--cream);
  font-weight: 800;
  margin-bottom: 4px;
}

.visit-card dd {
  margin: 0;
}

.map-card {
  align-items: end;
  background:
    linear-gradient(rgba(19, 13, 10, 0.12), rgba(19, 13, 10, 0.52)),
    url("https://images.unsplash.com/photo-1544984243-ec57ea16fe25?auto=format&fit=crop&w=1200&q=85") center / cover;
  display: flex;
  min-height: 460px;
  padding: 28px;
}

.map-card span {
  background: var(--cream);
  color: var(--espresso);
  font-weight: 800;
  padding: 10px 16px;
}

footer {
  align-items: center;
  border-top: 2px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 56px);
}

footer p {
  margin: 0;
}

footer a {
  color: var(--cream);
  font-weight: 800;
}

@media (max-width: 880px) {
  .site-header {
    min-height: auto;
  }

  .hero,
  .intro,
  .space,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 56px;
  }

  .hero-card,
  .hero-card img {
    min-height: 390px;
  }

  .features,
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .nav-links {
    justify-content: space-between;
    width: 100%;
  }

  .nav-links a {
    padding-inline: 10px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

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

  .status-card,
  .menu-item,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
