:root{
  --bg-dark:#090e14;
  --bg-dark-alt:#111923;
  --bg-mid:#1e2a37;
  --bg-light:#f3efe7;
  --text-dark:#171d24;
  --text-light:#f8f7f3;
  --muted-light:#b8c1ca;
  --muted-dark:#626b74;
  --accent:#c39355;
  --accent-light:#deb980;
  --border-dark:rgba(255,255,255,.14);
  --border-light:rgba(23,29,36,.14);
  --max-width:1180px;
  --radius:20px;
}

*,
*::before,
*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"Inter",sans-serif;
  color:var(--text-dark);
  background:var(--bg-light);
  line-height:1.65;
}

body.menu-open{overflow:hidden}
img{display:block;max-width:100%}
a{color:inherit}

h1,h2,h3{
  font-family:"Playfair Display",serif;
  margin-top:0;
  line-height:1.08;
  color:inherit;
}

h1{
  font-size:clamp(3.4rem,6.6vw,6rem);
  margin-bottom:1.2rem;
}

h2{
  font-size:clamp(2.15rem,4.4vw,4rem);
  margin-bottom:1.35rem;
}

h3{font-size:1.35rem}
p{margin-top:0}

.container{
  width:min(calc(100% - 2rem),var(--max-width));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  z-index:9999;
  background:#fff;
  color:#000;
  padding:.8rem 1rem;
}
.skip-link:focus{left:1rem;top:1rem}

.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1000;
  background:rgba(7,11,16,.9);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(14px);
}

.header-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
}

.brand{
  text-decoration:none;
  display:flex;
  flex-direction:column;
  color:var(--text-light);
  line-height:1.1;
  flex-shrink:0;
}

.brand-title{
  font-family:"Playfair Display",serif;
  font-weight:800;
  font-size:1.15rem;
}

.brand-author{
  font-size:.68rem;
  color:var(--muted-light);
  letter-spacing:.13em;
  text-transform:uppercase;
  margin-top:.32rem;
  font-weight:700;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:1rem;
}

.main-nav a{
  color:var(--text-light);
  text-decoration:none;
  font-size:.84rem;
  font-weight:700;
  white-space:nowrap;
}

.main-nav a:hover,
.main-nav a:focus{color:var(--accent-light)}

.main-nav a.nav-buy{
  background:var(--accent);
  color:#111;
  padding:.66rem 1rem;
  border-radius:999px;
  text-transform:uppercase;
  letter-spacing:.05em;
  font-size:.76rem;
  border:1px solid transparent;
}

.main-nav a.nav-buy:hover,
.main-nav a.nav-buy:focus{
  color:#111;
  background:var(--accent-light);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  padding:9px;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:26px;
  height:2px;
  background:#fff;
  margin:5px auto;
  transition:transform .2s ease,opacity .2s ease;
}

.menu-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.is-active span:nth-child(2){opacity:0}
.menu-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.section{padding:6.5rem 0}

.hero{
  min-height:calc(100vh - 84px);
  position:relative;
  display:grid;
  align-items:center;
  overflow:hidden;
  padding:7rem 0 2.8rem;
  color:var(--text-light);
  background:var(--bg-dark);
}

.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center 45%;
  background-repeat:no-repeat;
  filter:brightness(1.22) contrast(1.04);
  transform:scale(1.01);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(5,8,12,.42) 0%,
      rgba(5,8,12,.22) 48%,
      rgba(5,8,12,.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5,8,12,.02) 0%,
      rgba(5,8,12,.16) 100%
    );
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:860px;
  text-align:center;
}

.hero h1{
  color:var(--text-light);
  max-width:860px;
  margin-inline:auto;
}

.hero-lead{
  font-size:clamp(1.25rem,1.95vw,1.8rem);
  font-weight:700;
  max-width:820px;
  margin-inline:auto;
}

.hero-copy{
  max-width:720px;
  margin:1rem auto 2.2rem;
  color:var(--muted-light);
  font-size:1.08rem;
}

.eyebrow{
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.76rem;
  font-weight:800;
  color:var(--accent-light);
  margin-bottom:1.15rem;
}

