:root {
  --navy-950: #061827;
  --navy-900: #08243a;
  --navy-800: #103a56;
  --blue-500: #397fa2;
  --sky-100: #dbeaf0;
  --paper: #f5f1e8;
  --paper-soft: #fbf9f4;
  --ink: #152632;
  --muted: #65717a;
  --gold: #c69a3b;
  --gold-light: #efd98d;
  --line: rgba(20, 47, 64, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: var(--sans);
  line-height: 1.6;
}
body.dialog-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: white;
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 clamp(22px, 5vw, 76px);
  color: white;
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(6, 24, 39, .93);
  box-shadow: 0 12px 32px rgba(3, 17, 28, .16);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}
.brand-mark { display: inline-flex; width: 49px; }
.brand-mark svg { display: block; width: 100%; fill: #dce9ef; }
.brand-mark .accent { fill: var(--gold-light); }
.brand-mark .eye { fill: var(--navy-950); }
.brand strong { display: block; font-family: var(--serif); font-size: 1.35rem; letter-spacing: .01em; line-height: 1.05; }
.brand small { display: block; margin-top: 5px; color: rgba(255,255,255,.58); font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.site-header nav { display: flex; align-items: center; gap: 34px; }
.site-header nav a {
  position: relative;
  color: rgba(255,255,255,.72);
  font-size: .81rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-header nav a:hover, .site-header nav a:focus-visible, .site-header nav a.is-active { color: white; }
.site-header nav a.is-active::after { transform: scaleX(1); }
.menu-button { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  min-height: 760px;
  padding: 165px clamp(24px, 7vw, 112px) 105px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 73% 46%, rgba(78, 144, 169, .22), transparent 25%),
    linear-gradient(118deg, var(--navy-950) 4%, #0a2c45 57%, #123d55 100%);
}
.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .27;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, black, transparent 65%);
}
.hero-glow { position: absolute; border: 1px solid rgba(219, 234, 240, .12); border-radius: 50%; }
.glow-one { top: 8%; right: -8%; width: 560px; height: 560px; }
.glow-two { top: 27%; right: 5%; width: 330px; height: 330px; }
.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 700px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .24em;
}
.hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 5.5vw, 6.1rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .98;
}
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero-intro { max-width: 610px; margin: 30px 0 0; color: rgba(255,255,255,.7); font-family: var(--serif); font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.75; }
.hero-actions, .media-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.media-actions { flex-wrap: wrap; gap: 18px 24px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .filter-chip:focus-visible, .menu-button:focus-visible, .dialog-close:focus-visible { outline: 3px solid rgba(239,217,141,.7); outline-offset: 3px; }
.button-primary { color: var(--navy-950); background: var(--gold-light); box-shadow: 0 10px 28px rgba(239,217,141,.16); }
.button-primary:hover { background: #f8e8ad; box-shadow: 0 14px 38px rgba(239,217,141,.22); }
.button-light { color: var(--navy-950); background: white; }
.button-amazon { color: white; background: var(--navy-900); }
.button-amazon:hover { background: var(--navy-800); }
.text-link { color: rgba(255,255,255,.85); font-size: .82rem; font-weight: 750; letter-spacing: .035em; text-underline-offset: 5px; }
.text-link span { margin-left: 5px; color: var(--gold-light); }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 54px; color: rgba(255,255,255,.49); font-size: .76rem; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 5px rgba(239,217,141,.1); }
.hero-art { position: relative; z-index: 1; display: grid; place-items: center; min-height: 480px; }
.eagle-hero { position: relative; z-index: 2; width: min(100%, 620px); transform: rotate(-1deg); }
.sun-ring { position: absolute; border: 1px solid rgba(239,217,141,.17); border-radius: 50%; }
.ring-one { width: 470px; height: 470px; }
.ring-two { width: 330px; height: 330px; }
.art-quote { position: absolute; z-index: 3; right: 10%; bottom: 1%; margin: 0; color: rgba(255,255,255,.58); font-family: var(--serif); font-size: 1.35rem; font-style: italic; }
.scroll-cue { position: absolute; right: 38px; bottom: 50px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.5); font-size: .62rem; font-weight: 800; letter-spacing: .18em; text-decoration: none; text-transform: uppercase; transform: rotate(90deg); transform-origin: right bottom; }
.scroll-cue span { display: block; width: 44px; height: 1px; background: rgba(255,255,255,.4); }

