/* ============================================================
   NOBUNAGA NEWS — Samurai in Modern America
   Warm, handmade, storybook-leaning style
   ============================================================ */

:root {
  --paper:        #F6ECD2;
  --paper-deep:   #EFE0BC;
  --paper-shadow: #E1CE9F;
  --ink:          #2A2017;
  --ink-soft:     #5A4A35;
  --ink-faint:    #8C7656;
  --kimono:       #4F6B3E;
  --kimono-deep:  #36502A;
  --tatami:       #B89460;
  --sun:          #D9863C;
  --sun-soft:     #E4A867;
  --plum:         #B33A2E;
  --rule:         rgba(60, 45, 25, 0.18);

  --font-display: "Fraunces", "Hoefler Text", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Lora", Georgia, "Times New Roman", serif;
  --font-hand:    "Caveat", "Comic Sans MS", cursive;

  --shadow-soft:  0 4px 14px rgba(60, 40, 15, 0.10), 0 1px 3px rgba(60, 40, 15, 0.08);
  --shadow-card:  0 10px 28px rgba(60, 40, 15, 0.14), 0 2px 6px rgba(60, 40, 15, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(217, 134, 60, 0.07) 0, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(79, 107, 62, 0.06) 0, transparent 40%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='360' height='360' viewBox='0 0 360 360'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.36  0 0 0 0 0.27  0 0 0 0 0.15  0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  line-height: 1.7;
  font-size: 18px;
  min-height: 100vh;
  overflow-x: hidden;
}

/* --- Typography ------------------------------------------------ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin: 0 0 1.1em; }

a { color: var(--plum); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--kimono-deep); }

.hand {
  font-family: var(--font-hand);
  color: var(--sun);
  font-size: 1.6em;
  line-height: 1;
}

.eyebrow {
  font-family: var(--font-hand);
  color: var(--kimono-deep);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.2em;
  display: inline-block;
  transform: rotate(-1.5deg);
}

/* --- Layout helpers ------------------------------------------- */

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(720px, 92vw);
  margin: 0 auto;
}

section { padding: 5rem 0; }
section + section { padding-top: 1rem; }

/* --- Top nav --------------------------------------------------- */

.nav {
  padding: 1.2rem 0;
  border-bottom: 1px dashed var(--rule);
  background: rgba(246, 236, 210, 0.85);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: 42px; height: 42px; border-radius: 50%; background: var(--paper-deep); object-fit: cover; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
}
.brand-sub {
  font-family: var(--font-hand);
  font-size: 1.05rem;
  color: var(--kimono-deep);
  margin-top: 2px;
}

.nav-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.98rem;
  padding: 0.3rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover { color: var(--plum); border-bottom-color: var(--sun); }
.nav-links a.active { color: var(--ink); border-bottom-color: var(--kimono); }

/* --- Buttons --------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: transform .12s ease, box-shadow .12s ease, background .15s, color .15s;
  box-shadow: var(--shadow-soft);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); color: var(--paper); }

.btn.secondary {
  background: transparent;
  color: var(--ink);
}
.btn.secondary:hover { background: var(--ink); color: var(--paper); }

.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Hero ------------------------------------------------------ */

.hero {
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero.compact { padding: 1.8rem 0 1.6rem; }
.hero.compact .hero-grid { gap: 1.6rem; align-items: center; }
.hero.compact h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 0.3em; }
.hero.compact .tagline { margin-bottom: 0; }
.hero.compact .hero-figure img { max-width: 100%; max-height: 280px; object-fit: contain; }
@media (max-width: 800px) {
  .hero.compact { padding: 1rem 0 1rem; }
  .hero.compact .hero-figure img { max-height: 220px; }
  .hero.compact h1 { font-size: 1.6rem; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 { margin-bottom: 0.35em; }
.hero-copy .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--ink-soft);
  margin-bottom: 1.6em;
  max-width: 28em;
}
.hero-copy .intro {
  font-size: 1.05rem;
  margin-bottom: 2em;
  max-width: 32em;
}

