/* ─── HOME PAGE ───────────────────────────────────────────── */

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 60px 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(184,150,74,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(184,150,74,0.03) 0%, transparent 50%),
    linear-gradient(160deg, #0f0d0a 0%, #0a0a0a 50%, #080808 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  font-size: 10px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px; display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--gold); opacity: 0.6;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300; line-height: 1.0; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 12px;
}
.hero-headline em { font-style: italic; color: var(--white-dim); }
.hero-subline {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300; font-style: italic;
  color: var(--white-dim); margin-bottom: 48px; line-height: 1.4;
}
.hero-actions { display: flex; gap: 20px; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 40px; right: 60px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white-faint); writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 12px;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--white-faint), transparent);
}

/* PHILOSOPHY STRIP */
.philosophy-strip {
  background: var(--black-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px;
}
.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 300; line-height: 1.3;
  color: var(--white); max-width: 820px;
}
.philosophy-quote em { font-style: italic; color: var(--gold); }
.philosophy-attr {
  margin-top: 24px; font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--white-dim);
}

/* BOOKS AVAILABLE */
.books-available { margin-bottom: 64px; }
.book-cover-label {
  font-size: 10px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px; display: flex; align-items: center; gap: 16px;
}
.book-cover-label::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--gold); opacity: 0.6;
}
.books-cover-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.book-cover-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform 0.4s ease;
}
.book-cover-card:hover { transform: translateY(-6px); }
.book-cover-img-wrap {
  width: 100%; aspect-ratio: 2/3;
  overflow: hidden; background: var(--black-card);
  border: 1px solid var(--border); margin-bottom: 20px;
}
.book-cover-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; transition: transform 0.5s ease;
}
.book-cover-card:hover .book-cover-img { transform: scale(1.03); }
.book-cover-title {
  font-family: var(--serif); font-size: 20px;
  font-weight: 400; line-height: 1.2; margin-bottom: 6px;
}
.book-cover-author {
  font-size: 12px; color: var(--white-dim);
  margin-bottom: 10px; font-style: italic; font-family: var(--serif);
}
.book-cover-desc {
  font-size: 13px; color: var(--white-dim); line-height: 1.7; margin-bottom: 14px;
}
.book-cover-cta {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}

/* ARC COMING */
.books-arc-label {
  font-size: 10px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--white-faint);
  margin-bottom: 20px; display: flex; align-items: center; gap: 16px;
}
.books-arc-label::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: rgba(240,237,232,0.2);
}
.books-arc-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.book-card {
  background: var(--black-card); border: 1px solid var(--border);
  padding: 40px 36px; position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.book-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.book-card:hover::before { transform: scaleX(1); }
.book-card:hover { background: #161414; }
.book-number {
  font-family: var(--serif); font-size: 64px; font-weight: 300;
  color: var(--white-ghost); line-height: 1;
  position: absolute; top: 20px; right: 24px;
}
.book-status {
  display: inline-block; font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; padding: 5px 12px;
  border: 1px solid var(--border); color: var(--white-faint); margin-bottom: 28px;
}
.book-title {
  font-family: var(--serif); font-size: 24px;
  font-weight: 400; line-height: 1.2; margin-bottom: 12px;
}
.book-subtitle {
  font-size: 13px; color: var(--white-dim); line-height: 1.6;
  margin-bottom: 20px; font-style: italic; font-family: var(--serif);
}
.book-theme {
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--white-faint);
}

/* MESSAGE SECTION */
.message-section { background: var(--black-soft); }
.message-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.message-left h2 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 54px);
  font-weight: 300; line-height: 1.1; margin-bottom: 28px;
}
.message-left p { font-size: 15px; color: var(--white-dim); line-height: 1.8; margin-bottom: 20px; }
.pillars { display: flex; flex-direction: column; }
.pillar { padding: 22px 0; border-bottom: 1px solid var(--border); display: flex; gap: 22px; align-items: flex-start; }
.pillar:first-child { border-top: 1px solid var(--border); }
.pillar-number { font-family: var(--serif); font-size: 11px; color: var(--gold); letter-spacing: 0.15em; min-width: 28px; padding-top: 2px; }
.pillar-title { font-family: var(--serif); font-size: 18px; font-weight: 400; margin-bottom: 4px; }
.pillar-desc { font-size: 13px; color: var(--white-dim); line-height: 1.7; }

