@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,700;0,900;1,400&family=Archivo+Black&family=Newsreader:ital,wght@0,400;0,500;1,400&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burnt: #B83A20;
  --burnt-light: #D14E30;
  --moss: #4A5C3E;
  --dark: #161412;
  --mid: #2A2622;
  --bone: #F0EBE0;
  --bone-deep: #E5DDD0;
  --text: #161412;
  --text-muted: #5C564C;
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Archivo', system-ui, sans-serif;
  --display: 'Archivo Black', 'Archivo', system-ui, sans-serif;
  --mono: 'Space Mono', 'Courier New', monospace;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bone);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── ART DÉCO TRIANGLE MOTIF ──
   Reusable background pattern, lifted from the print-vintage reference.
   Use sparingly: nav backdrop, section dividers, never as a full-page wash. */
.deco-pattern {
  background-color: var(--bone);
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 69px, rgba(22,20,18,0.16) 69px, rgba(22,20,18,0.16) 70px),
    repeating-linear-gradient(-60deg, transparent, transparent 69px, rgba(22,20,18,0.16) 69px, rgba(22,20,18,0.16) 70px),
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(22,20,18,0.16) 59px, rgba(22,20,18,0.16) 60px);
}

.deco-pattern-dark {
  background-color: var(--dark);
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 69px, rgba(239,233,220,0.1) 69px, rgba(239,233,220,0.1) 70px),
    repeating-linear-gradient(-60deg, transparent, transparent 69px, rgba(239,233,220,0.1) 69px, rgba(239,233,220,0.1) 70px),
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(239,233,220,0.1) 59px, rgba(239,233,220,0.1) 60px);
}

/* ── NAV ── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s;
}

nav.site-nav.scrolled {
  background: rgba(26,24,20,0.92);
  backdrop-filter: blur(12px);
}

nav.site-nav.light {
  background: rgba(245,242,237,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(26,24,20,0.1);
}

.nav-name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
}

nav.light .nav-name { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

nav.light .nav-links a { color: var(--text-muted); }
nav.light .nav-links a:hover,
nav.light .nav-links a.active { color: var(--text); }

.lang-toggle {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  background: none;
  border: 0.5px solid rgba(255,255,255,0.25);
  padding: 4px 10px;
  border-radius: 2px;
  font-family: var(--sans);
  transition: all 0.2s;
}

.lang-toggle:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

nav.light .lang-toggle {
  color: var(--text-muted);
  border-color: rgba(26,24,20,0.2);
}

nav.light .lang-toggle:hover {
  color: var(--text);
  border-color: rgba(26,24,20,0.5);
}

/* ── HERO — SPLIT LAYOUT ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  padding-top: var(--nav-h);
  background: var(--bone);
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  align-items: stretch;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 2.5rem;
}

.hero-photo-col {
  position: relative;
  overflow: hidden;
}

.hero-photo-frame {
  position: absolute;
  inset: 0;
  padding: 3rem 2rem 3rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* Softer treatment for split hero — less dramatic, more approachable */
.treat-softer {
  filter: contrast(1.04) saturate(0.75) brightness(1.08) sepia(0.08);
}

/* ── PHOTOGRAPHIC TREATMENT SYSTEM ──
   Same subject, different register per section.
   The variation itself is the visual signature. */
.treat-dramatic {
  filter: contrast(1.15) saturate(0.85) brightness(0.95);
}

.treat-duotone {
  filter: grayscale(1) contrast(1.2) brightness(1.05) sepia(0.25) saturate(1.4) hue-rotate(-8deg);
}

.treat-cool-doc {
  filter: grayscale(0.4) contrast(1.1) saturate(0.7) brightness(1.02) hue-rotate(2deg);
}

.treat-warm-archive {
  filter: sepia(0.35) saturate(1.3) contrast(1.05) brightness(1.04);
}

.treat-bw-stark {
  filter: grayscale(1) contrast(1.3) brightness(0.92);
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burnt);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 400;
  color: var(--dark);
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

.hero-title em {
  font-style: normal;
  color: var(--burnt);
}

.hero-bio {
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-secondary-dark {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(22,20,18,0.3);
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-secondary-dark:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--bone);
}

.btn-primary {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  background: var(--burnt);
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.cv-btn { margin-top: 0.5rem; }
.book-tag-spaced { margin-bottom: 0.6rem; display: inline-block; }

.btn-primary:hover { background: var(--burnt-light); }

.btn-secondary {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 0.5px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

/* ── SECTION STRIP ── */
.section-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 0.5px solid rgba(26,24,20,0.12);
}

.strip-item {
  padding: 2rem 1.5rem;
  border-right: 0.5px solid rgba(26,24,20,0.1);
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: background 0.2s;
  position: relative;
}

.strip-item:last-child { border-right: none; }

.strip-item:hover { background: rgba(139,74,47,0.05); }

.strip-item:hover .strip-arrow { transform: translateX(4px); }

.strip-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--burnt);
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.strip-title {
  font-family: var(--display);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 400;
  display: block;
  margin-bottom: 0.4rem;
}