.hero-figure {
  position: relative;
  text-align: center;
}
.hero-figure img {
  max-width: 92%;
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(60, 40, 15, 0.18));
  position: relative;
  z-index: 2;
}
.hero-figure::before {
  content: "";
  position: absolute;
  inset: 8% 8% 4% 8%;
  background: radial-gradient(ellipse at center,
    rgba(217, 168, 103, 0.45) 0,
    rgba(217, 168, 103, 0.10) 50%,
    transparent 75%);
  border-radius: 50%;
  z-index: 1;
}

/* Hero figure when it holds a full scenic papercraft (no drop-shadow halo glow,
   use card-like edge instead) */
.hero-figure.scene::before { display: none; }
.hero-figure.scene img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow:
    0 22px 40px rgba(60, 40, 15, 0.20),
    0 6px 14px rgba(60, 40, 15, 0.10);
  filter: none;
}

.hero-figure .scribble {
  position: absolute;
  font-family: var(--font-hand);
  color: var(--plum);
  font-size: 1.7rem;
  transform: rotate(-6deg);
  z-index: 3;
}
.hero-figure .scribble.top-right {
  top: 8%;
  right: 0;
}
.hero-figure .scribble.bottom-left {
  bottom: 6%;
  left: -2%;
  color: var(--kimono-deep);
  transform: rotate(4deg);
}

/* --- Section title with hand-drawn underline ------------------ */

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title .eyebrow { display: block; margin-bottom: 0.2em; }
.section-title h2 { display: inline-block; position: relative; }
.section-title h2::after {
  content: "";
  display: block;
  width: 72%;
  height: 8px;
  margin: 0.4rem auto 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'><path d='M2 5 Q 30 1, 60 4 T 120 5 T 198 3' fill='none' stroke='%23D9863C' stroke-width='2.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* --- Quote / pull quote --------------------------------------- */

.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  text-align: center;
  color: var(--ink-soft);
  max-width: 28em;
  margin: 3rem auto;
  line-height: 1.35;
  position: relative;
}
.pullquote::before, .pullquote::after {
  content: "";
  display: block;
  width: 40px;
  height: 14px;
  margin: 0 auto 1rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 14'><path d='M2 7 Q 10 1, 20 8 T 38 6' fill='none' stroke='%234F6B3E' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
}
.pullquote::after { margin: 1rem auto 0; transform: scaleX(-1); }

/* --- Card --------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card:hover { transform: translateY(-3px) rotate(-0.4deg); box-shadow: var(--shadow-card); }

.card .thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background: var(--paper-shadow);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }

.card .tag {
  display: inline-block;
  font-family: var(--font-hand);
  color: var(--kimono-deep);
  font-size: 1.15rem;
  margin-bottom: 0.2em;
  transform: rotate(-2deg);
}
.card h3 { margin-bottom: 0.4em; font-size: 1.25rem; }
.card p { font-size: 0.97rem; color: var(--ink-soft); margin-bottom: 0; }

/* --- Home top-4 teaser variant --- */
.card.teaser {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.card.teaser h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  line-height: 1.2;
}
.card.teaser .card-cat {
  font-family: var(--font-hand);
  color: var(--kimono-deep);
  font-size: 1.05rem;
  margin-bottom: 0.3em;
  transform: rotate(-1deg);
  line-height: 1;
}
.card.teaser .card-teaser {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0;
}

/* --- About / feature blocks --------------------------------- */

.feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  margin: 3rem 0;
}
.feature.reverse { grid-template-columns: 1.2fr 1fr; }
.feature.reverse .feature-img { order: 2; }

.feature-img img {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 18px rgba(60, 40, 15, 0.18));
}

.feature h3 { margin-bottom: 0.6em; }