.eyebrow-dark{color:#8c6335}
.lead{font-size:1.18rem;font-weight:700}

.cta-group{
  display:flex;
  justify-content:center;
  gap:1rem;
  flex-wrap:wrap;
}
.cta-left{justify-content:flex-start}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:.95rem 1.55rem;
  border-radius:999px;
  text-decoration:none;
  font-size:.86rem;
  font-weight:800;
  letter-spacing:.045em;
  text-transform:uppercase;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .18s ease,background .18s ease,border-color .18s ease,color .18s ease;
}

.button:hover,.button:focus{transform:translateY(-2px)}

.button-primary{
  background:var(--accent);
  color:#111;
}
.button-primary:hover,.button-primary:focus{background:var(--accent-light)}

.button-secondary{
  border-color:rgba(255,255,255,.58);
  color:var(--text-light);
  background:transparent;
}
.section-light .button-secondary{
  border-color:rgba(23,29,36,.3);
  color:var(--text-dark);
}

.social-proof{
  background:#0e151e;
  color:var(--text-light);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.social-proof-inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.25rem;
  text-align:center;
  font-size:.9rem;
}

.rating{display:flex;align-items:center;gap:.7rem}
.stars{color:var(--accent-light);letter-spacing:.05em}
.social-divider{width:1px;height:28px;background:rgba(255,255,255,.18)}

.section-light{background:var(--bg-light)}
.section-dark{background:var(--bg-dark);color:var(--text-light)}
.section-dark-alt{background:var(--bg-dark-alt);color:var(--text-light)}
.section-quote{background:var(--bg-mid);color:var(--text-light)}
.section-audiovisual{
  padding:4.8rem 0;
  background:var(--bg-mid);
  color:var(--text-light);
}

.audiovisual-section{
  display:grid;
  gap:2rem;
}

.audiovisual-main{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:clamp(2.5rem,4.5vw,4.5rem);
  align-items:center;
}

.audiovisual-image-wrap{
  margin:0;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(222,185,128,.22);
  box-shadow:0 28px 70px rgba(0,0,0,.28);
  background:#07101a;
}

.audiovisual-image{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:16/9;
  object-fit:cover;
}

.audiovisual-copy{
  max-width:none;
}

#audiovisual h2{
  max-width:none;
  margin-bottom:1.15rem;
  font-size:clamp(2.55rem,3.5vw,3.7rem);
  line-height:1.02;
}

#audiovisual h2 span{
  display:block;
}

.audiovisual-copy .lead{
  max-width:680px;
  margin-bottom:1rem;
}

.audiovisual-copy > p:not(.eyebrow):not(.lead){
  max-width:680px;
  color:#e4e9ee;
}

.audiovisual-points{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  margin:0;
}

.audiovisual-points article{
  padding:1.15rem 1.2rem;
  border-top:2px solid var(--accent);
  background:rgba(255,255,255,.035);
}

.audiovisual-points h3{
  font-family:"Inter",sans-serif;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.07em;
  color:var(--accent-light);
  margin-bottom:.35rem;
}

.audiovisual-points p{
  color:#dce3e9;
  margin:0;
}

.section-intro{
  max-width:780px;
  color:var(--text-dark);
  opacity:.9;
  margin-bottom:2rem;
}

.split-layout{
  display:grid;
  grid-template-columns:minmax(280px,.8fr) minmax(0,1.2fr);
  gap:clamp(2.5rem,6vw,6rem);
  align-items:center;
}
.content-block{max-width:730px}

.media-placeholder{
  display:grid;
  place-items:center;
  min-height:320px;
  border-radius:var(--radius);
  border:1px dashed rgba(45,55,65,.45);
  background:linear-gradient(135deg,rgba(195,147,85,.06),rgba(17,24,39,.03));
  color:#68727c;
  font-weight:800;
  letter-spacing:.11em;
  text-align:center;
  padding:2rem;
}

.section-dark .media-placeholder,
.section-dark-alt .media-placeholder,
.section-audiovisual .media-placeholder{
  border-color:var(--border-dark);
  color:var(--muted-light);
  background:linear-gradient(135deg,rgba(195,147,85,.08),rgba(255,255,255,.02));
}

