/*
 * home.css
 *  — Ecological Luxury Design System
 * Page: Home / Landing — Page-specific styles only
 * Version: 1.0 — April 2026
 *
 * Global tokens, nav, footer, typography, and shared
 * components are in global.css (loaded first).
 * ═══════════════════════════════════════════════════════
 */


/* ═══════════════════════════════════════════════════════
   HONOURS BAR
   ═══════════════════════════════════════════════════════ */
.page-home .honours-bar {
  border-top: 1px solid rgba(74,94,62,0.4);
  border-bottom: 1px solid rgba(74,94,62,0.4);
  padding: clamp(2rem, 4vw, 3.5rem) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
.page-home .honours-bar .honour { text-align: center; }
.page-home .honour-divider {
  background: linear-gradient(to bottom, transparent, rgba(74,94,62,0.6), transparent);
  height: 80px;
  justify-self: center;
}
.page-home .honour .eyebrow {
  justify-content: center;
  display: block;
}
.page-home .honour h3 {
  font-size: clamp(0.95rem, 1.3vw, 1.3rem);
  margin-bottom: 0.4rem;
  text-align: center;
}
.page-home .honour p {
  font-size: 0.85em;
  text-align: center;
  margin: 0;
}
@media (max-width: 900px) {
  .page-home .honours-bar { grid-template-columns: 1fr; }
  .page-home .honour-divider { display: none; }
}


/* ═══════════════════════════════════════════════════════
   INTERNAL LINKS — CJW STYLE
   ═══════════════════════════════════════════════════════ */
.cjw-link {
  display: inline-block;
  margin-top: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(184,147,74,0.3);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.cjw-link:hover {
  color: var(--white);
  border-color: var(--white);
}


/* ═══════════════════════════════════════════════════════
   BRAND PARTNERSHIPS GRID
   Text-only grid — brand logos can replace text when
   assets are available.
   ═══════════════════════════════════════════════════════ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(74,94,62,0.15);
  border: 1px solid rgba(74,94,62,0.15);
  margin-top: 3rem;
}
.brand-item {
  background: var(--deep);
  padding: clamp(2rem, 4vw, 3rem) 1.5rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--body);
  transition: color 0.3s ease, background 0.3s ease;
}
.brand-item:hover {
  color: var(--gold);
  background: var(--surface);
}
@media (max-width: 768px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }
}