/* --- NYT real coverage card (home) ---------------------------- */
.nyt-card {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 1.6rem 1.7rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}
.nyt-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  color: inherit;
}
.nyt-card-outlet {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}
.nyt-card-meta {
  font-family: var(--font-hand);
  color: var(--kimono-deep);
  font-size: 1rem;
  margin-top: 0.1em;
  margin-bottom: 0.7em;
}
.nyt-card-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 0.7em;
}
.nyt-card-source {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0 0 0.8em;
}
.nyt-card-cta {
  font-family: var(--font-hand);
  color: var(--plum);
  font-size: 1.05rem;
  margin-top: 0.2em;
}
.nyt-card-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(60, 40, 15, 0.20), 0 2px 6px rgba(60, 40, 15, 0.10);
  border: 1px solid rgba(60, 40, 15, 0.10);
}
@media (max-width: 800px) {
  .nyt-card { grid-template-columns: 1fr; }
  .nyt-card-right { order: -1; max-width: 480px; margin: 0 auto; }
}

/* --- Press strip ---------------------------------------------- */

.press-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.press-item {
  background: var(--paper-deep);
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-soft);
}
.press-item .outlet {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.35em;
}
.press-item .pending {
  display: inline-block;
  font-family: var(--font-hand);
  color: var(--plum);
  font-size: 1.05rem;
  margin-bottom: 0.5em;
  transform: rotate(-2deg);
}
.press-item p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }

/* --- Email signup --------------------------------------------- */

.signup {
  background: var(--paper-deep);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-soft);
  max-width: 540px;
  margin: 2rem auto 0;
  text-align: center;
}
.signup h3 { margin-bottom: 0.6em; }
.signup p { color: var(--ink-soft); }
.signup-row { display: flex; gap: 0.6rem; margin-top: 1.2rem; flex-wrap: wrap; justify-content: center; }
.signup input {
  flex: 1 1 220px;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--ink-faint);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}
.signup input:focus { outline: none; border-color: var(--ink); }

/* --- Page hero (smaller, for non-home pages) ------------------ */

.page-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}
.page-hero .tag-line {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 0.4em;
  font-size: 1.1rem;
}
.page-hero .mascot {
  width: 110px;
  margin: 0 auto 1rem;
  display: block;
  filter: drop-shadow(0 8px 12px rgba(60, 40, 15, 0.18));
}

/* Scenic mascot (papercraft scene image, square) */
.page-hero .mascot.scene {
  width: min(380px, 80vw);
  border-radius: 16px;
  box-shadow:
    0 16px 32px rgba(60, 40, 15, 0.18),
    0 4px 10px rgba(60, 40, 15, 0.08);
  filter: none;
  margin-bottom: 1.6rem;
}

/* --- Footer ---------------------------------------------------- */

footer {
  margin-top: 4rem;
  padding: 3rem 0 2.5rem;
  border-top: 1px dashed var(--rule);
  background: rgba(225, 206, 159, 0.25);
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
footer .footer-mark {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 0.4em;
}
footer .footer-hand {
  font-family: var(--font-hand);
  color: var(--kimono-deep);
  font-size: 1.15rem;
  margin-top: 0.6em;
}
footer .footer-links { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-top: 0.8em; }
footer .footer-links a { color: var(--ink-soft); text-decoration: none; }
footer .footer-links a:hover { color: var(--plum); }

/* --- Floating sidebar mini cards (today + BMC) ---------------- */
.floating-sidebar {
  position: fixed;
  right: 1.1rem;
  top: 92px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 196px;
}

.mini-card {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  box-shadow: 0 8px 16px rgba(60, 40, 15, 0.18), 0 2px 5px rgba(60, 40, 15, 0.10);
  transition: transform .15s ease, box-shadow .15s ease;
}
.mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(60, 40, 15, 0.22), 0 3px 7px rgba(60, 40, 15, 0.14);
}

