/* ============================================================
   The Production Shelf — site stylesheet
   Cinematic editorial. Warm paper background, deep film-black
   accents, film-gold highlight, editorial serif display.
   ============================================================ */

:root {
  /* Palette */
  --ink: #0d0c0a;
  --ink-2: #1a1814;
  --paper: #f7f3ec;
  --paper-2: #efe9dd;
  --surface: #ffffff;
  --surface-2: #faf6ee;
  --line: #e6dfce;
  --line-strong: #d6cdb6;
  --text: #1a1814;
  --text-muted: #6b6256;
  --text-soft: #8a8073;
  --gold: #c9933a;
  --gold-hover: #a87a2c;
  --gold-soft: #f3e6c8;
  --accent-red: #c0392b;

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", "Iowan Old Style",
    "Apple Garamond", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter,
    system-ui, sans-serif;

  /* Layout */
  --container: 1100px;
  --container-narrow: 760px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(20, 16, 10, 0.04);
  --shadow-md: 0 12px 32px -16px rgba(20, 16, 10, 0.18);
  --shadow-lg: 0 28px 60px -24px rgba(20, 16, 10, 0.25);
  --transition: 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }

/* Subtle paper grain — pure CSS, no extra requests */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(201, 147, 58, 0.07), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(13, 12, 10, 0.05), transparent 50%);
}
body > * { position: relative; z-index: 1; }

/* ----- typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.005em; }
h4 { font-size: 1rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-hover);
  margin: 0 0 1rem;
}

.eyebrow.on-dark { color: var(--gold); }

/* ----- header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(13, 12, 10, 0.08);
}
.site-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: 0 0 32px;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  opacity: 0.85;
}
.brand-mark span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  letter-spacing: 0;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.78;
  transition: opacity var(--transition), color var(--transition);
}
.site-nav a:hover { opacity: 1; color: var(--ink); }
.site-nav a.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  opacity: 1;
  font-weight: 600;
}
.site-nav a.nav-cta:hover { background: var(--ink-2); color: var(--gold); }

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  border: 1px solid var(--ink);
  transition: transform var(--transition), background var(--transition),
    color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn:hover {
  background: var(--ink-2);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-hover); color: var(--ink); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); color: var(--gold); }

/* ----- layout primitives ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 4rem 0;
}
.section-tight { padding: 2.5rem 0; }

/* ----- hero ----- */
.hero {
  position: relative;
  padding: 6rem 1.5rem 4.5rem;
  text-align: center;
  overflow: hidden;
}
.hero-content {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-hover);
}
.hero .lead {
  margin: 1.25rem auto 2rem;
  max-width: 600px;
}
.hero-cta-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* Decorative film-strip strip under hero */
.film-strip {
  height: 28px;
  background:
    linear-gradient(var(--ink), var(--ink)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 18px,
      var(--gold) 18px,
      var(--gold) 26px
    );
  background-blend-mode: normal;
  position: relative;
  overflow: hidden;
}
.film-strip::before,
.film-strip::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 6px;
  background-image: radial-gradient(
    circle, var(--paper) 0 2.5px, transparent 3px
  );
  background-size: 18px 6px;
  background-repeat: repeat-x;
}
.film-strip::before { top: 4px; }
.film-strip::after { bottom: 4px; }

/* ----- page intro (smaller than hero, used on inner pages) ----- */
.page-intro {
  padding: 4.5rem 1.5rem 2.5rem;
  text-align: center;
}
.page-intro-inner {
  max-width: 760px;
  margin: 0 auto;
}
.page-intro h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.page-intro .lead {
  margin: 1rem auto 0;
  max-width: 620px;
}