.media-placeholder.portrait{aspect-ratio:3/4;min-height:480px}
.media-placeholder.square{aspect-ratio:1;min-height:auto;margin-bottom:1.25rem}
.media-placeholder.landscape{aspect-ratio:16/9;min-height:auto}
.review-media{min-height:250px}

.book-cover-wrap{
  margin:0;
  display:flex;
  justify-content:center;
  align-items:center;
}

.book-cover{
  width:min(100%,420px);
  height:auto;
  border-radius:12px;
  box-shadow:
    0 26px 55px rgba(8,12,17,.24),
    0 8px 18px rgba(8,12,17,.16);
  border:1px solid rgba(23,29,36,.12);
}

.feature-grid{
  margin-top:2.3rem;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.25rem;
}
.feature-grid article{
  padding:1.45rem;
  border-radius:16px;
  background:rgba(255,255,255,.52);
  border:1px solid var(--border-light);
}
.feature-grid h3{margin-bottom:.55rem}
.feature-grid p{margin-bottom:0}

.quote-band{
  text-align:center;
  max-width:980px;
}
.quote-band blockquote{
  font-family:"Playfair Display",serif;
  font-size:clamp(1.85rem,3.6vw,3.35rem);
  line-height:1.22;
  margin:0;
}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.35rem;
  margin-top:2.6rem;
}
.character-card{
  overflow:hidden;
  border-radius:var(--radius);
  padding:0;
  border:1px solid var(--border-dark);
  background:
    linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.018));
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}

.character-card:hover{
  transform:translateY(-5px);
  border-color:rgba(222,185,128,.42);
  box-shadow:0 24px 55px rgba(0,0,0,.28);
}

.character-image-wrap{
  position:relative;
  overflow:hidden;
  aspect-ratio:1;
  background:#080d13;
}

.character-image-wrap::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:38%;
  background:linear-gradient(180deg,transparent,rgba(8,13,19,.72));
  pointer-events:none;
}

.character-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  transition:transform .35s ease;
}

.character-card:hover .character-image{
  transform:scale(1.025);
}

.character-copy{
  padding:1.3rem 1.35rem 1.45rem;
}

.character-role{
  color:var(--accent-light) !important;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.69rem;
  font-weight:800;
  margin-bottom:.45rem !important;
}

.character-card h3{
  margin-bottom:.65rem;
  font-size:1.55rem;
}

.character-card p{
  color:#dde3e8;
  margin-bottom:0;
}

.buy-band{
  background:#0c1219;
  color:var(--text-light);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  padding:3.8rem 0;
}
.buy-band-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
}
.buy-band h2{
  margin-bottom:0;
  max-width:740px;
  font-size:clamp(2rem,3.9vw,3.25rem);
}

.featured-review{
  display:grid;
  grid-template-columns:minmax(220px,.65fr) minmax(0,1.35fr);
  gap:2rem;
  align-items:center;
  margin:2rem 0 2.3rem;
  padding:1.5rem;
  border-radius:var(--radius);
  border:1px solid var(--border-light);
  background:#fff;
}

.featured-review-copy blockquote{
  font-family:"Playfair Display",serif;
  font-size:clamp(1.45rem,2.4vw,2.2rem);
  line-height:1.28;
  margin:0 0 1rem;
}

.featured-review-video{
  grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr);
  padding:1.25rem;
  overflow:hidden;
}

.review-video-shell{
  overflow:hidden;
  border-radius:16px;
  background:#090d12;
  box-shadow:0 18px 42px rgba(7,11,16,.22);
}

.review-video{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:1;
  object-fit:cover;
  background:#090d12;
}

.featured-review-copy h3{
  font-size:clamp(1.75rem,2.8vw,2.55rem);
  margin-bottom:1rem;
}

.review-highlight{
  font-family:"Playfair Display",serif;
  font-size:clamp(1.25rem,2vw,1.7rem);
  line-height:1.35;
  color:#8c6335;
  font-weight:700;
  margin-bottom:1.1rem;
}

.button-review{
  margin-top:1.15rem;
  background:var(--bg-dark-alt);
  color:var(--text-light);
}

