:root {
  --bg: #f5efe6;
  --bg-soft: #efe4d4;
  --surface: rgba(255, 252, 246, 0.88);
  --surface-strong: #fffaf2;
  --text: #2d2218;
  --muted: #6f6257;
  --border: rgba(73, 53, 35, 0.12);
  --accent: #7b4c24;
  --accent-2: #a9713d;
  --ink: #1e3653;
  --shadow: 0 18px 45px rgba(73, 53, 35, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(169, 113, 61, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f1e8 0%, #f2eadf 45%, #f6efe5 100%);
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.small { font-size: 0.93rem; }
.muted { color: var(--muted); }
.max-text { max-width: 640px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 241, 232, 0.82);
  border-bottom: 1px solid rgba(73, 53, 35, 0.08);
}

.compact-header { position: relative; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(73, 53, 35, 0.1);
  background: #fff;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

.header-actions,
.cta-row,
.mini-links,
.footer-inner,
.split-section,
.section-heading {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
}

.hero-card {
  padding: 18px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero h1,
.section h2,
.qr-card h2,
.section-heading h1 {
  margin: 0 0 12px;
  line-height: 1.08;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  max-width: 14ch;
}

.lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 62ch;
}

.story {
  margin-top: 18px;
  font-size: 0.99rem;
  line-height: 1.7;
}

.hero-visual {
  width: 100%;
  border-radius: 18px;
  background: linear-gradient(180deg, #fcf8f1, #efe1cf);
  border: 1px solid rgba(73, 53, 35, 0.08);
}

.hero-card-text {
  display: grid;
  gap: 10px;
}

.quote {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
  font-style: italic;
}

.inline-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.inline-link:hover,
.small a:hover { text-decoration: underline; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff9f1;
  box-shadow: 0 10px 22px rgba(123, 76, 36, 0.22);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(73, 53, 35, 0.14);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(123, 76, 36, 0.05);
}

.btn.disabled,
.btn[aria-disabled="true"] {
  opacity: 0.56;
  pointer-events: none;
}

.section {
  padding: 28px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.22);
  border-top: 1px solid rgba(73, 53, 35, 0.06);
  border-bottom: 1px solid rgba(73, 53, 35, 0.06);
}

.intro-grid,
.details-grid,
.qr-grid {
  display: grid;
  gap: 18px;
}

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

.details-grid {
  grid-template-columns: 1.1fr 0.9fr 0.85fr;
}

.qr-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  padding: 24px;
}

.card p:last-child { margin-bottom: 0; }

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(73, 53, 35, 0.12);
}

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

.hours .day { color: var(--muted); }
.hours .time { font-weight: 700; text-align: right; }

.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(73, 53, 35, 0.14);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.45);
}

.qr-card {
  text-align: center;
}

.qr {
  width: min(220px, 100%);
  aspect-ratio: 1 / 1;
  margin: 10px auto 0;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(73, 53, 35, 0.12);
  padding: 8px;
}

.site-footer {
  padding: 24px 0 36px;
}

.footer-inner {
  justify-content: space-between;
  border-top: 1px solid rgba(73, 53, 35, 0.1);
  padding-top: 18px;
}

.section-heading {
  flex-direction: column;
  margin-bottom: 24px;
}

.split-section {
  align-items: end;
  justify-content: space-between;
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .details-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-copy { padding: 28px; }
}

@media (max-width: 720px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero { padding-top: 34px; }
  .hero h1 { max-width: none; }
  .hero-copy,
  .card { padding: 22px; }
  .brand-logo { width: 56px; height: 56px; }
}
