/* ============================================================
   WAYNENT V2 — homepage.css
   Homepage (/) specific styles
   ============================================================ */

/* ---- Hero ---- */
.home-hero {
  min-height: 100vh;
  background: var(--gotham-void);
  display: flex;
  align-items: center;
  padding-top: 88px;
  text-align: center;
}

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

.home-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sacred-gold);
  margin-bottom: 32px;
  display: block;
}

.home-hero-headline {
  font-size: clamp(48px, 7.5vw, 108px);
  color: var(--ghost-white);
  line-height: 0.9;
  margin-bottom: 40px;
}

.home-hero-headline .riba-word {
  color: var(--crimson-signal);
}

.home-hero-sub {
  font-size: 19px;
  color: var(--mist);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

/* ---- Four Pillars Section ---- */
.pillars-section {
  background: var(--gotham-shadow);
  padding: var(--section-pad-v) 0;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.pillar-card {
  background: var(--gotham-void);
  border: 1px solid var(--gotham-steel);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--crimson-signal);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card:hover {
  border-color: rgba(201,169,97,0.25);
  transform: translateY(-4px);
  background: var(--gotham-shadow);
}

.pillar-number {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--crimson-signal);
}

.pillar-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--ghost-white);
  line-height: 0.95;
}

.pillar-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sacred-gold);
}

.pillar-body {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.6;
  flex: 1;
}

.pillar-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ghost-white);
  opacity: 0.5;
  transition: opacity 0.2s;
  margin-top: 8px;
}

.pillar-card:hover .pillar-cta {
  opacity: 1;
  color: var(--sacred-gold);
}

/* ---- The Man Section ---- */
.home-man-section {
  background: var(--gotham-void);
  padding: var(--section-pad-v) 0;
}

.home-man-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-man-name {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--ghost-white);
  margin-bottom: 16px;
}

.home-man-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sacred-gold);
  margin-bottom: 28px;
}

.home-man-body {
  font-size: 17px;
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 32px;
}

.home-man-linkedin {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mist);
  transition: color 0.2s;
}

.home-man-linkedin:hover {
  color: var(--sacred-gold);
}

/* ---- The Horizon Section ---- */
.horizon-section {
  background: var(--gotham-shadow);
  padding: var(--section-pad-v) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.horizon-year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(120px, 20vw, 240px);
  color: var(--sacred-gold);
  opacity: 0.06;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.horizon-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.horizon-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sacred-gold);
  margin-bottom: 24px;
  display: block;
}

.horizon-headline {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--ghost-white);
  margin-bottom: 32px;
}

.horizon-body {
  font-size: 18px;
  color: var(--mist);
  line-height: 1.75;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .home-man-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .horizon-year {
    font-size: clamp(80px, 25vw, 160px);
  }
}
