:root {
  --brand-primary: #1a2654;
  --brand-secondary: #c41e3a;
  --brand-accent: #c9a84c;

  --ink: #201d1a;
  --ink-soft: #5b5650;
  --paper: #fffdf9;
  --surface: #ffffff;
  --line: #e8e2d6;

  --shadow-sm: 0 1px 2px rgba(30, 20, 10, 0.06), 0 1px 1px rgba(30, 20, 10, 0.04);
  --shadow-md: 0 12px 28px rgba(30, 20, 10, 0.10), 0 3px 8px rgba(30, 20, 10, 0.06);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.6rem; color: var(--ink); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
a { color: var(--brand-primary); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  flex-shrink: 0;
}
.brand-mark-img { object-fit: cover; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--ink); }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.4rem; color: var(--ink); cursor: pointer;
}

.site-nav { display: flex; gap: 1.75rem; align-items: center; }
.site-nav a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.95rem;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.site-nav a.active, .site-nav a:hover { color: var(--brand-primary); border-bottom-color: var(--brand-accent); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: 0.5rem 1.5rem 1rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.65rem 0; border-bottom: 1px solid var(--line); }
  .site-nav a.active { border-bottom-color: var(--line); }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--brand-primary), color-mix(in srgb, var(--brand-primary) 55%, var(--brand-secondary)));
  color: #fff;
  padding: 5.5rem 1.5rem 5rem;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 720px; margin: 0 auto; }
.hero-badge {
  display: inline-block; padding: 0.4rem 1rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.4rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 0.85rem; color: #fff; }
.hero .lede { font-size: 1.15rem; color: rgba(255, 255, 255, 0.92); margin: 0 0 2rem; }
.hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.4rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--brand-primary); }
.btn-light:hover { box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); }
.btn-solid { background: var(--brand-primary); color: #fff; }
.btn-solid:hover { box-shadow: var(--shadow-md); }

/* ---- Sections / cards ---- */
section.section { padding: 4rem 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head p { margin: 0; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.card + .card { margin-top: 1.25rem; }
.card :is(p, ul, ol):last-child { margin-bottom: 0; }

/* ---- Info rows (contact) ---- */
.info-row { display: flex; align-items: flex-start; gap: 1rem; padding: 0.95rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: color-mix(in srgb, var(--brand-primary) 10%, white);
  color: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
}
.info-row .info-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); margin-bottom: 0.15rem; }
.info-row .info-value { font-weight: 600; color: var(--ink); }
.info-row a.info-value { color: var(--ink); text-decoration: none; }
.info-row a.info-value:hover { color: var(--brand-primary); }

/* ---- Events ---- */
.event-card { display: flex; gap: 1.25rem; align-items: flex-start; }
.event-date-block {
  flex-shrink: 0; width: 68px; text-align: center;
  background: color-mix(in srgb, var(--brand-secondary) 8%, white);
  border-radius: var(--radius-sm); padding: 0.6rem 0.4rem;
}
.event-date-block .month { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand-secondary); font-weight: 700; }
.event-date-block .day { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--ink); line-height: 1.15; }
.event-title-row { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.25rem; }
.event-title-row strong { font-size: 1.05rem; }
.event-tag {
  display: inline-block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700;
  background: color-mix(in srgb, var(--brand-accent) 30%, white);
  color: color-mix(in srgb, var(--brand-accent) 55%, black);
  padding: 0.18rem 0.55rem; border-radius: 999px;
}
.event-meta { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 0.35rem; }
.event-meta .dot { margin: 0 0.4rem; }

/* ---- Hours ---- */
.hours-list { display: flex; flex-direction: column; }
.hours-row { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day-name { color: var(--ink-soft); }
.hours-row.today .day-name, .hours-row.today .time-range { color: var(--brand-primary); font-weight: 700; }
.hours-row .time-range.closed { color: var(--ink-soft); font-style: italic; }

.status-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; font-weight: 600;
  padding: 0.35rem 0.85rem; border-radius: 999px;
}
.status-badge.open { background: #e3f5e8; color: #187a3d; }
.status-badge.closed { background: #fdeceb; color: #b0362b; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: #d3cfc9; padding: 3.5rem 1.5rem 2rem; margin-top: 2rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: #fff; margin-bottom: 0.4rem; }
.footer-tagline { color: #b7b2ab; margin-bottom: 1rem; }
.footer-line { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.7rem; color: #d3cfc9; }
.footer-line a { color: #d3cfc9; text-decoration: none; }
.footer-line a:hover { color: #fff; }
.social-links { display: flex; gap: 0.6rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background 0.15s ease;
}
.social-links a:hover { background: rgba(255, 255, 255, 0.18); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: 2.25rem; padding-top: 1.5rem; font-size: 0.85rem; color: #9b968f; }

.empty-note { color: var(--ink-soft); font-style: italic; }
