/* HOME PAGE */

/* HERO */
.home-hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 6rem 2.5rem 5rem;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: var(--rust);
  bottom: -150px; left: -100px;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.home-hero-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: 'DM Sans', sans-serif;
}

.home-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--paper);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}
.home-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.home-hero-sub {
  font-size: 1rem;
  color: rgba(245,240,232,0.5);
  max-width: 52ch;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.home-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-hero-scroll {
  position: absolute;
  bottom: 2.5rem; right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(245,240,232,0.25);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.25), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* NUMBERS */
.home-numbers {
  background: var(--paper-dark);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0;
}
.numbers-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.number-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  min-width: 150px;
}
.number-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.number-val sup {
  font-size: 0.5em;
  vertical-align: super;
}
.number-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.number-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
  flex-shrink: 0;
}

/* WHAT I DO */
.home-what {
  padding: 7rem 0;
}
.home-what-header {
  margin-bottom: 4rem;
}
.what-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.what-card {
  background: var(--paper);
  padding: 2.8rem 2.2rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.what-card:hover { background: var(--paper-dark); }
.what-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(26,22,18,0.06);
  line-height: 1;
  margin-bottom: 1rem;
}
.what-card-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.what-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}
.what-card-body {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}
.what-card-arrow {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.2s;
}
.what-card:hover .what-card-arrow { transform: translateX(5px); }

/* HOME QUOTE */
.home-quote {
  background: var(--ink);
  padding: 6rem 0;
  position: relative;
}
.home-quote::before,
.home-quote::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.home-quote::before { top: 0; }
.home-quote::after { bottom: 0; }

.home-quote-inner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.home-quote-inner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: var(--paper);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.home-quote-inner cite {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* JOURNEY */
.home-journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.home-journey-left {
  padding: 6rem 4rem 6rem 2rem;
  max-width: 560px;
  margin-left: auto;
}
.journey-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.home-journey-right {
  background: var(--paper-dark);
  border-left: 1px solid var(--line);
  padding: 6rem 3rem;
  display: flex;
  align-items: center;
}
.journey-timeline {
  width: 100%;
}
.jt-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
  opacity: 0.4;
  transition: opacity 0.25s;
}
.jt-item:hover,
.jt-item.active { opacity: 1; }
.jt-item:last-child { border-bottom: none; }
.jt-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 4.5rem;
  padding-top: 0.1rem;
}
.jt-event {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 900px) {
  .what-cards { grid-template-columns: 1fr; }
  .home-journey { grid-template-columns: 1fr; }
  .home-journey-left { padding: 4rem 2rem 2rem; margin: 0; max-width: 100%; }
  .home-journey-right { border-left: none; border-top: 1px solid var(--line); padding: 3rem 2rem; }
  .numbers-grid { gap: 2rem; }
  .number-divider { display: none; }
}