/* ----- cards / grid ----- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
  position: relative;
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -0.005em;
}
.card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}
.card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--gold-hover);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.card .card-meta {
  margin-top: 0.9rem;
  font-size: 0.84rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.card .card-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.card .card-link::after {
  content: "→";
  transition: transform var(--transition);
}
.card .card-link:hover::after { transform: translateX(3px); }
.card .price {
  display: inline-block;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.9rem;
  font-size: 1rem;
}

/* Tile card — link-as-card for blog list */
a.card-link-block {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.card-link-block:hover { color: inherit; }

/* ----- tag / chip ----- */
.tag {
  display: inline-block;
  background: var(--paper-2);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.tag.tag-gold {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--gold-hover);
}

/* ----- feature blocks (dark) ----- */
.feature-dark {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.2rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 147, 58, 0.22), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(201, 147, 58, 0.08), transparent 45%);
  pointer-events: none;
}
.feature-dark > * { position: relative; }
.feature-dark h2 { color: var(--paper); }
.feature-dark p { color: rgba(247, 243, 236, 0.78); max-width: 640px; }
.feature-dark .price-large {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0.5rem 0 1.5rem;
  letter-spacing: -0.01em;
}

/* ----- editorial / article ----- */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.article-header { margin-bottom: 2rem; }
.article-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  align-items: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.article-meta a { color: var(--text); font-weight: 600; text-decoration: none; }
.article-meta a:hover { color: var(--gold-hover); }
.article-meta .dot { color: var(--line-strong); }
.article p { color: var(--text); font-size: 1.06rem; line-height: 1.78; margin: 0 0 1.1rem; }
.article ul, .article ol {
  margin: 0 0 1.2rem;
  padding-left: 1.4rem;
  color: var(--text);
}
.article li { margin-bottom: 0.55rem; line-height: 1.72; }
.article h2 {
  margin: 2.6rem 0 0.9rem;
  font-size: 1.6rem;
}
.article h3 {
  margin: 1.8rem 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
}
.article em { font-style: italic; color: var(--ink-2); }
.article a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.article a:hover { color: var(--gold-hover); }
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.article th, .article td {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
  text-align: left;
}
.article th {
  background: var(--surface-2);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.article tr:last-child td { border-bottom: 0; }

.disclosure-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin: 0 0 2rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.disclosure-box strong { color: var(--ink); }

.inline-cta-box {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
  margin: 2.25rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inline-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(201, 147, 58, 0.18), transparent 50%);
}
.inline-cta-box > * { position: relative; }
.inline-cta-box p { color: rgba(247, 243, 236, 0.85); margin-bottom: 1rem; }
.inline-cta-box strong { color: var(--paper); }
.inline-cta-box .btn-gold {
  text-decoration: none;
  border: none;
}

/* ----- founder strip ----- */
.founder-strip {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 1.5rem;
  text-align: center;
}
.founder-strip-inner {
  max-width: 720px;
  margin: 0 auto;
}
.founder-strip .kicker {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
}
.founder-strip .name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.4rem;
}
.founder-strip .bio { color: var(--text-muted); margin: 0 0 1rem; font-size: 0.98rem; }
.founder-strip-links {
  display: inline-flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.founder-strip-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.founder-strip-links a:hover { color: var(--gold-hover); }

/* ----- signup ----- */
.signup {
  background: var(--ink);
  color: var(--paper);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.signup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(201, 147, 58, 0.18), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(201, 147, 58, 0.08), transparent 45%);
}
.signup-inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
.signup h2 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.signup p.signup-lead {
  color: rgba(247, 243, 236, 0.82);
  max-width: 460px;
  margin: 0 auto 2rem;
}

/* ----- footer ----- */
.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 3rem 1.5rem 2.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.site-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.7fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.site-footer .footer-brand .brand { font-size: 1.15rem; margin-bottom: 0.75rem; }
.site-footer .footer-brand p { color: var(--text-muted); max-width: 320px; }
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 700;
  margin: 0 0 0.9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}
.site-footer a:hover { opacity: 1; color: var(--gold-hover); }
.site-footer-meta {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-soft);
}
.site-footer-disclosure {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
}
.site-footer-disclosure strong { color: var(--ink); }

