/* ===== Burge Club palette (matched from burgeclub.com) ===== */
:root {
  --slate:   #3a4759;   /* nav bar / dark sections */
  --slate-dk:#2c3744;
  --gold:    #e0b13a;   /* accent rules, links, buttons */
  --gold-dk: #c8962a;
  --brown:   #684d2f;   /* footer, headings, secondary accent */
  --brown-lt:#8a6f4c;
  --cream:   #f4efe5;   /* page background */
  --paper:   #fbfaf7;   /* content panels */
  --sand:    #e8e1d9;   /* borders / light accent */
  --ink:     #444444;   /* body text */
  --shadow:  rgba(44, 55, 68, 0.16);
}

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

body {
  font-family: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background-color: var(--cream);
  /* subtle diamond texture, echoing the burgeclub.com background */
  background-image:
    linear-gradient(135deg, rgba(104,77,47,0.035) 25%, transparent 25%),
    linear-gradient(225deg, rgba(104,77,47,0.035) 25%, transparent 25%),
    linear-gradient(45deg, rgba(104,77,47,0.035) 25%, transparent 25%),
    linear-gradient(315deg, rgba(104,77,47,0.035) 25%, transparent 25%);
  background-size: 22px 22px;
  background-position: 11px 0, 11px 0, 0 0, 0 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.18;
  letter-spacing: 0.1px;
}

a { color: var(--brown); }

.wrap { width: min(1080px, 92%); margin-inline: auto; }

/* ===================== HEADER ===================== */
header.site { position: sticky; top: 0; z-index: 50; box-shadow: 0 2px 10px var(--shadow); }

.topbar { background: var(--cream); border-bottom: 1px solid var(--sand); }
.topbar .wrap {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 1rem; padding: 0.6rem 0;
}
.topbar .tagline {
  font-family: "Lora", Georgia, serif; font-style: italic; color: var(--brown);
  font-size: 0.92rem; max-width: 26ch;
}
.topbar .crest { justify-self: center; }
.topbar .crest img { height: 66px; width: auto; display: block; }
.topbar .contact { justify-self: end; text-align: right; font-size: 0.9rem; color: var(--ink); }
.topbar .contact .ph { font-family: "Lora", Georgia, serif; font-size: 1.15rem; color: var(--slate); }

