/* ── Hero ───────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(139, 26, 26, 0.25) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201, 151, 58, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(8, 7, 10, 0) 40%, rgba(8, 7, 10, 0.85) 100%),
    linear-gradient(180deg, #0D0B10 0%, #160F0A 50%, #0A0807 100%);
}

/* Corner frame — decorative */
.hero-frame { position: absolute; inset: 24px; border: 1px solid rgba(201, 151, 58, 0.18); pointer-events: none; }
.hero-frame::before, .hero-frame::after { content: ''; position: absolute; width: 40px; height: 40px; border-color: var(--gold); border-style: solid; opacity: 0.5; }
.hero-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hero-frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* Large watermark initials */
.hero-bg-crest { position: absolute; font-size: clamp(14rem, 35vw, 36rem); font-family: var(--serif); font-weight: 900; color: rgba(201, 151, 58, 0.03); user-select: none; pointer-events: none; letter-spacing: -0.05em; line-height: 0.85; top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; }

.hero-content { position: relative; z-index: 2; padding: 8rem 2rem 6rem; max-width: 900px; }
.hero-crest { font-size: 2.5rem; margin-bottom: 1.5rem; opacity: 0.8; letter-spacing: 0.3em; display: block; }

.hero-eyebrow { font-family: var(--body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--gold); opacity: 0.5; }

/*
  Cinzel Decorative is ~0.7em per character.
  "Cromwell's" = 10 chars. At 6rem + 0.02em letter-spacing it fits a 900px container.
  clamp floor 2.2rem covers phones; 5.5vw scales naturally; 5.8rem caps desktop.
*/
.hero-h1 {
  font-family: var(--decor);
  font-size: clamp(2.2rem, 5.5vw, 5.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--parch);
  text-shadow: 0 0 80px rgba(201, 151, 58, 0.3);
  margin-bottom: 0.4rem;
  overflow-wrap: break-word;   /* safety net — prevents any overflow */
  word-break: break-word;
}
.hero-h1 .name { display: block; background: linear-gradient(180deg, var(--gold-l) 0%, var(--gold) 50%, var(--gold-d) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-sub-title { font-family: var(--fell); font-style: italic; font-size: clamp(1rem, 2.5vw, 1.5rem); color: rgba(242, 235, 217, 0.45); margin-bottom: 1.5rem; letter-spacing: 0.04em; }

.hero-quote { font-family: var(--fell); font-style: italic; font-size: 1rem; color: rgba(242, 235, 217, 0.3); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hero-quote::before { content: '\201C'; font-size: 2rem; color: var(--gold); opacity: 0.4; line-height: 0; vertical-align: -0.5rem; margin-right: 0.25rem; }
.hero-quote::after  { content: '\201D'; font-size: 2rem; color: var(--gold); opacity: 0.4; line-height: 0; vertical-align: -0.5rem; margin-left: 0.25rem; }

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Hero info strip */
.hero-strip { position: absolute; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(201, 151, 58, 0.12); background: rgba(8, 7, 10, 0.7); backdrop-filter: blur(8px); }
.hs-item { padding: 1.1rem 1.5rem; border-right: 1px solid rgba(201, 151, 58, 0.08); display: flex; align-items: center; gap: 0.75rem; }
.hs-item:last-child { border-right: none; }
.hs-icon { font-size: 1.1rem; opacity: 0.6; flex-shrink: 0; }
.hs-label { font-family: var(--body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(242, 235, 217, 0.3); }
.hs-val   { font-family: var(--body); font-size: 0.85rem; font-weight: 700; color: var(--parch); }

/* Hero entrance animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-crest      { animation: fadeUp 0.5s 0.05s both; }
.hero-eyebrow    { animation: fadeUp 0.6s 0.10s both; }
.hero-h1         { animation: fadeUp 0.6s 0.20s both; }
.hero-sub-title  { animation: fadeUp 0.6s 0.30s both; }
.hero-quote      { animation: fadeUp 0.6s 0.40s both; }
.hero-actions    { animation: fadeUp 0.6s 0.55s both; }
