/* ============================================================
   EVENTS PAGE — events.html
============================================================ */

:root {
  --faq-icon-bg:      #EEF8FD;
  --accordion-border: #E0D8CE;
  --accordion-hover:  #F9F6F1;
}

.section { padding: 64px 0; }

/* ============================================================
   PAGE HERO
============================================================ */
.page-hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(74,184,232,.2) 0%, transparent 60%),
    radial-gradient(circle, rgba(255,255,255,.5) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 100% 100%, 150px 150px, 220px 220px;
  background-position: center, 20px 30px, 80px 70px;
  padding: 56px 20px 52px;
  text-align: center;
  color: #FFF;
}
.page-hero-eyebrow { display: inline-block; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; }
.page-hero-title   { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3rem); line-height: 1.1; margin-bottom: 14px; }
.page-hero-sub     { font-size: .97rem; font-weight: 600; color: rgba(255,255,255,.72); max-width: 560px; margin: 0 auto 28px; line-height: 1.65; }
.page-hero-ctas    { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================================================
   TRUST BAR
============================================================ */
.ev-trust { background: var(--sky); }
.ev-trust-inner {
  display: flex; flex-wrap: wrap; justify-content: center;
}
.ev-trust-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 22px 32px; flex: 1 1 160px; text-align: center;
  border-right: 1.5px solid rgba(255,255,255,.3); color: #FFF;
}
.ev-trust-item:last-child { border-right: none; }
.ev-trust-num   { font-family: var(--font-display); font-size: 2rem; line-height: 1; margin-bottom: 5px; }
.ev-trust-label { font-size: .82rem; font-weight: 700; opacity: .88; line-height: 1.35; }
.ev-trust-item--text .ev-trust-label { font-size: 1rem; }

/* ============================================================
   EVENT TYPE CARDS
============================================================ */
.event-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .event-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .event-grid { grid-template-columns: repeat(3, 1fr); } }

.event-card {
  background: var(--card-bg); border-radius: var(--radius-lg); padding: 26px 22px;
  box-shadow: var(--shadow-sm); border: 2px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover       { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-card-icon  { font-size: 1.9rem; margin-bottom: 12px; }
.event-card-title { font-family: var(--font-display); font-size: 1.05rem; color: var(--heading); margin-bottom: 8px; transition: color .3s; }
.event-card-text  { font-size: .86rem; font-weight: 600; color: var(--text-2); line-height: 1.65; transition: color .3s; }

/* ============================================================
   VENUE PHOTO STRIP
============================================================ */
.ev-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 260px;
  overflow: hidden;
}
@media (max-width: 599px) {
  .ev-photo-strip { grid-template-columns: 1fr; height: auto; }
  .ev-photo-strip > div { height: 200px; }
}
.ev-photo-strip > div { overflow: hidden; }
.ev-photo-strip-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.ev-photo-strip > div:hover .ev-photo-strip-img { transform: scale(1.04); }

/* ============================================================
   WHAT WE BRING
============================================================ */
.bring-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 700px) { .bring-grid { grid-template-columns: repeat(3, 1fr); } }

.bring-item {
  background: var(--card-bg); border-radius: var(--radius-lg); padding: 32px 26px;
  box-shadow: var(--shadow-sm); border: 2px solid var(--border); text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bring-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bring-icon  { font-size: 2.2rem; margin-bottom: 14px; }
.bring-title { font-family: var(--font-display); font-size: 1.12rem; color: var(--heading); margin-bottom: 10px; transition: color .3s; }
.bring-text  { font-size: .88rem; font-weight: 600; color: var(--text-2); line-height: 1.7; transition: color .3s; }

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-steps { display: grid; grid-template-columns: 1fr; gap: 24px; position: relative; }
@media (min-width: 700px) {
  .how-steps { grid-template-columns: repeat(3, 1fr); }
  .how-steps::before {
    content: '';
    position: absolute; top: 27px;
    left: calc(16.66% + 28px); right: calc(16.66% + 28px);
    height: 2px; background: var(--border); z-index: 0;
  }
}
.how-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.how-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: #FFF;
  font-family: var(--font-display); font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: var(--shadow-md);
}
.how-step-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--heading); margin-bottom: 10px; transition: color .3s; }
.how-step-text  { font-size: .88rem; font-weight: 600; color: var(--text-2); line-height: 1.65; transition: color .3s; }

