:root {
  --coal: #080705;
  --coal-soft: #1a120d;
  --cream: #f7ead2;
  --paper: #fff8ea;
  --linen: #ead8b9;
  --tomato: #ad1f16;
  --tomato-dark: #7c150e;
  --basil: #1f3a28;
  --brass: #b98a32;
  --ink: #20140e;
  --muted: #d6c2a1;
  --line: rgba(247, 234, 210, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(90deg, rgba(32, 20, 14, 0.035) 1px, transparent 1px),
    linear-gradient(var(--paper), var(--paper));
  background-size: 28px 28px, auto;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

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

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

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

p {
  color: #6a543f;
  line-height: 1.78;
  margin-bottom: 1.05rem;
}

.notice-bar {
  background: var(--tomato);
  color: var(--paper);
  display: flex;
  font-size: 0.76rem;
  font-weight: 900;
  gap: 22px;
  justify-content: center;
  letter-spacing: 0.12em;
  padding: 11px 18px;
  text-transform: uppercase;
}

.hero {
  background:
    linear-gradient(135deg, rgba(8, 7, 5, 0.98), rgba(88, 24, 18, 0.96) 48%, rgba(31, 58, 40, 0.94)),
    radial-gradient(circle at 82% 22%, rgba(185, 138, 50, 0.28), transparent 30%);
  min-height: 100vh;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 76px);
  position: relative;
}

.brand {
  align-items: center;
  color: var(--paper);
  display: grid;
  font-weight: 900;
  justify-items: center;
  text-transform: uppercase;
}

.brand-seal {
  background: var(--paper);
  border: 3px solid var(--tomato);
  box-shadow:
    0 0 0 4px var(--paper),
    0 0 0 6px var(--basil),
    0 18px 40px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  min-width: 176px;
  padding: 12px 20px 13px;
  position: relative;
}

.brand-seal::before,
.brand-seal::after {
  background: var(--brass);
  content: "";
  height: 2px;
  position: absolute;
  top: 50%;
  width: 18px;
}

.brand-seal::before {
  left: 12px;
}

.brand-seal::after {
  right: 12px;
}

.brand-kicker,
.brand-footer {
  color: var(--basil);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
}

.brand-name {
  color: var(--tomato);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.95rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-shadow: 0 1px 0 rgba(32, 20, 14, 0.18);
}

.nav-links {
  align-items: center;
  display: flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 28px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--brass);
}

.order-pill {
  background: var(--paper);
  border-radius: 999px;
  color: var(--ink);
  padding: 12px 18px;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--line);
  display: none;
  height: 42px;
  padding: 0;
  width: 42px;
}

.menu-toggle span {
  background: var(--cream);
  display: block;
  height: 2px;
  margin: 6px auto;
  width: 18px;
}

.hero-inner {
  align-items: end;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) 330px;
  min-height: calc(100vh - 124px);
  padding: 76px clamp(18px, 5vw, 76px) 76px;
}

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

.eyebrow {
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h1 {
  color: var(--paper);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin-bottom: 26px;
  max-width: 930px;
}

h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin-bottom: 0;
}

h3 {
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.hero-text {
  color: #ead7b8;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.8;
  max-width: 680px;
}

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

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 50px;
  padding: 0 22px;
  text-transform: uppercase;
}

.btn-red {
  background: var(--tomato);
  color: var(--paper);
}

.btn-red:hover {
  background: var(--tomato-dark);
}

.btn-cream {
  background: var(--paper);
  color: var(--ink);
}

.btn-outline {
  border: 1px solid rgba(247, 234, 210, 0.5);
  color: var(--paper);
}