.mini-today {
  background: #1c1410;
  color: #f4ede0;
}
.mini-today .mini-meta {
  font-family: var(--font-body);
  color: rgba(255, 220, 130, 0.68);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.mini-today .mini-label {
  font-family: var(--font-hand);
  color: #ffe14b;
  font-size: 0.92rem;
  line-height: 1;
  margin: 0.15em 0 0.18em;
}
.mini-today .mini-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.mini-today:hover { color: #fff; }

.mini-bmc {
  background: linear-gradient(135deg, #FFE76A 0%, #FFD000 100%);
  color: #1a1a1a;
}
.mini-bmc .mini-label {
  font-family: var(--font-hand);
  color: rgba(40, 30, 15, 0.7);
  font-size: 0.9rem;
  line-height: 1;
  margin-bottom: 0.18em;
}
.mini-bmc .mini-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}
.mini-bmc:hover { color: #000; }

/* mobile inline strip (visible when floating is hidden) */
.mobile-cta-strip {
  display: none;
  width: min(1080px, 92vw);
  margin: 0.8rem auto 0;
  gap: 0.6rem;
}
.mobile-cta-strip .mini-card {
  flex: 1;
  min-width: 0;
}

@media (max-width: 1240px) {
  .floating-sidebar { display: none; }
  .mobile-cta-strip { display: flex; }
}
@media (max-width: 560px) {
  .mobile-cta-strip { flex-direction: column; }
}

/* --- Today's post banner (home) ------------------------------- */
.today-banner-section {
  padding: 1rem 0 0.4rem;
}
.today-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(1080px, 92vw);
  margin: 0 auto;
  padding: 0.85rem 1.1rem;
  background: #1c1410;
  color: #f4ede0;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(60, 40, 15, 0.22), 0 3px 8px rgba(60, 40, 15, 0.10);
  border: 1px solid rgba(255, 220, 130, 0.18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.today-banner:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 18px 36px rgba(60, 40, 15, 0.28), 0 4px 10px rgba(60, 40, 15, 0.14);
}
.today-banner-pulse {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-hand);
  color: #ffe14b;
  font-size: 1.0rem;
  flex-shrink: 0;
  padding-right: 0.9rem;
  border-right: 1px dashed rgba(255, 225, 75, 0.35);
}
.today-banner-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: #ffe14b;
  box-shadow: 0 0 0 0 rgba(255, 225, 75, 0.6);
  animation: today-banner-pulse 1.6s ease-in-out infinite;
}
@keyframes today-banner-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(255, 225, 75, 0.65); }
  70%  { box-shadow: 0 0 0 8px rgba(255, 225, 75, 0); }
  100% { box-shadow: 0 0 0 0   rgba(255, 225, 75, 0); }
}
.today-banner-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.today-banner-meta {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(244, 237, 224, 0.65);
  font-size: 0.95rem;
  flex: 1;
}
.today-banner-arrow {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #ffe14b;
}
@media (max-width: 700px) {
  .today-banner { flex-wrap: wrap; gap: 0.55rem; padding: 0.7rem 0.9rem; }
  .today-banner-pulse { border-right: 0; padding-right: 0; }
  .today-banner-meta { flex: 1 0 100%; font-size: 0.88rem; }
}

/* --- Buy Me a Coffee section (home) --------------------------- */

.bmc-section {
  padding: 2rem 0 2.4rem;
  position: relative;
}
.bmc-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 221, 0, 0.06) 0, transparent 55%);
  pointer-events: none;
}
.bmc-grid {
  position: relative;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}
.bmc-figure {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 14px 28px rgba(60, 40, 15, 0.18),
    0 4px 10px rgba(60, 40, 15, 0.10);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  background: var(--paper);
  width: 200px;
  margin: 0 auto;
}
.bmc-figure:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 28px 56px rgba(60, 40, 15, 0.26), 0 8px 18px rgba(60, 40, 15, 0.12);
}
.bmc-figure img { width: 100%; height: auto; display: block; }