/* ============================================================
   FAQ
============================================================ */
.faq-layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 860px) {
  .faq-layout { grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
}

.faq-toc { display: none; }
@media (min-width: 860px) {
  .faq-toc { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 88px; }
}
.toc-label {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; transition: color .3s;
}
.toc-link {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 700; color: var(--text-2);
  padding: 8px 12px; border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.toc-link:hover  { background: var(--bg-alt); color: var(--text-1); }
.toc-link.active { color: var(--orange); border-left-color: var(--orange); background: var(--bg-alt); }

.faq-groups { display: flex; flex-direction: column; gap: 48px; }
.faq-group-title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.3rem; color: var(--heading);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border); transition: color .3s, border-color .3s;
}
.faq-group-icon {
  width: 40px; height: 40px; background: var(--faq-icon-bg);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}

.faq-item {
  border: 1.5px solid var(--accordion-border);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 10px; background: var(--card-bg);
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item:hover      { box-shadow: var(--shadow-sm); }
.faq-item[open]      { box-shadow: var(--shadow-md); }

.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; cursor: pointer;
  font-weight: 800; font-size: .95rem; color: var(--text-1);
  line-height: 1.4; list-style: none;
  transition: background var(--transition), color .3s; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover      { background: var(--accordion-hover); }
.faq-item[open] summary      { color: var(--orange); border-bottom: 1.5px solid var(--accordion-border); }

.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--bg-alt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--text-muted);
  transition: transform .25s ease, background .25s;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); background: var(--orange); color: #FFF; }

.faq-answer {
  padding: 16px 20px 20px; font-size: .9rem; font-weight: 600;
  color: var(--text-2); line-height: 1.7; transition: color .3s;
}
.faq-answer p + p { margin-top: 10px; }
.faq-answer .note {
  margin-top: 12px; padding: 10px 14px;
  background: var(--bg-alt); border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 700; color: var(--text-2);
  border-left: 3px solid var(--sky);
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.ev-contact-section { background: var(--navy); }
.ev-contact-section .eyebrow   { color: var(--yellow); }
.ev-contact-section .sec-title { color: #FFF; }
.ev-contact-section .sec-sub   { color: rgba(255,255,255,.68); }

.ev-contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 720px) { .ev-contact-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 56px; } }

.ev-contact-info { display: flex; flex-direction: column; gap: 16px; }

.ev-phone {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.6rem); color: var(--yellow);
  transition: opacity .2s;
}
.ev-phone:hover { opacity: .85; }

.ev-address {
  font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.ev-email-link {
  font-size: .9rem; font-weight: 800; color: var(--sky); transition: opacity .2s;
}
.ev-email-link:hover { opacity: .8; }

.ev-ig-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 800; color: #FFF;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2);
  padding: 11px 20px; border-radius: var(--radius-full);
  transition: background var(--transition);
  width: fit-content;
}
.ev-ig-link:hover { background: rgba(255,255,255,.18); }

.ev-form { display: flex; flex-direction: column; gap: 12px; }
.ev-input, .ev-textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md); color: #FFF;
  font-family: var(--font-body); font-size: .93rem; font-weight: 600;
  transition: border-color .2s, background .2s;
}
.ev-input::placeholder, .ev-textarea::placeholder { color: rgba(255,255,255,.38); }
.ev-input:focus, .ev-textarea:focus {
  outline: none; border-color: var(--sky); background: rgba(255,255,255,.12);
}
.ev-textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   CROSSLINK BANNER
============================================================ */
.ev-crosslink {
  background: var(--bg-alt); border-top: 2px solid var(--border);
  padding: 40px 20px; text-align: center;
}
.ev-crosslink-text {
  font-size: .97rem; font-weight: 700; color: var(--text-2);
  margin-bottom: 18px; line-height: 1.65; max-width: 520px; margin-left: auto; margin-right: auto;
}
.ev-crosslink-text strong { color: var(--heading); }
