:root {
  --bg: #111111;
  --bg-soft: #181818;
  --panel: #1f1f1f;
  --panel-2: #262626;
  --text: #f4efe7;
  --muted: #c8b8a6;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #8f5a38;
  --accent-soft: #b07a57;
  --heading: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 1rem;
}

.brand img {
  height: 54px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--heading);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  margin-right: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--heading);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-content,
.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 7rem 0 4rem;
  max-width: 680px;
}

.eyebrow,
.section-label {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.hero h1,
.page-hero h1,
h2,
.menu-card h3,
.menu-list h3,
.site-footer h3,
.special-card h3 {
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.03em;
}

.hero h1,
.page-hero h1 {
  color: var(--heading);
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.hero-text,
.section-subtext,
.menu-note,
.special-card p,
.content-card p,
.visit-card p,
.menu-list p,
.footnote {
  color: #ddd1c5;
}

.hero-text {
  font-size: 1.1rem;
  max-width: 48rem;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.84rem;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-soft);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--heading);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255, 255, 255, 0.08);
}

.page-hero {
  padding: 7rem 0 3rem;
  background: radial-gradient(circle at top left, rgba(143, 90, 56, 0.18), transparent 35%), var(--bg);
}

.compact-hero {
  min-height: unset;
}

.narrow {
  max-width: 42rem;
}

.section {
  padding: 4.6rem 0;
}

.alt-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.center {
  text-align: center;
}

h2 {
  color: var(--heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
}

.content-card,
.image-card,
.menu-card,
.special-card,
.list-card,
.visit-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-card,
.menu-card,
.special-card,
.visit-card,
.list-card {
  padding: 1.7rem;
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tall-image {
  min-height: 500px;
}

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

.portrait-image {
  min-height: 560px;
}

.specials-grid,
.pricing-grid,
.booster-grid,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.specials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booster-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.special-card h3,
.menu-card h3,
.menu-list h3 {
  color: var(--heading);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.special-card p,
.price-line,
.menu-note,
.menu-list p,
.visit-card p,
.site-footer p {
  margin: 0;
}

.price-line + .price-line,
.content-card p + p,
.visit-card p + p,
.menu-list p + p {
  margin-top: 0.45rem;
}

.footnote {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.section-nav-wrap {
  padding-top: 0;
  padding-bottom: 0;
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-bottom: 1rem;
}

.section-nav a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.section-nav a:hover {
  color: var(--heading);
  border-color: rgba(255,255,255,0.18);
}

.menu-list {
  display: grid;
  gap: 1rem;
}

.menu-list.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-list.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-list article {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.menu-list article:last-child,
.menu-list article:nth-last-child(-n+3) {
  border-bottom: none;
}

.small-copy h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.small-copy p {
  font-size: 0.95rem;
}

.compact-card h3 {
  font-size: 1.2rem;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-soft);
  font-weight: 700;
}

.visit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0b0b0b;
  padding: 2.5rem 0;
}

.footer-grid {
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: start;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.site-footer h3 {
  font-size: 1rem;
  margin: 0 0 0.55rem;
  color: var(--heading);
  text-transform: uppercase;
}

.site-footer a:hover,
.visit-card a:hover {
  color: var(--accent-soft);
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--heading);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-phone:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.phone-icon {
  font-size: 0.85rem;
}

@media (max-width: 1080px) {
  .specials-grid,
  .pricing-grid,
  .booster-grid,
  .menu-list.three-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-phone {
    display: flex !important;
    margin-right: 0.8rem;
    font-size: 0.75rem;
    padding: 0.45rem 0.6rem;
  }
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: rgba(11, 11, 11, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .split-grid,
  .visit-card,
  .footer-grid,
  .menu-list.two-columns,
  .menu-list.three-columns,
  .specials-grid,
  .pricing-grid,
  .booster-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .reverse-mobile > :first-child {
    order: 2;
  }

  .reverse-mobile > :last-child {
    order: 1;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding-top: 6rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3.6rem 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.5rem;
  }

  .brand img,
  .footer-logo {
    height: 42px;
  }

  .content-card,
  .menu-card,
  .special-card,
  .visit-card,
  .list-card {
    padding: 1.2rem;
  }
}