.hero-card {
  background: rgba(8, 7, 5, 0.84);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.hero-card div {
  border-bottom: 1px solid rgba(247, 234, 210, 0.15);
  padding: 22px;
}

.hero-card div:last-child {
  border-bottom: 0;
}

.hero-card strong {
  color: var(--brass);
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-card span {
  color: var(--muted);
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  margin-top: 8px;
  text-transform: uppercase;
}

.section {
  padding: 98px clamp(18px, 5vw, 76px);
}

.intro-section {
  background: var(--paper);
  color: var(--ink);
}

.intro-section .eyebrow {
  color: var(--tomato);
}

.intro-section p {
  color: #6a543f;
}

.section-title {
  margin-bottom: 50px;
  max-width: 900px;
}

.section-title.split {
  align-items: end;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  max-width: none;
}

.service-grid {
  border-left: 1px solid rgba(32, 20, 14, 0.15);
  border-top: 1px solid rgba(32, 20, 14, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-grid article {
  background: #f0dfc2;
  border-bottom: 1px solid rgba(32, 20, 14, 0.15);
  border-right: 1px solid rgba(32, 20, 14, 0.15);
  padding: 34px;
}

.service-grid span {
  color: var(--tomato);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 26px;
}

.menu-section {
  background:
    linear-gradient(rgba(255, 248, 234, 0.94), rgba(255, 248, 234, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(173, 31, 22, 0.045) 34px 35px);
  color: var(--ink);
}

.menu-section .eyebrow {
  color: var(--tomato);
}

.menu-section p {
  color: #5d4937;
}

.menu-board {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.menu-item {
  align-items: center;
  background: rgba(255, 248, 234, 0.74);
  border: 1px solid rgba(32, 20, 14, 0.16);
  display: grid;
  gap: 18px;
  grid-template-columns: 96px 1fr;
  min-height: 132px;
  padding: 18px;
}

.menu-item.featured {
  grid-row: auto;
  grid-template-columns: 96px 1fr;
}

.menu-item img {
  aspect-ratio: 1 / 1;
  border: 3px solid var(--paper);
  box-shadow: 0 8px 22px rgba(32, 20, 14, 0.16);
  height: 96px;
  object-fit: cover;
  width: 96px;
}

.menu-item small {
  color: var(--tomato);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-item h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.42rem;
  margin: 6px 0 8px;
}

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

.events-section {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(38, 63, 43, 0.98), rgba(8, 7, 5, 0.94)),
    radial-gradient(circle at 88% 18%, rgba(247, 234, 210, 0.16), transparent 32%);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
}

.event-list {
  display: grid;
  gap: 10px;
}

.event-list span {
  background: rgba(247, 234, 210, 0.1);
  border: 1px solid var(--line);
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 15px 18px;
  text-transform: uppercase;
}

.business-section {
  background: var(--basil);
}

.business-section p {
  color: #e7d9bd;
}

.business-grid {
  align-items: stretch;
  display: grid;
  gap: 30px;
  grid-template-columns: 1.05fr 0.95fr;
}

.business-panel {
  background: rgba(8, 7, 5, 0.55);
  border: 1px solid rgba(247, 234, 210, 0.2);
  padding: 34px;
}

.business-panel ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.business-panel li {
  border-top: 1px solid rgba(247, 234, 210, 0.2);
  color: var(--paper);
  font-weight: 800;
  padding-top: 14px;
}

.contact-section {
  align-items: center;
  background:
    linear-gradient(135deg, var(--tomato), var(--tomato-dark)),
    radial-gradient(circle at 85% 18%, rgba(255, 248, 234, 0.18), transparent 34%);
  color: var(--paper);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
}

.contact-section p,
.contact-section .eyebrow {
  color: var(--paper);
}

.contact-box {
  background: var(--coal);
  border: 1px solid rgba(247, 234, 210, 0.18);
  padding: 30px;
}

.contact-box form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  font-size: 0.76rem;
  font-weight: 900;
  gap: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: var(--paper);
  border: 0;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  min-height: 46px;
  padding: 13px 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.footer {
  align-items: center;
  background: #140f0b;
  border-top: 1px solid rgba(247, 234, 210, 0.16);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 34px clamp(18px, 5vw, 76px);
}

.footer strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.7rem;
}

.footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  border: 1px solid rgba(247, 234, 210, 0.22);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 10px 14px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .notice-bar {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    background: rgba(8, 7, 5, 0.98);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 12px 18px 20px;
    position: absolute;
    right: 0;
    top: 102px;
    z-index: 5;
  }

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

  .nav-links a {
    padding: 14px 0;
    width: 100%;
  }

  .hero-inner,
  .section-title.split,
  .events-section,
  .business-grid,
  .contact-section,
  .menu-board {
    grid-template-columns: 1fr;
  }

  .menu-item,
  .menu-item.featured {
    grid-template-columns: 96px 1fr;
  }

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

  .hero-card {
    max-width: 430px;
  }

}

@media (max-width: 560px) {
  .nav {
    padding: 18px;
  }

  .brand-seal {
    min-width: 150px;
    padding: 10px 16px 11px;
  }

  .brand-name {
    font-size: 1.52rem;
  }

  .brand-kicker,
  .brand-footer {
    font-size: 0.48rem;
  }

  .hero-inner {
    padding: 56px 18px 50px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .section {
    padding: 72px 18px;
  }

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

  .menu-item img {
    height: 132px;
    width: 100%;
  }

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