/* PODCAST STRIP */
.podcast-strip {
  background: #0d0c0a;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 56px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.podcast-left { display: flex; align-items: center; gap: 32px; }
.podcast-icon {
  width: 72px; height: 72px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: var(--gold-faint);
}
.podcast-label { font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.podcast-title { font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.1; }
.podcast-sub { font-size: 13px; color: var(--white-dim); margin-top: 6px; }

/* SPEAKING SECTION */
.speaking-section { background: var(--black-soft); }
.speaking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.speaking-visual {
  aspect-ratio: 4/5; background: var(--black-card);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
}
.speaking-visual-inner { text-align: center; padding: 40px; }
.reel-play {
  width: 72px; height: 72px; border: 1px solid rgba(240,237,232,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: all 0.3s ease; cursor: pointer;
}
.reel-play:hover { border-color: var(--gold); background: var(--gold-faint); }
.reel-label { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--white-dim); }
.speaking-content h2 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; line-height: 1.1; margin-bottom: 24px;
}
.speaking-content p { font-size: 15px; color: var(--white-dim); line-height: 1.8; margin-bottom: 32px; }
.topics-list { display: flex; flex-direction: column; margin-bottom: 36px; }
.topic-item {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--white-dim);
  display: flex; align-items: center; gap: 14px;
}
.topic-item::before {
  content: ''; display: block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

/* FAMILY ECOSYSTEM */
.family-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.family-card {
  background: var(--black-card); border: 1px solid var(--border);
  padding: 40px 32px; transition: all 0.4s ease;
}
.family-card:hover { background: #161414; border-color: var(--border-gold); }
.family-initial { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--gold); margin-bottom: 18px; line-height: 1; }
.family-name { font-family: var(--serif); font-size: 19px; font-weight: 400; margin-bottom: 6px; }
.family-role { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-dim); margin-bottom: 12px; }
.family-desc { font-size: 13px; color: var(--white-faint); line-height: 1.75; }

/* RESPONSIVE HOME */
@media (max-width: 1024px) {
  .hero { padding: 40px 32px 80px; }
  .philosophy-strip { padding: 48px 32px; }
  .podcast-strip { padding: 40px 32px; flex-direction: column; align-items: flex-start; }
  .books-cover-row { grid-template-columns: 1fr; gap: 48px; }
  .books-arc-row { grid-template-columns: 1fr; }
  .message-inner { grid-template-columns: 1fr; gap: 48px; }
  .speaking-inner { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 40px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .family-grid { grid-template-columns: 1fr; }
}

/* Inline quote classes needed on homepage */
.iq-ornament { display:flex;align-items:center;justify-content:center;gap:16px;margin-bottom:40px; }
.iq-line { height:1px;flex:1;max-width:100px;background:linear-gradient(90deg,transparent,var(--gold),transparent); }
.iq-diamond { width:6px;height:6px;background:var(--gold);transform:rotate(45deg); }
.iq-tag { font-family:'Cormorant SC',serif;font-size:10px;letter-spacing:0.35em;color:var(--gold);text-transform:uppercase; }
.iq-nothing { font-family:var(--serif);font-size:clamp(64px,10vw,112px);font-weight:300;font-style:italic;color:var(--white);line-height:1;letter-spacing:-0.02em;margin-bottom:8px; }
.iq-rule { width:48px;height:1px;background:var(--gold);margin:0 auto 32px; }
.iq-body { font-family:var(--serif);font-size:clamp(15px,2vw,20px);font-weight:300;font-style:italic;color:var(--white-dim);line-height:1.9;max-width:600px;margin:0 auto 36px; }
.iq-body em { color:var(--white);font-style:normal; }
.iq-attr { display:flex;flex-direction:column;align-items:center;gap:8px; }
.iq-attr-rule { display:flex;align-items:center;gap:12px;margin-bottom:4px; }
.iq-attr-line { width:40px;height:1px;background:linear-gradient(90deg,transparent,var(--gold)); }
.iq-attr-line.right { background:linear-gradient(90deg,var(--gold),transparent); }
.iq-attr-dot { width:3px;height:3px;border-radius:50%;background:var(--gold); }
.iq-title { font-family:'Cormorant SC',serif;font-size:13px;letter-spacing:0.25em;color:var(--gold);text-transform:uppercase; }
.iq-author { font-family:var(--serif);font-style:italic;font-size:13px;letter-spacing:0.15em;color:var(--white-dim); }

/* Family role lists on homepage */
.family-roles {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.family-roles li {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.family-roles li::before {
  content: '◆';
  color: var(--gold);
  font-size: 7px;
  flex-shrink: 0;
  margin-top: 5px;
  opacity: 0.85;
}
