:root {
  --ink: #1a1512;
  --ink-soft: #3d342e;
  --muted: #6a5f56;
  --paper: #f7f2ea;
  --paper-2: #ebe3d6;
  --chile: #a1261d;
  --chile-deep: #7a1a14;
  --gold: #b0893f;
  --line: rgba(26, 21, 18, 0.12);
  --max: 68rem;
  --font-display: "Freight Text", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-body: "Avenir Next", "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: var(--paper);
  line-height: 1.55;
}

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

.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(--ink);
  color: #f3ebe1;
  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(243, 235, 225, 0.75);
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 242, 234, 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.1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

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

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

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

@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(--chile);
  border-radius: 0.2rem;
  background: var(--chile);
  color: #fff8f4;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.btn:hover {
  background: var(--chile-deep);
  border-color: var(--chile-deep);
}

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

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

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

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 21, 18, 0.25) 0%, rgba(26, 21, 18, 0.78) 70%, rgba(26, 21, 18, 0.92) 100%),
    radial-gradient(circle at 20% 20%, rgba(176, 137, 63, 0.35), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(161, 38, 29, 0.45), transparent 42%),
    repeating-linear-gradient(
      -12deg,
      #2a211c 0,
      #2a211c 12px,
      #241c18 12px,
      #241c18 24px
    );
}

.hero-copy {
  position: relative;
  padding: 4.5rem 0 3.25rem;
}

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

.hero h1 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.6rem);
  line-height: 1.05;
  font-weight: 600;
}

.lede {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 1.08rem;
  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(--ink);
  color: #f3ebe1;
  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(243, 235, 225, 0.6);
}

.strip-value {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: #221c18;
  color: #f3ebe1;
}

.section-dark .section-lede,
.section-dark .menu-note {
  color: rgba(243, 235, 225, 0.72);
}

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

.section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.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.45);
}

.section-dark .panel,
.panel-accent {
  background: rgba(255, 248, 244, 0.06);
  border-color: rgba(255, 248, 244, 0.14);
}

.panel h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

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

.text-link {
  font-weight: 650;
  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;
  border: 1px solid rgba(255, 248, 244, 0.14);
  background: rgba(255, 248, 244, 0.04);
}

.cards h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.cards p {
  margin: 0;
  color: rgba(243, 235, 225, 0.72);
}

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

.section-visit {
  background:
    linear-gradient(180deg, var(--paper-2), var(--paper));
  border-top: 1px solid var(--line);
}

.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.4rem;
}

.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);
}

.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #f3ebe1;
}

.footer a {
  color: #e8b56a;
}

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

.footer .muted {
  color: rgba(243, 235, 225, 0.65);
  font-size: 0.92rem;
}
