/* ═══════════════════════════════════════════════════════════════════
   GLASSIC WINE LIMITED — Shared Stylesheet
   Loaded by index.html and every sub-page.
   ═══════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burgundy: #4A0E2B;
  --burgundy-dark: #320920;
  --gold: #C9A96E;
  --gold-light: #E2C99A;
  --ivory: #FAF6F0;
  --charcoal: #1A1A1A;
  --white: #FFFFFF;
  --grey: #666666;
  --border: rgba(201,169,110,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--charcoal);
  color: var(--ivory);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--ivory); text-decoration: none; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links .btn-nav {
  border: 1px solid var(--gold); color: var(--gold);
  padding: 0.5rem 1.4rem; border-radius: 0;
  transition: background 0.3s, color 0.3s;
}
.nav-links .btn-nav:hover { background: var(--gold); color: var(--charcoal); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1px; background: var(--gold); display: block; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,26,26,0.98); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  color: var(--ivory); text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 2rem; right: 2rem;
  font-size: 2rem; color: var(--gold); cursor: pointer; background: none; border: none;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 0.85rem 2.2rem;
  font-family: 'Lato', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: all 0.35s; border: none;
}
.btn-primary { background: var(--gold); color: var(--charcoal); font-weight: 700; }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--charcoal); }
.btn-outline-white { border: 1px solid var(--ivory); color: var(--ivory); background: transparent; }
.btn-outline-white:hover { background: var(--ivory); color: var(--charcoal); }

/* ── SECTION DEFAULTS ── */
section { padding: 7rem 4rem; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; margin-bottom: 1.5rem; }
.section-subtitle { color: rgba(250,246,240,0.6); max-width: 540px; margin-bottom: 3rem; font-size: 1rem; }
.divider {
  width: 60px; height: 1px; background: var(--gold);
  margin: 1.5rem auto;
}
.divider-left { margin-left: 0; }

/* Sub-page top spacer (clears fixed nav when no hero) */
.page-top-spacer { padding-top: 8rem; }

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #320920 0%, #1A1A1A 55%, #0D0D0D 100%);
}
.hero-bg-accent {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,169,110,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 2rem; }
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem; display: block;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.18; margin-bottom: 1.5rem; color: var(--white);
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: 1rem; color: rgba(250,246,240,0.65);
  max-width: 520px; margin: 0 auto 3rem; font-weight: 300;
}
.hero-ctas { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(250,246,240,0.4); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-scroll-line { width: 1px; height: 40px; background: var(--gold); opacity: 0.4; animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0%,100%{ opacity:0.2 } 50%{ opacity:0.8 } }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--burgundy-dark); padding: 3rem 4rem;
  display: flex; gap: 4rem; justify-content: center; flex-wrap: wrap;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.intro-stat { text-align: center; }
.intro-stat-num {
  font-family: 'Playfair Display', serif; font-size: 2.4rem;
  color: var(--gold); display: block; line-height: 1;
}
.intro-stat-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,246,240,0.5); margin-top: 0.5rem; }

/* ── OFFER CARDS (home page) ── */
#offers { background: var(--charcoal); }
.offers-header { text-align: center; margin-bottom: 4rem; }
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.offer-card {
  border: 1px solid var(--border); padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.02);
  text-decoration: none; color: var(--ivory);
  display: flex; flex-direction: column;
  transition: border-color 0.4s, transform 0.4s;
  position: relative;
}
.offer-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.offer-card-num {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: rgba(201,169,110,0.4); line-height: 1; margin-bottom: 0.4rem;
}
.offer-card-divider { width: 30px; height: 1px; background: var(--gold); margin-bottom: 1.2rem; }
.offer-card-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.offer-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  font-weight: 400; line-height: 1.3; margin-bottom: 1rem; color: var(--ivory);
}
.offer-card p {
  font-size: 0.85rem; color: rgba(250,246,240,0.65);
  line-height: 1.7; flex: 1; font-weight: 300;
}
.offer-card-cta {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-top: 1.5rem; padding-top: 1.2rem;
  border-top: 1px solid var(--border); font-weight: 700;
}