.button-review:hover,
.button-review:focus{
  background:var(--bg-mid);
}
.review-label{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.75rem;
  font-weight:800;
  color:#8c6335;
  margin-bottom:.7rem;
}
.review-source{
  color:var(--muted-dark);
  font-size:.88rem;
  margin-bottom:0;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.35rem;
}
.review-card{
  border-radius:var(--radius);
  padding:1.55rem;
  border:1px solid var(--border-light);
  background:#fff;
}

.review-card-link{
  display:flex;
  flex-direction:column;
  min-height:100%;
  text-decoration:none;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}

.review-card-link:hover,
.review-card-link:focus{
  transform:translateY(-4px);
  border-color:rgba(140,99,53,.38);
  box-shadow:0 18px 40px rgba(23,29,36,.1);
}

.review-card-editorial{
  background:
    linear-gradient(135deg,rgba(195,147,85,.08),rgba(255,255,255,.96));
}

.review-card p{
  font-family:"Playfair Display",serif;
  font-size:1.28rem;
  line-height:1.35;
  margin:0 0 .9rem;
}

.review-card span{
  display:block;
  color:var(--muted-dark);
  font-size:.84rem;
  line-height:1.45;
}

.review-card strong{
  display:block;
  margin-top:auto;
  padding-top:1rem;
  color:#8c6335;
  font-size:.8rem;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.video-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.5rem;
  margin-top:2.4rem;
}

.video-card-link{
  display:block;
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--border-dark);
  background:rgba(255,255,255,.025);
  color:var(--text-light);
  text-decoration:none;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}

.video-card-link:hover,
.video-card-link:focus{
  transform:translateY(-5px);
  border-color:rgba(222,185,128,.42);
  box-shadow:0 22px 48px rgba(0,0,0,.28);
}

.video-thumb-wrap{
  position:relative;
  overflow:hidden;
  aspect-ratio:16/9;
  background:#000;
}

.video-thumb{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease,filter .35s ease;
}

.video-card-link:hover .video-thumb,
.video-card-link:focus .video-thumb{
  transform:scale(1.025);
  filter:brightness(1.05);
}

.video-play{
  position:absolute;
  left:50%;
  top:50%;
  width:64px;
  height:64px;
  border-radius:50%;
  transform:translate(-50%,-50%);
  border:2px solid var(--accent-light);
  background:rgba(7,11,16,.78);
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.video-play::after{
  content:"";
  position:absolute;
  left:26px;
  top:19px;
  width:0;
  height:0;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  border-left:18px solid var(--text-light);
}

.video-card-copy{
  padding:1rem 1.1rem 1.15rem;
}

.video-card-copy h3{
  margin:0 0 .45rem;
}

.video-card-copy span{
  color:var(--accent-light);
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

#booktrailers h2{
  max-width:14ch;
}

.author-layout{
  grid-template-columns:minmax(0,1fr) minmax(280px,.9fr);
}

.section-author{
  position:relative;
  overflow:hidden;
  background:#07101a;
  color:var(--text-light);
}

.author-backdrop{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(5,9,14,.98) 0%,rgba(5,9,14,.92) 42%,rgba(5,9,14,.72) 100%),
    url("../assets/images/hero-reino-de-sombras.png") right center/cover no-repeat;
  opacity:.48;
}

.author-layout-premium{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(300px,.82fr) minmax(0,1.18fr);
  gap:clamp(2.5rem,5vw,5.5rem);
  align-items:center;
}

.author-portrait-wrap{
  margin:0;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(195,147,85,.55);
  background:#09111a;
  box-shadow:0 28px 70px rgba(0,0,0,.38);
}

.author-portrait{
  width:100%;
  height:auto;
  aspect-ratio:3/4;
  object-fit:cover;
  object-position:center top;
}

.author-content h2{
  margin-bottom:.85rem;
  max-width:none;
}

.author-tagline{
  font-family:"Playfair Display",serif;
  font-size:clamp(1.35rem,2.2vw,2rem);
  line-height:1.3;
  color:var(--accent-light);
  margin-bottom:1.5rem;
}

