/* front-page.css — extracted from front-page.php in 1.2.0.
   A <style> element is metadata content and belongs in <head>; inside <main>
   it is invalid, and it also cannot be cached. Enqueued conditionally from
   functions.php. */
.hero{min-height:100vh;display:flex;align-items:center;position:relative;background:var(--navy-deep);overflow:hidden;padding-top:64px;}
.hero::before{content:'';position:absolute;inset:0;background-image:var(--tho-banner);background-size:cover;background-position:center bottom;opacity:0.18;z-index:0;}
.hero::after{content:'';position:absolute;inset:0;background:linear-gradient(to right,rgba(12,26,46,0.97) 45%,rgba(12,26,46,0.55) 100%),linear-gradient(to top,rgba(12,26,46,0.9) 0%,transparent 40%);z-index:0;}
.hero__inner{max-width:var(--max-w);margin:0 auto;padding:5rem 2rem;display:grid;grid-template-columns:1fr 380px;gap:5rem;align-items:center;position:relative;z-index:2;}
.hero__eyebrow{font-family:var(--font-ui);font-size:0.72rem;font-weight:600;letter-spacing:0.22em;text-transform:uppercase;color:var(--gold);margin-bottom:1.5rem;display:flex;align-items:center;gap:1rem;}
.hero__eyebrow::before{content:'';display:inline-block;width:40px;height:1px;background:var(--gold);}
.hero h1{font-size:clamp(2.4rem,5vw,3.8rem);font-weight:300;color:var(--cream);line-height:1.15;margin-bottom:2.5rem;letter-spacing:-0.01em;}
.hero h1 em{font-style:normal;color:var(--gold);}
.hero__ctas{display:flex;gap:1rem;flex-wrap:wrap;}
.hero__book-img{width:100%;max-width:320px;border-radius:3px;box-shadow:-8px 12px 40px rgba(0,0,0,0.6);transition:transform 0.4s ease,box-shadow 0.4s ease;}
.hero__book-img:hover{transform:perspective(600px) rotateY(-4deg) translateY(-6px);box-shadow:-16px 20px 60px rgba(0,0,0,0.7);}
.premise{padding:6rem 2rem;background:var(--navy-section);}
.premise__inner{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;}
.stat-card{background:var(--navy-card);border:1px solid var(--navy-border);border-left:3px solid var(--gold);padding:1.5rem;margin-bottom:1rem;}
.stat-card__number{font-family:var(--font-display);font-size:3rem;font-weight:300;color:var(--gold);line-height:1;margin-bottom:0.3rem;}
.stat-card__label{font-family:var(--font-ui);font-size:0.88rem;color:var(--text-muted);font-style:italic;}
.audience__grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1.5rem;margin-top:3rem;}
.audience-item{background:white;border:1px solid #DDD6C8;padding:1.5rem;border-radius:var(--radius);transition:transform var(--transition),box-shadow var(--transition);}
.audience-item:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,0.1);}
.audience-item__icon{width:36px;height:36px;background:var(--navy-deep);border-radius:2px;display:flex;align-items:center;justify-content:center;margin-bottom:1rem;}
.audience-item__title{font-family:var(--font-display);font-size:1.05rem;color:var(--navy-deep);font-weight:500;margin-bottom:0.3rem;}
.audience-item__desc{font-family:var(--font-ui);font-size:0.85rem;color:#5A4A3A;line-height:1.6;}
.concepts__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:3rem;}
.concept-card{background:var(--navy-card);border:1px solid var(--navy-border);padding:2.5rem;border-radius:var(--radius);position:relative;overflow:hidden;transition:transform var(--transition),border-color var(--transition);}
.concept-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,var(--gold),transparent);}
.concept-card:hover{transform:translateY(-4px);border-color:var(--gold-dim);}
/* The ordinal is a watermark, not content: the card's own heading carries the
   meaning and the order is already in the document. It is supplied by the
   stylesheet through a data attribute so that it stays out of the accessibility
   tree, where a 12 percent tint would otherwise read as unreadable text. */
.concept-card__number{font-family:var(--font-display);font-size:4rem;font-weight:300;color:rgba(201,168,76,0.12);line-height:1;position:absolute;top:1.5rem;right:2rem;user-select:none;}
.concept-card__number::before{content:attr(data-num);}
.concept-card__title{font-family:var(--font-display);font-size:1.3rem;color:var(--cream);margin-bottom:0.75rem;font-weight:500;}
.concept-card__body{font-family:var(--font-ui);font-size:0.95rem;color:var(--text-muted);line-height:1.75;}
.author-home{padding:6rem 2rem;background:var(--navy-section);}
.author-home__inner{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:280px 1fr;gap:4rem;align-items:start;}
.purchase-cta__inner{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:auto 1fr;gap:4rem;align-items:center;}
@media(max-width:900px){.hero__inner{grid-template-columns:1fr;}.premise__inner{grid-template-columns:1fr;}.concepts__grid{grid-template-columns:1fr;}.purchase-cta__inner{grid-template-columns:1fr;}.author-home__inner{grid-template-columns:1fr;}}
@media(max-width:600px){.hero__ctas{flex-direction:column;}.audience__grid{grid-template-columns:1fr 1fr;}}
