/* ==========================================================================
   Cathie Beck Author — Design System (cover-matched warm palette)
   ========================================================================== */
:root {
  --ink: #382a23;
  --ink-soft: #63564a;
  --cream: #faf5ea;
  --cream-2: #f1e6d3;
  --paper: #fffdf8;
  --teal: #3f948a;
  --teal-dark: #2c7168;
  --burgundy: #6d2a44;
  --burgundy-dark: #551f34;
  --primary: #c14e2e;
  --primary-dark: #a03f22;
  --gold: #cf9a37;
  --line: #e8dbc4;
  --shadow: 0 12px 40px rgba(32, 26, 36, 0.12);
  --shadow-sm: 0 4px 16px rgba(32, 26, 36, 0.08);
  --radius: 10px;
  --maxw: 1180px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--cream); line-height: 1.65; font-size: 18px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--burgundy); }
h1, h2 { font-family: var(--font-display); }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3, h4 { font-family: var(--font-body); font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: clamp(1.12rem, 1.6vw, 1.28rem); }
p { margin: 0 0 1.1em; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.bg-cream2 { background: var(--cream-2); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }
.center { text-align: center; }
.eyebrow { font-family: var(--font-body); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; color: var(--teal-dark); margin-bottom: 14px; }
.bg-ink .eyebrow { color: var(--gold); }
.lead { font-size: 1.22rem; color: var(--ink-soft); }
.measure { max-width: 720px; margin-left: auto; margin-right: auto; }
.measure-wide { max-width: 820px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 1rem; padding: 15px 30px; border-radius: 50px; border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease; text-align: center; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--primary-dark); color: #fff; }
.btn--teal { background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn--teal:hover { background: var(--teal-dark); color: #fff; }
.btn--outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--cream-2); color: var(--ink); }
.btn--lg { padding: 18px 40px; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* Announcement bar */
.announce { background: var(--ink); color: var(--cream); text-align: center; font-size: .9rem; padding: 9px 16px; letter-spacing: .02em; }
.announce a { color: var(--gold); font-weight: 600; }

/* Header / Nav */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250,245,234,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; padding: 8px 0; gap: 14px; }
.brand { font-family: var(--font-body); font-weight: 700; font-size: 1.3rem; color: var(--ink); letter-spacing: .01em; display: flex; align-items: center; }
.brand span { color: var(--burgundy); }
.brand-logo { height: 50px; width: auto; display: block; }
.nav-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 10px 18px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--ink); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--burgundy); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