/* ── EVENTS ── */
#events { background: var(--charcoal); }
.events-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5px; }
.event-card {
  background: #111; border: 1px solid var(--border);
  padding: 2.5rem; position: relative; overflow: hidden;
  transition: transform 0.4s, border-color 0.4s;
}
.event-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.event-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.event-card:hover::before { transform: scaleX(1); }
.event-tag {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem; display: block;
}
.event-title { font-size: 1.4rem; margin-bottom: 0.8rem; line-height: 1.3; }
.event-date { font-size: 0.8rem; color: rgba(250,246,240,0.5); margin-bottom: 1.2rem; }
.event-wines { font-size: 0.85rem; color: rgba(250,246,240,0.65); margin-bottom: 1.5rem; line-height: 1.9; border-left: 2px solid var(--border); padding-left: 1rem; }
.event-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.event-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); }
.event-price span { font-family: 'Lato', sans-serif; font-size: 0.65rem; color: rgba(250,246,240,0.4); display: block; letter-spacing: 0.1em; }

/* Past Events */
.past-events { margin-top: 5rem; }
.past-events-title { font-size: 1.2rem; margin-bottom: 2rem; color: rgba(250,246,240,0.6); font-weight: 300; }
.past-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.past-card {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, #2a1020 100%);
  height: 180px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 1.2rem;
  border: 1px solid var(--border);
}
.past-card-label { font-size: 0.75rem; letter-spacing: 0.1em; color: rgba(250,246,240,0.8); z-index: 2; }

/* ── TOURS ── */
#tours { background: var(--burgundy-dark); }
.tours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 5rem; }
.tour-card {
  border: 1px solid var(--border); padding: 3rem 2.5rem;
  position: relative; transition: border-color 0.4s;
  background: rgba(0,0,0,0.25);
}
.tour-card.featured { border-color: var(--gold); }
.tour-card:hover { border-color: var(--gold); }
.tour-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--charcoal); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 1rem; white-space: nowrap;
}
.tour-tier { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.tour-name { font-size: 1.6rem; margin-bottom: 0.5rem; }
.tour-tagline { font-size: 0.85rem; color: rgba(250,246,240,0.5); margin-bottom: 2rem; }
.tour-price { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); margin-bottom: 0.3rem; }
.tour-price-note { font-size: 0.7rem; color: rgba(250,246,240,0.4); letter-spacing: 0.1em; margin-bottom: 2rem; }
.tour-features { list-style: none; margin-bottom: 2.5rem; }
.tour-features li { font-size: 0.85rem; color: rgba(250,246,240,0.7); padding: 0.6rem 0; border-bottom: 1px solid var(--border); display: flex; gap: 0.8rem; align-items: flex-start; }
.tour-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* Testimonial */
.testimonial { text-align: center; max-width: 680px; margin: 0 auto; padding: 4rem 2rem; border-top: 1px solid var(--border); }
.testimonial-quote { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-style: italic; line-height: 1.6; margin-bottom: 2rem; color: rgba(250,246,240,0.85); }
.testimonial-author { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ── CLUB ── */
#club { background: #111; }
.club-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 4rem; }
.club-card {
  border: 1px solid var(--border); padding: 3rem 2.5rem;
  text-align: center; position: relative; transition: border-color 0.4s;
  background: rgba(26,26,26,0.8);
}
.club-card.grand { background: var(--burgundy-dark); border-color: var(--gold); }
.club-tier { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.club-name { font-size: 1.8rem; margin-bottom: 0.5rem; }
.club-price { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); margin: 1.5rem 0 0.3rem; }
.club-price-note { font-size: 0.7rem; color: rgba(250,246,240,0.4); margin-bottom: 2rem; }
.club-features { list-style: none; text-align: left; margin-bottom: 2.5rem; }
.club-features li { font-size: 0.85rem; color: rgba(250,246,240,0.7); padding: 0.65rem 0; border-bottom: 1px solid var(--border); display: flex; gap: 0.8rem; }
.club-features li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; margin-top: 0.3rem; }
.club-tag { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--charcoal); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 1rem; white-space: nowrap; }

