/* =================================================================
   EVENTS  —  shared styles for events.html and virtual-events.html
   Richmond Station  ·  ark solutions build
   Requires: base.css
================================================================= */

body { background: var(--paper); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.wrap--narrow { max-width: 900px; margin: 0 auto; padding: 0 40px; }

/* ----------------------------------------------------------------
   HEADER  (sticky frosted-wine, same pattern as menu.html)
---------------------------------------------------------------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(71,9,26,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(182,137,91,.3);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 28px 60px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .name { font-family: var(--display); font-weight: 500; font-size: 21px; letter-spacing: .04em; color: var(--paper); }
.brand .sub  { font-family: var(--label); font-size: 9px; letter-spacing: .42em; text-transform: uppercase; margin-top: 5px; color: var(--brass-light); }
.back {
  font-family: var(--label); font-size: 11.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brass-light);
  display: inline-flex; gap: 8px; align-items: center;
  transition: gap .3s var(--ease);
}
.back:hover { gap: 14px; }

/* ----------------------------------------------------------------
   PAGE HERO
---------------------------------------------------------------- */
.page-hero {
  background: var(--wine); color: var(--paper);
  padding: 110px 0 100px; text-align: center; position: relative; overflow: hidden;
}
/* subtle grid pattern */
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .04; pointer-events: none;
  background-image:
    linear-gradient(rgba(244,238,227,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,238,227,.6) 1px, transparent 1px);
  background-size: 46px 22px;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .section-eyebrow { justify-content: center; color: var(--brass-light); margin-bottom: 24px; }
.page-hero .section-eyebrow::before,
.page-hero .section-eyebrow::after { content: ""; width: 38px; height: 1px; background: var(--brass); }
.page-hero h1 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem); line-height: .96; letter-spacing: -.025em;
  margin-bottom: 28px;
}
.page-hero h1 em { font-style: italic; color: var(--brass-light); }
.page-hero p {
  font-size: 20px; font-weight: 300; color: rgba(244,238,227,.82);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.6;
}
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  font-family: var(--label); font-size: 12.5px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 600;
  padding: 14px 30px; border: 1px solid var(--brass-light);
  color: var(--paper); border-radius: 2px; display: inline-block;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s;
  cursor: pointer;
}
.btn:hover { background: var(--paper); color: var(--wine); border-color: var(--paper); }
.btn--solid { background: var(--wine-bright); border-color: var(--wine-bright); color: var(--paper) !important; }
.btn--solid:hover { background: var(--wine-deep); border-color: var(--wine-deep); color: var(--paper) !important; }
.btn--dark { border-color: var(--brass); color: var(--paper); }
.btn--dark:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--ink { border-color: var(--wine); color: var(--ink); background: none; }
.btn--ink:hover { background: var(--wine); color: var(--paper) !important; border-color: var(--wine); }

/* ----------------------------------------------------------------
   EVENT TYPE CARDS  (events.html)
---------------------------------------------------------------- */
.offerings { padding: 130px 0 140px; background: var(--paper); }
.offerings-intro { text-align: center; max-width: 680px; margin: 0 auto 80px; }
.offerings-intro h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1.06; letter-spacing: -.015em; margin-bottom: 22px;
}
.offerings-intro h2 em { font-style: italic; color: var(--wine); }
.offerings-intro p { color: var(--ink-soft); font-size: 19px; font-weight: 300; line-height: 1.6; }

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.offer-card {
  position: relative; border-radius: 3px; overflow: hidden;
  min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--wine-deep);
}
.offer-card-img {
  position: absolute; inset: 0;
}
.offer-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
}
.offer-card:hover .offer-card-img img { transform: scale(1.06); }
.offer-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,18,13,.1) 0%, rgba(23,18,13,.78) 60%, rgba(23,18,13,.92) 100%);
}
.offer-card-body { position: relative; z-index: 2; padding: 40px; color: var(--paper); }
.offer-card-body .num { font-family: var(--label); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 14px; display: block; }
.offer-card-body h3 { font-family: var(--display); font-weight: 400; font-size: 30px; margin-bottom: 12px; line-height: 1.1; }
.offer-card-body p { color: rgba(244,238,227,.78); font-size: 16px; font-weight: 300; line-height: 1.55; margin-bottom: 24px; }
.offer-card-body .go { font-family: var(--label); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-light); display: inline-flex; align-items: center; gap: 8px; transition: gap .3s; }
.offer-card:hover .offer-card-body .go { gap: 14px; }