@media (max-width: 992px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--cream); border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height .3s ease; align-items: stretch; z-index: 60; box-shadow: var(--shadow-sm); }
  .nav-links.open { max-height: min(82vh, 720px); overflow-y: auto; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 15px 24px; }
  .nav-cta { margin: 12px 24px; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* Hero */
.hero { position: relative; background: linear-gradient(160deg, #351f26 0%, #5a2f31 52%, #7c3c2a 100%); color: var(--cream); overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 30%, rgba(204,148,51,.26), transparent 55%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding: 92px 0; position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: 16px; font-size: clamp(1.55rem, 3vw, 1.95rem); line-height: 1.25; letter-spacing: -.01em; }
.hero p { color: #ece1d5; font-size: 1.02rem; line-height: 1.6; }
.hero .eyebrow { color: var(--gold); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-praise { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); color: #ddd0c4; font-family: var(--font-body); font-size: .98rem; line-height:1.55; }
.hero-book { justify-self: center; }
.hero-book img, .book-frame { border-radius: 6px; box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.book-frame { width: 300px; aspect-ratio: 2/3; background: linear-gradient(145deg, var(--burgundy), var(--burgundy-dark)); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: #fff; padding: 30px; position: relative; }
.book-frame .kicker { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.book-frame .bt { font-family: var(--font-display); font-size: 1.7rem; line-height: 1.12; }
.book-frame .ba { margin-top: 18px; font-size: .95rem; letter-spacing: .04em; opacity: .85; }
.book-frame--teal { background: linear-gradient(145deg, var(--teal), var(--teal-dark)); }
.book-frame--ink { background: linear-gradient(145deg, #30251d, #4a2f26); }
.cover-frame { position: relative; width: 300px; max-width: 100%; }
.cover-frame img { border-radius: 6px; box-shadow: 0 24px 60px rgba(0,0,0,.28); width: 100%; }
.cover-frame .book-frame { width: 100%; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 64px 0; gap: 40px; }
  .hero-cta { justify-content: center; }
  .hero-praise { text-align: center; }
}

/* Video placeholder */
.video-wrap { max-width: 940px; margin: 0 auto; }
.video-box { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, #30251d, #4a2f26); box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; padding: 24px; }
.video-box iframe, .video-box video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: contain; background: #000; }
.play-btn { width: 82px; height: 82px; border-radius: 50%; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.6); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.play-btn::after { content: ""; border-left: 22px solid #fff; border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 6px; }
.video-note { font-size: .85rem; opacity: .8; letter-spacing: .04em; }

/* Book showcase */
.book-showcase { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }
.book-showcase.reverse { grid-template-columns: 1fr 300px; }
.book-showcase.reverse .cover { order: 2; }
.cover-card { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.cover-card .badge { display: inline-block; background: var(--teal); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 50px; margin-bottom: 14px; }
.cover-card .badge--soon { background: var(--gold); color: var(--ink); }
.awards { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 8px; }
.awards li { position: relative; padding-left: 28px; font-size: .98rem; color: var(--ink-soft); }
.awards li::before { content: "*"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.blurb { border-left: 3px solid var(--teal); padding: 4px 0 4px 18px; margin: 16px 0; font-family: var(--font-body); font-size: 1rem; line-height:1.6; color: var(--ink); }
.blurb cite { display: block; font-style: normal; font-family: var(--font-body); font-size: .85rem; color: var(--ink-soft); margin-top: 6px; }
@media (max-width: 780px) {
  .book-showcase, .book-showcase.reverse { grid-template-columns: 1fr; }
  .book-showcase.reverse .cover { order: 0; }
  .cover-card { max-width: 320px; margin: 0 auto; }
}

/* Lead-magnet / CTA */
.cta-band { background: linear-gradient(150deg, var(--teal-dark), var(--teal)); color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.cta-grid h2 { color: #fff; }
.cta-grid p { color: #eafaf9; }
.lead-form { background: var(--paper); color: var(--ink); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; }
.field .req { color: var(--burgundy); }
.field input { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 8px; font-family: var(--font-body); font-size: 1rem; background: var(--cream); color: var(--ink); }
.field input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(63,148,138,.15); background: #fff; }
.form-hint { font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--ink-soft); margin: 6px 0 20px; }
.consent input { margin-top: 4px; }
@media (max-width: 780px) { .cta-grid { grid-template-columns: 1fr; gap: 30px; } }

/* Cards / grid */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px; border: 1px solid var(--line); }
.card h3 { margin-bottom: .4em; }
.card .card-media { border-radius: 8px; overflow: hidden; margin-bottom: 16px; aspect-ratio: 3/2; background: var(--cream-2); }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

/* Awards strip */
.strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; list-style: none; padding: 0; margin: 0; }
.strip li { font-family: var(--font-body); font-size: .95rem; color: var(--ink-soft); }
.strip li b { color: var(--ink); }

/* Pull quote */
.pullquote { font-family: var(--font-body); font-weight:600; font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.5; text-align: center; max-width: 860px; margin: 0 auto; }
.pullquote cite { display: block; font-size: 1rem; font-style: normal; font-family: var(--font-body); color: var(--gold); margin-top: 18px; letter-spacing: .04em; }

/* Interior page hero */
.page-hero { background: linear-gradient(160deg, #351f26, #5e3330); color: #fff; padding: 70px 0; text-align: center; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #e7dace; max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: .82rem; color: #d0c2c8; margin-bottom: 10px; letter-spacing: .04em; }
.breadcrumb a { color: var(--gold); }

/* Prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 1.4em; }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow-sm); margin: 24px 0; }

/* Shop / price */
.buy-card { text-align: center; }
.price { font-family: var(--font-body); font-weight:700; font-size: 2rem; color: var(--burgundy); margin: 6px 0 4px; }
.price small { font-size: 1rem; color: var(--ink-soft); }
.format-list { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 8px; }
.format-list li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding: 8px 0; font-size: .95rem; }
.buy-option { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; background: var(--paper); }
.buy-option__title { margin: 0 0 4px; font-size: 1.05rem; }

/* Footer */
.site-footer { background: var(--ink); color: #cfc6bd; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #cfc6bd; }
.site-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.socials { display: flex; gap: 14px; margin-top: 16px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .8rem; font-weight: 600; }
.socials a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; font-size: .85rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; color: #9a9088; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Utilities */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.hidden { display: none; }
.flash { padding: 14px 18px; border-radius: 8px; margin-bottom: 18px; font-size: .95rem; }
.flash--error { background: #fbe8ea; color: var(--burgundy-dark); border: 1px solid #f0c9cf; }
.flash--ok { background: #e7f6f4; color: var(--teal-dark); border: 1px solid #bfe6e0; }

/* ==========================================================================
   MOBILE HARDENING
   ========================================================================== */
html, body { overflow-x: hidden; max-width: 100%; }
img, video, iframe, svg, table { max-width: 100%; }
.book-frame, .cover-frame { max-width: 100%; }
input, select, textarea, .field input { max-width: 100%; }
p, h1, h2, h3, h4, a, li, blockquote, cite { overflow-wrap: break-word; word-wrap: break-word; }

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section--tight { padding: 40px 0; }
  .hero-grid { padding: 54px 0; gap: 34px; }
  .hero-book { width: 100%; }
  .hero-book .cover-frame, .hero-book .book-frame { margin: 0 auto; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .section { padding: 46px 0; }
  .section--tight { padding: 30px 0; }
  h1 { font-size: clamp(1.85rem, 8.5vw, 2.5rem); }
  h2 { font-size: clamp(1.55rem, 6.5vw, 2.1rem); }
  .hero-grid { padding: 40px 0; gap: 26px; }
  .hero p { font-size: 1.06rem; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .hero-praise { font-size: 1.02rem; }
  .btn { padding: 14px 22px; }
  .btn--lg { padding: 15px 24px; font-size: 1rem; }
  .cover-card { padding: 16px; }
  .lead-form { padding: 22px; }
  .buy-option { padding: 16px; }
  .pullquote { font-size: 1.45rem; }
  .price { font-size: 2rem; }
  .strip { gap: 10px 22px; }
  .strip li { font-size: .98rem; }
  .cta-band .btn, .section.center .btn { width: 100%; max-width: 360px; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
  h1 { font-size: 1.7rem; }
  .brand-logo { height: 40px; }
  .announce { font-size: .8rem; }
}


/* ==========================================================================
   INSTANT EMAIL-CAPTURE MODAL  (mobile-safe: single scroll, always-visible X)
   ========================================================================== */
.cb-modal{position:fixed;inset:0;z-index:9999;display:none;background:rgba(30,18,22,.74);
  padding:20px;overflow-y:auto;-webkit-overflow-scrolling:touch;}
.cb-modal.open{display:block;}
.cb-modal__wrap{min-height:100%;display:flex;align-items:center;justify-content:center;}
.cb-modal__box{position:relative;background:var(--paper);border-radius:14px;max-width:940px;width:100%;
  box-shadow:0 30px 90px rgba(0,0,0,.45);overflow:hidden;display:grid;grid-template-columns:.85fr 1.15fr;
  animation:cbPop .2s ease-out;}
@keyframes cbPop{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
.cb-modal__art{background:linear-gradient(160deg,#351f26,#7c3c2a);padding:26px;display:flex;
  flex-direction:column;align-items:center;justify-content:center;gap:14px;}
.cb-modal__art img{width:100%;max-width:190px;border-radius:5px;box-shadow:0 18px 44px rgba(0,0,0,.45);}
.cb-modal__art p{color:#f0e5da;font-size:.84rem;text-align:center;margin:0;line-height:1.5;}
.cb-modal__body{padding:30px 32px;}
.cb-modal__body h2{font-size:1.45rem;margin-bottom:6px;padding-right:44px;}
.cb-modal__body .sub{color:var(--ink-soft);font-size:.93rem;margin-bottom:14px;}
.cb-list{list-style:none;padding:0;margin:0 0 16px;display:grid;gap:5px;}
.cb-list li{position:relative;padding-left:20px;font-size:.87rem;color:var(--ink-soft);}
.cb-list li::before{content:"";position:absolute;left:0;top:.5em;width:7px;height:7px;border-radius:50%;background:var(--gold);}
.cb-modal .field{margin-bottom:12px;}
.cb-modal .field input{padding:12px 13px;font-size:16px;}   /* 16px stops iOS zoom-on-focus */

/* Always-visible close button */
.cb-x{position:absolute;top:10px;right:12px;z-index:10;width:42px;height:42px;border-radius:50%;
  border:1px solid var(--line);background:#fff;color:var(--ink);font-size:1.5rem;line-height:1;
  cursor:pointer;box-shadow:0 3px 12px rgba(0,0,0,.16);display:flex;align-items:center;justify-content:center;}
.cb-x:hover{background:var(--cream-2);}
.cb-close{background:none;border:0;color:var(--ink-soft);font-size:.9rem;cursor:pointer;
  display:block;margin:14px auto 0;text-decoration:underline;padding:10px;min-height:44px;}

/* --- Phones: full-screen sheet, one scroll context, X pinned to the viewport --- */
@media (max-width:760px){
  .cb-modal{padding:12px;}                         /* gutter = tappable backdrop to close */
  .cb-modal__wrap{align-items:flex-start;min-height:calc(100% - 0px);}
  .cb-modal__box{grid-template-columns:1fr;border-radius:12px;animation:none;}
  .cb-modal__art{display:none;}
  .cb-modal__body{padding:44px 18px 24px;}         /* top space clears the X */
  .cb-modal__body h2{font-size:1.2rem;padding-right:40px;}
  .cb-modal .field{margin-bottom:11px;}
  /* fixed, high-contrast, always-tappable close button */
  .cb-x{position:fixed;top:12px;right:12px;z-index:10001;width:48px;height:48px;font-size:1.7rem;
        background:#fff;border:1px solid var(--line);box-shadow:0 4px 16px rgba(0,0,0,.28);}
  .cb-close{min-height:48px;font-size:1rem;}
  .cb-list{margin-bottom:14px;}
  .cb-list li{font-size:.85rem;}
}

/* Compact capture form sitting inside the hero */
.hero-capture{background:rgba(255,255,255,.97);border-radius:12px;padding:20px 20px 16px;
  margin-top:22px;box-shadow:0 18px 44px rgba(0,0,0,.28);color:var(--ink);max-width:460px;}
.hero-capture h3{font-size:1.02rem;margin-bottom:4px;color:var(--ink);}
.hero-capture .mini{font-size:.82rem;color:var(--ink-soft);margin-bottom:12px;}
.hero-capture .field{margin-bottom:10px;}
.hero-capture .field label{font-size:.82rem;margin-bottom:4px;}
.hero-capture .field input{padding:10px 12px;font-size:.95rem;}
.hero-capture .consent{font-size:.78rem;margin:2px 0 12px;}
@media (max-width:860px){ .hero-capture{margin-left:auto;margin-right:auto;text-align:left;} }


/* Phones: 16px inputs stop iOS Safari from auto-zooming on focus */
@media (max-width:760px){
  .field input, .field select, textarea, input[type=text], input[type=email], input[type=date], input[type=password]{
    font-size:16px !important;
  }
  .hero-capture{padding:18px 16px 14px;}
  .hero-capture h3{font-size:.98rem;}
  .video-box{border-radius:8px;}
}

/* ---------- Landing hero: artfully tilted cover + book excerpt ---------- */
.hero-tilt{ transform: rotate(-4deg); transition: transform .35s ease; }
.hero-tilt:hover{ transform: rotate(-1deg); }
.hero-excerpt{ margin: 32px auto 0; max-width: 350px; color: #ece1d5;
  font-family: var(--font-display); font-style: italic; font-size: .92rem; line-height: 1.6;
  border-left: 2px solid var(--gold); padding-left: 16px; text-align: left; }
.hero-excerpt cite{ display: block; font-family: var(--font-body); font-style: normal;
  color: var(--gold); font-size: .8rem; margin-top: 10px; letter-spacing: .03em; }
@media (max-width:860px){ .hero-excerpt{ margin-left:auto; margin-right:auto; } }

/* Book-showcase titles one step smaller */
.book-showcase h2{ font-size: clamp(1.45rem, 2.6vw, 1.95rem); }

/* ---------- Landing hero: framed vintage car photo (matches cathiebeckauthor.com) ---------- */
.hero-car-frame{ background:#fff; padding:10px 10px 12px; border-radius:8px;
  box-shadow:0 24px 60px rgba(0,0,0,.42); transform:rotate(-2deg); max-width:520px; margin:0 auto; }
.hero-car{ width:100%; display:block; border-radius:4px; }
@media (max-width:860px){ .hero-car-frame{ transform:none; max-width:420px; } }

/* ---------- Landing hero: full book jacket on the left ---------- */
.hero-jacket{ display:flex; align-items:center; justify-content:center; }
.hero-jacket img{ width:100%; max-width:400px; border-radius:6px; box-shadow:0 26px 70px rgba(0,0,0,.5); }
@media (max-width:860px){ .hero-jacket img{ max-width:300px; margin:0 auto; } }

/* ---------- Portfolio: outlet logos + article links ---------- */
.portfolio-outlet{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:26px 30px; margin:0 0 22px; box-shadow:0 2px 16px rgba(56,42,35,.05); }
.portfolio-outlet:last-child{ margin-bottom:0; }
/* logo box: fixed height normalizes every logo to the same visual size */
.outlet-logo-box{ min-height:78px; display:flex; align-items:center; margin:0 0 16px; padding-bottom:16px; border-bottom:1px solid var(--line); }
.outlet-logo{ height:64px; width:auto; max-width:300px; object-fit:contain; display:block; }
.outlet-name{ display:none; font-family:var(--font-head); font-weight:700; margin:0; font-size:1.5rem; color:var(--ink); }
.outlet-logo-box.no-logo{ min-height:0; padding-bottom:14px; }
.no-logo .outlet-logo{ display:none; }
.no-logo .outlet-name{ display:inline-block; }
.article-list{ list-style:none; padding:0; margin:0; display:grid; gap:11px; }
.article-list li{ position:relative; padding:0 0 11px 20px; border-bottom:1px dashed var(--line); }
.article-list li:last-child{ border-bottom:0; padding-bottom:0; }
.article-list li::before{ content:"\203A"; position:absolute; left:2px; top:-1px; color:var(--primary); font-weight:700; font-size:1.15rem; line-height:1.4; }
.article-list a{ font-size:1.06rem; font-weight:600; color:var(--teal-dark); }
.article-list a:hover{ color:var(--burgundy); }
.outlet-note{ margin:0; color:var(--ink-soft); }
@media (max-width:600px){ .outlet-logo{ height:48px; } .outlet-logo-box{ min-height:56px; } }