/* Comparison table */
.compare-wrap { overflow-x: auto; margin-top: 4rem; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table th { font-family: 'Playfair Display', serif; font-size: 0.9rem; padding: 1rem 1.5rem; border-bottom: 1px solid var(--gold); color: var(--gold); text-align: left; font-weight: 400; }
.compare-table th:first-child { color: rgba(250,246,240,0.5); font-family: 'Lato', sans-serif; font-size: 0.75rem; }
.compare-table td { padding: 0.9rem 1.5rem; border-bottom: 1px solid var(--border); font-size: 0.85rem; color: rgba(250,246,240,0.7); }
.compare-table td:not(:first-child) { text-align: center; }
.check { color: var(--gold); font-size: 1rem; }
.dash { color: rgba(250,246,240,0.2); }

/* ── MEMBERS PORTAL ── */
#portal { background: var(--charcoal); }
.portal-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.portal-login-box { border: 1px solid var(--border); padding: 3rem; background: #111; max-width: 440px; }
.form-group { margin-bottom: 1.5rem; }
.form-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.6rem; }
.form-input {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--ivory); padding: 0.85rem 1.2rem; font-family: 'Lato', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.3s;
}
.form-input:focus { border-color: var(--gold); }
.form-divider { text-align: center; color: rgba(250,246,240,0.3); font-size: 0.75rem; margin: 1.5rem 0; }
.dashboard-mock { position: relative; }
.dashboard-overlay {
  position: absolute; inset: 0; background: rgba(26,26,26,0.88);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid var(--border); z-index: 2;
}
.dashboard-overlay span { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: 0.5rem; }
.dashboard-overlay p { font-size: 0.75rem; color: rgba(250,246,240,0.4); letter-spacing: 0.1em; }
.dash-preview { background: #0d0d0d; border: 1px solid var(--border); padding: 1.5rem; }
.dash-nav { display: flex; gap: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
.dash-nav span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,246,240,0.3); cursor: pointer; }
.dash-nav span.active { color: var(--gold); }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dash-widget { background: #111; border: 1px solid var(--border); padding: 1.2rem; }
.dash-widget-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,246,240,0.3); margin-bottom: 0.5rem; }
.dash-widget-value { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); }
.dash-widget-sub { font-size: 0.7rem; color: rgba(250,246,240,0.3); margin-top: 0.3rem; }

/* ── ABOUT ── */
#about { background: var(--burgundy-dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image {
  background: linear-gradient(135deg, #1a0810 0%, #3a1020 60%, var(--burgundy) 100%);
  height: 480px; position: relative;
}
.about-image-label {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem;
  color: rgba(250,246,240,0.5);
}

/* ── CONTACT ── */
#contact { background: #0d0d0d; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; }
.contact-info h3 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.contact-detail { margin-bottom: 1.5rem; }
.contact-detail-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.contact-detail-value { font-size: 0.9rem; color: rgba(250,246,240,0.65); }
.contact-detail-value a { color: var(--gold); text-decoration: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
select.form-input option { background: var(--charcoal); }

/* ── FOOTER ── */
footer { background: #070707; padding: 4rem 4rem 2rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.footer-tagline { font-size: 0.8rem; color: rgba(250,246,240,0.35); line-height: 1.8; max-width: 240px; }
.footer-newsletter-input {
  display: flex; margin-top: 1.5rem; border: 1px solid var(--border);
}
.footer-newsletter-input input {
  background: transparent; border: none; padding: 0.7rem 1rem;
  color: var(--ivory); font-family: 'Lato', sans-serif; font-size: 0.8rem; flex: 1; outline: none;
}
.footer-newsletter-input button {
  background: var(--gold); color: var(--charcoal); border: none;
  padding: 0.7rem 1rem; font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer;
}
.footer-col h4 { font-family: 'Lato', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 700; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { font-size: 0.82rem; color: rgba(250,246,240,0.4); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.72rem; color: rgba(250,246,240,0.25); }
.footer-socials { display: flex; gap: 1.5rem; }
.footer-socials a { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,246,240,0.3); text-decoration: none; transition: color 0.3s; }
.footer-socials a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.8rem 2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 5rem 2rem; }
  .intro-strip { padding: 2.5rem 2rem; gap: 2.5rem; }
  .about-grid, .portal-wrap, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .events-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
}