.books-section { padding: 120px clamp(24px, 7vw, 112px) 132px; background: var(--paper-soft); }
.upcoming-section { padding: 112px clamp(24px, 7vw, 112px) 128px; border-top: 1px solid var(--line); background: #e8eeee; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; max-width: 1300px; margin: 0 auto 48px; }
.section-heading h2, .media-header h2 { max-width: 720px; margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 4.5vw, 4.7rem); font-weight: 400; letter-spacing: -.035em; line-height: 1.06; }
.section-heading > p { max-width: 490px; margin: 0 0 7px; color: var(--muted); font-size: .98rem; line-height: 1.8; }
.book-toolbar { display: flex; align-items: center; gap: 8px; max-width: 1300px; margin: 0 auto 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.filter-chip { padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px; color: #43535d; background: transparent; cursor: pointer; font-size: .74rem; font-weight: 750; }
.filter-chip:hover, .filter-chip.is-active { color: white; border-color: var(--navy-900); background: var(--navy-900); }
.book-count { margin-left: auto; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.catalog-summary { display: flex; align-items: center; justify-content: space-between; max-width: 1300px; margin: 0 auto 30px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.catalog-summary .book-count { margin-left: 0; }
.upcoming-count { color: var(--muted); }
.book-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; max-width: 1300px; margin: 0 auto; }
.upcoming-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.book-card {
  position: relative;
  min-height: 390px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 4px;
  color: white;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(10, 31, 44, .08);
  isolation: isolate;
  transition: transform .28s ease, box-shadow .28s ease;
}
.book-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .85;
  background: linear-gradient(165deg, transparent 28%, rgba(0,0,0,.72) 100%);
}
.book-card::after {
  position: absolute;
  z-index: -1;
  top: 20%;
  right: -22%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  content: "";
}
.book-cover { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #071b2b; }
.book-card.has-cover::before { z-index: 1; opacity: 1; background: linear-gradient(to bottom, transparent 60%, rgba(3,14,23,.88) 100%); }
.book-card.has-cover::after { display: none; }
.book-card.has-cover .book-card-status { position: absolute; z-index: 2; top: 14px; left: 14px; color: white; border-color: rgba(255,255,255,.28); background: rgba(6,24,39,.82); backdrop-filter: blur(8px); }
.book-card.has-cover .book-card-copy { z-index: 2; right: 0; bottom: 0; left: 0; padding: 15px 18px; }
.book-card.has-cover .book-symbol,
.book-card.has-cover .book-card-title,
.book-card.has-cover .book-card-subtitle { display: none; }
.book-card.has-cover .book-card-open { padding-top: 0; border-top: 0; color: white; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.book-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(10, 31, 44, .18); }
.book-card:focus-visible { outline: 4px solid rgba(198,154,59,.45); outline-offset: 4px; }
.book-card[data-tone="midnight"] { background: linear-gradient(140deg, #050d17, #173c58); }
.book-card[data-tone="blue"] { background: linear-gradient(140deg, #0f4162, #347da0); }
.book-card[data-tone="ivory"] { color: var(--navy-950); background: linear-gradient(140deg, #fffdf8, #ded7c7); border-color: #ddd5c4; }
.book-card[data-tone="ivory"]::before { background: linear-gradient(165deg, transparent 30%, rgba(92,75,46,.17) 100%); }
.book-card[data-tone="ivory"] .book-card-status { color: #815e13; background: rgba(255,255,255,.62); border-color: rgba(110,84,30,.2); }
.book-card[data-tone="ivory"] .book-card-subtitle, .book-card[data-tone="ivory"] .book-card-open { color: rgba(6,24,39,.65); }
.book-card[data-tone="ochre"] { background: linear-gradient(140deg, #4b261c, #a46d38); }
.book-card[data-tone="slate"] { background: linear-gradient(140deg, #26343c, #6f7f84); }
.book-card[data-tone="forest"] { background: linear-gradient(140deg, #14352d, #50806a); }
.book-card[data-tone="plum"] { background: linear-gradient(140deg, #2d2037, #71506d); }
.book-card[data-tone="terracotta"] { background: linear-gradient(140deg, #40251e, #b05e42); }
.book-card.has-cover .book-card-status { color: white; border-color: rgba(255,255,255,.28); background: rgba(6,24,39,.82); }
.book-card.has-cover .book-card-open { color: white; }
.book-card-status { display: inline-flex; padding: 5px 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); font-size: .59rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.book-symbol { position: absolute; top: 74px; right: 19px; color: rgba(255,255,255,.13); font-family: var(--serif); font-size: 8rem; line-height: 1; }
.book-card[data-tone="ivory"] .book-symbol { color: rgba(6,24,39,.1); }
.book-card-copy { position: absolute; right: 25px; bottom: 25px; left: 25px; }
.book-card-title { margin: 0; font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: -.025em; line-height: 1.02; }
.book-card-subtitle { min-height: 42px; margin: 12px 0 19px; color: rgba(255,255,255,.63); font-size: .76rem; line-height: 1.5; }
.book-card-open { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.75); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.book-card-open i { font-style: normal; font-size: 1.15rem; }

.media-section { padding: 118px clamp(24px, 7vw, 112px) 92px; color: white; background: var(--navy-950); }
.media-header { max-width: 1300px; margin: 0 auto 46px; }
.media-header h2 { max-width: 810px; }
.media-intro { max-width: 720px; margin: 24px 0 0; color: rgba(255,255,255,.62); font-family: var(--serif); font-size: 1.08rem; line-height: 1.75; }
.media-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; max-width: 1300px; margin: 0 auto; }
.radio-card { position: relative; display: grid; grid-template-columns: 160px 1fr; gap: 34px; min-height: 390px; align-items: center; padding: clamp(32px, 5vw, 68px); overflow: hidden; background: linear-gradient(135deg, #174764, #286d8a); }
.radio-card::after { position: absolute; right: -130px; bottom: -190px; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.radio-card h3, .video-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.25rem, 3vw, 3.5rem); font-weight: 400; line-height: 1.05; }
.radio-card p:not(.card-kicker) { max-width: 570px; color: rgba(255,255,255,.7); }
.card-kicker { margin: 0 0 15px; color: var(--gold-light); font-size: .62rem; font-weight: 800; letter-spacing: .18em; }
.radio-signal { display: flex; height: 110px; align-items: center; justify-content: center; gap: 7px; }
.radio-signal span { width: 7px; border-radius: 10px; background: var(--gold-light); animation: sound 1.15s ease-in-out infinite alternate; }
.radio-signal span:nth-child(1), .radio-signal span:nth-child(5) { height: 30px; animation-delay: -.7s; }
.radio-signal span:nth-child(2), .radio-signal span:nth-child(4) { height: 72px; animation-delay: -.3s; }
.radio-signal span:nth-child(3) { height: 108px; }
@keyframes sound { to { height: 20px; opacity: .6; } }
.video-card { overflow: hidden; color: var(--ink); background: var(--paper); }
.video-thumb { display: block; min-height: 220px; }
.video-landscape { position: relative; min-height: 235px; overflow: hidden; background: linear-gradient(#dbe9ec 0 52%, #d4c9a5 52%); }
.ridge { position: absolute; right: -5%; bottom: 25%; left: -5%; height: 42%; background: #73909a; clip-path: polygon(0 67%, 14% 37%, 26% 60%, 40% 18%, 54% 61%, 72% 12%, 100% 65%, 100% 100%, 0 100%); }
.ridge-back { opacity: .45; transform: translateY(-22px); }
.ridge-front { background: #345d6c; }
.road { position: absolute; bottom: -30px; left: 50%; width: 150px; height: 180px; background: #b29c6f; clip-path: polygon(43% 0, 57% 0, 100% 100%, 0 100%); transform: translateX(-50%); }
.play { position: absolute; top: 50%; left: 50%; display: grid; width: 66px; height: 66px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92); box-shadow: 0 12px 30px rgba(8,36,58,.2); transform: translate(-50%,-50%); transition: transform .2s ease; }
.video-thumb:hover .play { transform: translate(-50%,-50%) scale(1.08); }
.play i { width: 0; height: 0; margin-left: 5px; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 14px solid var(--navy-900); }
.video-copy { padding: 28px 30px 32px; }
.video-copy .card-kicker { color: #8a681b; }
.video-copy h3 { font-size: 2rem; }
.video-copy p:last-child { margin-bottom: 0; color: var(--muted); font-size: .86rem; }
.latest-video-frame { aspect-ratio: 16 / 9; background: #020b12; }
.latest-video-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.featured-heading { display: grid; grid-template-columns: 1fr .85fr; gap: 50px; align-items: end; max-width: 1300px; margin: 70px auto 28px; }
.featured-heading h3, .channel-actions h3 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3rem); font-weight: 400; line-height: 1.08; }
.featured-heading > p { margin: 0; color: rgba(255,255,255,.58); line-height: 1.7; }
.conversation-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 1300px; margin: 0 auto; }
.conversation-card { overflow: hidden; color: var(--ink); background: var(--paper); text-decoration: none; transition: transform .22s ease, box-shadow .22s ease; }
.conversation-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.conversation-card img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #102b3d; }
.conversation-card > span { display: block; padding: 24px 25px 27px; }
.conversation-card small, .conversation-card strong, .conversation-card i { display: block; }
.conversation-card small { margin-bottom: 10px; color: #8a681b; font-size: .59rem; font-weight: 850; letter-spacing: .13em; }
.conversation-card strong { min-height: 56px; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; line-height: 1.25; }
.conversation-card i { margin-top: 18px; color: #53626b; font-size: .68rem; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.channel-actions { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; max-width: 1300px; margin: 24px auto 0; padding: 34px clamp(24px, 4vw, 48px); border: 1px solid rgba(239,217,141,.2); background: linear-gradient(135deg, rgba(198,154,59,.13), rgba(255,255,255,.035)); }
.subscribe-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: flex-end; }
.button-outline-light { border: 1px solid rgba(255,255,255,.35); color: white; background: transparent; }
.button-outline-light:hover { border-color: white; background: rgba(255,255,255,.08); }
.author-profile { max-width: 1300px; margin: 72px auto 0; padding-top: 35px; border-top: 1px solid rgba(255,255,255,.12); }
.author-strip { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; cursor: pointer; list-style: none; }
.author-strip::-webkit-details-marker { display: none; }
.author-portrait { display: block; width: 76px; height: 76px; object-fit: cover; object-position: 50% 34%; border: 2px solid rgba(239,217,141,.6); border-radius: 50%; box-shadow: 0 10px 28px rgba(0,0,0,.28); }
.author-strip p { margin: 0; }
.author-strip strong { display: block; font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
.author-strip p span { display: block; color: rgba(255,255,255,.48); font-size: .76rem; }
.author-open { color: rgba(255,255,255,.72); font-size: .69rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.author-open i { display: inline-block; margin-left: 8px; color: var(--gold-light); font-style: normal; transition: transform .2s ease; }
.author-profile[open] .author-open i { transform: rotate(180deg); }
.author-bio { max-width: 1030px; margin: 30px 0 0 98px; padding: 30px clamp(24px, 5vw, 58px) 38px; border-left: 1px solid rgba(239,217,141,.28); color: rgba(255,255,255,.67); background: rgba(255,255,255,.035); }
.author-bio p { margin: 0 0 18px; font-family: var(--serif); font-size: 1rem; line-height: 1.82; }
.author-bio p:first-child { color: rgba(255,255,255,.83); font-size: 1.08rem; }
.author-bio-link { display: inline-block; margin-top: 7px; color: white; font-size: .69rem; font-weight: 800; letter-spacing: .08em; text-decoration: underline; text-underline-offset: 5px; text-transform: uppercase; }
.author-bio-link span { margin-left: 8px; color: var(--gold-light); }

.contact-section { padding: 110px clamp(24px, 7vw, 112px); color: var(--ink); background: var(--paper-soft); }
.contact-inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(45px, 8vw, 110px); align-items: center; max-width: 1300px; margin: 0 auto; }
.contact-copy h2 { max-width: 650px; margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 4.5vw, 4.7rem); font-weight: 400; letter-spacing: -.035em; line-height: 1.06; }
.contact-copy > p:not(.eyebrow) { max-width: 650px; margin: 28px 0; color: var(--muted); line-height: 1.85; }
.contact-topics { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-topics span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: #52616a; font-size: .68rem; font-weight: 750; }
.contact-card { position: relative; padding: clamp(32px, 5vw, 58px); overflow: hidden; color: white; background: linear-gradient(140deg, #08243a, #245e7a); box-shadow: 0 24px 55px rgba(10,31,44,.16); }
.contact-card::after { position: absolute; right: -100px; bottom: -150px; width: 300px; height: 300px; border: 1px solid rgba(239,217,141,.2); border-radius: 50%; content: ""; }
.contact-label { position: relative; z-index: 1; color: var(--gold-light); font-size: .61rem; font-weight: 850; letter-spacing: .16em; }
.contact-email { position: relative; z-index: 1; display: block; width: fit-content; max-width: 100%; margin: 22px 0 18px; color: white; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.5rem); overflow-wrap: anywhere; text-underline-offset: 7px; }
.contact-card p { position: relative; z-index: 1; max-width: 430px; color: rgba(255,255,255,.62); line-height: 1.7; }
.contact-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 28px; }
.copy-email { padding: 12px 18px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; color: white; background: transparent; cursor: pointer; font-size: .69rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.copy-email:hover { border-color: white; background: rgba(255,255,255,.08); }
.copy-status { position: relative; z-index: 1; display: block; min-height: 20px; margin-top: 13px; color: var(--gold-light); font-size: .72rem; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 30px clamp(24px, 7vw, 112px); color: #6a747a; background: #03111d; font-size: .68rem; }
.footer-brand { color: white; font-family: var(--serif); font-size: 1rem; text-decoration: none; }
.footer-brand span { color: var(--gold-light); }
footer p { margin: 0; }
.footer-site-link { color: rgba(255,255,255,.68); text-underline-offset: 4px; }

.book-dialog {
  width: min(920px, calc(100vw - 34px));
  max-height: min(720px, calc(100vh - 34px));
  padding: 0;
  overflow: auto;
  border: 0;
  color: var(--ink);
  background: var(--paper-soft);
  box-shadow: 0 32px 90px rgba(2,15,25,.46);
}
.book-dialog[open] { display: grid; grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr); animation: dialogIn .22s ease-out; }
.book-dialog::backdrop { background: rgba(3,17,29,.78); backdrop-filter: blur(8px); }
@keyframes dialogIn { from { opacity: 0; transform: translateY(14px) scale(.985); } }
.dialog-close { position: fixed; z-index: 3; top: max(calc(50% - 340px), 28px); right: max(calc(50% - 430px), 28px); display: grid; width: 40px; height: 40px; place-items: center; border: 0; border-radius: 50%; color: var(--navy-950); background: rgba(255,255,255,.8); cursor: pointer; font-size: 1.55rem; line-height: 1; }
.dialog-cover { position: relative; min-height: 590px; overflow: hidden; background: linear-gradient(145deg, #08243a, #397fa2); }
.dialog-cover::before { position: absolute; top: 12%; right: -30%; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.23); border-radius: 50%; content: ""; }
.dialog-cover::after { position: absolute; right: 0; bottom: 0; left: 0; padding: 32px; color: rgba(255,255,255,.74); content: "elAguilar Ediciones"; font-family: var(--serif); font-size: 1rem; letter-spacing: .04em; }
.dialog-cover-image { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.dialog-cover.has-image::before,
.dialog-cover.has-image::after { display: none; }
.dialog-content { align-self: center; padding: 62px clamp(35px, 6vw, 68px); }
.dialog-status { display: inline-flex; margin: 0 0 22px; padding: 6px 10px; border-radius: 999px; color: #684900; background: #f2e4b9; font-size: .62rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.dialog-content h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.3rem); font-weight: 400; letter-spacing: -.04em; line-height: .98; }
.dialog-subtitle { margin: 15px 0 24px; color: #8e6b1e; font-family: var(--serif); font-size: 1.08rem; font-style: italic; }
.dialog-description { color: #53626b; line-height: 1.85; }
.dialog-detail { margin: 25px 0 0; padding: 20px 22px; border-left: 2px solid #c7a44e; background: rgba(219,190,111,.1); }
.dialog-detail[hidden] { display: none; }
.dialog-detail h3 { margin: 0 0 8px; color: #6e5319; font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.dialog-detail p { margin: 0; color: #465862; font-family: var(--serif); font-size: .98rem; line-height: 1.72; }
.dialog-detail-origin { background: rgba(10,48,72,.055); }
.dialog-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 36px; }
.dialog-meta span { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: #52616a; font-size: .66rem; font-weight: 700; }
.dialog-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.dialog-actions [hidden] { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .72s ease, transform .72s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.book-card { animation: cardIn .42s ease both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(12px); } }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1.08fr .92fr; padding-right: 55px; padding-left: 55px; }
  .book-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .radio-card { grid-template-columns: 100px 1fr; }
}

@media (max-width: 820px) {
  .site-header { height: 74px; padding: 0 22px; }
  .brand small { display: none; }
  .menu-button { display: flex; width: 43px; height: 43px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: white; background: transparent; cursor: pointer; }
  .menu-button span:not(.sr-only) { width: 18px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-header nav { position: absolute; top: 73px; right: 0; left: 0; display: none; padding: 22px; background: rgba(6,24,39,.98); box-shadow: 0 16px 26px rgba(0,0,0,.18); }
  .site-header nav.is-open { display: grid; gap: 21px; }
  .site-header nav a { width: max-content; }
  .hero { grid-template-columns: 1fr; min-height: 860px; padding: 130px 24px 70px; }
  .hero-copy { text-align: center; }
  .hero-intro { margin-right: auto; margin-left: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-art { min-height: 360px; margin-top: -25px; }
  .eagle-hero { width: min(92vw, 480px); }
  .art-quote { right: 12%; bottom: 2%; }
  .scroll-cue { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .book-grid, .upcoming-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-layout, .featured-heading, .channel-actions { grid-template-columns: 1fr; }
  .conversation-grid { grid-template-columns: 1fr; }
  .subscribe-actions { justify-content: flex-start; }
  .contact-inner { grid-template-columns: 1fr; }
  .radio-card { grid-template-columns: 100px 1fr; }
  .author-strip { grid-template-columns: auto 1fr; }
  .author-open { grid-column: 2; }
  .author-bio { margin-left: 98px; }
  .book-dialog[open] { grid-template-columns: 210px 1fr; }
  .dialog-close { top: 25px; right: 25px; }
}

@media (max-width: 560px) {
  .brand-mark { width: 42px; }
  .hero { min-height: 790px; padding-top: 116px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 18px; margin-top: 30px; }
  .hero-note { align-items: flex-start; margin-top: 36px; text-align: left; }
  .hero-art { min-height: 275px; }
  .ring-one { width: 290px; height: 290px; }
  .ring-two { width: 210px; height: 210px; }
  .art-quote { display: none; }
  .books-section, .upcoming-section, .media-section, .contact-section { padding: 82px 18px; }
  .section-heading h2, .media-header h2 { font-size: 2.65rem; }
  .book-toolbar { flex-wrap: wrap; }
  .book-count { width: 100%; margin: 9px 0 0; }
  .book-grid { grid-template-columns: 1fr; }
  .book-card { min-height: 350px; }
  .radio-card { display: block; min-height: auto; padding: 34px 25px; }
  .radio-signal { height: 78px; justify-content: flex-start; margin-bottom: 20px; }
  .media-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .featured-heading { gap: 20px; margin-top: 55px; }
  .channel-actions { padding: 30px 22px; }
  .subscribe-actions { align-items: flex-start; flex-direction: column; }
  .author-strip { grid-template-columns: auto 1fr; }
  .author-strip p span { margin-top: 5px; }
  .author-bio { margin-left: 0; padding: 25px 22px 30px; }
  footer { align-items: flex-start; flex-direction: column; gap: 8px; }
  .book-dialog[open] { display: block; }
  .dialog-cover { min-height: 150px; }
  .dialog-cover::after { padding: 22px; }
  .dialog-content { padding: 36px 25px 42px; }
  .dialog-close { position: absolute; top: 14px; right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