.navbar { background: var(--slate); border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
.navbar .wrap { display: flex; justify-content: center; flex-wrap: wrap; }
.navbar a {
  color: #fff; text-decoration: none;
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 0.85rem 1.1rem; transition: color 0.2s, background 0.2s;
}
.navbar a:hover, .navbar a.active { color: var(--slate); background: var(--gold); }

@media (max-width: 720px) {
  .topbar .wrap { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .topbar .tagline, .topbar .contact { display: none; }
  .navbar a { padding: 0.7rem 0.7rem; font-size: 0.74rem; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative; text-align: center; color: #fff;
  padding: 5.5rem 1rem 5rem;
  background:
    linear-gradient(rgba(44,55,68,0.55), rgba(44,55,68,0.72)),
    url("photos/hero-store.jpg") center/cover;
}
.hero-logo {
  height: clamp(78px, 12vw, 110px); width: auto; margin: 0 auto 1.5rem; display: block;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45));
}
.hero .eyebrow {
  font-family: "Lora", Georgia, serif; font-style: italic; color: var(--gold);
  font-size: 1rem; letter-spacing: 0.5px; margin-bottom: 0.8rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5.5vw, 3.8rem); letter-spacing: 0.5px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.hero .sub { font-size: clamp(1.05rem, 2.4vw, 1.35rem); margin: 1.2rem auto 0; max-width: 44ch; color: var(--sand); }
.hero .meta { display: flex; gap: 2.4rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.hero .meta .label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.hero .meta .val { font-family: "Lora", Georgia, serif; font-size: 1.2rem; color: #fff; }

.btn {
  display: inline-block; cursor: pointer;
  font-family: "Source Sans 3", sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 0.85rem;
  background: var(--gold); color: var(--slate-dk); border: none;
  padding: 0.9rem 2.2rem; border-radius: 3px; text-decoration: none;
  box-shadow: 0 4px 14px var(--shadow); transition: transform 0.15s, background 0.2s;
}
.btn:hover { background: var(--gold-dk); color: #fff; transform: translateY(-2px); }
.btn.ghost { background: transparent; color: #fff; border: 2px solid var(--gold); }
.btn.ghost:hover { background: var(--gold); color: var(--slate-dk); }
.hero .btn { margin-top: 2.3rem; }

/* ===================== SECTIONS ===================== */
section { padding: 4.5rem 0; }
section:nth-of-type(even) { background: var(--paper); }
/* flat cream (no texture) for these sections */
#schedule, #details, #directions, #team { background: var(--cream); }
.section-head { text-align: center; margin-bottom: 2.8rem; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-head .rule { width: 80px; height: 3px; background: var(--gold); margin: 1rem auto 0; }
.lead { max-width: 62ch; margin: 0 auto; text-align: center; font-size: 1.1rem; }

.note {
  background: #fbf3da; border: 1px dashed var(--gold-dk);
  color: var(--brown); border-radius: 5px;
  padding: 0.8rem 1rem; font-size: 0.9rem; margin: 1.2rem auto 0; max-width: 60ch;
}
.note strong { color: var(--brown); }

/* ===================== SCHEDULE ===================== */
.timeline { max-width: 640px; margin: 0 auto; }
.tl-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 1.2rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--sand); align-items: baseline;
}
.tl-item:last-child { border-bottom: none; }
.tl-time { font-family: "Lora", Georgia, serif; color: var(--brown); font-size: 1.05rem; text-align: right; }
.tl-event { font-size: 1.1rem; }

/* ===================== GALLERY ===================== */
.carousel { text-align: center; margin: 1.2rem auto 0; }
.carousel-stage {
  position: relative; display: inline-block; max-width: 100%; line-height: 0;
}
.carousel-img {
  display: none; max-width: 100%; max-height: min(72vh, 580px);
  width: auto; height: auto; vertical-align: middle;
  border-radius: 8px; box-shadow: 0 4px 16px var(--shadow);
}
.carousel-img.active { display: block; animation: cfade 0.35s ease; }
@keyframes cfade { from { opacity: 0.35; } to { opacity: 1; } }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(224,177,58,0.92); color: var(--slate-dk);
  font-family: Georgia, serif; font-size: 1.9rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4); transition: background 0.2s, transform 0.15s;
}
.carousel-btn:hover { background: var(--gold); transform: translateY(-50%) scale(1.08); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-counter { text-align: center; font-style: italic; font-size: 0.9rem; color: var(--brown-lt); margin-top: 0.9rem; }
@media (max-width: 600px) {
  .carousel-btn { width: 40px; height: 40px; font-size: 1.5rem; }
}

/* ===================== INFO GRID ===================== */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; margin-top: 1rem; }
.card { background: var(--paper); border: 1px solid var(--sand); border-radius: 6px; padding: 1.8rem; box-shadow: 0 3px 10px var(--shadow); }
section:nth-of-type(even) .card { background: #fff; }
.card h3 { font-size: 1.35rem; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.6rem; }
.card h3 .ic { font-size: 1.3rem; }
.card ul { list-style: none; }
.card ul li { padding: 0.3rem 0 0.3rem 1.4rem; position: relative; }
.card ul li::before { content: "›"; position: absolute; left: 0; color: var(--gold-dk); font-weight: 700; font-size: 1.1rem; line-height: 1.5; }

/* ===================== DIRECTIONS ===================== */
.directions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 760px) { .directions-grid { grid-template-columns: 1fr; } }
.map-slot {
  background: var(--sand); border: 2px dashed var(--brown-lt); border-radius: 6px;
  min-height: 280px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; color: var(--brown); padding: 1.5rem;
}
.map-slot .ic { font-size: 2.4rem; margin-bottom: 0.5rem; }
.map-fig { margin: 0; }
.map-fig a { display: block; border: 1px solid var(--sand); border-radius: 6px; overflow: hidden; box-shadow: 0 3px 12px var(--shadow); background: #fff; }
.map-fig img { display: block; width: 100%; height: auto; transition: transform 0.3s; }
.map-fig a:hover img { transform: scale(1.02); }
.map-fig figcaption { text-align: center; font-style: italic; font-size: 0.88rem; color: var(--brown-lt); margin-top: 0.6rem; }
.addr { font-family: "Lora", Georgia, serif; font-size: 1.3rem; color: var(--slate); margin-bottom: 0.6rem; }

/* ===================== RSVP / FORMS ===================== */
section.section-dark { background: var(--slate); color: #fff; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head .rule { background: var(--gold); }
.section-dark .lead { color: var(--sand); }
.form-card {
  background: var(--paper); color: var(--ink); max-width: 680px; margin: 2.5rem auto 0;
  border-radius: 8px; padding: 2.4rem clamp(1.2rem, 4vw, 2.6rem);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-top: 4px solid var(--gold);
}
.field { margin-bottom: 1.3rem; }
.field > label { display: block; font-weight: 700; margin-bottom: 0.4rem; color: var(--slate); font-size: 0.95rem; }
.field .req { color: var(--gold-dk); }
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%; padding: 0.7rem 0.85rem; font-size: 1rem; font-family: inherit; color: var(--ink);
  border: 1.5px solid var(--sand); border-radius: 4px; background: #fff; transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; min-height: 80px; }
.radios { display: flex; gap: 1.4rem; flex-wrap: wrap; padding-top: 0.2rem; }
.radios label { display: flex; align-items: center; gap: 0.45rem; cursor: pointer; color: var(--ink); font-weight: 400; }
.radios input { accent-color: var(--gold-dk); width: 1.05rem; height: 1.05rem; }
.checks { display: flex; flex-direction: column; gap: 0.55rem; padding-top: 0.3rem; }
.checks label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; color: var(--ink); font-weight: 400; }
.checks input { accent-color: var(--gold-dk); width: 1.05rem; height: 1.05rem; }
.conditional { display: none; padding-left: 1rem; border-left: 3px solid var(--sand); margin-top: 0.4rem; }
.conditional.show { display: block; animation: fade 0.25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(-4px);} to {opacity:1; transform:none;} }
.form-card .btn { width: 100%; margin-top: 0.6rem; font-size: 1rem; padding: 1rem; }
.hp { position: absolute; left: -5000px; }

/* ===================== VIDEO POSTER (links to YouTube) ===================== */
.video-poster {
  position: relative; display: block; width: 100%; max-width: 760px; margin: 1.6rem auto 0;
  aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden; text-decoration: none;
  border: 1px solid var(--sand); box-shadow: 0 6px 20px var(--shadow);
  background: #1b1b1b center/cover no-repeat;
  background-image: url("https://img.youtube.com/vi/M1nflqmZr3Y/hqdefault.jpg");
}
.video-poster::before {
  content: ""; position: absolute; inset: 0; background: rgba(20,25,30,0.35); transition: background 0.2s;
}
.video-poster:hover::before { background: rgba(20,25,30,0.12); }
.video-poster .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 74px; height: 74px; border-radius: 50%; background: rgba(224,177,58,0.96);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4); transition: transform 0.15s;
}
.video-poster:hover .play { transform: translate(-50%,-50%) scale(1.08); }
.video-poster .play::after {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%);
  border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent #2c3744;
}
.video-poster .vp-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.7rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.78)); color: #fff;
  font-weight: 700; font-size: 0.92rem; text-align: left;
}