/* ----- mailerlite form theming ----- */
.signup .ml-form-embedWrapper,
.signup .ml-form-embedBody { background: transparent !important; box-shadow: none !important; border: 0 !important; }
.signup .ml-form-embedContent { display: none !important; }
.signup input[type="email"] {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(247, 243, 236, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  padding: 0.95rem 1.2rem;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.signup input[type="email"]::placeholder { color: rgba(247, 243, 236, 0.55); }
.signup input[type="email"]:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}
.signup button.primary {
  width: 100%;
  margin-top: 0.75rem;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--transition);
}
.signup button.primary:hover { background: var(--gold-hover); }
.signup .ml-form-successContent h4 {
  color: var(--paper); font-family: var(--font-display);
  font-size: 1.5rem; margin-bottom: 0.5rem;
}
.signup .ml-form-successContent p { color: rgba(247, 243, 236, 0.82); }

/* ----- product / pitch page split block ----- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}
.split .card { padding: 1.8rem; }

/* ----- contact cards ----- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.contact-grid .card h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; }
.contact-grid .card a.email {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  text-decoration: none;
  padding-bottom: 1px;
}
.contact-grid .card a.email:hover { color: var(--gold-hover); }

/* ----- prose pages (about, legal) ----- */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.prose h1 { margin-bottom: 1rem; }
.prose h2 {
  font-size: 1.4rem;
  margin: 2.4rem 0 0.75rem;
}
.prose p, .prose li { color: var(--text); font-size: 1.02rem; line-height: 1.75; }
.prose ul { padding-left: 1.4rem; }
.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.prose a:hover { color: var(--gold-hover); }
.prose .last-updated {
  color: var(--text-soft);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.prose .pull-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.25rem 0;
}
.prose .pull-card h3 { font-family: var(--font-display); margin-bottom: 0.5rem; }

/* ----- shelf featured slab ----- */
.shelf-featured {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.shelf-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(201, 147, 58, 0.22), transparent 50%);
  pointer-events: none;
}
.shelf-featured > * { position: relative; }
.shelf-featured h2 { color: var(--paper); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.shelf-featured p { color: rgba(247, 243, 236, 0.82); }
.shelf-featured .price-tag {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-hover);
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  margin: 0 0 1rem;
}
.shelf-featured-mock {
  background: linear-gradient(135deg, #2a241a 0%, #1a1814 100%);
  border: 1px solid rgba(201, 147, 58, 0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--font-display);
  color: var(--gold);
  position: relative;
  overflow: hidden;
}
.shelf-featured-mock::before {
  content: "";
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  opacity: 0.45;
}
.shelf-featured-mock-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 147, 58, 0.7);
}
.shelf-featured-mock-title {
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--paper);
}
.shelf-featured-mock-foot {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 147, 58, 0.55);
}

/* ----- blog list ----- */
.post-list {
  display: grid;
  gap: 1.25rem;
}
.post-card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.post-card .tag { margin-bottom: 1rem; }
.post-card h2 {
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.post-card p { color: var(--text-muted); margin: 0; font-size: 0.98rem; }
.post-card .meta {
  margin-top: 0.9rem;
  color: var(--text-soft);
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ----- responsive ----- */
@media (max-width: 880px) {
  .site-footer-inner { grid-template-columns: 1fr 1fr; }
  .shelf-featured { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero { padding: 4rem 1.25rem 3rem; }
  .page-intro { padding: 3rem 1.25rem 2rem; }
  .section { padding: 3rem 0; }
  .article { padding: 3rem 1.25rem 4rem; }
  .site-footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .site-footer-meta { flex-direction: column; text-align: center; gap: 0.5rem; }
  .site-nav { gap: 0.9rem; }
  .site-nav a { font-size: 0.88rem; }
  .site-nav a.nav-cta { padding: 0.5rem 0.85rem; }
  .container, .container-narrow { padding: 0 1.25rem; }
}

/* ----- print ----- */
@media print {
  .site-header, .site-footer, .signup, .inline-cta-box, .film-strip { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
