/* ============================================================
   HOME SECTIONS — hero, services nav, pillars, stats, journal
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video,
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image--placeholder {
  background: #1a1a1a;
}

/* Multi-layer overlay: subtle vignette + bottom fade */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(17,17,17,0.5) 100%),
    linear-gradient(to bottom, rgba(17,17,17,0.2) 0%, transparent 40%, rgba(17,17,17,0.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__inner {
  max-width: 820px;
}

.hero__eyebrow {
  display: block;
  margin-bottom: var(--space-6);
}

.hero__heading {
  color: var(--cp-cream);
  margin-bottom: var(--space-6);
}

.hero__subheading {
  font-size: var(--text-lg);
  color: rgba(247, 244, 239, 0.75);
  max-width: 52ch;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--cp-gold));
  margin: 0 auto;
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line { animation: none; opacity: 0.4; }
}

/* Push content down from fixed header */
.hero .hero__content {
  padding-top: 80px;
}

/* ============================================================
   SERVICES NAV
   ============================================================ */

.services-nav {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.services-nav__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--color-border);
}

@media (max-width: 960px) {
  .services-nav__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .services-nav__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-8) var(--space-4);
  background: #111111;
  text-align: center;
  text-decoration: none;
  transition: background var(--duration-base) var(--ease-out);
  cursor: pointer;
}

.service-tile:hover {
  background: rgba(201, 169, 110, 0.06);
}

.service-tile:hover .service-tile__icon {
  color: var(--cp-gold);
  transform: translateY(-3px);
}

.service-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--cp-muted-light);
  transition: color var(--duration-base), transform var(--duration-base) var(--ease-out);
}

.service-tile__icon svg {
  width: 28px;
  height: 28px;
}

.service-tile__label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cp-muted-light);
  transition: color var(--duration-base);
  line-height: 1.4;
}

.service-tile:hover .service-tile__label {
  color: var(--cp-gold);
}

/* ============================================================
   FEATURED EXPERIENCES
   ============================================================ */

.experiences-featured {
  background: #111111;
}

.experiences-featured .section-heading p {
  max-width: 56ch;
}

/* ============================================================
   PILLARS
   ============================================================ */

.pillars {
  background: rgba(247, 244, 239, 0.02);
  border-top: 1px solid var(--color-border);
}

.pillars__grid {
  margin-top: var(--space-4);
}

.pillar {
  padding: var(--space-8) 0;
}

.pillar__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: rgba(201, 169, 110, 0.15);
  display: block;
  margin-bottom: var(--space-4);
  line-height: 1;
}

.pillar .divider--short {
  margin-block: var(--space-5);
}

.pillar__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--cp-cream);
  margin-bottom: var(--space-4);
}

.pillar__text {
  font-size: var(--text-sm);
  color: var(--cp-muted-light);
  line-height: 1.8;
  max-width: 36ch;
}

/* ============================================================
   STATS BAND
   ============================================================ */

.stats-band {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
}

@media (max-width: 700px) {
  .stats-band__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-12) var(--space-6);
  background: #111111;
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--cp-gold);
  line-height: 1;
}

.stat__label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cp-muted);
}

/* ============================================================
   JOURNAL PREVIEW
   ============================================================ */

.journal-preview {
  background: rgba(255,255,255,0.01);
}

.journal-preview .section-heading.flex {
  align-items: flex-end;
  margin-bottom: var(--space-12);
}

@media (max-width: 700px) {
  .journal-preview .section-heading.flex {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
}

.journal-preview .card {
  background: rgba(255,255,255,0.02);
  border-color: var(--color-border);
}

.journal-preview .card__title a {
  color: var(--cp-cream);
  transition: color var(--duration-fast);
}

.journal-preview .card__title a:hover {
  color: var(--cp-gold);
}
