/* His Majesty’s Sons — homepage-only styles (hero + manifesto). Shared tokens,
   resets, nav, buttons, and footer come from site.css; this file only holds
   what's unique to index.html / app.jsx. */

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 56px);
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }

.hero-eyebrow {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.36em;
  text-transform: uppercase; color: var(--muted); font-weight: 700;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 36px;
}
.hero-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--ink);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(48px, 7.5vw, 124px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  font-weight: 400;
}
.hero-title em {
  font-style: italic; font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--accent);
}
.hero-title .row { display: block; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 40px;
}

.hero-strap {
  margin-top: 36px;
  max-width: 40ch;
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  font-style: italic;
}
.hero-strap b { font-style: normal; font-weight: 700; }

.hero-right {
  display: flex; flex-direction: column; gap: 20px;
  align-items: stretch;
}

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--paper-2);
  overflow: hidden;
  border-radius: var(--radius-soft);
  width: 88%;
  align-self: flex-end;
}
.hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.photo-caption {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--ink-2);
}

.hero-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); font-weight: 700;
}
.hero-meta strong {
  display: block;
  font-family: var(--display); font-weight: 400; font-style: italic;
  font-size: 36px; letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 4px;
}

/* ---------- Manifesto / Pillars ---------- */
.manifesto-v2 {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 80px);
  border-top: 1px solid var(--rule);
  padding-top: clamp(64px, 8vw, 120px);
}
@media (max-width: 720px) {
  .manifesto-v2 { grid-template-columns: 1fr; gap: 28px; }
}
.m-rail { position: sticky; top: 96px; align-self: start; padding-top: 14px; }
@media (max-width: 720px) { .m-rail { position: static; padding-top: 0; } }
.m-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 12px;
}
.m-label::before {
  content: ""; width: 28px; height: 1px; background: var(--ink);
}

.m-body {
  display: flex; flex-direction: column;
  gap: clamp(40px, 5vw, 72px);
  max-width: min(900px, 95%);
}

.m-statement {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-weight: 400;
  text-wrap: balance;
}
.m-statement em {
  font-style: italic; font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.m-inscription {
  display: flex; flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(14px, 1.6vw, 24px);
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.m-inscription .m-dot {
  color: var(--accent);
  font-style: italic;
  font-size: 1.1em;
  transform: translateY(-1px);
}

.m-creed {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 34ch;
  text-wrap: pretty;
}
.m-creed .m-em {
  color: var(--accent);
  font-style: normal;
}

/* ---------- Reveal (disabled) ---------- */
.reveal { opacity: 1; }
