:root {
  --ink: #1a120e;
  --coffee: #3c2418;
  --cherry: #c0122c;
  --cherry-dark: #8e0d21;
  --gold: #d4a017;
  --gold-soft: #f0d48a;
  --cream: #f4ead8;
  --paper: #fffaf1;
  --muted: #6d5648;
  --line: #e4d4bf;
  --white: #fffdf8;
  --shadow: 0 18px 40px rgba(26, 18, 14, 0.14);
  --header-h: 4.5rem;
  --max: 1120px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-serif: "Barlow", "Segoe UI", sans-serif;
  --font-sans: "Barlow", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.55;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(60, 36, 24, 0.04) 1px, transparent 0);
  background-size: 18px 18px;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.8rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 241, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.info-bar {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 600;
}

.info-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  align-items: center;
  padding: 0.55rem 0;
}

.info-bar a {
  color: inherit;
  text-decoration: none;
}

.info-bar a:hover {
  color: var(--gold-soft);
}

.info-bar .status {
  color: var(--paper);
}

.header-inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text .name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
}

.brand-text .place {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.18rem;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.phone-link {
  display: none;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .phone-link {
    display: inline;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--cherry);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.62rem 1.05rem;
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(192, 18, 44, 0.22);
  white-space: nowrap;
}

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

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255, 250, 241, 0.45);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 250, 241, 0.1);
}

.btn-dark {
  background: var(--ink);
  box-shadow: none;
}

.btn-dark:hover {
  background: #2b1c14;
}

.hero {
  position: relative;
  min-height: min(62vh, 560px);
  color: var(--paper);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 18, 14, 0.15) 0%, rgba(26, 18, 14, 0.55) 48%, rgba(26, 18, 14, 0.88) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 3.2rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.kicker::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.hero h1 {
  font-size: clamp(2.2rem, 6.5vw, 4.2rem);
  margin: 0.35rem 0 0.7rem;
  max-width: 14ch;
  color: var(--white);
}

.hero p.lede {
  max-width: 42ch;
  font-size: 1.12rem;
  color: rgba(255, 250, 241, 0.88);
  margin: 0 0 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 650;
  font-size: 0.92rem;
}

.status::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #7d7d7d;
}

.status[data-state="open"]::before {
  background: #3ecf6a;
  box-shadow: 0 0 0 4px rgba(62, 207, 106, 0.18);
}

.status[data-state="closed"]::before {
  background: #e24b4b;
}

.facts {
  display: grid;
  gap: 0.8rem;
  padding: 1.4rem 0 0.4rem;
}

.fact {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.05rem 1.1rem;
}

.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.fact span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 3.6rem 0;
  scroll-margin-top: 10.5rem;
}

#visit {
  scroll-margin-top: 10.5rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
}

.eyebrow {
  color: var(--cherry);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin: 0 0 0.4rem;
}

.photos {
  padding: 1.2rem 0 0.4rem;
}

.photo-row {
  display: grid;
  gap: 0.6rem;
}

.photo-row a {
  display: block;
  overflow: hidden;
  background: var(--paper);
}

.photo-row img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.card-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

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

.band {
  background: var(--ink);
  color: var(--paper);
  padding: 3.2rem 0;
}

.band h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.band p {
  max-width: 62ch;
  color: rgba(255, 250, 241, 0.82);
}

.quotes {
  display: grid;
  gap: 1rem;
}

.quote {
  background: var(--paper);
  border-left: 4px solid var(--gold);
  padding: 1.15rem 1.2rem;
}

.quote p {
  margin: 0 0 0.7rem;
  font-size: 1.12rem;
}

.quote cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.3rem;
}

.panel h3 {
  margin: 0 0 0.8rem;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--line);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.map-frame {
  min-height: 280px;
  border: 1px solid var(--line);
  background: #ddd;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.site-footer {
  background: #140e0b;
  color: rgba(255, 250, 241, 0.82);
  padding: 2.4rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.site-footer a {
  color: var(--gold-soft);
}

.site-footer .name {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  color: var(--white);
}

.fine {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: rgba(255, 250, 241, 0.5);
}

.page-hero {
  padding: 2.4rem 0 1.4rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin: 0.2rem 0 0.6rem;
}

.story {
  display: grid;
  gap: 1.2rem;
}

.story img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.callout {
  background: #fff3d6;
  border: 1px solid #e8c56a;
  padding: 1rem 1.1rem;
}

@media (min-width: 720px) {
  html {
    scroll-padding-top: 8rem;
  }
  .section,
  #visit {
    scroll-margin-top: 8rem;
  }
  .facts {
    grid-template-columns: repeat(4, 1fr);
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .photo-row img {
    height: 200px;
  }
  .quotes {
    grid-template-columns: repeat(2, 1fr);
  }
  .visit-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .story {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  .story img {
    height: 360px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .cards,
  .photo-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .photo-row img {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