/* ----------------------------------------------------------------
   WHY US  strip  (events.html)
---------------------------------------------------------------- */
.why { padding: 100px 0; background: var(--paper-2); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.why-item .n { font-family: var(--display); font-size: 46px; font-weight: 300; color: var(--wine); line-height: 1; margin-bottom: 12px; }
.why-item .t { font-family: var(--label); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); line-height: 1.6; }

/* ----------------------------------------------------------------
   CTA BAND  (shared)
---------------------------------------------------------------- */
.cta-band { padding: 130px 0; background: var(--ink); color: var(--paper); text-align: center; }
.cta-band h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem); line-height: 1.06; letter-spacing: -.015em; margin-bottom: 20px;
}
.cta-band h2 em { font-style: italic; color: var(--brass-light); }
.cta-band p { color: rgba(244,238,227,.72); font-weight: 300; font-size: 18px; max-width: 520px; margin: 0 auto 40px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   VIRTUAL FEATURES GRID  (virtual-events.html)
---------------------------------------------------------------- */
.features { padding: 130px 0; background: var(--paper); }
.features h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.06; letter-spacing: -.015em;
  margin-bottom: 60px; text-align: center;
}
.features h2 em { font-style: italic; color: var(--wine); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-item { padding: 36px; border: 1px solid rgba(23,18,13,.1); border-radius: 3px; }
.feature-item .icon { font-family: var(--display); font-size: 36px; color: var(--wine); margin-bottom: 16px; line-height: 1; }
.feature-item h3 { font-family: var(--display); font-weight: 400; font-size: 22px; margin-bottom: 10px; }
.feature-item p { color: var(--ink-soft); font-size: 16px; font-weight: 300; line-height: 1.55; }

/* ----------------------------------------------------------------
   EVENT TYPES  (virtual-events.html)
---------------------------------------------------------------- */
.event-types { padding: 100px 0; background: var(--paper-2); }
.event-types h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 3rem); letter-spacing: -.015em;
  margin-bottom: 50px; text-align: center;
}
.event-types h2 em { font-style: italic; color: var(--wine); }
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.type-item {
  background: var(--ink); color: var(--paper); padding: 44px 40px;
  transition: background .4s var(--ease);
}
.type-item:hover { background: var(--wine-deep); }
.type-item .num { font-family: var(--label); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 16px; display: block; }
.type-item h3 { font-family: var(--display); font-weight: 400; font-size: 24px; margin-bottom: 10px; }
.type-item p { color: rgba(244,238,227,.7); font-size: 15.5px; font-weight: 300; line-height: 1.5; }

/* ----------------------------------------------------------------
   HOW IT WORKS  (virtual-events.html)
---------------------------------------------------------------- */
.how { padding: 130px 0; background: var(--paper); }
.how h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.2rem); letter-spacing: -.015em;
  margin-bottom: 70px; text-align: center;
}
.how h2 em { font-style: italic; color: var(--wine); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(23,18,13,.12); border-radius: 3px; overflow: hidden; }
.step { padding: 44px 40px; border-right: 1px solid rgba(23,18,13,.12); border-bottom: 1px solid rgba(23,18,13,.12); }
.step:nth-child(3n) { border-right: none; }
.step:nth-last-child(-n+3) { border-bottom: none; }
.step .num { font-family: var(--display); font-size: 52px; font-weight: 300; color: var(--paper-3); line-height: 1; margin-bottom: 16px; }
.step h3 { font-family: var(--display); font-weight: 400; font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 15.5px; font-weight: 300; line-height: 1.55; }

