/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--white);
}
.hero-image-wrap {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(253,252,250,0.15) 0%, transparent 60%);
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 64px;
  background: var(--white);
  position: relative;
  z-index: 2;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: 80px; left: 64px;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  margin: 20px 0 24px;
  letter-spacing: -1px;
}
.hero-headline em {
  font-style: italic;
  color: var(--off-black);
}
.hero-sub {
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 0.5px;
  line-height: 2;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); transform-origin: top; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .hero-image-wrap {
    height: 55vw;
    min-height: 320px;
    max-height: 520px;
    order: -1;
  }
  .hero-content {
    padding: 48px 24px 64px;
  }
  .hero-content::before { left: 24px; top: 48px; }
  .hero-scroll-hint { display: none; }
}

/* ---- PILLARS ---- */
.pillars {
  background: var(--cream);
  padding: 96px 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pillar { padding-top: 24px; }
.pillar-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}
.pillar h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  font-family: var(--font-serif);
}
.pillar p { font-size: 14px; color: #555; line-height: 1.85; }

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

/* ---- SSB FEATURE ---- */
.ssb-feature {
  background: var(--black);
  padding: 112px 0;
}
.ssb-feature-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ssb-headline {
  font-size: clamp(48px, 6vw, 80px);
  color: var(--white);
  line-height: 1.05;
  margin: 16px 0 24px;
}
.ssb-desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 36px;
}
.ssb-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.ssb-pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
  transition: background 0.3s;
}
.ssb-pillar-card:hover { background: rgba(201,169,110,0.08); border-color: rgba(201,169,110,0.2); }
.ssb-num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  font-weight: 300;
}
.ssb-pillar-card h4 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.ssb-pillar-card p { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.7; }

@media (max-width: 900px) {
  .ssb-feature-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .ssb-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .ssb-pillars { grid-template-columns: 1fr; } }

/* ---- CREDENTIALS ---- */
.creds { background: var(--white); padding: 80px 0; }
.creds-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--gray-light);
}
.cred-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-light);
  transition: background 0.3s;
}
.cred-item:last-child { border-right: none; }
.cred-item:hover { background: var(--cream); }
.cred-icon { font-size: 24px; margin-bottom: 12px; }
.cred-item p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--black);
  font-weight: 400;
}
.cred-item small { color: var(--gray); font-size: 11px; }

@media (max-width: 1000px) { .creds-grid { grid-template-columns: repeat(3, 1fr); } .cred-item:nth-child(3) { border-right: none; } }
@media (max-width: 600px) { .creds-grid { grid-template-columns: repeat(2, 1fr); } .cred-item:nth-child(2n) { border-right: none; } .cred-item { border-bottom: 1px solid var(--gray-light); } }

/* ---- FEATURED CONTENT ---- */
.featured-content { background: var(--cream); }
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.content-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(14,14,14,0.08);
}
.content-card-dark {
  background: var(--black);
  display: flex;
  align-items: center;
}
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 62%;
  overflow: hidden;
  background: var(--cream-dark);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.content-card-body {
  padding: 24px 28px 28px;
}
.content-card-body-dark {
  padding: 40px 32px;
}
.content-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.content-tag-light { color: var(--gold-light); }
.content-card-body h4 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.content-card-body p { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.content-link {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.content-link:hover { color: var(--gold); }
.content-link-light { color: var(--gold-light); border-color: var(--gold); }
.content-link-light:hover { color: var(--white); }

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

/* ---- QUOTE ---- */
.quote-section {
  background: var(--blush);
  padding: 80px 0;
  text-align: center;
}
.site-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
  quotes: none;
}

/* ---- PARTNER PREVIEW ---- */
.partner-preview {
  background: var(--black);
  padding: 112px 0;
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.partner-text h2 {
  color: var(--white);
  font-size: clamp(36px, 4.5vw, 58px);
  margin: 16px 0 24px;
}
.partner-text p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 36px;
}
.partner-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.initiative-card {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  transition: border-color 0.3s;
}
.initiative-card:hover { border-top-color: var(--gold); }
.initiative-card h5 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.initiative-card p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.75; }

@media (max-width: 900px) {
  .partner-grid { grid-template-columns: 1fr; gap: 48px; }
}
