/* ==========================================================
   Timberwolves Reunion — Main Stylesheet
   Palette: Navy (#1a2744), Gold (#c8a84b), Cream (#f4f1eb)
   Fonts: Playfair Display (headings) + Source Sans 3 (body)
   ========================================================== */

:root {
  --navy:       #1a2744;
  --navy-dark:  #111b30;
  --navy-light: #253660;
  --gold:       #c8a84b;
  --gold-light: #e0c47a;
  --gold-dark:  #a88730;
  --cream:      #f4f1eb;
  --cream-dark: #e8e3d8;
  --white:      #ffffff;
  --gray-100:   #f8f8f6;
  --gray-200:   #ececec;
  --gray-400:   #aaa;
  --gray-700:   #555;
  --text:       #1e1e1e;
  --danger:     #c0392b;
  --success:    #27ae60;
  --info:       #2980b9;

  --radius:   6px;
  --shadow:   0 2px 16px rgba(0,0,0,.1);
  --shadow-lg:0 4px 32px rgba(0,0,0,.15);
  --font-head:'Playfair Display', Georgia, serif;
  --font-body:'Source Sans 3', 'Segoe UI', sans-serif;
  --max-w:    1100px;
  --nav-h:    64px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
a  { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
p  { margin-bottom: 1rem; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: .6rem;
  color: var(--gold) !important;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none !important;
  letter-spacing: .02em;
}
.nav-crest { font-size: 1.4rem; }
.nav-links {
  display: flex; list-style: none;
  gap: .15rem; align-items: center;
}
.nav-links li a {
  color: rgba(255,255,255,.82);
  padding: .4rem .75rem;
  border-radius: var(--radius);
  font-size: .92rem;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.nav-links li a:hover { color: var(--gold); background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: .45rem 1rem !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none; background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none !important;
  line-height: 1;
}
.btn-gold     { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline  { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-danger   { background: var(--danger); color: white; border-color: var(--danger); }
.btn-danger:hover { background: #a93226; }
.btn-full     { width: 100%; text-align: center; padding: .85rem; }
.btn-sm       { padding: .35rem .8rem; font-size: .85rem; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  overflow: hidden;
  text-align: center;
  padding: 4rem 1.5rem;
}
/* Subtle diagonal stripe pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,.025) 60px,
    rgba(255,255,255,.025) 62px
  );
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(26,39,68,.6) 0%, rgba(10,15,30,.9) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2rem, 6vw, 3.6rem);
  color: var(--white);
  margin-bottom: .6rem;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold-light);
  font-family: var(--font-head);
  font-style: italic;
  margin-bottom: 1rem;
}
.hero-date {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 4rem 1.5rem; }
.section-welcome { background: var(--white); }
.section-cards   { background: var(--cream); }
.section-photos  { background: var(--white); }
.section-schedule-teaser { background: var(--navy); }
.section-schedule-teaser .section-title { color: var(--gold); }
.section-schedule-teaser .section-text  { color: rgba(255,255,255,.8); }

.container { max-width: var(--max-w); margin: 0 auto; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
  text-align: center;
}
.section-text {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: var(--gray-700);
  font-size: 1.05rem;
}

/* ── Card Grid ────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--gold);
}
.card-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.info-card h3 { margin-bottom: .5rem; }
.info-card p  { color: var(--gray-700); font-size: .95rem; margin-bottom: 1rem; }

/* ── Events List ──────────────────────────────────────────── */
.event-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; }
.event-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(200,168,75,.25);
}
.event-icon { font-size: 2rem; flex-shrink: 0; }
.event-item h4 { color: var(--gold); margin-bottom: .25rem; }
.event-item p  { color: rgba(255,255,255,.7); margin: 0; }

/* ── Photo Grid (Home) ────────────────────────────────────── */
.photo-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.photo-thumb { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.photo-thumb:hover img { transform: scale(1.05); }
.photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: white; font-size: .78rem; padding: .75rem .5rem .4rem;
}

/* ── Photo Gallery ────────────────────────────────────────── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.gallery-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
}
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.gallery-thumb-wrap { aspect-ratio: 4/3; overflow: hidden; }
.gallery-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-meta { padding: .9rem 1rem; }
.gallery-caption { font-weight: 600; font-size: .9rem; margin-bottom: .3rem; }
.gallery-details { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .8rem; color: var(--gray-400); margin-bottom: .3rem; }
.gallery-people  { font-size: .8rem; color: var(--gray-700); }

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: -.5rem; right: -.5rem;
  background: var(--gold); color: var(--navy);
  border: none; font-size: 1.5rem; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; font-weight: bold;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-caption {
  color: rgba(255,255,255,.85); font-size: .9rem;
  text-align: center; margin-top: .75rem;
}

/* ── Upload Panel ─────────────────────────────────────────── */
.upload-panel {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.upload-toggle {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  user-select: none;
}
.upload-toggle::-webkit-details-marker { display: none; }
.upload-toggle::before { content: '▶ '; font-size: .75rem; transition: transform .2s; }
details[open] .upload-toggle::before { content: '▼ '; }
.upload-form-inner { padding: 1.25rem; border-top: 1px solid var(--cream-dark); }

/* ── Auth Pages ───────────────────────────────────────────── */
.auth-page {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1rem;
  min-height: calc(100vh - var(--nav-h) - 150px);
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 460px;
  border-top: 5px solid var(--gold);
}
.auth-header { text-align: center; margin-bottom: 1.75rem; }
.auth-icon   { font-size: 2.5rem; display: block; margin-bottom: .5rem; }
.auth-header h1 { margin-bottom: .3rem; }
.auth-header p  { color: var(--gray-700); font-size: .95rem; }
.auth-footer-link { text-align: center; margin-top: 1.25rem; font-size: .9rem; color: var(--gray-700); }
.auth-links { display: flex; gap: .75rem; justify-content: center; margin-top: 1rem; font-size: .88rem; }

/* ── Forms ────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}
.form-section-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy-light);
  border-bottom: 2px solid var(--gold);
  padding-bottom: .4rem;
  margin: 1.75rem 0 1rem;
}
.form-section-title:first-child { margin-top: 0; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .35rem;
  color: var(--navy);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group input[type="url"],
.form-group input[type="date"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,.18);
}
.form-group input:disabled { background: var(--gray-100); color: var(--gray-400); }
.form-hint  { font-size: .8rem; color: var(--gray-400); margin-top: .3rem; display: block; }
.form-note  { background: var(--cream); border-left: 4px solid var(--gold); padding: .85rem 1rem; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 1rem; font-size: .9rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group-half { max-width: 50%; }
.required   { color: var(--danger); }

/* ── Checkboxes ───────────────────────────────────────────── */
.checkbox-group { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.1rem; }
.checkbox-item {
  display: flex; align-items: center; gap: .75rem;
  cursor: pointer; font-size: .95rem;
}
.checkbox-item input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--navy);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.checkbox-item input:checked ~ .checkbox-custom {
  background: var(--gold); border-color: var(--gold);
}
.checkbox-item input:checked ~ .checkbox-custom::after {
  content: '✓';
  color: var(--navy);
  font-size: .85rem;
  font-weight: 700;
}

/* ── Alerts ───────────────────────────────────────────────── */
.alert {
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 1.1rem;
  font-size: .93rem;
  border-left: 4px solid;
}
.alert-success { background: #eafaf1; border-color: var(--success); color: #1e7b4a; }
.alert-error   { background: #fdf3f2; border-color: var(--danger);  color: #922b21; }
.alert-info    { background: #eaf2fb; border-color: var(--info);    color: #1a5276; }
.alert a       { color: inherit; font-weight: 600; text-decoration: underline; }

/* ── Page Containers ──────────────────────────────────────── */
.page-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  flex: 1;
}
.page-header-block {
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 1.25rem;
}
.page-header-block h1 { margin-bottom: .35rem; }
.page-header-block p  { color: var(--gray-700); margin: 0; }

/* ── Payment ──────────────────────────────────────────────── */
.payment-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  max-width: 680px;
}
.payment-price-block {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy); color: var(--gold);
  padding: 1.25rem 1.5rem; border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.payment-label { font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.7); }
.payment-price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; }
.payment-options { display: flex; flex-direction: column; gap: .85rem; margin: 1.5rem 0; }
.payment-btn {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  transition: opacity .2s, transform .15s;
  border: 2px solid transparent;
}
.payment-btn:hover { opacity: .88; transform: translateX(3px); }
.paypal-btn { background: #003087; color: #009cde; }
.venmo-btn  { background: #008cff; color: white; }
.zelle-btn  { background: #6b1fa2; color: white; border: 2px solid rgba(255,255,255,.2); cursor: default; }
.payment-instructions { background: var(--cream); border-radius: var(--radius); padding: 1.25rem; margin-top: 1.25rem; }
.payment-instructions h3 { margin-bottom: .75rem; }
.payment-instructions ol { padding-left: 1.4rem; }
.payment-instructions li { margin-bottom: .4rem; }
.payment-note    { color: var(--gray-700); margin-bottom: 1rem; }
.payment-contact { font-size: .88rem; color: var(--gray-700); margin-top: 1.25rem; }
.payment-status  { padding: .85rem 1rem; border-radius: var(--radius); margin-top: 1.25rem; font-weight: 600; }
.payment-status.paid   { background: #eafaf1; color: #1e7b4a; }
.payment-status.unpaid { background: #fef9ec; color: #7d6008; }

/* ── Schedule ─────────────────────────────────────────────── */
.schedule-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.schedule-day  { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.schedule-day-header { background: var(--navy); color: var(--gold); font-family: var(--font-head); font-size: 1.1rem; padding: .85rem 1.25rem; }
.schedule-events { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.schedule-event { display: flex; gap: 1.25rem; padding: .75rem 0; border-bottom: 1px solid var(--cream-dark); }
.schedule-event:last-child { border: none; }
.schedule-time  { width: 90px; flex-shrink: 0; font-weight: 700; font-size: .85rem; color: var(--gold-dark); text-transform: uppercase; padding-top: .1rem; }
.schedule-detail h4 { margin-bottom: .2rem; }
.schedule-detail p  { color: var(--gray-700); margin: 0; font-size: .9rem; }

/* ── Hotel Cards ──────────────────────────────────────────── */
.hotel-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--gold);
}

/* ── Info Box ─────────────────────────────────────────────── */
.info-box {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

/* ── Content Prose ────────────────────────────────────────── */
.content-prose { max-width: 780px; }
.content-prose h2 { margin: 1.75rem 0 .75rem; }
.content-prose ul { padding-left: 1.4rem; }
.content-prose li { margin-bottom: .3rem; }

/* ── Admin Layout ─────────────────────────────────────────── */
.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - var(--nav-h));
  flex: 1;
}
.admin-nav {
  background: var(--navy-dark);
  padding: 1.5rem 0;
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.admin-nav-title {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 0 1.25rem .75rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: .5rem;
}
.admin-nav-link {
  display: block;
  padding: .65rem 1.25rem;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  text-decoration: none;
  transition: all .15s;
  position: relative;
}
.admin-nav-link:hover { color: white; background: rgba(255,255,255,.06); }
.admin-nav-link.active {
  color: var(--gold);
  background: rgba(200,168,75,.12);
  border-right: 3px solid var(--gold);
}
.badge {
  background: var(--danger);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: .1rem .4rem;
  border-radius: 10px;
  margin-left: .4rem;
}
.admin-content { padding: 2rem; overflow-y: auto; background: var(--cream); }
.admin-toolbar  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.admin-toolbar h1 { margin: 0; }

/* ── Stat Cards ───────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 1rem; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  text-align: center;
  border-top: 3px solid var(--navy-light);
}
.stat-card.stat-alert { border-top-color: var(--danger); }
.stat-value { font-family: var(--font-head); font-size: 2.2rem; color: var(--navy); font-weight: 700; }
.stat-label { font-size: .8rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; }
.stat-action { display: block; margin-top: .5rem; font-size: .82rem; color: var(--gold-dark); font-weight: 600; }

/* ── Admin Tables ─────────────────────────────────────────── */
.admin-table {
  width: 100%; border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: .9rem;
}
.admin-table th {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: .7rem .85rem;
  text-align: left;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}
.admin-table td { padding: .65rem .85rem; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
.admin-table tr:last-child td { border: none; }
.admin-table tr:hover td { background: var(--cream); }

/* ── Status Badges ────────────────────────────────────────── */
.status-badge {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.status-pending  { background: #fef9ec; color: #7d6008; }
.status-approved { background: #eafaf1; color: #1e7b4a; }
.status-rejected { background: #fdf3f2; color: #922b21; }
.status-banned   { background: #2c2c2c; color: #ccc; }

/* ── Admin Filter Bar ─────────────────────────────────────── */
.admin-filter-bar {
  display: flex; gap: .75rem; align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.admin-filter-bar input { padding: .45rem .75rem; max-width: 260px; }
.admin-filter-bar select { padding: .45rem .75rem; }

/* ── Admin Photo Grid ─────────────────────────────────────── */
.admin-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1.25rem;
}
.admin-photo-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.admin-photo-card.pending { border: 2px solid var(--gold); }
.admin-photo-card.approved { border: 2px solid var(--success); }
.admin-photo-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.admin-photo-thumb img { width:100%; height:100%; object-fit:cover; }
.photo-status-badge {
  position: absolute; top: .5rem; left: .5rem;
  background: rgba(0,0,0,.65); color: white;
  font-size: .72rem; padding: .2rem .5rem; border-radius: 3px;
}
.admin-photo-meta { padding: .85rem; font-size: .85rem; }
.admin-photo-meta p { margin-bottom: .25rem; }
.admin-photo-actions { padding: .6rem .85rem .85rem; }

/* ── Detail Views ─────────────────────────────────────────── */
.detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem; margin-bottom: 1.5rem; }
.detail-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.25rem; }
.detail-card h3 { margin-bottom: .75rem; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: .4rem; }
.detail-table { width: 100%; font-size: .88rem; }
.detail-table th { padding: .4rem .5rem .4rem 0; font-weight: 600; color: var(--gray-700); width: 45%; vertical-align: top; }
.detail-table td { padding: .4rem 0; }
.action-bar { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.25rem; }

/* ── Pagination ───────────────────────────────────────────── */
.pagination { display: flex; gap: .35rem; margin-top: 1.25rem; flex-wrap: wrap; }
.pagination a { padding: .4rem .75rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-200); font-size: .85rem; }
.pagination a.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.filter-tabs { display: flex; gap: .5rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.6);
  padding: 3rem 1.5rem 2rem;
  margin-top: auto;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: .6rem; margin-bottom: .4rem; color: var(--gold); font-family: var(--font-head); font-size: 1.1rem; }
.footer-crest { font-size: 1.3rem; }
.footer-tagline { font-style: italic; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-nav { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.25rem; }
.footer-nav a { color: rgba(255,255,255,.55); font-size: .85rem; }
.footer-nav a:hover { color: var(--gold); text-decoration: none; }
.footer-legal { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ── Misc ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.muted { color: var(--gray-400); }
.empty-state { text-align: center; padding: 3rem; color: var(--gray-400); background: var(--white); border-radius: var(--radius); }
.site-main { flex: 1; display: flex; flex-direction: column; }
code { font-size: .82em; background: var(--cream-dark); padding: .1rem .35rem; border-radius: 3px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links   { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--navy-dark); padding: .75rem 0; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li a { border-radius: 0; padding: .75rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-group-half { max-width: 100%; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-nav { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .payment-price-block { flex-direction: column; text-align: center; gap: .5rem; }
  .admin-filter-bar input { max-width: 100%; }
}

/* ── Hero background image (replace SVG with real photo) ────── */
.hero {
  background-image: url('/public/images/hero-placeholder.svg');
  background-size: cover;
  background-position: center;
}
/* When you have a real photo:
   background-image: url('/public/images/hero.jpg');
*/

/* ============================================================
   ADDITIONAL PAGES — FAQ, Directory, Announcements, Schedule
   ============================================================ */

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.faq-nav a {
  padding: .45rem 1rem;
  border-radius: 20px;
  background: var(--white);
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.faq-nav a:hover { background: var(--navy); color: var(--gold); }

.faq-section { margin-bottom: 3rem; }

.faq-category {
  font-size: 1.3rem;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 1.25rem;
}

.faq-list { display: flex; flex-direction: column; gap: .6rem; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: var(--cream); }
.faq-item[open] .faq-question { background: var(--cream); border-bottom: 1px solid var(--cream-dark); }

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform .2s;
}
.faq-item[open] .faq-icon { background: var(--gold); color: var(--navy); }

.faq-answer { padding: 1rem 1.25rem; color: var(--gray-700); line-height: 1.7; }
.faq-answer p { margin: 0; }

.faq-contact-cta {
  text-align: center;
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 3rem;
}
.faq-contact-cta h3 { color: var(--gold); margin-bottom: .5rem; }
.faq-contact-cta p  { color: rgba(255,255,255,.75); margin-bottom: 1.25rem; }

/* ── Member Directory ─────────────────────────────────────── */
.directory-search-bar {
  display: flex; gap: .75rem; align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.directory-search-bar input {
  flex: 1;
  min-width: 220px;
  max-width: 480px;
  padding: .65rem .9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
}
.directory-search-bar input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,.18);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.1rem;
}

.member-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-left: 4px solid var(--navy-light);
  transition: box-shadow .2s, transform .15s;
}
.member-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }

.member-avatar {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
}

.member-info { flex: 1; min-width: 0; }

.member-name {
  font-size: 1rem;
  margin-bottom: .25rem;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.member-label { font-weight: 700; color: var(--gray-400); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; margin-right: .35rem; }
.member-callsign, .member-years, .member-guests { font-size: .85rem; margin-bottom: .2rem; color: var(--gray-700); }

.member-events {
  display: flex; flex-wrap: wrap; gap: .3rem;
  margin-top: .5rem;
}
.event-pill {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: .15rem .55rem;
  font-size: .75rem;
  color: var(--navy);
  white-space: nowrap;
}

.directory-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--navy);
  border-radius: var(--radius);
  color: white;
}
.dir-stat { font-size: .9rem; color: rgba(255,255,255,.7); }
.dir-stat strong { color: var(--gold); font-size: 1.3rem; display: block; }

/* ── Announcements ────────────────────────────────────────── */
.announcements-list { display: flex; flex-direction: column; gap: 1.5rem; }

.announcement-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem 2rem;
  border-left: 5px solid var(--navy-light);
}
.announcement-card.pinned {
  border-left-color: var(--gold);
  background: #fffef8;
}

.announcement-header {
  display: flex; align-items: center; gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .85rem;
}
.pin-badge {
  font-size: .78rem; font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.announcement-category {
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .6rem;
  border-radius: 12px;
  background: var(--cream);
  color: var(--navy);
}
.announcement-category.registration { background: #eaf2fb; color: #1a5276; }
.announcement-category.schedule     { background: #eafaf1; color: #1e7b4a; }
.announcement-category.payment      { background: #fef9ec; color: #7d6008; }
.announcement-category.travel       { background: #fdf2f8; color: #76448a; }

.announcement-date {
  margin-left: auto;
  font-size: .82rem;
  color: var(--gray-400);
}

.announcement-title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: .85rem;
}

.announcement-body {
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1rem;
  white-space: pre-line;
}

.announcement-footer {
  font-size: .82rem;
  color: var(--gray-400);
  border-top: 1px solid var(--cream-dark);
  padding-top: .75rem;
  font-style: italic;
}

/* ── Schedule additions ───────────────────────────────────── */
.schedule-location {
  font-size: .85rem;
  color: var(--gray-400);
  margin-bottom: .3rem;
}

.schedule-rsvp-cta {
  text-align: center;
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
}
.schedule-rsvp-cta h3 { color: var(--gold); margin-bottom: .35rem; }
.schedule-rsvp-cta p  { color: rgba(255,255,255,.7); margin-bottom: 1.1rem; }

/* ── Admin schedule day grouping ──────────────────────────── */
.schedule-admin-day { margin-bottom: 1.5rem; }
.schedule-admin-day-header {
  background: var(--navy-light);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .95rem;
  padding: .6rem 1rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
.schedule-admin-day .admin-table { border-radius: 0 0 var(--radius) var(--radius); }

/* ── Responsive additions ─────────────────────────────────── */
@media (max-width: 768px) {
  .directory-grid { grid-template-columns: 1fr; }
  .announcement-card { padding: 1.25rem; }
  .directory-stats { gap: 1rem; }
}