.strip-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  display: block;
  margin-bottom: 1rem;
  font-weight: 300;
}

.strip-arrow {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.2s;
  display: inline-block;
}

/* ── FEATURED BOOKS ROW ── */
.featured-row {
  padding: 4rem 2.5rem;
  border-bottom: 0.5px solid rgba(26,24,20,0.1);
}

.section-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: rgba(26,24,20,0.15);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.book-card {
  display: flex;
  gap: 1.2rem;
}

.book-cover {
  width: 72px;
  height: 100px;
  border-radius: 2px;
  flex-shrink: 0;
  object-fit: cover;
}

.book-cover-placeholder {
  width: 72px;
  height: 100px;
  border-radius: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  font-family: var(--serif);
}

.book-meta { flex: 1; }

.book-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--burnt);
  border: 1px solid var(--burnt);
  padding: 2px 6px;
  border-radius: 0;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.book-title {
  font-family: var(--display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.book-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 300;
}

/* ── INNER PAGE HERO ── */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
  background-size: cover;
  background-position: center;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.92) 0%, rgba(26,24,20,0.25) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 2.5rem;
}

.page-hero-title {
  font-family: var(--display);
  font-size: clamp(32px, 5.5vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}

.page-hero-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  font-weight: 300;
}

/* ── CONTENT AREA ── */
.content-area {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
}

/* ── FOOTER ── */
footer.site-footer {
  background: var(--dark);
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 69px, rgba(239,233,220,0.06) 69px, rgba(239,233,220,0.06) 70px),
    repeating-linear-gradient(-60deg, transparent, transparent 69px, rgba(239,233,220,0.06) 69px, rgba(239,233,220,0.06) 70px);
  color: rgba(239,233,220,0.5);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ── UTILITIES ── */
.accent-line {
  width: 36px;
  height: 2px;
  background: var(--burnt);
  margin-bottom: 1.5rem;
}

[data-lang="en"] { display: none; }
body.lang-en [data-lang="es"] { display: none; }
body.lang-en [data-lang="en"] { display: revert; }

/* ── BREAKING THE GRID: asymmetric home layout ── */

.hero-title {
  font-size: clamp(56px, 9vw, 108px);
  letter-spacing: -0.01em;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
}

/* Section strip: asymmetric, no uniform borders */
.section-strip {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  border-bottom: none;
}

.strip-item {
  border-right: none;
  padding: 2.4rem 1.6rem;
  position: relative;
}

.strip-item:nth-child(odd) {
  background: rgba(26,24,20,0.025);
}

.strip-item:first-child {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.strip-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.6rem; right: 1.6rem;
  height: 1px;
  background: linear-gradient(to right, var(--burnt) 28px, transparent 28px);
}

.strip-item:first-child .strip-title {
  font-size: 20px;
}

.strip-item:hover {
  background: rgba(139,74,47,0.06);
}

/* Featured books: break the 3-equal-card pattern */
.featured-row {
  padding: 5rem 2.5rem 4rem;
}

.books-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr;
  gap: 0 3rem;
  align-items: start;
}

.book-card:first-child {
  grid-row: span 2;
  flex-direction: column;
}

.book-card:first-child .book-cover-placeholder {
  width: 100%;
  height: 220px;
}

.book-card:first-child .book-title {
  font-size: 26px;
  margin-top: 1rem;
}

.book-card:nth-child(2),
.book-card:nth-child(3) {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(26,24,20,0.1);
}

.book-card:nth-child(3) {
  margin-top: 1.5rem;
}