/* ----------------------------------------------------------------
   TESTIMONIALS  (virtual-events.html)
---------------------------------------------------------------- */
.testimonials { padding: 120px 0; background: var(--wine); color: var(--paper); position: relative; }
.testimonials::before {
  content: ""; position: absolute; inset: 0; opacity: .05; pointer-events: none;
  background-image:
    linear-gradient(rgba(244,238,227,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,238,227,.6) 1px, transparent 1px);
  background-size: 46px 22px;
}
.testimonials .wrap { position: relative; z-index: 1; }
.testimonials h2 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2rem, 3.6vw, 2.8rem); letter-spacing: -.015em;
  margin-bottom: 60px; text-align: center;
}
.testimonials h2 em { font-style: italic; color: var(--brass-light); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: rgba(244,238,227,.06); border: 1px solid rgba(182,137,91,.24);
  border-radius: 3px; padding: 40px 36px;
}
.testi .stars { color: var(--brass-light); letter-spacing: .3em; font-size: 13px; margin-bottom: 20px; }
.testi blockquote { font-family: var(--display); font-style: italic; font-size: 19px; font-weight: 300; line-height: 1.5; color: rgba(244,238,227,.9); margin-bottom: 22px; }
.testi cite { font-family: var(--label); font-style: normal; font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--brass-light); }

/* ----------------------------------------------------------------
   VIRTUAL LINK BAND  (events.html — link to virtual events)
---------------------------------------------------------------- */
.virtual-band {
  padding: 70px 0; background: var(--paper-3);
  display: flex; align-items: center; justify-content: center; gap: 32px;
  flex-wrap: wrap; text-align: center;
}
.virtual-band p { font-family: var(--display); font-size: 22px; font-style: italic; color: var(--ink); }

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
footer { background: var(--ink); color: var(--paper); padding: 70px 0 40px; }
.foot-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(244,238,227,.12); margin-bottom: 34px; }
.foot-brand .name { font-family: var(--display); font-size: 28px; font-weight: 400; margin-bottom: 12px; }
.foot-brand p { color: rgba(244,238,227,.55); font-size: 15px; font-weight: 300; max-width: 280px; line-height: 1.6; }
.foot-links { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col h4 { font-family: var(--label); font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 18px; }
.foot-col a { display: block; color: rgba(244,238,227,.7); margin-bottom: 11px; font-size: 15px; font-weight: 300; transition: color .3s, padding-left .3s; }
.foot-col a:hover { color: var(--brass-light); padding-left: 5px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.foot-bottom p { font-family: var(--label); font-size: 10.5px; letter-spacing: .12em; color: rgba(244,238,227,.4); }
.socials { display: flex; gap: 20px; }
.socials a { font-family: var(--label); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(244,238,227,.6); transition: color .3s; }
.socials a:hover { color: var(--brass-light); }

/* ----------------------------------------------------------------
   SCROLL REVEAL
---------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 980px) {
  .offer-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(3n)          { border-right: 1px solid rgba(23,18,13,.12); }
  .step:nth-child(2n)          { border-right: none; }
  .step:nth-last-child(-n+3)   { border-bottom: 1px solid rgba(23,18,13,.12); }
  .step:nth-last-child(-n+2)   { border-bottom: none; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .foot-inner { flex-direction: column; }
  .foot-links { gap: 32px; }
}
@media (max-width: 860px) {
  .wrap.nav { padding: 24px 44px; }
}
@media (max-width: 640px) {
  .wrap, .wrap--narrow { padding: 0 24px; }
  .wrap.nav { padding: 20px 24px; }
  .brand .name { font-size: 15px; letter-spacing: .03em; }
  .back { font-size: 10px; letter-spacing: .12em; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none !important; }
  .step:nth-last-child(-n+3) { border-bottom: 1px solid rgba(23,18,13,.12) !important; }
  .step:last-child { border-bottom: none !important; }
  .virtual-band { flex-direction: column; gap: 20px; }
}