.bmc-copy h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin: 0.1em 0 0.4em;
}
.bmc-copy p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 30em;
  margin: 0 0 1em;
}
.bmc-copy .bmc-fineprint {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin: 1em 0 0;
  max-width: 30em;
}

.bmc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFDD00;
  color: #1a1a1a;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(255, 200, 0, 0.35), 0 2px 6px rgba(60, 40, 15, 0.15);
  transition: transform .15s ease, box-shadow .15s ease, background .15s;
  letter-spacing: -0.005em;
}
.bmc-cta:hover {
  background: #FFE633;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 200, 0, 0.45), 0 3px 8px rgba(60, 40, 15, 0.18);
}
.bmc-cta-icon {
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 800px) {
  .bmc-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .bmc-figure { margin: 0 auto; width: 170px; }
  .bmc-copy { text-align: center; }
  .bmc-copy p { margin-left: auto; margin-right: auto; }
}

/* --- Musk feature (home) -------------------------------------- */

.musk-feature {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.musk-original,
.musk-reply {
  text-decoration: none;
  color: inherit;
  display: flex;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.musk-original:hover,
.musk-reply:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

.musk-original {
  background: var(--paper-deep);
  flex-direction: row;
}
.musk-original > img {
  width: 44%;
  object-fit: cover;
  background: var(--paper-shadow);
}
.musk-original-body {
  padding: 1.6rem 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.musk-original-body h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin: 0.25em 0 0.55em;
}
.musk-original-body p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0 0 1em;
  line-height: 1.55;
  flex: 1;
}
.musk-original-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--ink-faint);
  padding-top: 0.7em;
  border-top: 1px dashed var(--rule);
  align-items: center;
  flex-wrap: wrap;
}
.musk-original-stats .read-on-x { margin-left: auto; font-family: var(--font-hand); font-size: 1.05rem; color: var(--ink-soft); }

.musk-reply {
  background: linear-gradient(160deg, #14161a 0%, #1f2329 100%);
  color: #f4ede0;
  padding: 1.7rem 1.5rem;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.musk-reply::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0; bottom: 0;
  background-image: radial-gradient(circle at 80% 10%, rgba(217, 134, 60, 0.25) 0, transparent 50%);
  pointer-events: none;
}
.musk-reply-eyebrow {
  font-family: var(--font-hand);
  color: #d9863c;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.musk-reply-handle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #f4ede0;
  margin: 0.2em 0 0.6em;
  letter-spacing: -0.01em;
}
.musk-reply-text {
  font-size: 3.4rem;
  line-height: 1;
  margin: 0.3em 0 0.5em;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.musk-reply-stats {
  display: flex;
  gap: 0.9rem;
  font-size: 0.88rem;
  color: rgba(244, 237, 224, 0.7);
  padding-top: 0.9em;
  border-top: 1px dashed rgba(244, 237, 224, 0.2);
  align-items: center;
  flex-wrap: wrap;
}
.musk-reply-stats .read-on-x {
  margin-left: auto;
  font-family: var(--font-hand);
  font-size: 1.05rem;
  color: #d9863c;
}

@media (max-width: 800px) {
  .musk-feature { grid-template-columns: 1fr; }
  .musk-original { flex-direction: column; }
  .musk-original > img { width: 100%; height: 220px; }
  .musk-reply-text { font-size: 2.8rem; }
}

/* --- Mobile ---------------------------------------------------- */

@media (max-width: 800px) {
  body { font-size: 17px; }
  section { padding: 3.2rem 0; }

  .hero { padding: 2.5rem 0 2rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 1.8rem; text-align: center; }
  .hero-figure { order: -1; }
  .hero-copy .intro { margin-left: auto; margin-right: auto; }
  .btn-row { justify-content: center; }

  .feature, .feature.reverse {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    text-align: center;
  }
  .feature.reverse .feature-img { order: -1; }

  .nav-inner { gap: 0.4rem; }
  .nav-links { gap: 0.8rem; font-size: 0.9rem; }
}