/* ===================== HOSTS ===================== */
.host-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.8rem; margin-top: 1rem; }
.host-card { flex: 0 1 300px; max-width: 320px; background: var(--paper); border: 1px solid var(--sand); border-radius: 8px; overflow: hidden; box-shadow: 0 3px 12px var(--shadow); display: flex; flex-direction: column; }
.host-photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; display: block; background: var(--sand); }
.host-photo-ph { width: 100%; aspect-ratio: 4 / 5; display: flex; align-items: center; justify-content: center; background: var(--slate); color: var(--cream); font-family: "Lora", Georgia, serif; font-size: 3rem; letter-spacing: 1px; }
.host-title.placeholder { font-style: italic; text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--brown-lt); }
.host-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.host-name { font-family: "Lora", Georgia, serif; font-size: 1.4rem; color: var(--brown); line-height: 1.2; }
.host-title { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-dk); font-weight: 700; margin-top: 0.3rem; }
.host-blurb { font-style: italic; color: var(--ink); margin-top: 0.95rem; font-size: 0.98rem; line-height: 1.55; }
.host-details { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.host-detail .host-label { font-size: 0.68rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--brown-lt); font-weight: 700; }
.host-detail .host-val { font-size: 0.96rem; color: var(--ink); margin-top: 0.12rem; line-height: 1.45; }
.host-val.placeholder { font-style: italic; color: var(--brown-lt); }
.host-contact { margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--sand); display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.92rem; }
.host-contact a { color: var(--slate); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; word-break: break-word; }
.host-contact a:hover { color: var(--gold-dk); }
.host-contact .ic { font-size: 0.95rem; }
.vcard-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start;
  margin-top: 0.5rem; padding: 0.5rem 1rem; border-radius: 4px;
  background: var(--slate); color: #fff !important; text-decoration: none;
  font-family: "Source Sans 3", sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.8px; text-transform: uppercase; transition: background 0.2s;
}
.vcard-btn:hover { background: var(--gold); color: var(--slate-dk) !important; }
.vcard-btn .ic { font-size: 0.9rem; }

/* ===================== FOOTER ===================== */
footer { background: var(--brown); color: var(--sand); text-align: center; padding: 2.8rem 1rem; font-size: 0.95rem; }
footer .footer-logo { height: 70px; width: auto; margin: 0 auto 1rem; display: block; }
footer .fbrand { font-family: "Lora", Georgia, serif; font-style: italic; font-size: 1.5rem; color: var(--cream); margin-bottom: 0.6rem; }
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { text-decoration: underline; }