/* ── Brand logo (SVG lockup) ── */
.nav-logo svg, .footer-logo svg { display:block; width:auto; height:30px; }
.nav-logo svg text, .footer-logo svg text { text-transform:none; letter-spacing:1px; transition:fill .3s; }
.nav-logo:hover svg text, .footer-logo:hover svg text { fill:#C9A96E; }

/* ── FORM FEEDBACK (site.js) ── */
/* Ensure [hidden] always wins, even on elements with display:grid/flex rules */
[hidden] { display: none !important; }
.form-msg { font-size: 0.8rem; line-height: 1.6; margin-bottom: 1.2rem; font-weight: 300; }
.form-msg-error { color: var(--gold-light); font-style: italic; border-left: 2px solid var(--gold); padding-left: 0.9rem; }
.form-msg-error a { color: var(--gold); text-decoration: none; }
.btn:disabled { opacity: 0.7; cursor: wait; }
.newsletter-success {
  display: block; width: 100%; padding: 0.7rem 1rem;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.95rem; color: var(--gold);
}
.newsletter-error { font-size: 0.72rem; color: var(--gold-light); font-style: italic; margin-top: 0.5rem; }
.contact-confirmation h3 { font-size: 1.7rem; line-height: 1.3; margin-bottom: 0.5rem; }
.contact-confirmation p { font-family: 'Playfair Display', serif; font-style: italic; color: rgba(250,246,240,0.7); font-size: 1.05rem; }

/* ── PAST EXPERIENCES (events.html, rendered from data/events.json) ── */
.past-exp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.past-exp-card {
  border: 1px solid var(--border); background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; overflow: hidden;
  transition: border-color 0.4s;
}
.past-exp-card:hover { border-color: var(--gold); }
.past-exp-media {
  height: 200px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
  display: flex; align-items: center; justify-content: center;
}
.past-exp-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.past-exp-placeholder { color: rgba(201,169,110,0.55); font-size: 1.4rem; }
.past-exp-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.past-exp-year { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.past-exp-title { font-size: 1.05rem; color: var(--ivory); line-height: 1.35; margin-bottom: 0.4rem; }
.past-exp-desc { font-size: 0.78rem; color: rgba(250,246,240,0.55); line-height: 1.55; font-weight: 300; flex: 1; }
.past-exp-toggle {
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Lato', sans-serif; font-size: 0.66rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); padding: 1rem 0 0; transition: color 0.3s;
}
.past-exp-toggle:hover { color: var(--gold-light); }
.past-exp-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; margin-top: 0.8rem; }
.past-exp-thumbs img {
  width: 100%; height: 64px; object-fit: cover; display: block; cursor: pointer;
  border: 1px solid var(--border); transition: border-color 0.3s;
}
.past-exp-thumbs img:hover { border-color: var(--gold); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(13,13,13,0.95);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 4.5rem 5.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 76vh; display: block; border: 1px solid var(--border); }
.lightbox-caption {
  margin-top: 1rem; min-height: 1.3em; text-align: center;
  font-size: 0.8rem; font-style: italic; color: rgba(250,246,240,0.6); font-weight: 300;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: var(--gold); font-size: 1.6rem; cursor: pointer; transition: color 0.3s;
}
.lightbox-close:hover { color: var(--gold-light); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; background: none; border: 1px solid var(--border);
  color: var(--gold); font-size: 1.1rem; cursor: pointer; transition: border-color 0.3s;
}
.lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
@media (max-width: 600px) {
  .lightbox { padding: 4rem 1rem 5.5rem; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 1.2rem; transform: none; }
  .lightbox-prev { left: 25%; }
  .lightbox-next { right: 25%; }
}

/* ── MEMBERS PORTAL — live states (site.js) ── */
.portal-note { font-size: 0.75rem; color: rgba(250,246,240,0.45); line-height: 1.7; margin-bottom: 1.2rem; font-weight: 300; }
.portal-note a { color: var(--gold); text-decoration: none; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.68rem; letter-spacing: 0.15em; }
.dash-widget-action { margin: 0.4rem 0 0.6rem; }
.portal-dash-grid { margin-top: 3rem; }
.portal-dash-grid .dash-widget { padding: 1.6rem; }
.portal-privileges { margin-top: 3.5rem; max-width: 640px; }
.portal-privileges .club-features { margin-bottom: 0; }
.portal-signout {
  margin-top: 3rem; background: none; border: 1px solid var(--border); cursor: pointer;
  color: rgba(250,246,240,0.45); font-family: 'Lato', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 0.6rem 1.4rem;
  transition: color 0.3s, border-color 0.3s;
}
.portal-signout:hover { color: var(--gold); border-color: var(--gold); }