.author-content > p:not(.eyebrow):not(.author-tagline){
  color:#e4e9ee;
  max-width:760px;
}

.author-values{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  margin-top:2.2rem;
  border-top:1px solid rgba(195,147,85,.35);
  border-bottom:1px solid rgba(195,147,85,.25);
}

.author-value{
  padding:1.4rem 1rem 1.5rem;
  text-align:center;
  border-right:1px solid rgba(195,147,85,.22);
}

.author-value:last-child{border-right:0}

.author-value svg{
  width:34px;
  height:34px;
  fill:none;
  stroke:var(--accent-light);
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
  margin-bottom:.8rem;
}

.author-value h3{
  font-family:"Inter",sans-serif;
  color:var(--accent-light);
  font-size:.82rem;
  line-height:1.35;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:.55rem;
}

.author-value p{
  color:#d7dde3;
  font-size:.86rem;
  line-height:1.5;
  margin:0;
}

.author-links{
  display:flex;
  flex-wrap:wrap;
  gap:1.35rem;
  margin-top:1.6rem;
}

.author-links a{
  color:var(--accent-light);
  text-decoration:none;
  font-weight:800;
}

.author-links a:hover,
.author-links a:focus{
  text-decoration:underline;
  text-underline-offset:4px;
}

#autor h2,
#contacto h2{
  max-width:10ch;
}

#audiovisual h2{
  max-width:16ch;
  font-size:clamp(2.5rem,3.6vw,3.65rem);
  line-height:1.04;
  text-wrap:balance;
}


.section-faq{
  background:#ebe5da;
  color:var(--text-dark);
}

.faq-layout{
  display:grid;
  grid-template-columns:minmax(260px,.72fr) minmax(0,1.28fr);
  gap:clamp(2.5rem,6vw,6rem);
  align-items:start;
}

.faq-intro{
  position:sticky;
  top:110px;
}

.faq-intro h2{
  max-width:10ch;
  margin-bottom:1rem;
}

.faq-intro > p:last-child{
  max-width:42ch;
  color:var(--muted-dark);
}

.faq-list{
  display:grid;
  gap:.85rem;
}

.faq-item{
  border:1px solid var(--border-light);
  border-radius:16px;
  background:rgba(255,255,255,.62);
  overflow:hidden;
}

.faq-item summary{
  position:relative;
  cursor:pointer;
  list-style:none;
  padding:1.15rem 3.2rem 1.15rem 1.25rem;
  font-family:"Playfair Display",serif;
  font-size:1.18rem;
  font-weight:700;
  line-height:1.35;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:1.2rem;
  top:50%;
  transform:translateY(-50%);
  color:#8c6335;
  font-family:"Inter",sans-serif;
  font-size:1.5rem;
  font-weight:600;
}

.faq-item[open] summary::after{
  content:"–";
}

.faq-item[open] summary{
  border-bottom:1px solid var(--border-light);
}

.faq-answer{
  padding:1rem 1.25rem 1.2rem;
}

.faq-answer p{
  margin:0;
  color:#3f4851;
}

.faq-answer a{
  color:#8c6335;
  font-weight:700;
}

.contact-simple{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(280px,.7fr);
  gap:clamp(2.5rem,6vw,5rem);
  align-items:start;
}
.contact-copy{
  max-width:660px;
  font-size:1.05rem;
}
.contact-email a{
  font-family:"Playfair Display",serif;
  font-size:clamp(1.6rem,3vw,2.8rem);
  text-decoration:none;
  color:var(--accent-light);
  word-break:break-word;
}
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-top:2rem;
}

.contact-panel{
  padding:2rem;
  border-radius:var(--radius);
  border:1px solid var(--border-dark);
  background:rgba(255,255,255,.035);
}
.contact-panel-label{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.75rem;
  font-weight:800;
  color:var(--accent-light);
  margin-bottom:.55rem;
}
.contact-panel h3{
  font-size:2rem;
  margin-bottom:.55rem;
}
.contact-panel p{
  color:#e2e7ec;
  margin-bottom:1rem;
}
.text-link,
.text-link:visited{
  color:var(--accent-light);
  font-weight:800;
  text-decoration:none;
}

