/* ── EVENTS PAGE ─────────────────────────────────────────────── */
/* Owns: /events page — hero, private events, Lightner partnership,
   corporate & groups, photo gallery, inquiry section.             */
/* Does NOT own: global nav (.ev-nav), footer, or theme vars.     */

.ev-page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}

/* ── NAV ── */
.ev-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: var(--cream-deep);
  border-bottom: 1px solid rgba(44,24,16,0.06);
  backdrop-filter: blur(8px);
}

.ev-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.ev-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ev-nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.ev-nav-links a:hover,
.ev-nav-links a.active {
  color: var(--mahogany);
  border-bottom-color: var(--brass);
}

/* ── HERO ── */
.ev-hero {
  background: var(--mahogany);
  position: relative;
  overflow: hidden;
}

.ev-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--brass) 0px,
    var(--brass) 48px,
    transparent 48px,
    transparent 64px
  );
  opacity: 0.25;
}

.ev-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 40px 88px;
  position: relative;
}

.ev-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 20px;
  display: block;
}

.ev-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.ev-hero-lede {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(245,239,230,0.6);
  line-height: 1.75;
  font-weight: 300;
  max-width: 500px;
}

/* ── BRASS RULE ── */
.ev-brass-rule {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(196,149,106,0.35) 20%,
    rgba(196,149,106,0.35) 80%,
    transparent 100%
  );
  margin: 0 40px;
}

/* ── SECTION SCAFFOLDING ── */
.ev-section {
  padding: 88px 40px;
}

.ev-cream-bg    { background: var(--cream); }
.ev-mahogany-bg { background: var(--mahogany); }

.ev-inner {
  max-width: 960px;
  margin: 0 auto;
}

.ev-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Two-column layout */
.ev-two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── SECTION TYPOGRAPHY ── */
.ev-section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 12px;
  display: block;
}

.ev-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--mahogany);
  font-weight: 700;
  line-height: 1.2;
}

.ev-label-col {
  position: sticky;
  top: 88px;
}

.ev-body-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ev-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  font-weight: 300;
}

.ev-text-light {
  color: rgba(245,239,230,0.65);
}

.ev-light {
  /* Used on mahogany backgrounds */
}

/* ── SERVICE CARDS ── */
.ev-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.ev-service-card {
  background: rgba(196,149,106,0.05);
  border: 1px solid rgba(196,149,106,0.15);
  border-radius: 6px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ev-service-icon {
  opacity: 0.85;
}

.ev-service-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--mahogany);
  line-height: 1.3;
}

.ev-service-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── GROUP GRID ── */
.ev-group-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.ev-group-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(196,149,106,0.05);
  border: 1px solid rgba(196,149,106,0.12);
  border-radius: 6px;
}

.ev-group-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(196,149,106,0.08);
  border-radius: 50%;
  opacity: 0.9;
}

.ev-group-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--mahogany);
  margin-bottom: 6px;
  line-height: 1.3;
}

.ev-group-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── LIGHTNER SECTION ── */
.ev-lightner-cta {
  margin-top: 12px;
}

.ev-external-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,149,106,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.ev-external-link:hover {
  color: #d4a87a;
  border-color: #d4a87a;
}

/* ── GALLERY ── */
.ev-gallery-section {
  background: var(--cream-deep);
  border-top: 2px solid rgba(196,149,106,0.1);
  border-bottom: 2px solid rgba(196,149,106,0.1);
}

.ev-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ev-gallery-slot {
  aspect-ratio: 4 / 3;
  background: rgba(196,149,106,0.08);
  border: 1px dashed rgba(196,149,106,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ev-gallery-slot span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(196,149,106,0.45);
  padding: 0 12px;
  line-height: 1.5;
}

/* ── INQUIRY CARD ── */
.ev-inquiry-card {
  width: 100%;
  max-width: 480px;
  background: rgba(245,239,230,0.04);
  border: 1px solid rgba(196,149,106,0.2);
  border-radius: 6px;
  overflow: hidden;
}

.ev-inquiry-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(196,149,106,0.1);
}

.ev-inquiry-detail:last-child {
  border-bottom: none;
}

.ev-inquiry-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}

.ev-inquiry-value {
  font-size: 15px;
  color: rgba(245,239,230,0.85);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ev-inquiry-value em {
  font-style: normal;
  color: var(--cream);
  font-weight: 400;
}

/* ── TODO NOTE ── */
.ev-todo-note {
  font-size: 11px;
  color: rgba(196,149,106,0.55);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-weight: 400;
}

.ev-todo-dark {
  color: rgba(196,149,106,0.45);
}

.ev-todo-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(196,149,106,0.5);
  border: 1px solid rgba(196,149,106,0.25);
  padding: 2px 8px;
  border-radius: 10px;
}

/* ── HAMBURGER / DRAWER (shared) ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 4px;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,24,16,0.4);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.25s;
}

.nav-overlay.visible {
  display: block;
  opacity: 1;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: var(--cream);
  z-index: 201;
  padding: 24px;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -4px 0 24px rgba(44,24,16,0.15);
}

.nav-drawer.open {
  display: flex;
  transform: translateX(0);
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.nav-drawer-close {
  background: none;
  border: none;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 4px;
}

.nav-drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.nav-drawer-links a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(44,24,16,0.06);
  transition: color 0.2s;
}

.nav-drawer-links a:hover,
.nav-drawer-links a.active {
  color: var(--mahogany);
}

.nav-drawer-waitlist {
  display: inline-block;
  padding: 12px 20px;
  background: var(--mahogany);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  margin-top: 24px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--mahogany-deep);
  padding: 28px 40px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(245,239,230,0.5);
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--cream);
}

.footer-sep {
  color: rgba(196,149,106,0.3);
}

.footer-meta {
  font-size: 12px;
  color: rgba(245,239,230,0.35);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ev-nav {
    padding: 0 24px;
  }

  .ev-nav-links {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .ev-hero-inner {
    padding: 56px 24px 64px;
  }

  .ev-section {
    padding: 56px 24px;
  }

  .ev-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ev-label-col {
    position: static;
  }

  .ev-service-grid {
    grid-template-columns: 1fr;
  }

  .ev-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .ev-nav-links {
    gap: 14px;
  }

  .ev-nav-links a {
    font-size: 12px;
  }

  .ev-hero-title {
    font-size: 36px;
  }

  .ev-section-title {
    font-size: 22px;
  }

  .ev-gallery-grid {
    grid-template-columns: 1fr;
  }

  .ev-inquiry-card {
    max-width: 100%;
  }

  .ev-brass-rule {
    margin: 0 24px;
  }
}