/* ==========================================================================
   CORPORATE PAGE
   Hero with logo wall above the fold, stats band, event types, why grid.
   Feature-row (dark variant) and photo-strip (dark) live in components.css.
   ========================================================================== */

/* HERO ------------------------------------------------------------------ */
.hero {
  min-height: 92vh;
  background:
    linear-gradient(180deg, rgba(14, 16, 20, 0.4) 0%, rgba(14, 16, 20, 0.95) 100%),
    linear-gradient(135deg, #0E1014 0%, #1A1D24 50%, #1A2530 100%);
  color: var(--cream);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(200, 168, 107, 0.15), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 90, 150, 0.18), transparent 55%);
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  background:
    linear-gradient(90deg, rgba(14, 16, 20, 1) 0%, rgba(14, 16, 20, 0.15) 25%, rgba(14, 16, 20, 0) 50%),
    linear-gradient(180deg, rgba(14, 16, 20, 0) 60%, rgba(14, 16, 20, 0.5) 100%),
    url('../images/portraits/stephen-scaccia-wine-suit-portrait.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.95;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 160px 48px 60px;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-photo { z-index: 1; }
.hero .hero-decor { z-index: 2; }
.logo-wall { z-index: 4; }
.hero-content { max-width: 640px; }
.hero-eyebrow { color: var(--gold); display: inline-block; margin-bottom: 24px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.8vw, 88px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-tagline {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(245, 241, 232, 0.82);
  max-width: 540px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* LOGO WALL (above the fold) ------------------------------------------- */
.logo-wall {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(14, 16, 20, 0.85);
  backdrop-filter: blur(8px);
  padding: 28px 48px;
}
.logo-wall-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.logo-wall-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.logo-list {
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}
.logo-item {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: rgba(245, 241, 232, 0.85);
  letter-spacing: 0.02em;
  border-left: 1px solid var(--line);
  padding-left: 56px;
  transition: color 0.3s;
}
.logo-item:first-child { border-left: none; padding-left: 0; }
.logo-item:hover { color: var(--gold); }

/* STATS BAND ----------------------------------------------------------- */
.stats {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 48px;
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.stat {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
  font-feature-settings: 'tnum';
}
.stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(245, 241, 232, 0.75);
}

/* EVENT TYPES (light cards, hover dark) -------------------------------- */
.events { background: var(--cream-warm); }
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.event {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line-dark);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    background 0.5s ease;
}
.event::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}
.event:hover {
  transform: translateY(-8px);
  border-color: var(--gold-deep);
  box-shadow: 0 24px 50px rgba(14, 16, 20, 0.12);
}
.event:hover::before { transform: scaleX(1); }
.event:hover .event-icon {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  background: rgba(200, 168, 107, 0.08);
}
.event-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  transition: all 0.3s;
}
.event h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}
.event p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.event-detail {
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.3s;
}

/* REEL section background (dark) -------------------------------------- */
.reel { background: var(--ink); color: var(--cream); }

/* WHY GRID ------------------------------------------------------------- */
.why { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.why-item {
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}
.why-item h3 em {
  font-style: italic;
  color: var(--gold-deep);
}
.why-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* Testimonials background */
.testimonials { background: var(--cream-warm); }

/* MOBILE -------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-photo {
    width: 100%;
    opacity: 0.45;
    background:
      linear-gradient(180deg, rgba(14, 16, 20, 0.5) 0%, rgba(14, 16, 20, 0.25) 30%, rgba(14, 16, 20, 0.85) 100%),
      url('../images/portraits/stephen-scaccia-wine-suit-portrait.jpg');
    background-size: cover;
    background-position: center 30%;
  }
  .hero-inner { padding: 130px 24px 60px; }
  .logo-wall { padding: 24px 20px; }
  .logo-wall-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }
  .logo-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    justify-items: center;
    width: 100%;
  }
  .logo-item {
    border-left: none;
    padding-left: 0;
    font-size: 14px;
  }
  .stats { padding: 60px 24px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-num { font-size: 44px; }
  .event-grid { grid-template-columns: 1fr; }
  .event { padding: 32px 24px; grid-template-columns: 56px 1fr; }
  .event-icon { width: 48px; height: 48px; font-size: 18px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
}