.site-footer{
  background:#06090d;
  color:var(--text-light);
  padding:2.5rem 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:2rem;
  align-items:center;
}
.footer-inner p{
  margin:.25rem 0 0;
  color:var(--muted-light);
}
.footer-inner nav{display:flex;gap:1rem}
.footer-inner a{
  color:var(--muted-light);
  text-decoration:none;
}

@media(max-width:1080px){
  .main-nav{gap:.75rem}
  .main-nav a{font-size:.78rem}
  .cards-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  #booktrailers h2{max-width:12ch}
}

@media(max-width:860px){
  .menu-toggle{display:block}

  .main-nav{
    position:fixed;
    top:76px;
    right:1rem;
    left:1rem;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:1rem;
    border-radius:16px;
    background:rgba(7,11,16,.98);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 22px 60px rgba(0,0,0,.35);
  }

  .main-nav.is-open{display:flex}
  .main-nav a{padding:.78rem;font-size:.9rem}
  .main-nav a.nav-buy{text-align:center}

  .split-layout,
  .contact-simple,
  .audiovisual-main,
  .faq-layout{grid-template-columns:1fr}

  .audiovisual-main{align-items:start}
  .audiovisual-points{grid-template-columns:1fr}
  .faq-intro{position:static}
  .faq-intro h2{max-width:none}

  .author-layout .media-placeholder{order:-1}
  .author-layout-premium{grid-template-columns:1fr}
  .author-portrait-wrap{
    width:min(100%,520px);
    margin-inline:auto;
  }
  .author-values{grid-template-columns:repeat(2,minmax(0,1fr))}
  .featured-review-video{grid-template-columns:minmax(240px,.8fr) minmax(0,1.2fr)}
  .author-value:nth-child(2){border-right:0}
  .author-value:nth-child(-n+2){border-bottom:1px solid rgba(195,147,85,.22)}
  .video-grid{grid-template-columns:1fr}

  .buy-band-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .social-proof-inner{
    flex-wrap:wrap;
    padding:1rem 0;
  }

  #autor h2{
    max-width:14ch;
    font-size:clamp(2.4rem,4vw,3.7rem);
    line-height:1.04;
  }

  #audiovisual h2{
    max-width:none;
    font-size:clamp(2.35rem,7vw,3.4rem);
  }

  #audiovisual h2 span{
    display:inline;
  }

  #contacto h2,
  #booktrailers h2{
    max-width:none;
  }
  .hero-bg{
    background-position:42% center !important;
  }
}

@media(max-width:640px){
  .section{padding:4.8rem 0}
  .hero{
    min-height:92vh;
    padding-top:7.2rem;
  }
  h1{font-size:clamp(3rem,16vw,4.8rem)}
  h2{font-size:clamp(2rem,10vw,3rem)}

  .feature-grid,
  .cards-grid,
  .reviews-grid{grid-template-columns:1fr}

  .featured-review,
  .featured-review-video{grid-template-columns:1fr}
  .review-video-shell{max-width:520px;margin-inline:auto}
  .media-placeholder.portrait{min-height:360px}

  .book-cover{
    width:min(88vw,360px);
  }

  .social-divider{display:none}
  .social-proof-inner{
    flex-direction:column;
    gap:.45rem;
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .cta-group,
  .contact-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .button{width:100%}

  .author-values{grid-template-columns:1fr}
  .author-value{
    border-right:0;
    border-bottom:1px solid rgba(195,147,85,.22);
  }
  .author-value:last-child{border-bottom:0}
  .author-links{flex-direction:column;gap:.75rem}

  .hero-bg{
    background-position:38% center !important;
    filter:brightness(1.16) contrast(1.04);
  }

  .hero{
    min-height:auto;
    padding:7rem 0 3rem;
  }

  .hero h1{
    font-size:clamp(3rem,15vw,4.4rem);
    line-height:.98;
  }

  .hero-lead{
    font-size:1.2rem;
  }

  .hero-copy{
    font-size:1rem;
  }
}

.hero h1,
.hero-lead,
.hero-copy{
  text-shadow:0 3px 14px rgba(0,0,0,.78);
}
