:root {
  --ink: #14110f;
  --ink-soft: #3a322c;
  --muted: #6e635a;
  --paper: #f1ebe3;
  --paper-2: #e5ddd2;
  --ketchup: #b42318;
  --ketchup-deep: #8a1a12;
  --grill: #1a1412;
  --mustard: #d97706;
  --line: rgba(20, 17, 15, 0.12);
  --max: 68rem;
  --font-display: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(196, 30, 26, 0.06), transparent 45%),
    radial-gradient(ellipse at 90% 10%, rgba(212, 160, 23, 0.08), transparent 40%),
    var(--paper);
  line-height: 1.55;
}

a {
  color: var(--ketchup);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: #fff;
  padding: 0.5rem 0.75rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  background: var(--grill);
  color: #f5efe6;
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}

.topbar-meta {
  margin: 0;
  color: rgba(245, 239, 230, 0.72);
}

.topbar-phone {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.topbar-phone:hover {
  color: var(--mustard);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(242, 237, 230, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  display: grid;
  gap: 0.05rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--ketchup);
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.nav-links {
  display: none;
  gap: 1.25rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

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

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--ketchup);
  border-radius: 0.15rem;
  background: var(--ketchup);
  color: #fff8f4;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--ketchup-deep);
  border-color: var(--ketchup-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ketchup);
}

.btn-nav {
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: min(82vh, 42rem);
  display: grid;
  align-items: end;
  color: #fff8f4;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 17, 15, 0.18) 0%, rgba(20, 17, 15, 0.7) 52%, rgba(20, 17, 15, 0.94) 100%),
    url("https://images.unsplash.com/photo-1565299585323-38d6b0865b47?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
  animation: heroGlow 12s ease-in-out infinite alternate;
}

.brand-hero {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.2rem);
  letter-spacing: 0.04em;
  color: #ffd7a0;
  animation: riseIn 0.7s ease-out both;
}

.sticky-call {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: var(--ketchup);
  color: #fff8f4;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(20, 17, 15, 0.28);
  animation: riseIn 0.8s ease-out 0.35s both;
}

@media (min-width: 820px) {
  .sticky-call {
    display: none;
  }
}

body {
  padding-bottom: 4.5rem;
}

@media (min-width: 820px) {
  body {
    padding-bottom: 0;
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 18px,
      rgba(255, 248, 244, 0.02) 18px,
      rgba(255, 248, 244, 0.02) 19px
    );
  opacity: 0.7;
}

@keyframes heroGlow {
  from {
    filter: saturate(1) brightness(1);
  }
  to {
    filter: saturate(1.08) brightness(1.05);
  }
}

.hero-copy {
  position: relative;
  padding: 4.5rem 0 3.25rem;
  animation: riseIn 0.85s ease-out both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 248, 244, 0.78);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 400;
  max-width: 14ch;
}

.lede {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 1.1rem;
  color: rgba(255, 248, 244, 0.88);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.actions-tight {
  margin-top: 1.1rem;
}

.hero .btn-ghost {
  border-color: rgba(255, 248, 244, 0.45);
  color: #fff8f4;
}

.hero .btn-ghost:hover {
  background: rgba(255, 248, 244, 0.1);
}

.strip {
  background: var(--grill);
  color: #f5efe6;
  padding: 1.35rem 0;
}

.strip-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.strip-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.55);
}

.strip-value {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: #fff;
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: #1c1714;
  color: #f5efe6;
}

.section-dark .section-lede,
.section-dark .menu-note {
  color: rgba(245, 239, 230, 0.72);
}

.section-dark a {
  color: #f0c14b;
}

.section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.section-lede {
  max-width: 36rem;
  color: var(--muted);
  margin: 0;
}

.split {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 820px) {
  .split {
    grid-template-columns: 1.4fr 0.9fr;
    align-items: start;
  }
}

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

.panel {
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  animation: riseIn 0.9s ease-out 0.15s both;
}

.section-dark .panel {
  background: rgba(255, 248, 244, 0.05);
  border-color: rgba(255, 248, 244, 0.12);
}

.panel h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}

.panel p {
  margin: 0 0 0.85rem;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.cards {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cards li {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 248, 244, 0.14);
}

.cards h3 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.cards p {
  margin: 0;
  color: rgba(245, 239, 230, 0.72);
}

.menu-note {
  margin: 1.5rem 0 0;
}

.visit-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 780px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.address {
  font-size: 1.15rem;
  line-height: 1.45;
}

.hours h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
}

.hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 600;
}

.hours-note {
  margin: 1rem 0 0;
  font-size: 0.95rem;
}

.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(255, 248, 244, 0.08);
  background: var(--grill);
  color: #f5efe6;
}

.footer a {
  color: #f0c14b;
}

.footer-inner p {
  margin: 0.35rem 0;
}

.footer .muted {
  color: rgba(245, 239, 230, 0.65);
  font-size: 0.92rem;
}
