/* Typography & Colors */
:root {
  --burgundy: #5b0e2d; /* deep burgundy */
  --burgundy-700: #4a0b24;
  --gold: #d4af37; /* gold accents */
  --charcoal: #333333; /* charcoal gray */
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --surface: #faf7f8;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; color: var(--ink); line-height: 1.25; }
h1 { font-size: clamp(2rem, 2.5vw + 1.2rem, 3rem); }
h2 { font-size: clamp(1.6rem, 1.5vw + 1rem, 2.2rem); margin: 0 0 .5rem; }
h3 { font-size: 1.125rem; margin: .2rem 0 .2rem; }
p { margin: .2rem 0 1rem; }
a { color: var(--burgundy); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1100px, 92%); margin: 0 auto; }
.narrow { width: min(860px, 92%); }
.section { padding: 3.5rem 0; }

.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { left: 1rem; top: 1rem; width: auto; height: auto; background: #fff; padding: .5rem .75rem; border-radius: 6px; box-shadow: var(--shadow); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); border-bottom: 1px solid #eee;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .75rem 0; }
.brand { font-weight: 700; color: var(--burgundy); font-family: "Playfair Display", Georgia, serif; font-size: 1.25rem; }

.site-nav ul { display: flex; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.site-nav a { padding: .5rem .75rem; border-radius: 8px; color: var(--charcoal); font-weight: 600; }
.site-nav a:hover { background: var(--surface); text-decoration: none; }
.site-nav a.active { color: var(--burgundy); border-bottom: 2px solid var(--gold); }

.nav-toggle { display: none; position: relative; width: 44px; height: 44px; border: 1px solid #ddd; border-radius: 8px; background: #fff; }
.nav-toggle-bar { position: absolute; inset: 0; margin: auto; width: 20px; height: 2px; background: var(--charcoal); box-shadow: 0 -6px 0 0 var(--charcoal), 0 6px 0 0 var(--charcoal); }

@media (max-width: 840px) {
  .nav-toggle { display: inline-block; }
  .site-nav { position: fixed; inset: 64px 0 auto 0; background: #fff; border-bottom: 1px solid #eee; transform: translateY(-120%); transition: transform .25s ease; }
  .site-nav ul { flex-direction: column; padding: .75rem 1rem; gap: .25rem; }
  body.nav-open .site-nav { transform: translateY(0); }
}

/* Hero */
.hero { position: relative; min-height: 52vh; display: grid; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1) contrast(1.02); }
.hero-overlay { position: relative; background: linear-gradient(180deg, rgba(91,14,45,.55), rgba(0,0,0,.25)); display: grid; place-items: center; }
.hero-content { text-align: center; color: #fff; padding: 3rem 0; }
.hero h1 { color: #fff; }

.actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.btn { display: inline-block; padding: .75rem 1rem; border-radius: var(--radius); font-weight: 700; border: 2px solid transparent; transition: transform .08s ease, background .2s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: #201a00; }
.btn-primary:hover { filter: brightness(0.96); }
.btn-secondary { background: var(--burgundy); color: #fff; }
.btn-secondary:hover { background: var(--burgundy-700); }
.btn-ghost { background: transparent; border-color: #fff; color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }

/* Cards & layout */
.cards { display: grid; gap: 1.25rem; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .cards.three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards.two, .cards.three { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid #eee; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.card h3 { padding: .75rem 1rem 0; }
.card p { padding: 0 1rem 1rem; color: var(--muted); }

/* Highlight block */
.highlight-inner { display: grid; grid-template-columns: 1.2fr .9fr; gap: 1.25rem; align-items: center; background: var(--surface); border-radius: var(--radius); padding: 1.25rem; }
.highlight-media img { width: 100%; height: 260px; object-fit: cover; border-radius: 10px; }
@media (max-width: 880px) { .highlight-inner { grid-template-columns: 1fr; } .highlight-media img { height: 220px; } }

/* Page sections */
.page-header { margin-bottom: 1.25rem; }
.content-block { background: #fff; border: 1px solid #eee; border-radius: var(--radius); padding: 1rem; margin-bottom: 1rem; box-shadow: var(--shadow); }
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.team-member { margin: 0; background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid #eee; }
.team-member img { width: 100%; height: 220px; object-fit: cover; display: block; }
.team-member figcaption { padding: .75rem; }
@media (max-width: 720px) { .team { grid-template-columns: 1fr; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.25rem; }
.contact-form form { display: grid; gap: .75rem; }
.form-row { display: grid; gap: .25rem; }
input, textarea { padding: .7rem .8rem; border-radius: 10px; border: 1px solid #ddd; font: inherit; }
input:focus, textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.hours { padding-left: 1.2rem; color: var(--muted); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid #eee; box-shadow: var(--shadow); height: 360px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Events */
.event-section { margin-bottom: 2rem; }
.happyhour { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: #fff7e0; border: 1px solid #ffe2a0; border-radius: var(--radius); padding: 1rem; }
@media (max-width: 680px) { .happyhour { flex-direction: column; align-items: flex-start; } }

/* Footer */
.site-footer { border-top: 1px solid #eee; background: #fff; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; padding: 1.25rem 0; align-items: center; }
.socials { display: flex; gap: .75rem; }
.socials a { color: var(--charcoal); font-weight: 600; }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; } }