@media (max-width: 860px) {
  .section-strip { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .book-card:first-child { grid-row: auto; }
}

/* ── PERSONAL SITE REDESIGN PASS — production-first, less institutional ── */
:root {
  --burnt: #C64224;
  --burnt-light: #E35A36;
  --ink: #17120F;
  --night: #120F0D;
  --bone: #F3EDE2;
  --bone-deep: #E4D6C5;
  --acid: #D7E15C;
  --text-muted: #62594F;
}

body {
  background:
    radial-gradient(circle at 8% 4%, rgba(198,66,36,0.10), transparent 27rem),
    radial-gradient(circle at 90% 18%, rgba(215,225,92,0.10), transparent 24rem),
    var(--bone);
}

nav.site-nav.light {
  background: rgba(243,237,226,0.82);
  border-bottom: 1px solid rgba(23,18,15,0.10);
}

.nav-name { letter-spacing: -0.015em; }
.nav-links { gap: 1.25rem; }
.nav-links a { letter-spacing: 0.08em; }

.home-hero-v2 {
  min-height: calc(100vh - var(--nav-h));
  padding: calc(var(--nav-h) + 5vw) 2.5rem 5vw;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  border-bottom: 1px solid rgba(23,18,15,0.12);
}

.home-copy-v2 { max-width: 760px; }
.home-copy-v2 .hero-title {
  font-size: clamp(58px, 10vw, 138px);
  line-height: 0.86;
  letter-spacing: -0.055em;
  max-width: 760px;
}
.home-copy-v2 .hero-bio {
  max-width: 620px;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.55;
  color: #2B241E;
}

.home-image-v2 {
  position: relative;
  min-height: 620px;
}
.image-stack-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(23,18,15,0.18);
}
.image-stack-card img { width: 100%; height: 100%; object-fit: cover; display:block; }
.card-a { inset: 0 5% 6% 12%; transform: rotate(1.5deg); }
.card-b {
  left: 0; bottom: 0;
  width: 46%; height: 160px;
  color: rgba(243,237,226,0.70);
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 1rem;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.btn-primary, .btn-secondary-dark {
  border-radius: 999px;
  letter-spacing: 0.12em;
}
.btn-primary { box-shadow: 0 10px 26px rgba(198,66,36,0.20); }
.btn-secondary-dark:hover { box-shadow: 0 10px 28px rgba(23,18,15,0.14); }

.now-panel {
  padding: 4.5rem 2.5rem 2.5rem;
  background: linear-gradient(180deg, rgba(23,18,15,0.035), rgba(23,18,15,0));
}
.now-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burnt);
  margin-bottom: 1.2rem;
}
.now-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1rem;
}
.now-card {
  min-height: 250px;
  padding: 1.5rem;
  border: 1px solid rgba(23,18,15,0.12);
  border-radius: 22px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  transition: transform 0.18s, border-color 0.18s, background 0.18s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.now-card:hover { transform: translateY(-4px); border-color: rgba(198,66,36,0.48); background: rgba(255,255,255,0.44); }
.now-card h2, .now-card h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0.8rem 0 0.8rem;
}
.now-card h2 { font-size: clamp(42px, 6vw, 88px); }
.now-card h3 { font-size: clamp(24px, 3vw, 38px); }
.now-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; max-width: 560px; }
.now-card-featured {
  background:
    linear-gradient(140deg, rgba(18,15,13,0.92), rgba(69,36,26,0.88)),
    var(--night);
  color: var(--bone);
}
.now-card-featured p { color: rgba(243,237,226,0.74); }
.now-card-featured .strip-arrow { color: var(--acid); margin-top: 1rem; }

.section-strip-v2 { grid-template-columns: repeat(4, 1fr); }
.section-strip-v2 .strip-item:first-child { padding-top: 2.4rem; padding-bottom: 2.4rem; }
.section-strip-v2 .strip-item:first-child .strip-title { font-size: 18px; }

.featured-row-v2 .book-card { background: rgba(255,255,255,0.18); border-radius: 18px; padding: 1rem; }
.featured-row-v2 .book-cover,
.featured-row-v2 .book-cover-placeholder { border-radius: 12px; box-shadow: 0 14px 32px rgba(23,18,15,0.12); }

.page-hero {
  border-bottom: 1px solid rgba(23,18,15,0.12);
}
.page-hero-title { letter-spacing: -0.05em; }
.page-hero-overlay {
  background: linear-gradient(to top, rgba(18,15,13,0.94) 0%, rgba(18,15,13,0.28) 100%);
}

.content-area { max-width: 1040px; }
.books-full-grid { gap: 2rem; }
.book-full-card, .video-card, .contact-form-area {
  border-radius: 18px;
}
.book-full-cover, .book-full-cover-placeholder, .fiction-featured-img { border-radius: 16px; box-shadow: 0 18px 44px rgba(23,18,15,0.12); }
.book-full-card { padding: 1rem; background: rgba(255,255,255,0.16); }
.fiction-featured {
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(23,18,15,0.10);
  border-radius: 28px;
  padding: 1.5rem;
}
.fiction-featured-title { letter-spacing: -0.055em; }

.column-item, .paper-item { transition: background 0.16s; }
.column-item:hover, .paper-item:hover { background: rgba(198,66,36,0.045); }

footer.site-footer { margin-top: 3rem; }

