:root {
  --bg: #f3ebe1;
  --ink: #1c1613;
  --muted: #5a5048;
  --brand: #9a3412;
  --brand-deep: #7c2d12;
  --accent: #3d5a48;
  --card: #fffdf8;
  --line: rgba(28, 22, 19, 0.12);
  --shadow: 0 24px 60px rgba(28, 22, 19, 0.14);
  --radius: 26px;
  --font: "Source Sans 3", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1000px 520px at 0% -10%, #efd2b4 0%, transparent 55%),
    radial-gradient(800px 480px at 100% 5%, #d5e4d4 0%, transparent 50%),
    var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-deep); }
a:hover { color: var(--brand); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 40; background: #000; color: #fff; padding: .5rem 1rem; }
.wrap { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }

.top {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(243, 235, 225, 0.84);
  border-bottom: 1px solid var(--line);
}
.top-inner { display: flex; align-items: center; justify-content: space-between; padding: .85rem 0; }
.logo { font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: var(--ink); text-decoration: none; }
nav { display: flex; gap: 1rem; align-items: center; }
nav a { color: var(--muted); text-decoration: none; font-weight: 600; }
nav a:hover { color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand); color: #fff !important; text-decoration: none !important;
  font-weight: 700; border-radius: 999px; padding: .85rem 1.25rem;
  box-shadow: 0 12px 28px rgba(154, 52, 18, 0.28);
}
.btn:hover { background: var(--brand-deep); }
.btn-ghost {
  background: transparent; color: var(--ink) !important; box-shadow: none;
  border: 1px solid var(--line);
}
.btn-small { padding: .45rem .95rem; font-size: .92rem; }

.hero { padding: 3.5rem 0 2.5rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; font-weight: 700;
  color: var(--accent); margin: 0 0 .75rem;
}
h1 {
  font-family: var(--display); font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.05; margin: 0 0 1rem; font-weight: 700;
}
.lede { font-size: 1.15rem; color: var(--muted); max-width: 34rem; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.5rem 0 1rem; }
.hours-line { color: var(--muted); margin: 0; font-size: .98rem; }
.hero-photo {
  margin: 0; border-radius: calc(var(--radius) + 4px); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  aspect-ratio: 3/4; background: #ddd;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.gallery { padding: 2rem 0 3.5rem; }
.section-head { max-width: 38rem; margin-bottom: 1.25rem; }
.section-head h2, .visit h2, .band h2 {
  font-family: var(--display); font-size: clamp(1.9rem, 3vw, 2.5rem); margin: 0 0 .4rem;
}
.section-head p { margin: 0; color: var(--muted); }

.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: 180px;
  gap: .85rem;
}
.mosaic figure {
  margin: 0; border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(28,22,19,.08); background: #ccc;
}
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; grid-row: span 2; }
.mosaic .tall img, .mosaic .wide img, .mosaic figure img { min-height: 100%; }

.band { padding: 1rem 0 3.5rem; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.cards article {
  background: rgba(255,253,248,.88); border: 1px solid var(--line);
  border-radius: 18px; padding: 1.2rem 1.25rem;
}
.cards h3 { margin: 0 0 .35rem; font-size: 1.08rem; }
.cards p { margin: 0; color: var(--muted); }

.visit {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, transparent, rgba(61, 90, 72, 0.07));
}
.visit-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.5rem; align-items: center; }
.lede-sm { color: var(--muted); max-width: 34rem; }
.details { display: grid; gap: 1rem; margin: 1.4rem 0; }
.details dt {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .11em;
  color: var(--accent); font-weight: 700;
}
.details dd { margin: .2rem 0 0; }
.visit-photo {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 5/4;
}
.visit-photo img { width: 100%; height: 100%; object-fit: cover; }

.footer {
  border-top: 1px solid var(--line); padding: 1.4rem 0 2rem;
  background: rgba(255,253,248,.6);
}
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center; }
.footer p { margin: .2rem 0 0; color: var(--muted); }

@media (max-width: 900px) {
  .hero-grid, .visit-grid, .cards { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .mosaic .wide { grid-column: span 2; grid-row: span 1; }
  .mosaic .tall { grid-row: span 2; }
  nav a:not(.btn) { display: none; }
  .hero { padding-top: 2rem; }
  .hero-photo { max-height: 70vh; }
}
@media (max-width: 560px) {
  .mosaic { grid-template-columns: 1fr; }
  .mosaic .wide, .mosaic .tall { grid-column: auto; grid-row: auto; min-height: 260px; }
}