.mobile-menu-toggle { display: none; }
.site-nav.nav-open .nav-links { display: flex; }

@media (max-width: 980px) {
  .home-hero-v2 { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 3rem); }
  .home-image-v2 { min-height: 460px; }
  .card-a { inset: 0 0 0 16%; }
  .now-grid { grid-template-columns: 1fr; }
  .section-strip-v2 { grid-template-columns: 1fr 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .featured-row-v2 .book-card:first-child { flex-direction: row; }
  .featured-row-v2 .book-card:first-child .book-cover-placeholder { width: 72px; height: 100px; }
}

@media (max-width: 760px) {
  nav.site-nav { padding: 0 1rem; }
  .nav-right { gap: 0.75rem; }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 32px;
    border: 1px solid rgba(23,18,15,0.18);
    border-radius: 999px;
    background: transparent;
    font-family: var(--mono);
    font-size: 16px;
    color: var(--text);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: rgba(243,237,226,0.98);
    border-bottom: 1px solid rgba(23,18,15,0.12);
  }
  .nav-links li { padding: 0.55rem 0; }
  .nav-links a { color: var(--text) !important; font-size: 12px; }
  .home-hero-v2, .now-panel, .featured-row { padding-left: 1.15rem; padding-right: 1.15rem; }
  .home-image-v2 { min-height: 360px; }
  .card-b { display: none; }
  .section-strip-v2 { grid-template-columns: 1fr; }
  footer.site-footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links { flex-wrap: wrap; }
}

/* ─────────────────────────────────────────────
   v3 reset: creative vintage, not academic
   Segoe/Bauhaus-ish, fewer tricks, cleaner images
───────────────────────────────────────────── */
:root {
  --burnt: #C43C2F;
  --burnt-light: #E05243;
  --dark: #151515;
  --mid: #2A2926;
  --bone: #F4EFE4;
  --bone-deep: #E7DDCA;
  --text: #151515;
  --text-muted: #605B52;
  --sans: 'Segoe UI', 'Aptos', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Segoe UI', 'Aptos Display', system-ui, sans-serif;
  --mono: 'Segoe UI Mono', 'Cascadia Mono', 'Courier New', monospace;
}
body {
  font-family: var(--sans);
  background:
    radial-gradient(circle at 12% 8%, rgba(196,60,47,.07), transparent 28%),
    linear-gradient(180deg, #F7F2E8 0%, var(--bone) 52%, #EFE7DA 100%);
}
body::before {
  content:"";
  position: fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  opacity:.26;
  background-image: linear-gradient(rgba(21,21,21,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(21,21,21,.04) 1px, transparent 1px);
  background-size: 34px 34px;
}
.nav-name, .hero-title, .book-title, .book-full-title, .strip-title, .inner-title {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .015em;
}
.nav-links a, .book-tag, .section-label, .now-kicker, .strip-tag, .book-buy-link {
  font-family: var(--mono);
  letter-spacing: .13em;
}
.home-hero-v2 { background: transparent; }
.home-image-v2 { min-height: 520px; }
.image-stack-card.card-a {
  background: var(--bone-deep);
  border: 1px solid rgba(21,21,21,.18);
  box-shadow: 10px 10px 0 rgba(196,60,47,.16);
}
.image-stack-card.card-a img, .hero-photo-frame img {
  object-fit: contain;
  object-position: center;
  background: #F7F2E8;
}
.image-stack-card.card-b {
  border-radius: 999px;
  background: var(--burnt) !important;
  color: var(--bone);
  width: 132px;
  height: 132px;
  right: 5%;
  bottom: 8%;
}
.deco-pattern, .deco-pattern-dark { background-image: none; }
.now-panel, .featured-row-v2, .section-strip-v2 {
  background: rgba(247,242,232,.72);
  border-top: 1px solid rgba(21,21,21,.12);
  border-bottom: 1px solid rgba(21,21,21,.12);
}
.now-card, .strip-item, .book-card {
  border: 1px solid rgba(21,21,21,.14);
  background: rgba(255,252,246,.62);
}
.now-card-featured {
  background: var(--dark);
  color: var(--bone);
}
.book-cover, .book-full-cover {
  object-fit: contain !important;
  object-position: center !important;
  background: #fffdf8;
  border: 1px solid rgba(21,21,21,.14);
  padding: 4px;
  box-shadow: 5px 5px 0 rgba(21,21,21,.07);
}
.book-card .book-cover {
  height: 220px;
}
.book-card {
  align-items: stretch;
}
.book-card .book-cover-placeholder { display:none; }
.btn-primary { background: var(--burnt); color: #fff; }
.btn-secondary-dark { border-color: rgba(21,21,21,.55); color: var(--dark); }
