:root {
  --ink: #14243a;
  --navy: #082642;
  --blue: #1c668b;
  --copper: #9f2f22;
  --gold: #b77434;
  --sage: #4f633d;
  --paper: #fffaf0;
  --cream: #f3ead8;
  --mist: #eaf4f4;
  --line: #dfd3c1;
  --muted: #687484;
  --shadow: 0 18px 45px rgba(8, 38, 66, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(159, 47, 34, .06), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(79, 99, 61, .08), transparent 24%),
    linear-gradient(rgba(8, 38, 66, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 38, 66, .025) 1px, transparent 1px),
    var(--cream);
  background-size: 34px 34px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(159, 47, 34, .045), transparent 16%),
    radial-gradient(circle at 80% 85%, rgba(8, 38, 66, .05), transparent 20%);
  mix-blend-mode: multiply;
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { color: var(--navy); font-family: Georgia, "Times New Roman", serif; letter-spacing: 0; }
p { line-height: 1.65; }

.site-header {
  min-height: 92px;
  padding: 12px 7vw 16px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255, 253, 248, .94);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(8, 38, 66, .04);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 18px;
  background:
    linear-gradient(135deg, var(--paper) 25%, transparent 25%) 0 0 / 28px 18px,
    linear-gradient(225deg, var(--paper) 25%, transparent 25%) 0 0 / 28px 18px;
  pointer-events: none;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 70px; height: 70px; object-fit: contain; }
.brand strong {
  display: block;
  font-family: Georgia, serif;
  text-transform: uppercase;
  font-size: 1.38rem;
  letter-spacing: .03em;
  color: var(--navy);
}
.brand small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .34em;
  color: var(--blue);
  font-size: .68rem;
}
.main-nav {
  display: flex;
  gap: clamp(10px, 1.25vw, 22px);
  margin-left: auto;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--navy);
}
.main-nav a { padding: 10px 0; border-bottom: 2px solid transparent; white-space: nowrap; }
.main-nav .active, .main-nav a:hover { border-color: var(--copper); color: var(--copper); }
.main-nav::after {
  content: "";
  width: 16px;
  height: 16px;
  align-self: center;
  background: var(--copper);
  clip-path: polygon(50% 0%, 60% 28%, 88% 18%, 72% 46%, 100% 56%, 68% 62%, 74% 100%, 50% 75%, 26% 100%, 32% 62%, 0% 56%, 28% 46%, 12% 18%, 40% 28%);
}

.shop-button, .primary-button, .light-button, .outline-button, .feature-card a, .signup-submit {
  border-radius: 8px;
  padding: 13px 19px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: .76rem;
  letter-spacing: .05em;
  display: inline-block;
  border: 1px solid var(--navy);
  transition: transform .18s, box-shadow .18s, background .18s;
}
.shop-button, .primary-button, .signup-submit { background: var(--navy); color: white; }
.primary-button:nth-child(2), .button-row .outline-button { background: var(--copper); color: white; border-color: var(--copper); }
.light-button { background: var(--paper); color: var(--navy); border-color: var(--paper); }
.outline-button, .feature-card a { background: transparent; color: var(--navy); }
.shop-button:hover, .primary-button:hover, .light-button:hover, .outline-button:hover, .feature-card a:hover, .signup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(8, 38, 66, .14);
}
.button-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.red-button {
  background: var(--copper);
  border: 1px solid var(--copper);
  color: white;
  border-radius: 6px;
  padding: 13px 19px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: .76rem;
  letter-spacing: .05em;
  display: inline-block;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: .76rem;
}

.hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 76px 7vw;
  background-image:
    linear-gradient(90deg, rgba(243, 234, 216, .98) 0%, rgba(243, 234, 216, .9) 36%, rgba(243, 234, 216, .12) 64%),
    url("assets/sb-home-hero.webp");
  background-size: cover;
  background-position: center right;
  border-bottom: 1px solid var(--line);
}

.home-hero {
  min-height: 590px;
  display: flex;
  align-items: center;
  padding: 76px 7vw;
  background-image:
    linear-gradient(90deg, rgba(243, 234, 216, .98) 0%, rgba(243, 234, 216, .88) 39%, rgba(243, 234, 216, .08) 66%),
    url("assets/sb-home-hero.webp");
  background-size: cover;
  background-position: center right;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.home-hero.has-rotating-hero { background-image: none; overflow: hidden; }
.hero-rotation-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background-position: center right;
  background-size: cover;
  transition: opacity 1.2s ease;
}
.hero-rotation-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 234, 216, .99) 0%, rgba(243, 234, 216, .9) 36%, rgba(243, 234, 216, .18) 70%, rgba(243, 234, 216, .02) 100%);
}
.hero-rotation-layer.active { opacity: 1; }
.home-hero-copy {
  max-width: 640px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.home-hero h1 {
  font-size: clamp(3.2rem, 5.7vw, 6rem);
  line-height: .95;
  margin: 0;
  text-wrap: balance;
}
.home-hero p {
  color: var(--copper);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  margin: 16px auto 24px;
  max-width: 440px;
}
.home-hero .hero-summary {
  max-width: 520px;
  padding: 15px 20px;
  color: var(--navy);
  background: rgba(255, 250, 240, .88);
  border-left: 4px solid var(--copper);
  box-shadow: 0 10px 28px rgba(8, 38, 66, .12);
  line-height: 1.55;
}
.home-hero .button-row { justify-content: center; }
.leaf-rule {
  width: 220px;
  height: 18px;
  margin: 18px auto 0;
  position: relative;
  border-top: 1px solid rgba(159, 47, 34, .34);
}
.leaf-rule::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--copper);
  position: absolute;
  left: 50%;
  top: -7px;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}
.leaf-rule.small { width: 140px; margin-top: 8px; }

.discover-section {
  padding: 44px 7vw 58px;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .98), rgba(255, 250, 240, .98)),
    url("assets/mock-logo.webp") center / cover;
}
.shark-feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: 70px 7vw;
  background:
    linear-gradient(115deg, rgba(8, 38, 66, .96), rgba(8, 38, 66, .82)),
    url("assets/sb-home-hero.webp") center / cover;
  color: white;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.shark-feature h2 {
  color: white;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: .9;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.shark-feature p {
  color: rgba(255,255,255,.84);
  max-width: 680px;
}
.shark-feature .eyebrow {
  color: #f4c99f;
}
.feature-kicker {
  color: #f4c99f !important;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  margin: 0 0 12px;
}
.shark-feature-cover {
  display: grid;
  place-items: center;
}
.shark-feature-cover img {
  width: min(360px, 100%);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 26px 60px rgba(0,0,0,.38);
  transform: rotate(2deg);
}
.ornament-heading {
  text-align: center;
  margin-bottom: 30px;
}
.ornament-heading h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  margin: 0;
}
.ornament-heading span {
  display: block;
  width: 140px;
  height: 1px;
  background: rgba(159, 47, 34, .34);
  margin: 14px auto 0;
  position: relative;
}
.ornament-heading span::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--copper);
  position: absolute;
  left: 50%;
  top: -5px;
  transform: translateX(-50%) rotate(45deg);
}
.featured-books {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(22px, 4vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
}
.featured-books article {
  text-align: center;
}
.featured-books img {
  width: min(100%, 210px);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  margin: 0 auto 14px;
  border-radius: 2px;
  box-shadow: 0 18px 28px rgba(8, 38, 66, .26);
}
.featured-books h3 {
  margin: 10px 0 8px;
  font-size: 1.05rem;
}
.featured-books a, .home-author-button {
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 900;
  font-size: .74rem;
}
.home-book-actions { display: grid; gap: 9px; justify-items: center; }
.home-author-button {
  border: 0;
  border-bottom: 1px solid var(--copper);
  background: transparent;
  padding: 3px 0;
  cursor: pointer;
  font-family: inherit;
}
.genre-pill {
  display: inline-block;
  min-width: 116px;
  max-width: 100%;
  border-radius: 4px;
  padding: 8px 12px;
  background: var(--navy);
  color: white;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 900;
  margin: 0;
}
.genre-pill.thriller { background: var(--navy); }
.genre-pill.middle { background: #69753a; }
.genre-pill.literary { background: var(--gold); }
.genre-pill.cozy { background: var(--sage); }
.books-loading, .books-empty {
  grid-column: 1 / -1;
  text-align: center;
  width: 100%;
  padding: 34px;
  color: var(--muted);
}
.books-empty h3 { font-size: 1.5rem; margin: 0 0 8px; }
.books-empty p { margin: 0; }

.audience-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.audience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 64px 7vw;
}
.audience-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  line-height: 1.02;
}
.audience-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; max-width: 680px; }
.audience-copy .primary-button,
.audience-copy .red-button { margin-top: 12px; }
.audience-image { min-height: 480px; background-position: center; background-size: cover; }
.readers-section .audience-image {
  background-image: linear-gradient(rgba(8, 38, 66, .08), rgba(8, 38, 66, .08)), url("assets/sb-home-hero.webp");
}
.writers-section {
  background: #edf4ef;
  border-bottom: 1px solid var(--line);
}
.writers-section .audience-image {
  background-image: linear-gradient(rgba(79, 99, 61, .08), rgba(79, 99, 61, .08)), url("assets/about-story-desk.webp");
}

.publisher-snapshot {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.snapshot-art {
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.snapshot-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.snapshot-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 38, 66, .08), transparent 58%);
}
.snapshot-art p {
  position: absolute;
  left: 9%;
  bottom: 42px;
  z-index: 1;
  max-width: 230px;
  background: rgba(255, 250, 240, .9);
  border: 1px solid var(--line);
  color: var(--copper);
  font-family: Georgia, serif;
  padding: 16px;
  transform: rotate(-4deg);
  box-shadow: 0 12px 24px rgba(8, 38, 66, .14);
}
.snapshot-copy {
  padding: clamp(46px, 6vw, 92px) 7vw;
  text-align: center;
  align-self: center;
}
.snapshot-copy h2 {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  line-height: 1;
}
.snapshot-copy > p {
  max-width: 620px;
  margin: 18px auto 34px;
  color: var(--ink);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
.stat-row article {
  padding: 0 18px;
  border-right: 1px solid var(--line);
}
.stat-row article:last-child { border-right: 0; }
.stat-row strong {
  display: block;
  color: var(--copper);
  font-family: Georgia, serif;
  font-size: 2rem;
  margin-bottom: 6px;
}
.stat-row span {
  display: block;
  color: var(--navy);
  font-weight: 800;
  font-size: .92rem;
  line-height: 1.25;
}

.daily-dive-home {
  display: grid;
  grid-template-columns: .72fr 1.8fr;
  gap: 34px;
  padding: 64px 7vw;
  background: var(--paper);
  align-items: start;
}
.daily-intro h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  margin: 0 0 14px;
}
.daily-intro p {
  color: var(--ink);
  max-width: 280px;
}
.daily-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.daily-card-grid article {
  background: rgba(255, 250, 240, .9);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(8, 38, 66, .08);
}
.daily-card-grid article > :not(.daily-image) {
  margin-left: 20px;
  margin-right: 20px;
}
.daily-card-grid h3 {
  font-size: 1.3rem;
  line-height: 1.12;
  margin-top: 4px;
}
.daily-card-grid p {
  color: var(--muted);
  font-size: .94rem;
}
.daily-card-grid a {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--navy);
  text-transform: uppercase;
  font-weight: 900;
  font-size: .72rem;
}
.daily-image {
  height: 150px;
  background-size: cover;
  background-position: center;
}
.daily-image.coffee { background-image: linear-gradient(rgba(8,38,66,.05), rgba(8,38,66,.05)), url("assets/newsletter-hero-desk.webp"); }
.daily-image.lake { background-image: linear-gradient(rgba(8,38,66,.05), rgba(8,38,66,.05)), url("assets/sb-home-hero.webp"); }
.daily-image.slush { background-image: linear-gradient(rgba(8,38,66,.1), rgba(8,38,66,.1)), url("assets/about-story-desk.webp"); }
.home-newsletter {
  background:
    linear-gradient(90deg, rgba(79, 99, 61, .96), rgba(79, 99, 61, .92)),
    url("assets/sb-home-hero.webp") center / cover;
}
.quick-signup {
  display: flex;
  min-width: min(520px, 100%);
}
.quick-signup input {
  flex: 1;
  border: 0;
  padding: 16px 18px;
  font: inherit;
  border-radius: 6px 0 0 6px;
}
.quick-signup button {
  border: 0;
  background: var(--copper);
  color: white;
  padding: 0 22px;
  border-radius: 0 6px 6px 0;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .04em;
}
.honeypot-field,
.honeypot-input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.hero-copy { max-width: 590px; }
.hero h1 { font-size: clamp(3.1rem, 5.6vw, 5.8rem); line-height: .94; margin: 0 0 24px; text-wrap: balance; }
.hero p:not(.eyebrow) { font-size: 1.24rem; max-width: 540px; margin: 0 0 28px; }

.genres {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  padding: 22px 7vw;
  gap: 10px;
  text-align: center;
}
.genres div {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(223, 211, 193, .7);
}
.genres div:last-child { border-right: 0; }
.genres span {
  text-transform: uppercase;
  font-weight: 900;
  font-size: .68rem;
  color: var(--navy);
}

.intro-band {
  padding: 60px 7vw;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .72), rgba(255, 250, 240, .98)),
    url("assets/sb-home-hero.webp") center / cover;
}
.intro-band h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: 1.02; margin: 0; }
.intro-band p:last-child { font-size: 1.08rem; color: var(--muted); margin: 0; }

.feature-grid {
  padding: 58px 7vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: rgba(255, 253, 248, .94);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
  padding: 30px 22px;
  box-shadow: 0 18px 34px rgba(8, 38, 66, .11);
  position: relative;
}
.feature-card::before, .catalog-card::before, .blog-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(159, 47, 34, .12);
  pointer-events: none;
}
.feature-card img { height: 92px; width: 92px; object-fit: contain; margin: 0 auto 14px; }
.card-mark, .featured-post-art, .blog-card-art {
  min-height: 92px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  background: linear-gradient(145deg, #eef7f6, #fff6e6);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 14px;
}
.feature-card h2 { margin: 10px 0; font-size: 1.55rem; }
.feature-card p { color: var(--muted); margin: 0 0 18px; }

.books {
  padding: 58px 7vw 84px;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .96), rgba(255, 250, 240, .96)),
    url("assets/mock-logo.webp") center / cover;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 30px;
}
.section-heading h2 {
  text-transform: uppercase;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: .08em;
}
.section-heading a { color: var(--navy); font-weight: 900; text-transform: uppercase; font-size: .75rem; }
.book-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.book-row article { text-align: center; min-width: 0; }
.book-row img { width: 100%; border-radius: 2px; box-shadow: 0 18px 28px rgba(8, 38, 66, .24); aspect-ratio: 2 / 3; object-fit: cover; }
.book-row h3 { margin: 16px 0 4px; font-size: .98rem; color: var(--navy); }
.book-row p { margin: 0 0 8px; text-transform: uppercase; color: var(--blue); font-size: .68rem; font-weight: 900; }

.author-cta {
  background:
    linear-gradient(90deg, rgba(8, 38, 66, .96), rgba(79, 99, 61, .9)),
    url("assets/sb-home-hero.webp") center / cover;
  color: white;
  padding: 58px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.author-cta h2 { color: white; font-size: clamp(2.2rem, 4vw, 4rem); margin: 0 0 10px; line-height: 1.05; }
.author-cta p { color: #dbe7ef; max-width: 660px; margin: 0 0 6px; }
.author-cta .eyebrow { color: #f4c99f; }

.testimonials { padding: 72px 7vw; text-align: center; background: linear-gradient(135deg, var(--paper), #edf6f3); }
.testimonials h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); margin: 0; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
blockquote {
  background: white;
  margin: 0;
  padding: 30px;
  text-align: left;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 25px rgba(8, 38, 66, .08);
  line-height: 1.6;
}
blockquote cite { display: block; margin-top: 18px; font-weight: 900; font-style: normal; }

.newsletter {
  padding: 46px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--sage);
  color: white;
}
.newsletter h2 { font-size: clamp(2rem, 3vw, 3rem); margin: 0; color: white; }
.newsletter p { margin: 8px 0 0; color: rgba(255,255,255,.82); }
.slush-list-button {
  position: relative;
  flex: 0 0 auto;
  min-width: 390px;
  min-height: 132px;
  display: grid;
  grid-template-columns: 96px 1fr 48px;
  align-items: center;
  gap: 22px;
  padding: 18px 22px;
  overflow: hidden;
  color: #fff1c9;
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 226, 153, .2), transparent 17%),
    linear-gradient(145deg, #bd3b20, #922617);
  border: 3px solid #b96a31;
  border-radius: 32px;
  box-shadow:
    inset 0 0 0 2px #f0b75b,
    inset 0 0 0 5px rgba(84, 19, 11, .45),
    0 16px 18px rgba(23, 24, 10, .4);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.slush-list-button::before,
.slush-list-button::after {
  content: "+";
  position: absolute;
  color: #ffe09a;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}
.slush-list-button::before { left: 25px; bottom: 19px; }
.slush-list-button::after { right: 29px; top: 19px; }
.slush-list-button:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
  box-shadow:
    inset 0 0 0 2px #ffd078,
    inset 0 0 0 5px rgba(84, 19, 11, .42),
    0 20px 22px rgba(23, 24, 10, .46);
}
.slush-list-icon {
  height: 82px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 225, 157, .78);
  padding-right: 20px;
}
.slush-list-icon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: sepia(1) saturate(.55) brightness(1.75);
}
.slush-list-label {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 3px 2px rgba(76, 15, 8, .65);
}
.slush-list-label small,
.slush-list-label strong {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .04em;
}
.slush-list-label small { font-size: 1.08rem; }
.slush-list-label strong { font-size: 1.75rem; }
.slush-list-arrow {
  font-family: Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.site-footer {
  background:
    linear-gradient(rgba(8, 38, 66, .96), rgba(8, 38, 66, .98)),
    url("assets/sb-home-hero.webp") bottom center / cover;
  color: white;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
  gap: 36px;
  padding: 58px 7vw;
}
.footer-brand strong, .footer-brand small { color: white; }
.site-footer h3 { text-transform: uppercase; font-size: .82rem; letter-spacing: .08em; }
.site-footer a, .site-footer p { display: block; color: #d8e1ea; line-height: 1.8; font-size: .9rem; margin: 0; }

.page-hero, .admin-hero {
  padding: 78px 7vw;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(115deg, rgba(255, 250, 240, .97), rgba(243, 234, 216, .86)),
    url("assets/sb-home-hero.webp") center / cover;
  border-bottom: 1px solid var(--line);
}
.page-hero h1, .admin-hero h1 { margin: 0 0 14px; font-size: clamp(3rem, 6vw, 5.6rem); line-height: .98; max-width: 850px; }
.page-hero p:not(.eyebrow), .admin-hero p:not(.eyebrow) { max-width: 760px; font-size: 1.14rem; color: var(--blue); margin: 0; }

.shop-tools { padding: 24px 7vw; background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 92px; z-index: 10; }
.shop-tools div { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.shop-tools strong { color: var(--navy); margin-right: 8px; }
.filter-chip { border: 1px solid rgba(8, 38, 66, .18); border-radius: 999px; padding: 9px 15px; color: var(--blue); background: white; font-weight: 900; font-size: .8rem; text-transform: uppercase; cursor: pointer; }
.filter-chip.active, .filter-chip:hover { background: var(--copper); border-color: var(--copper); color: white; }
.catalog-grid { padding: 64px 7vw; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.catalog-card { display: grid; grid-template-columns: 155px 1fr; gap: 24px; background: rgba(255, 250, 240, .96); border: 1px solid var(--line); border-radius: 6px; padding: 24px; box-shadow: var(--shadow); position: relative; }
.catalog-card[hidden] { display: none; }
.catalog-card img { width: 150px; border-radius: 6px; box-shadow: 0 14px 26px rgba(8, 38, 66, .18); aspect-ratio: 2 / 3; object-fit: cover; }
.catalog-copy h2 { margin: 0 0 8px; font-size: 1.55rem; }
.book-tag { margin: 0 0 6px; color: var(--copper); text-transform: uppercase; font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.book-blurb { color: var(--muted); margin: 0 0 18px; }
.rich-book-text { white-space: pre-line; line-height: 1.65; }
.rich-book-text p { margin: 0 0 12px; }
.rich-book-text p:last-child { margin-bottom: 0; }
.rich-book-text ul, .rich-book-text ol { margin: 10px 0 14px; padding-left: 22px; }
.rich-book-text li { margin: 4px 0; }
.book-links { display: flex; flex-wrap: wrap; gap: 9px; }
.book-links a, .synopsis-button, .author-button { border: 1px solid rgba(8, 38, 66, .18); border-radius: 999px; padding: 9px 12px; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .03em; color: var(--navy); background: white; cursor: pointer; font-family: inherit; }
.book-links .buy-link { background: var(--navy); color: white; border-color: var(--navy); }
.book-links .preorder-link {
  background: #f2a900;
  border-color: #d88a00;
  color: #261700;
  box-shadow: 0 5px 0 #b96f00;
  font-size: .78rem;
  padding: 10px 16px;
}
.book-links .preorder-link:hover {
  background: #ffbd2e;
  transform: translateY(-1px);
}
.synopsis-button { background: #f4eadb; }
.author-button { background: #e9f0e3; border-color: rgba(79, 99, 61, .38); }
.featured-book { border-color: rgba(166, 95, 52, .65); }
.catalog-card.linked-book {
  border-color: #f2a900;
  box-shadow: 0 0 0 5px rgba(242, 169, 0, .25), 0 24px 52px rgba(8, 38, 66, .2);
  animation: linked-book-pulse 1.1s ease 2;
}
@keyframes linked-book-pulse {
  50% { transform: translateY(-4px); }
}
.shop-note { margin: 0; padding: 70px 7vw; background: var(--navy); color: white; text-align: center; }
.shop-note h2 { color: white; font-size: clamp(2rem, 4vw, 3.5rem); margin: 0 0 10px; }
.shop-note p { max-width: 760px; margin: 0 auto 24px; color: rgba(255, 255, 255, .82); }
.shop-note .primary-button { background: white; color: var(--navy); border-color: white; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 25, 40, .62);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 50;
}
.modal-backdrop[hidden] { display: none; }
.synopsis-modal {
  width: min(620px, 100%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  position: relative;
}
.synopsis-modal h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 14px; }
.synopsis-modal > .rich-book-text { color: var(--muted); font-size: 1.06rem; }
.author-modal { max-height: min(760px, 90vh); overflow-y: auto; text-align: center; }
.author-modal img {
  width: min(240px, 72%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 18px auto 22px;
  border-radius: 6px;
  border: 6px solid white;
  box-shadow: 0 15px 32px rgba(8, 38, 66, .2);
}
.author-modal #authorText,
.author-modal #homeAuthorText {
  text-align: left;
  white-space: pre-line;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
}

.about-hero, .story-section, .signup-hero, .blog-hero {
  padding: 76px 7vw;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.about-hero, .blog-hero {
  background:
    linear-gradient(90deg, rgba(243, 234, 216, .97), rgba(243, 234, 216, .8)),
    url("assets/sb-home-hero.webp") center right / cover;
}
.about-hero-copy h1, .blog-hero-copy h1, .signup-panel h1 { font-size: clamp(3rem, 5.4vw, 5.3rem); line-height: 1; margin: 0 0 22px; }
.about-hero-copy p:not(.eyebrow), .blog-hero-copy p:not(.eyebrow), .signup-intro { font-size: 1.14rem; color: var(--muted); }
.about-hero-card, .signup-panel, .post-form, .post-list-panel {
  background: rgba(255, 253, 248, .96);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.about-hero-card > img { width: 132px; margin: 0 auto 22px; }
.stat-grid, .belief-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat-grid article, .belief-grid article { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 22px 18px; }
.stat-grid strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 1.7rem; }
.stat-grid small, .belief-grid p { color: var(--muted); }
.story-section { background: var(--paper); }
.story-copy h2, .beliefs-section h2, .about-cta h2 { font-size: clamp(2.4rem, 4vw, 4rem); margin: 0 0 22px; line-height: 1.05; }
.publishing-illustration { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.publishing-illustration img { width: 100%; min-height: 360px; object-fit: cover; }
.beliefs-section { padding: 76px 7vw; text-align: center; background: linear-gradient(135deg, #fffdf8, #eef7f6); }
.belief-grid { grid-template-columns: repeat(4, 1fr); margin-top: 34px; text-align: left; }
.belief-grid h3 { font-size: 1.35rem; margin: 0 0 10px; }
.about-cta { background: var(--navy); color: white; padding: 56px 7vw; display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.about-cta h2 { color: white; }
.about-cta p { color: #d8e1ea; }
.guidelines-image-button {
  display: block;
  flex: 0 1 560px;
  width: min(100%, 560px);
  transition: transform .2s ease, filter .2s ease;
}
.guidelines-image-button:hover,
.guidelines-image-button:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-3px);
}
.guidelines-image-button:focus-visible {
  outline: 3px solid #f2c66d;
  outline-offset: 5px;
}
.guidelines-image-button img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .28);
}

.signup-hero {
  grid-template-columns: .85fr 1.15fr;
  background: linear-gradient(135deg, var(--paper), var(--cream) 48%, var(--mist));
  min-height: calc(100vh - 86px);
}
.signup-art {
  min-height: 520px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(8, 38, 66, .08), rgba(8, 38, 66, .02)),
    url("assets/newsletter-hero-desk.webp") center / cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.signup-art img { width: 170px; height: 170px; object-fit: contain; background: rgba(255, 253, 248, .92); padding: 20px; border-radius: 999px; box-shadow: var(--shadow); }
.signup-form { display: grid; gap: 22px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.signup-form label span, .post-form label span, .interest-fieldset legend {
  display: block;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: .75rem;
  margin-bottom: 9px;
}
.signup-form input, .post-form input, .post-form select, .post-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 15px 16px;
  font: inherit;
  color: var(--ink);
}
.interest-fieldset { border: 0; padding: 0; margin: 0; }
.interest-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.interest-card { position: relative; border: 1px solid var(--line); background: white; border-radius: 8px; padding: 54px 22px 22px; cursor: pointer; min-height: 170px; }
.interest-card input { position: absolute; top: 18px; right: 18px; width: 24px; height: 24px; margin: 0; accent-color: var(--navy); }
.interest-card strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.interest-card small, .privacy-note { display: block; color: var(--muted); line-height: 1.5; }
.interest-card:has(input:checked) { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(8, 38, 66, .08); }
.signup-submit { border: 0; cursor: pointer; }
.form-status {
  margin: -4px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(8, 38, 66, .14);
  border-radius: 8px;
  background: #f4eadb;
  color: var(--navy);
  font-weight: 700;
}
.book-list-note {
  margin: -4px 0 0;
  padding: 12px 15px;
  border-left: 4px solid var(--copper);
  background: #f4eadb;
  color: var(--navy);
  font-weight: 800;
}

.blog-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.blog-hero-card {
  min-height: 420px;
  border-radius: 8px;
  background: linear-gradient(rgba(8, 38, 66, .12), rgba(255, 253, 248, .76)), url("assets/sb-home-hero.webp") center / cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
}
.blog-hero-card img { width: 150px; background: rgba(255, 253, 248, .92); padding: 18px; border-radius: 999px; box-shadow: var(--shadow); }
.blog-hero-card strong { position: absolute; bottom: 28px; color: var(--navy); background: rgba(255, 253, 248, .92); padding: 14px 20px; border-radius: 8px; font-family: Georgia, serif; font-size: 1.25rem; }
.featured-post, .blog-section { padding: 58px 7vw; }
.featured-post-card { display: grid; grid-template-columns: .65fr 1.35fr; gap: 34px; align-items: center; background: white; border: 1px solid var(--line); border-radius: 8px; padding: 30px; box-shadow: var(--shadow); }
.featured-post-art, .blog-card-art { min-height: 230px; margin: 0; font-size: 2rem; }
.post-category { color: var(--copper); text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 900; margin: 0 0 8px; }
.post-date { color: var(--muted); font-weight: 700; font-size: .9rem; }
.featured-post-card h2 { font-size: clamp(2rem, 3vw, 3rem); margin: 0 0 10px; }
.featured-post-card p, .blog-card p { color: var(--muted); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 22px; box-shadow: 0 12px 30px rgba(8, 38, 66, .06); position: relative; }
.blog-card-art { min-height: 150px; margin-bottom: 18px; font-size: 1.5rem; }
.blog-card h3 { font-size: 1.45rem; margin: 0 0 8px; }
details { margin-top: 14px; }
summary { cursor: pointer; color: var(--navy); font-weight: 900; text-transform: uppercase; font-size: .78rem; letter-spacing: .06em; }
.post-body { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--ink); line-height: 1.75; }
.empty-posts { text-align: center; background: white; border: 1px dashed var(--blue); border-radius: 8px; padding: 50px; }

.admin-page { background: var(--cream); }
.looking-for-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  padding: 64px 7vw;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.looking-for-section h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1;
  margin: 0 0 16px;
}
.looking-for-section p {
  color: var(--muted);
  max-width: 720px;
}
.looking-for-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.looking-for-list li {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(8, 38, 66, .06);
}
.looking-for-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: var(--copper);
  transform: rotate(45deg);
}
.admin-layout { padding: 34px 7vw 76px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 28px; align-items: start; }
.post-form { display: grid; gap: 20px; }
.post-form textarea { resize: vertical; }
.admin-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.post-list-panel h2 { margin-top: 0; }
.post-list-panel p { color: var(--muted); }
.admin-post-list { display: grid; gap: 12px; margin-top: 20px; }
.admin-post-item { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 14px; display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; }
.admin-post-item strong { color: var(--navy); display: block; }
.admin-post-item small { color: var(--muted); }
.admin-post-item button { border: 1px solid var(--line); background: var(--paper); color: var(--navy); border-radius: 8px; padding: 8px 10px; font-weight: 800; cursor: pointer; }
.category-admin-form {
  display: grid;
  gap: 10px;
  margin: 20px 0 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f0e3;
}
.category-admin-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.category-admin-form input { width: 100%; border: 1px solid var(--line); border-radius: 7px; padding: 11px 12px; font: inherit; }
.category-admin-form .outline-button { cursor: pointer; }
.category-chip-list { display: flex; flex-wrap: wrap; gap: 7px; }
.category-chip-list span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-size: .68rem;
  font-weight: 800;
}
.admin-edit-button {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--navy);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 800;
  text-align: center;
}
.contact-page {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--paper);
}
.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 7vw;
}
.contact-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  line-height: 1;
}
.contact-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.12rem; max-width: 660px; }
.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.contact-details a { color: var(--copper); font-size: 1.2rem; font-weight: 900; }
.contact-details p { margin: 0; color: var(--navy); font-weight: 800; }
.contact-image { min-height: 650px; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }

.admin-login {
  min-height: calc(100vh - 92px);
  display: grid;
  place-items: center;
  padding: 54px 5vw;
  background: linear-gradient(rgba(243, 234, 216, .88), rgba(255, 250, 240, .96)), url("assets/about-story-desk.webp") center / cover;
}
.admin-login-card { width: min(520px, 100%); }
.admin-login-card h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); margin: 0; }
.compact-admin-hero { min-height: 280px; }
.catalog-admin-layout {
  padding: 42px 7vw 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 28px;
  align-items: start;
}
.book-admin-form h2, .admin-catalog-panel h2 { margin: 0; font-size: 2.3rem; }
.book-admin-form, .admin-catalog-panel {
  background: rgba(255, 253, 248, .96);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.book-admin-form input[type="file"] { padding: 11px; }
.admin-check { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 800; }
.admin-check input, .action-config input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--navy); }
.action-config-fieldset { border: 0; padding: 0; margin: 0; }
.action-config-fieldset legend {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}
.action-config-fieldset > p { color: var(--muted); margin: 6px 0 16px; }
.author-admin-fields {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f3e9;
}
.author-admin-fields label span {
  display: block;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: .75rem;
  margin-bottom: 9px;
}
.author-admin-fields input,
.author-admin-fields textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
}
.author-config { background: #eef3e9; border-color: rgba(79, 99, 61, .4); }
.rich-editor { display: grid; gap: 9px; }
.rich-editor > label span {
  display: block;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: .75rem;
}
.rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  background: #f7f0e3;
}
.rich-toolbar button {
  min-width: 38px;
  min-height: 36px;
  border: 1px solid rgba(8, 38, 66, .18);
  border-radius: 6px;
  background: white;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.rich-toolbar button:hover { border-color: var(--copper); color: var(--copper); }
.rich-color {
  display: flex !important;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
}
.rich-color span { margin: 0 !important; letter-spacing: 0 !important; text-transform: none !important; }
.rich-color input { width: 34px !important; height: 34px; padding: 2px !important; border-radius: 5px !important; cursor: pointer; }
.rich-editor textarea { border-radius: 0 0 8px 8px !important; }
.rich-help { color: var(--muted); }
.rich-preview {
  min-height: 70px;
  padding: 14px 16px;
  border: 1px dashed rgba(8, 38, 66, .26);
  border-radius: 8px;
  background: white;
  color: var(--muted);
  white-space: pre-line;
  line-height: 1.65;
}
.rich-preview:empty::before { content: "Formatting preview"; color: #9aa2ac; font-style: italic; }
.rich-preview p { margin: 0 0 10px; }
.rich-preview ul, .rich-preview ol { margin: 8px 0; padding-left: 22px; }
.action-config-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.action-config {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.action-config > span { display: flex; align-items: center; gap: 9px; color: var(--navy); font-weight: 900; }
.action-config input[type="url"] { width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 11px; }
.action-config small { color: var(--muted); }
.preorder-config { border-color: #d88a00; background: #fff5d4; }
.admin-alert { margin: 0; padding: 13px 15px; border-radius: 6px; font-weight: 800; }
.admin-alert.success { background: #e7f2dc; color: #304b24; border: 1px solid #a9c993; }
.admin-alert.error { background: #fbe4df; color: #7e241b; border: 1px solid #dda59e; }
.admin-catalog-list { display: grid; gap: 12px; margin-top: 22px; }
.admin-book-row {
  display: grid;
  grid-template-columns: 54px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 11px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.admin-book-row img { width: 54px; height: 78px; object-fit: cover; border-radius: 3px; }
.admin-book-row strong, .admin-book-row small { display: block; }
.admin-book-row strong { color: var(--navy); }
.admin-book-row small { color: var(--muted); margin-top: 4px; }
.danger-button {
  border: 1px solid #b7493c;
  background: white;
  color: #942f24;
  border-radius: 6px;
  padding: 9px 11px;
  font-weight: 900;
  cursor: pointer;
}
.site-admin-form {
  width: min(1180px, 90vw);
  margin: 42px auto 80px;
  display: grid;
  gap: 18px;
}
.site-editor-section {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .97);
  box-shadow: 0 12px 28px rgba(8, 38, 66, .07);
  overflow: hidden;
}
.site-editor-section > summary {
  padding: 21px 24px;
  color: var(--navy);
  background: #f7f0e3;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.site-editor-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  border-top: 1px solid var(--line);
}
.site-editor-fields label { display: block; min-width: 0; }
.site-editor-fields label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-editor-fields input,
.site-editor-fields textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: white;
  color: var(--ink);
  font: inherit;
}
.site-editor-fields textarea { resize: vertical; }
.admin-image-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.admin-image-tile {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.admin-image-tile img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 4px; }
.admin-image-tile span {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0 !important;
  color: #8d2c22 !important;
}
.admin-image-tile input { width: 18px; height: 18px; padding: 0; }
.admin-section-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 15px;
  border-left: 4px solid var(--copper);
  background: #f4eadb;
  color: var(--navy);
}
.site-admin-save {
  position: sticky;
  bottom: 18px;
  z-index: 8;
  width: 100%;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(8, 38, 66, .26);
}

@media (max-width: 1080px) {
  .site-header { flex-wrap: wrap; padding: 14px 5vw; }
  .main-nav { order: 3; width: 100%; overflow-x: auto; margin-left: 0; padding-bottom: 4px; }
  .genres { grid-template-columns: repeat(5, 1fr); }
  .feature-grid, .belief-grid { grid-template-columns: repeat(2, 1fr); }
  .book-row { grid-template-columns: repeat(3, 1fr); }
  .featured-books { grid-template-columns: repeat(2, 1fr); }
  .publisher-snapshot, .daily-dive-home, .shark-feature, .looking-for-section, .audience-section { grid-template-columns: 1fr; }
  .writers-section .audience-copy { order: 2; }
  .writers-section .audience-image { order: 1; }
  .contact-page { grid-template-columns: 1fr; }
  .contact-image { min-height: 420px; }
  .snapshot-art { min-height: 360px; }
  .daily-card-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
  .about-hero, .story-section, .signup-hero, .blog-hero, .featured-post-card, .admin-layout, .catalog-admin-layout, .intro-band { grid-template-columns: 1fr; padding-left: 5vw; padding-right: 5vw; }
  .catalog-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1380px) and (min-width: 1081px) {
  .site-header { padding-left: 3vw; padding-right: 3vw; gap: 18px; }
  .main-nav { font-size: .66rem; gap: 12px; }
  .shop-button { display: none; }
}

@media (max-width: 680px) {
  .shop-button { display: none; }
  .brand strong { font-size: 1.08rem; }
  .brand small { letter-spacing: .24em; }
  .brand img { width: 58px; height: 58px; }
  .hero { min-height: 560px; padding: 72px 5vw; background-image: linear-gradient(90deg, rgba(247, 239, 226, .97), rgba(247, 239, 226, .78)), url("assets/sb-home-hero.webp"); }
  .home-hero { min-height: 560px; padding: 74px 5vw 54px; background-image: linear-gradient(90deg, rgba(243, 234, 216, .98), rgba(243, 234, 216, .74)), url("assets/sb-home-hero.webp"); }
  .hero-rotation-layer::after { background: linear-gradient(90deg, rgba(243, 234, 216, .98), rgba(243, 234, 216, .74)); }
  .home-hero-copy { text-align: left; }
  .home-hero .button-row { justify-content: flex-start; }
  .home-hero .hero-summary { margin-left: 0; padding: 13px 15px; }
  .leaf-rule { margin-left: 0; }
  .hero h1, .home-hero h1, .page-hero h1, .admin-hero h1 { font-size: 3rem; }
  .genres { grid-template-columns: repeat(2, 1fr); }
  .genres div { border-right: 0; border-bottom: 1px solid rgba(223, 211, 193, .7); }
  .feature-grid, .quote-grid, .book-row, .featured-books, .site-footer, .stat-grid, .belief-grid, .interest-options, .blog-grid, .daily-card-grid, .stat-row { grid-template-columns: 1fr; }
  .stat-row article { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 0; }
  .stat-row article:last-child { border-bottom: 0; }
  .quick-signup { display: grid; }
  .quick-signup input, .quick-signup button { border-radius: 6px; }
  .quick-signup button { padding: 14px 18px; margin-top: 10px; }
  .author-cta, .newsletter, .about-cta { display: block; }
  .author-cta .light-button, .newsletter .primary-button, .about-cta .light-button { margin-top: 16px; }
  .about-cta .guidelines-image-button { margin-top: 24px; }
  .slush-list-button {
    min-width: 0;
    width: 100%;
    max-width: 430px;
    min-height: 112px;
    grid-template-columns: 76px 1fr 34px;
    gap: 14px;
    margin-top: 24px;
    padding: 15px 17px;
    border-radius: 24px;
  }
  .slush-list-icon { height: 70px; padding-right: 14px; }
  .slush-list-icon img { width: 62px; height: 62px; }
  .slush-list-label small { font-size: .9rem; }
  .slush-list-label strong { font-size: 1.35rem; }
  .slush-list-arrow { font-size: 2rem; }
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-card img { width: 180px; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .signup-art { min-height: 300px; }
  .blog-hero-card { min-height: 300px; }
  .featured-post-art { min-height: 160px; }
  .admin-post-item { grid-template-columns: 1fr; }
  .action-config-grid { grid-template-columns: 1fr; }
  .site-editor-fields { grid-template-columns: 1fr; padding: 18px; }
  .admin-book-row { grid-template-columns: 48px 1fr; }
  .admin-book-row .admin-edit-button { grid-column: 1 / -1; }
  .admin-book-row form { grid-column: 1 / -1; }
  .danger-button { width: 100%; }
}

/* 2026 watercolor rebrand based on the approved Canadian publishing mockup. */
:root {
  --ink: #071f49;
  --navy: #071f49;
  --blue: #365983;
  --copper: #071f49;
  --gold: #c5a46c;
  --sage: #d9e2ec;
  --paper: #fbf7ec;
  --cream: #f4efe3;
  --mist: #e6edf5;
  --line: #d8d1c2;
  --muted: #334769;
  --shadow: 0 12px 28px rgba(7, 31, 73, .13);
}

body {
  color: var(--navy);
  background:
    radial-gradient(circle at 20% 10%, rgba(54, 89, 131, .06), transparent 24%),
    radial-gradient(circle at 88% 24%, rgba(54, 89, 131, .055), transparent 22%),
    linear-gradient(rgba(7, 31, 73, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 31, 73, .018) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 30px 30px, 30px 30px, auto;
}

body::before {
  background:
    radial-gradient(circle at 10% 18%, rgba(54, 89, 131, .05), transparent 15%),
    radial-gradient(circle at 82% 82%, rgba(54, 89, 131, .045), transparent 18%);
  opacity: .8;
}

h1, h2, h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.site-header {
  min-height: 116px;
  padding: 18px 7vw 14px;
  background: rgba(251, 247, 236, .96);
  box-shadow: none;
  border-bottom: 0;
  position: relative;
}

.site-header::after {
  display: none;
}

.brand {
  gap: 0;
}

.site-header .brand > img,
.site-footer .brand > img {
  content: url("assets/mock-logo.webp");
  width: 325px;
  height: auto;
  object-fit: contain;
}

.brand span {
  display: none;
}

.main-nav {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-transform: none;
  font-size: .95rem;
  letter-spacing: 0;
  gap: clamp(18px, 2vw, 34px);
  align-items: center;
}

.main-nav a {
  padding: 8px 0 7px;
  border-bottom: 2px solid transparent;
}

.main-nav .active,
.main-nav a:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.main-nav::after {
  display: none;
}

.shop-button,
.primary-button,
.light-button,
.outline-button,
.feature-card a,
.signup-submit,
.red-button {
  border-radius: 2px;
  padding: 13px 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .82rem;
  letter-spacing: .08em;
  font-weight: 700;
}

.primary-button,
.shop-button,
.signup-submit {
  background: var(--navy);
  border-color: var(--navy);
}

.outline-button {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.home-hero {
  min-height: 470px;
  padding: 26px 7vw 52px;
  align-items: center;
  border-bottom: 0;
  overflow: hidden;
  background:
    url("assets/mock-hero-left.webp") left bottom / 275px auto no-repeat,
    var(--paper);
}

.home-hero::after {
  content: "";
  position: absolute;
  right: 3.5vw;
  bottom: 30px;
  width: min(45vw, 460px);
  aspect-ratio: 320 / 362;
  background: url("assets/mock-hero-art.webp") center / contain no-repeat;
  pointer-events: none;
}

.home-hero.has-rotating-hero .hero-rotation-layer {
  inset: auto 3.5vw 30px auto;
  width: min(45vw, 460px);
  aspect-ratio: 320 / 362;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}

.home-hero.has-rotating-hero::after,
.home-hero.has-rotating-hero .hero-rotation-layer::after {
  display: none;
}

.home-hero-copy {
  max-width: 520px;
  text-align: left;
  margin-left: 12vw;
}

.home-hero h1 {
  font-size: clamp(3.4rem, 6vw, 5.35rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.home-hero p,
.home-hero .hero-summary {
  margin: 18px 0 18px;
  max-width: 440px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-style: italic;
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  line-height: 1.25;
}

.leaf-rule {
  width: 270px;
  height: 14px;
  margin: 12px 0 0;
  border-top: 4px solid var(--navy);
  border-radius: 60%;
  transform: rotate(-2deg);
}

.leaf-rule::after {
  display: none;
}

.home-hero .button-row {
  justify-content: flex-start;
  gap: 18px;
}

.discover-section,
.books {
  padding: 42px 7vw 32px;
  background: var(--paper);
}

.ornament-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 26px;
}

.ornament-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.2;
}

.ornament-heading span,
.ornament-heading::before {
  content: "";
  width: 74px;
  height: 1px;
  background: rgba(7, 31, 73, .42);
  display: block;
  margin: 0;
}

.ornament-heading span::after {
  display: none;
}

.featured-books {
  max-width: 780px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.featured-books article {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: rgba(255, 253, 248, .94);
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(7, 31, 73, .11);
  min-width: 0;
}

.featured-books img {
  order: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.featured-books h3 {
  order: 1;
  margin: 14px 18px 4px;
  font-size: 1rem;
  line-height: 1.2;
}

.genre-pill {
  order: 2;
  min-width: 0;
  padding: 0;
  margin: 0 18px 10px;
  background: transparent !important;
  color: var(--navy);
  text-transform: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .82rem;
  font-weight: 700;
}

.home-book-actions {
  order: 3;
  justify-items: start;
  gap: 7px;
  margin: auto 18px 18px;
}

.featured-books a,
.home-author-button,
.text-link {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 900;
}

.featured-books a::after,
.text-link::after {
  content: "  →";
}

.home-author-button {
  color: var(--blue);
  border-bottom-color: rgba(7, 31, 73, .35);
}

.readers-section,
.writers-section {
  display: none;
}

.mock-publisher-row {
  display: grid;
  grid-template-columns: .9fr 1.6fr;
  gap: 40px;
  align-items: center;
  padding: 34px 7vw 32px;
  background: rgba(251, 247, 236, .92);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.publisher-blurb h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.publisher-blurb p {
  max-width: 410px;
  margin: 0 0 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .96rem;
  line-height: 1.45;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: none;
}

.stat-row article {
  text-align: center;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.stat-row article:last-child {
  border-right: 0;
}

.stat-row img {
  display: none;
}

.stat-row article::before,
.publish-type-grid article::before {
  display: grid;
  place-items: center;
  width: 76px;
  height: 64px;
  margin: 0 auto 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  line-height: 1;
}

.stat-row article:nth-child(1)::before { content: "▰"; transform: rotate(-6deg); }
.stat-row article:nth-child(2)::before { content: "♨"; }
.stat-row article:nth-child(3)::before { content: "✦"; font-size: 3.1rem; }
.stat-row article:nth-child(4)::before { content: "⌂"; font-size: 3.2rem; }

.publish-type-grid article:nth-child(1)::before { content: "☁"; }
.publish-type-grid article:nth-child(2)::before { content: "⌖"; }
.publish-type-grid article:nth-child(3)::before { content: "▤"; }
.publish-type-grid article:nth-child(4)::before { content: "▲"; }

.publish-type-grid img {
  display: none;
}

.stat-row strong {
  color: var(--navy);
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-row span {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
  font-weight: 700;
}

.publish-types {
  padding: 22px 7vw 38px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.publish-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 780px;
  margin: 0 auto;
}

.publish-type-grid article {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.publish-type-grid article:last-child {
  border-right: 0;
}

.publish-type-grid h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
}

.publish-type-grid p {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .88rem;
  line-height: 1.28;
}

.daily-dive-home {
  display: block;
  padding: 28px 7vw 40px;
  background: var(--paper);
}

.daily-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 780px;
  margin: 0 auto 20px;
}

.daily-heading .ornament-heading {
  grid-column: 1 / -1;
  margin: 0;
}

.daily-heading .text-link {
  grid-column: 3;
  justify-self: end;
  margin-top: -28px;
}

.daily-card-grid {
  max-width: 780px;
  margin: 0 auto;
  gap: 26px;
}

.daily-card-grid article {
  background: rgba(255, 253, 248, .96);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 9px 18px rgba(7, 31, 73, .1);
}

.daily-card-grid article > :not(.daily-image) {
  margin-left: 18px;
  margin-right: 18px;
}

.daily-card-grid h3 {
  margin: 4px 18px 8px;
  font-size: 1.28rem;
}

.daily-card-grid p {
  display: none;
}

.daily-card-grid .post-date {
  display: block;
  color: var(--navy);
  text-transform: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .78rem;
  margin-top: 6px;
}

.daily-card-grid a {
  display: none;
}

.daily-image {
  height: 127px;
  background-size: cover;
  background-position: center;
}

.daily-image.coffee {
  background-image: url("assets/blog-mug.webp");
}

.daily-image.lake {
  background-image: url("assets/blog-lake.webp");
}

.daily-image.slush {
  background-image: url("assets/blog-desk.webp");
}

.newsletter.home-newsletter {
  display: grid;
  grid-template-columns: 72px 1fr minmax(360px, 520px);
  gap: 24px;
  align-items: center;
  padding: 28px 8vw;
  background:
    linear-gradient(120deg, rgba(47, 82, 125, .98), rgba(14, 43, 83, .98));
  color: white;
}

.newsletter-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 999px;
  color: white;
  font-size: 2.15rem;
}

.newsletter h2 {
  color: white;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.newsletter p {
  margin-top: 6px;
  color: rgba(255, 255, 255, .93);
  font-family: Georgia, "Times New Roman", serif;
}

.quick-signup {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255, 253, 248, .98);
}

.quick-signup input {
  color: var(--navy);
  border-radius: 0;
  padding: 15px 18px;
  font-family: Georgia, "Times New Roman", serif;
}

.quick-signup button {
  background: var(--navy);
  border-radius: 0;
  padding: 0 26px;
  font-family: Georgia, "Times New Roman", serif;
}

.site-footer {
  grid-template-columns: 1.45fr .85fr 1fr .8fr;
  gap: 36px;
  padding: 34px 7vw 28px;
  color: white;
  background:
    radial-gradient(circle at 92% 30%, rgba(73, 112, 160, .18), transparent 18%),
    linear-gradient(180deg, #071f49, #061a3d);
}

.site-footer .footer-brand img {
  content: url("assets/mock-footer-logo.webp");
  width: 260px;
  filter: none;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .9);
  font-family: Georgia, "Times New Roman", serif;
}

.site-footer h3 {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .9rem;
}

.site-footer a {
  display: block;
  margin: 7px 0;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  margin: 0;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-header {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .main-nav {
    gap: 18px;
  }

  .home-hero-copy {
    margin-left: 0;
  }

  .home-hero::after,
  .home-hero.has-rotating-hero .hero-rotation-layer {
    width: min(44vw, 390px);
    right: 1vw;
  }

  .mock-publisher-row,
  .newsletter.home-newsletter {
    grid-template-columns: 1fr;
  }

  .publish-type-grid,
  .stat-row,
  .featured-books {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 0;
    padding-top: 12px;
  }

  .site-header .brand > img {
    width: 240px;
  }

  .home-hero {
    min-height: 640px;
    padding: 40px 5vw 220px;
    background-size: 210px auto, auto;
  }

  .home-hero::after,
  .home-hero.has-rotating-hero .hero-rotation-layer {
    right: 5vw;
    bottom: 24px;
    width: min(88vw, 380px);
  }

  .home-hero h1,
  .hero h1,
  .page-hero h1,
  .admin-hero h1 {
    font-size: 3.45rem;
  }

  .home-hero p,
  .home-hero .hero-summary {
    font-size: 1.55rem;
  }

  .featured-books,
  .publish-type-grid,
  .daily-card-grid,
  .stat-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .featured-books {
    max-width: 280px;
  }

  .publish-type-grid article,
  .stat-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .publish-type-grid article:last-child,
  .stat-row article:last-child {
    border-bottom: 0;
  }

  .daily-heading {
    display: block;
  }

  .daily-heading .text-link {
    display: block;
    text-align: center;
    margin: 12px 0 0;
  }

  .newsletter.home-newsletter {
    padding: 30px 5vw;
  }

  .quick-signup {
    display: grid;
    border: 0;
    background: transparent;
  }

  .quick-signup input,
  .quick-signup button {
    border-radius: 3px;
  }

  .site-footer .footer-brand img {
    width: 230px;
  }
}

/* Public inner-page polish for the watercolor rebrand. */
body:not(.admin-page) .shop-button {
  display: none;
}

.about-hero,
.blog-hero,
.signup-hero,
.contact-page,
.page-hero,
body[data-page="submissions"] .admin-hero {
  background:
    url("assets/mock-hero-left.webp") left bottom / 250px auto no-repeat,
    linear-gradient(120deg, rgba(251, 247, 236, .98), rgba(246, 241, 229, .98));
  border-top: 1px solid rgba(7, 31, 73, .08);
  border-bottom: 1px solid var(--line);
}

.about-hero,
.blog-hero,
.signup-hero,
.contact-page {
  min-height: 520px;
}

.about-hero-copy h1,
.blog-hero-copy h1,
.signup-panel h1,
.contact-copy h1,
.page-hero h1,
body[data-page="submissions"] .admin-hero h1 {
  font-size: clamp(3.2rem, 5.4vw, 5.4rem);
  line-height: 1.02;
}

.about-hero-copy > p:not(.eyebrow),
.blog-hero-copy > p:not(.eyebrow),
.signup-intro,
.contact-copy > p:not(.eyebrow),
.page-hero p,
body[data-page="submissions"] .admin-hero p:not(.eyebrow) {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.eyebrow,
.post-category {
  color: var(--blue);
  letter-spacing: .16em;
}

.about-hero-card,
.blog-hero-card,
.signup-art,
.publishing-illustration,
.contact-image img,
.featured-post-card,
.blog-card,
.feature-card,
.looking-for-list li,
.catalog-card,
.shop-tools,
.signup-panel {
  background: rgba(255, 253, 248, .94);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(7, 31, 73, .1);
}

.about-hero-card img,
.blog-hero-card img,
.signup-art img {
  content: url("assets/mock-logo.webp");
  width: min(280px, 75%);
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.story-section,
.beliefs-section,
.looking-for-section,
.feature-grid,
.featured-post,
.blog-section,
.shop-tools,
.catalog-grid,
.shop-note {
  background: var(--paper);
}

.story-copy h2,
.beliefs-section h2,
.about-cta h2,
.looking-for-section h2,
.shop-note h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
}

.belief-grid article,
.feature-card,
.blog-card,
.catalog-card {
  position: relative;
  overflow: hidden;
}

.belief-grid article::before,
.feature-card::before,
.blog-card::before,
.catalog-card::before {
  border-color: rgba(7, 31, 73, .09);
}

.about-cta,
.author-cta,
.blog-newsletter {
  background: linear-gradient(120deg, rgba(47, 82, 125, .98), rgba(14, 43, 83, .98));
}

.about-cta .guidelines-image-button img {
  border-radius: 10px;
}

.looking-for-list li::before {
  background: var(--navy);
}

.blog-hero-card,
.signup-art {
  background:
    linear-gradient(rgba(251, 247, 236, .82), rgba(251, 247, 236, .9)),
    url("assets/mock-hero-art.webp") center / contain no-repeat;
}

.featured-post-art,
.blog-card-art,
.card-mark {
  border-radius: 4px;
  background:
    linear-gradient(rgba(251, 247, 236, .74), rgba(251, 247, 236, .86)),
    url("assets/blog-desk.webp") center / cover no-repeat;
  color: var(--navy);
}

.blog-card:nth-child(1) .blog-card-art { background-image: linear-gradient(rgba(251, 247, 236, .1), rgba(251, 247, 236, .1)), url("assets/blog-mug.webp"); }
.blog-card:nth-child(2) .blog-card-art { background-image: linear-gradient(rgba(251, 247, 236, .1), rgba(251, 247, 236, .1)), url("assets/blog-lake.webp"); }
.blog-card:nth-child(3) .blog-card-art { background-image: linear-gradient(rgba(251, 247, 236, .1), rgba(251, 247, 236, .1)), url("assets/blog-desk.webp"); }

.signup-panel {
  padding: clamp(28px, 4vw, 48px);
}

.interest-card {
  border-radius: 4px;
  padding-top: 48px;
}

.interest-card input {
  top: 15px;
  right: 15px;
}

.contact-image {
  background:
    linear-gradient(rgba(251, 247, 236, .25), rgba(251, 247, 236, .25)),
    url("assets/mock-hero-art.webp") center / contain no-repeat;
}

.contact-image img {
  opacity: .9;
  mix-blend-mode: multiply;
}

.filter-chip,
.synopsis-button,
.author-button,
.book-links a,
.book-links button {
  border-radius: 2px;
  font-family: Georgia, "Times New Roman", serif;
}

.preorder-link {
  background: #f0a51f !important;
  border-color: #f0a51f !important;
  color: #071f49 !important;
}

.rich-book-text audio {
  display: block;
  width: 100%;
  margin: 12px 0 0;
}

.book-media {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.book-audio-sample {
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(251, 247, 236, .78);
}

.book-audio-sample strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.teaser-link,
.free-audio-link,
.audiobook-link {
  background: transparent !important;
  color: var(--navy) !important;
  border-color: var(--navy) !important;
}

/* Homepage image pass: use the dedicated assets supplied on June 22. */
.site-header .brand > img {
  content: url("assets/sb-header-logo.webp");
  width: 330px;
  height: auto;
}

.home-page .home-hero {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 1672 / 791;
  padding: 0;
  background: url("assets/sb-home-hero.webp") center top / cover no-repeat;
  border-bottom: 0;
  overflow: hidden;
}

.home-page .home-hero::after,
.home-page .home-hero.has-rotating-hero::after,
.home-page .home-hero .hero-rotation-layer {
  display: none;
}

.home-page .home-hero-copy {
  position: absolute;
  inset: 0;
  max-width: none;
  margin: 0;
  text-align: left;
  pointer-events: none;
}

.home-page .home-hero h1,
.home-page .home-hero .leaf-rule,
.home-page .home-hero .hero-summary {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.home-page .home-hero .button-row {
  position: absolute;
  left: 18.4%;
  top: 67.2%;
  width: 38.6%;
  height: 7.4%;
  display: flex;
  gap: 4.2%;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: nowrap;
  pointer-events: auto;
}

.home-page .hero-image-button {
  display: block;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  box-shadow: none;
  font-size: 0;
  line-height: 0;
}

.home-page .hero-image-button:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.home-page .hero-browse-button {
  flex: 0 0 39%;
  background-image: url("assets/sb-button-browse.png");
}

.home-page .hero-submit-button {
  flex: 1 1 auto;
  background-image: url("assets/sb-button-submit.png");
}

.home-page .featured-books a::after,
.home-page .text-link::after {
  content: none;
}

.home-page .featured-books a {
  width: 132px;
  height: 25px;
  background: url("assets/sb-link-details.png") left center / contain no-repeat;
  font-size: 0;
  line-height: 0;
}

.home-page .publisher-blurb .text-link {
  display: block;
  width: 220px;
  height: 25px;
  background: url("assets/sb-link-learn.png") left center / contain no-repeat;
  font-size: 0;
  line-height: 0;
}

.home-page .daily-heading .text-link {
  display: block;
  width: 190px;
  height: 28px;
  background: url("assets/sb-link-posts.png") right center / contain no-repeat;
  font-size: 0;
  line-height: 0;
}

.home-page .stat-row article::before,
.home-page .publish-type-grid article::before {
  display: none;
}

.home-page .stat-row img {
  display: block;
  width: 86px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.home-page .publish-type-grid img {
  display: block;
  width: min(165px, 100%);
  height: 120px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.home-page .quick-signup button {
  min-width: 210px;
  min-height: 54px;
  padding: 0;
  border: 0;
  background: url("assets/sb-button-signup.png") center / contain no-repeat;
  color: transparent;
  font-size: 0;
}

@media (max-width: 1080px) {
  .site-header .brand > img {
    width: 280px;
  }

  .home-page .home-hero .button-row {
    left: 18.2%;
    top: 67.2%;
    width: 39%;
  }
}

@media (max-width: 680px) {
  .site-header .brand > img {
    width: 235px;
  }

  .home-page .home-hero {
    aspect-ratio: 1672 / 791;
    min-height: 0;
    padding: 0;
    background-size: cover;
  }

  .home-page .home-hero .button-row {
    left: 18%;
    top: 66.8%;
    width: 39.8%;
    height: 8%;
  }

  .home-page .featured-books a {
    width: 145px;
  }

  .home-page .daily-heading .text-link,
  .home-page .publisher-blurb .text-link {
    margin-left: auto;
    margin-right: auto;
  }
}

/* About page mockup pass using the supplied June 22 About artwork. */
.about-page main {
  background: var(--paper);
}

.about-page .about-hero {
  display: grid;
  grid-template-columns: .85fr 1.3fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: 0;
  padding: 46px 7vw 44px;
  background: var(--paper);
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.about-page .about-hero-copy {
  max-width: 520px;
}

.about-page .about-hero-copy h1 {
  margin: 10px 0 16px;
  font-size: clamp(3.4rem, 6.1vw, 6.2rem);
  line-height: .98;
  letter-spacing: 0;
}

.about-page .about-hero-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.45;
}

.about-page .about-hero-card,
.about-page .publishing-illustration {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.about-page .about-hero-card img,
.about-page .publishing-illustration img {
  content: normal;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-page .about-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 20px 7vw 24px;
  background: rgba(251, 247, 236, .95);
  border-bottom: 1px solid var(--line);
}

.about-page .about-stat-strip article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 170px;
  padding: 0 clamp(16px, 3vw, 44px);
  text-align: center;
  border-right: 1px solid var(--line);
}

.about-page .about-stat-strip article:last-child {
  border-right: 0;
}

.about-page .about-stat-strip img {
  width: 112px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 2px;
  mix-blend-mode: multiply;
}

.about-page .about-stat-strip strong,
.about-page .about-stat-strip span {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

.about-page .about-stat-strip strong {
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
}

.about-page .about-stat-strip span {
  font-size: clamp(.95rem, 1.3vw, 1.35rem);
  font-weight: 700;
}

.about-page .story-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  padding: 46px 7vw 42px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.about-page .story-copy {
  max-width: 540px;
}

.about-page .story-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(2.5rem, 4.3vw, 4.25rem);
  line-height: 1.02;
}

.about-page .story-copy p {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.58;
}

.about-page .story-copy strong {
  color: var(--navy);
}

.about-page .beliefs-section {
  padding: 36px 7vw 38px;
  background: var(--paper);
  border-bottom: 0;
  text-align: center;
}

.about-page .beliefs-section h2 {
  margin: 8px 0 8px;
  font-size: clamp(2.2rem, 3.4vw, 3.7rem);
  line-height: 1.03;
}

.about-page .leaf-rule.small {
  width: 190px;
  height: 13px;
  margin: 12px 0 16px;
  border-top: 1px solid rgba(7, 31, 73, .48);
  border-bottom: 0;
  transform: none;
}

.about-page .leaf-rule.small::after {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 0;
  background: var(--navy);
  transform: translate(-50%, -53%) rotate(45deg);
}

.about-page .leaf-rule.centered {
  margin-left: auto;
  margin-right: auto;
}

.about-page .belief-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1060px;
  margin: 22px auto 0;
}

.about-page .belief-grid article {
  padding: 0 clamp(14px, 2.5vw, 34px);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.about-page .belief-grid article:last-child {
  border-right: 0;
}

.about-page .belief-grid article::before {
  display: none;
}

.about-page .belief-grid img {
  display: block;
  width: 128px;
  height: 108px;
  object-fit: contain;
  margin: 0 auto 10px;
  mix-blend-mode: multiply;
}

.about-page .belief-grid h3 {
  margin: 0 0 8px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.about-page .belief-grid p {
  max-width: 210px;
  margin: 0 auto;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .92rem;
  line-height: 1.38;
}

.about-page .about-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 1.3fr) 1fr;
  gap: 20px;
  align-items: center;
  margin: 0 4vw 28px;
  padding: 22px clamp(20px, 4vw, 56px);
  color: var(--navy);
  background: rgba(255, 253, 248, .82);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
  text-align: center;
}

.about-page .about-cta h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1.05;
}

.about-page .about-cta p {
  max-width: 620px;
  margin: 0 auto 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.35;
}

.about-page .about-cta-art {
  display: block;
  width: min(100%, 260px);
  height: 160px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.about-page .about-cta-art-left {
  justify-self: start;
}

.about-page .about-cta-art-right {
  justify-self: end;
}

.about-page .about-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 310px;
  min-height: 42px;
  padding: 10px 26px;
  color: #fff;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 4px;
  box-shadow: 0 7px 16px rgba(7, 31, 73, .18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .about-page .about-hero,
  .about-page .story-section {
    grid-template-columns: 1fr;
  }

  .about-page .about-hero-card,
  .about-page .publishing-illustration {
    max-width: 760px;
    margin: 0 auto;
  }

  .about-page .about-stat-strip,
  .about-page .belief-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page .about-stat-strip article:nth-child(2),
  .about-page .belief-grid article:nth-child(2) {
    border-right: 0;
  }

  .about-page .about-stat-strip article,
  .about-page .belief-grid article {
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

  .about-page .about-stat-strip article:nth-last-child(-n+2),
  .about-page .belief-grid article:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .about-page .about-cta {
    grid-template-columns: 1fr;
  }

  .about-page .about-cta-art {
    justify-self: center;
    height: 130px;
  }
}

@media (max-width: 680px) {
  .about-page .about-hero,
  .about-page .story-section,
  .about-page .beliefs-section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .about-page .about-hero-copy h1 {
    font-size: 3.6rem;
  }

  .about-page .about-stat-strip,
  .about-page .belief-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-stat-strip article,
  .about-page .about-stat-strip article:nth-child(2),
  .about-page .belief-grid article,
  .about-page .belief-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-page .about-stat-strip article:last-child,
  .about-page .belief-grid article:last-child {
    border-bottom: 0;
  }

  .about-page .about-cta {
    margin-left: 5vw;
    margin-right: 5vw;
  }

  .about-page .about-submit-button {
    min-width: 0;
    width: 100%;
  }
}

/* Daily Dive page mockup pass using the supplied June 22 blog artwork. */
.blog-page main {
  background: var(--paper);
}

.blog-page .blog-hero {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 0;
  padding: 26px 7vw 38px;
  background:
    url("assets/mock-hero-left.webp") left bottom / 250px auto no-repeat,
    var(--paper);
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.blog-page .blog-hero-copy {
  max-width: 570px;
  padding-left: clamp(0px, 6vw, 115px);
}

.blog-page .blog-hero-copy h1 {
  margin: 8px 0 8px;
  font-size: clamp(4rem, 7.2vw, 7rem);
  line-height: .98;
}

.blog-page .blog-hero-subtitle {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.55vw, 2.55rem);
  font-style: italic;
  line-height: 1.15;
}

.blog-page .blog-hero-copy > p:not(.eyebrow):not(.blog-hero-subtitle) {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(.98rem, 1.25vw, 1.12rem);
  line-height: 1.45;
}

.blog-page .leaf-rule.small {
  width: 210px;
  height: 13px;
  margin: 14px 0 14px;
  border-top: 1px solid rgba(7, 31, 73, .48);
  border-bottom: 0;
  transform: none;
}

.blog-page .leaf-rule.small::after {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 0;
  background: var(--navy);
  transform: translate(-50%, -53%) rotate(45deg);
}

.blog-page .blog-actions {
  margin-top: 20px;
}

.blog-page .blog-hero-card {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.blog-page .blog-hero-card img {
  content: normal;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  mix-blend-mode: multiply;
}

.blog-page .featured-post,
.blog-page .dive-categories,
.blog-page .blog-section {
  padding: 32px 7vw;
  background: var(--paper);
}

.blog-page .featured-post {
  padding-top: 38px;
}

.blog-page .featured-post-card {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px;
  background: rgba(255, 253, 248, .82);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(7, 31, 73, .09);
}

.blog-page .featured-post-card > div:last-child {
  padding: clamp(14px, 3vw, 36px) clamp(16px, 5vw, 70px) clamp(14px, 3vw, 36px) 0;
  background:
    url("assets/mock-hero-left.webp") right center / 190px auto no-repeat;
}

.blog-page .featured-post-card h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.04;
}

.blog-page .featured-post-card p,
.blog-page .blog-card p {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
}

.blog-page .featured-post-card details,
.blog-page .blog-card details {
  margin-top: 14px;
}

.blog-page .featured-post-card summary,
.blog-page .blog-card summary {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: .92rem;
  border-bottom: 1px solid rgba(7, 31, 73, .45);
  width: max-content;
}

.blog-page .featured-post-art {
  min-height: 292px;
  margin: 0;
  border-radius: 4px;
  background: url("assets/dive-feature-lake.webp") center / cover no-repeat;
  font-size: 0;
}

.blog-page .dive-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
  margin: 18px auto 0;
}

.blog-page .dive-category-grid article {
  padding: 0 clamp(18px, 2.7vw, 38px);
  text-align: center;
  border-right: 1px solid var(--line);
}

.blog-page .dive-category-grid article:last-child {
  border-right: 0;
}

.blog-page .dive-category-grid img {
  display: block;
  width: min(160px, 100%);
  height: 132px;
  object-fit: contain;
  margin: 0 auto 10px;
  mix-blend-mode: multiply;
}

.blog-page .dive-category-grid h3 {
  margin: 0 0 5px;
  font-size: 1.22rem;
  line-height: 1.1;
}

.blog-page .dive-category-grid p {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .92rem;
  line-height: 1.38;
}

.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1120px;
  margin: 0 auto;
  gap: 22px;
}

.blog-page .blog-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 16px;
  align-items: start;
  min-height: 190px;
  padding: 12px;
  background: rgba(255, 253, 248, .9);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(7, 31, 73, .08);
}

.blog-page .blog-card::before {
  display: none;
}

.blog-page .blog-card-art {
  grid-row: 1 / span 6;
  min-height: 166px;
  height: 100%;
  margin: 0;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  font-size: 0;
}

.blog-page .featured-post-art.dive-card-news,
.blog-page .blog-card .blog-card-art.dive-card-news { background-image: url("assets/dive-hero-desk.webp"); }
.blog-page .featured-post-art.dive-card-author,
.blog-page .blog-card .blog-card-art.dive-card-author { background-image: url("assets/dive-category-author.webp"); }
.blog-page .featured-post-art.dive-card-canada,
.blog-page .blog-card .blog-card-art.dive-card-canada { background-image: url("assets/dive-feature-lake.webp"); }
.blog-page .featured-post-art.dive-card-writing,
.blog-page .blog-card .blog-card-art.dive-card-writing { background-image: url("assets/dive-post-revision.webp"); }
.blog-page .featured-post-art.dive-card-submission,
.blog-page .blog-card .blog-card-art.dive-card-submission { background-image: url("assets/dive-post-submission.webp"); }
.blog-page .featured-post-art.dive-card-press,
.blog-page .blog-card .blog-card-art.dive-card-press { background-image: url("assets/dive-post-press.webp"); }

.blog-page .blog-card h3 {
  margin: 2px 0 8px;
  font-size: 1.35rem;
  line-height: 1.08;
}

.blog-page .post-category {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.blog-page .post-date {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .78rem;
  font-weight: 400;
}

.blog-page .blog-card > p:not(.post-category):not(.post-date) {
  margin: 0 0 6px;
  font-size: .88rem;
  line-height: 1.35;
}

.blog-page .post-body {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
}

.blog-page .blog-newsletter {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 8vw;
  background:
    url("assets/mock-hero-left.webp") left bottom / 240px auto no-repeat,
    linear-gradient(120deg, rgba(47, 82, 125, .98), rgba(14, 43, 83, .98));
}

.blog-page .blog-newsletter h2,
.blog-page .blog-newsletter p {
  color: white;
}

.blog-page .blog-newsletter h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-page .blog-newsletter p {
  margin: 4px 0 0;
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
}

.blog-page .blog-newsletter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 52px;
  padding: 13px 28px;
  color: white;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .blog-page .blog-hero,
  .blog-page .featured-post-card,
  .blog-page .blog-newsletter {
    grid-template-columns: 1fr;
  }

  .blog-page .blog-hero-copy {
    padding-left: 0;
  }

  .blog-page .blog-hero-card,
  .blog-page .featured-post-card {
    max-width: 760px;
  }

  .blog-page .featured-post-card > div:last-child {
    padding: 10px 18px 20px;
  }

  .blog-page .dive-category-grid,
  .blog-page .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-page .dive-category-grid article:nth-child(2) {
    border-right: 0;
  }

  .blog-page .dive-category-grid article {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }

  .blog-page .dive-category-grid article:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .blog-page .blog-hero,
  .blog-page .featured-post,
  .blog-page .dive-categories,
  .blog-page .blog-section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .blog-page .blog-hero-copy h1 {
    font-size: 4rem;
  }

  .blog-page .dive-category-grid,
  .blog-page .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-page .dive-category-grid article,
  .blog-page .dive-category-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .blog-page .dive-category-grid article:last-child {
    border-bottom: 0;
  }

  .blog-page .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-page .blog-card-art {
    grid-row: auto;
    height: 190px;
    margin-bottom: 12px;
  }

  .blog-page .blog-newsletter {
    grid-template-columns: 1fr;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .blog-page .blog-newsletter-button {
    width: 100%;
  }
}

/* Newsletter mockup pass using the supplied June 22 newsletter artwork. */
.newsletter-page main {
  background:
    url("assets/newsletter-footer-landscape.webp") center bottom / 100% auto no-repeat,
    var(--paper);
}

.newsletter-page .signup-hero {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(22px, 4vw, 62px);
  align-items: center;
  min-height: 0;
  padding: 52px 7vw 28px;
  background:
    url("assets/newsletter-left-forest.webp") left bottom / 330px auto no-repeat,
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.newsletter-page .signup-panel,
.newsletter-page .signup-art {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.newsletter-page .signup-panel h1 {
  margin: 0;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 1;
}

.newsletter-page .signup-intro {
  max-width: 560px;
  margin: 18px auto 0 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.42;
}

.newsletter-page .signup-art img {
  content: normal;
  width: 100%;
  max-width: none;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  mix-blend-mode: multiply;
}

.newsletter-page .leaf-rule.small {
  width: 190px;
  height: 13px;
  margin: 22px 0 16px;
  border-top: 1px solid rgba(7, 31, 73, .48);
  border-bottom: 0;
  transform: none;
}

.newsletter-page .leaf-rule.small::after {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 0;
  background: var(--navy);
  transform: translate(-50%, -53%) rotate(45deg);
}

.newsletter-page .leaf-rule.centered {
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form-section {
  padding: 30px 7vw 86px;
}

.newsletter-form-section .signup-panel {
  max-width: 940px;
  margin: 0 auto;
}

.newsletter-page .signup-form {
  gap: 20px;
}

.newsletter-page .honeypot-field {
  display: none !important;
}

.newsletter-page .signup-form label span,
.newsletter-page .interest-fieldset legend {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.newsletter-page .signup-form input {
  border: 1px solid rgba(7, 31, 73, .45);
  border-radius: 4px;
  background: rgba(255, 253, 248, .82);
  font-family: Georgia, "Times New Roman", serif;
}

.newsletter-page .interest-fieldset {
  margin-top: 8px;
  text-align: center;
}

.newsletter-page .interest-fieldset legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-bottom: 18px;
  font-size: 1.55rem;
}

.newsletter-page .interest-fieldset legend::before,
.newsletter-page .interest-fieldset legend::after {
  content: "";
  width: 92px;
  height: 1px;
  background: rgba(7, 31, 73, .38);
}

.newsletter-page .interest-options {
  gap: 22px;
}

.newsletter-page .interest-card {
  min-height: 270px;
  padding: 18px 22px 20px;
  text-align: center;
  background: rgba(255, 253, 248, .68);
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: none;
}

.newsletter-page .interest-card input {
  top: 18px;
  left: 18px;
  right: auto;
  width: 24px;
  height: 24px;
}

.newsletter-page .interest-card img {
  display: block;
  width: 130px;
  height: 104px;
  object-fit: contain;
  margin: 0 auto 8px;
  mix-blend-mode: multiply;
}

.newsletter-page .interest-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.newsletter-page .interest-card small {
  max-width: 230px;
  margin: 0 auto;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.35;
}

.newsletter-page .signup-submit {
  width: min(300px, 100%);
  min-height: 56px;
  margin: 0 auto;
  border-radius: 5px;
  background: var(--navy);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  letter-spacing: .13em;
}

.newsletter-page .privacy-note {
  max-width: 720px;
  margin: 0 auto;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  text-align: center;
}

.newsletter-page .form-status {
  max-width: 760px;
  margin: 8px auto 0;
  padding: 20px 24px;
  color: #173f28;
  background: rgba(233, 244, 230, .85);
  border: 1px solid rgba(37, 111, 63, .45);
  border-radius: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  text-align: center;
}

/* Shop page mockup pass using the supplied June 22 shop artwork. */
.shop-page main {
  background: var(--paper);
}

.shop-page {
  overflow-x: hidden;
}

.shop-page .shop-hero {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 0;
  padding: 28px 7vw 22px;
  background:
    url("assets/mock-hero-left.webp") left bottom / 230px auto no-repeat,
    var(--paper);
  border-top: 0;
  border-bottom: 0;
  text-align: left;
}

.shop-page .shop-hero h1 {
  margin: 8px 0 8px;
  font-size: clamp(3.8rem, 6.3vw, 6.4rem);
  line-height: 1;
}

.shop-page .shop-hero p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.42;
}

.shop-page .shop-hero-art img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.shop-page .leaf-rule.small {
  width: 235px;
  height: 13px;
  margin: 14px 0 16px;
  border-top: 1px solid rgba(7, 31, 73, .48);
  border-bottom: 0;
  transform: none;
}

.shop-page .leaf-rule.small::after {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 0;
  background: var(--navy);
  transform: translate(-50%, -53%) rotate(45deg);
}

.shop-page .shop-tools {
  position: static;
  padding: 10px 7vw 18px;
  background: var(--paper);
  border-bottom: 0;
}

.shop-page .shop-tools div {
  justify-content: center;
  gap: 16px;
}

.shop-page .filter-chip {
  min-width: 145px;
  border-radius: 999px;
  background: rgba(255, 253, 248, .72);
  border-color: rgba(7, 31, 73, .72);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: none;
  letter-spacing: 0;
}

.shop-page .filter-chip.active,
.shop-page .filter-chip:hover {
  background: var(--navy);
  color: white;
}

.shop-page .catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 0 7vw 24px;
  background: var(--paper);
}

.shop-page .catalog-card {
  display: block;
  padding: 14px;
  text-align: center;
  background: rgba(255, 253, 248, .76);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 7px 18px rgba(7, 31, 73, .08);
}

.shop-page .catalog-card::before {
  display: none;
}

.shop-page .catalog-card > img {
  width: min(100%, 178px);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 9px 18px rgba(7, 31, 73, .22);
}

.shop-page .catalog-copy h2 {
  margin: 12px 0 4px;
  font-size: 1.08rem;
  line-height: 1.15;
}

.shop-page .book-tag {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .78rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.shop-page .book-blurb {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .86rem;
  line-height: 1.35;
}

.shop-page .book-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 12px;
}

.shop-page .book-links a,
.shop-page .book-links button,
.shop-page .featured-book-actions a,
.shop-page .featured-book-actions button {
  min-height: 28px;
  padding: 6px 8px;
  border-radius: 3px;
  border-color: rgba(7, 31, 73, .42);
  background: rgba(255, 253, 248, .8);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.shop-page .book-links .primary-purchase,
.shop-page .featured-book-actions .primary-purchase {
  grid-column: 1 / -1;
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: white !important;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.shop-page .featured-book {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) minmax(260px, .85fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  padding: 20px clamp(22px, 4vw, 48px);
  text-align: left;
  border-color: rgba(7, 31, 73, .32);
}

.shop-page .featured-book > img {
  width: 250px;
  justify-self: center;
}

.shop-page .featured-label {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.shop-page .featured-book .catalog-copy h2 {
  margin: 0 0 4px;
  font-size: clamp(2.2rem, 3.5vw, 3.55rem);
}

.shop-page .featured-book .book-tag {
  font-size: 1.35rem;
}

.shop-page .featured-book .book-blurb {
  max-width: 650px;
  font-size: 1rem;
}

.shop-page .featured-book .book-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-page .featured-book-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.shop-page .featured-book-actions .primary-purchase,
.shop-page .featured-book-actions .synopsis-button {
  min-width: 142px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 4px;
}

.shop-page .featured-scenery {
  width: 100%;
  min-height: 240px;
  background: url("assets/shop-feature-landscape.webp") center / contain no-repeat;
  mix-blend-mode: multiply;
}

.shop-page .shop-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 18px 4vw 0;
  padding: 0;
  color: var(--navy);
  background:
    url("assets/shop-bottom-landscape.webp") center bottom / 100% auto no-repeat,
    rgba(255, 253, 248, .78);
  border: 1px solid var(--line);
  border-radius: 7px 7px 0 0;
  text-align: left;
}

.shop-page .shop-note-panel {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.shop-page .shop-note-panel:last-child {
  border-right: 0;
}

.shop-page .shop-note-panel img {
  width: 100%;
  height: 145px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.shop-page .shop-note h2 {
  color: var(--navy);
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}

.shop-page .shop-note p {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
}

.shop-page .shop-note .primary-button,
.shop-page .shop-note .outline-button {
  min-height: 38px;
  padding: 9px 18px;
}

.shop-page .modal-backdrop {
  padding: 5vw;
  background: rgba(7, 31, 73, .34);
}

.shop-page .synopsis-modal {
  max-width: 1060px;
  background:
    url("assets/shop-feature-landscape.webp") right center / 310px auto no-repeat,
    rgba(255, 253, 248, .97);
  border-radius: 6px;
}

@media (max-width: 1180px) {
  .shop-page .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-page .featured-book {
    grid-template-columns: 220px 1fr;
  }

  .shop-page .featured-scenery {
    grid-column: 1 / -1;
    min-height: 190px;
  }

  .shop-page .shop-note {
    grid-template-columns: 1fr;
  }

  .shop-page .shop-note-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .shop-page .shop-note-panel:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 780px) {
  .newsletter-page .signup-hero,
  .shop-page .shop-hero {
    grid-template-columns: 1fr;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .newsletter-page .signup-panel h1,
  .shop-page .shop-hero h1 {
    font-size: 4rem;
  }

  .newsletter-form-section,
  .shop-page .shop-tools,
  .shop-page .catalog-grid {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .newsletter-page .interest-options,
  .shop-page .catalog-grid,
  .shop-page .featured-book {
    grid-template-columns: 1fr;
  }

  .shop-page .shop-note-panel {
    grid-template-columns: 1fr;
  }

  .shop-page .shop-note-panel img {
    height: 120px;
  }

  .shop-page .featured-book > img {
    width: min(240px, 100%);
  }
}

/* Final watercolor polish for contact, shop, and small screens. */
.contact-page-shell main {
  background: var(--paper);
}

.contact-page-shell .contact-page {
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(420px, 1.14fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: 0;
  padding: 32px 7vw 24px;
  background: var(--paper);
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.contact-page-shell .contact-copy {
  display: block;
  padding: 0;
}

.contact-page-shell .contact-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: .94;
}

.contact-page-shell .contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.8vw, 1.4rem);
  line-height: 1.5;
}

.contact-page-shell .contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-page-shell .contact-details article {
  padding: 18px;
  background: rgba(255, 253, 248, .68);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-page-shell .contact-details span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-page-shell .contact-details a,
.contact-page-shell .contact-details p {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.contact-page-shell .contact-image {
  min-height: 0;
}

.contact-page-shell .contact-image img {
  width: 100%;
  height: auto;
  max-height: 610px;
  object-fit: contain;
  mix-blend-mode: multiply;
  box-shadow: none;
}

.contact-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 7vw 54px;
  background:
    url("assets/shop-bottom-landscape.webp") center bottom / 100% auto no-repeat,
    var(--paper);
}

.contact-support article {
  min-height: 170px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 248, .72);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.contact-support h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.contact-support p {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.45;
}

.contact-support a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.shop-page .shop-hero {
  background: var(--paper);
}

.shop-page .synopsis-modal {
  width: min(1120px, 96vw);
  max-height: min(86vh, 820px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: clamp(22px, 34vw, 410px);
}

.shop-page .synopsis-modal > .rich-book-text {
  max-height: none;
}

@media (max-width: 900px) {
  .contact-page-shell .contact-page {
    grid-template-columns: 1fr;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .contact-page-shell .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-page-shell .contact-image img {
    max-height: 360px;
  }

  .contact-support {
    grid-template-columns: 1fr;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .shop-page .synopsis-modal {
    padding-right: clamp(20px, 4vw, 34px);
    background: rgba(255, 253, 248, .98);
  }
}

@media (max-width: 680px) {
  body {
    background: var(--paper);
  }

  .site-header {
    background: var(--paper);
  }

  .site-header .brand > img {
    width: min(210px, 74vw);
    max-height: 112px;
    object-fit: contain;
  }

  .main-nav {
    gap: 10px 14px;
  }

  .home-hero,
  .about-page .about-hero,
  .blog-page .blog-hero,
  .newsletter-page .signup-hero,
  .shop-page .shop-hero,
  .contact-page-shell .contact-page {
    padding-top: 22px;
  }

  .shop-page .shop-hero h1,
  .newsletter-page .signup-panel h1,
  .contact-page-shell .contact-copy h1 {
    font-size: clamp(2.9rem, 14vw, 3.8rem);
  }

  .shop-page .shop-hero-art img,
  .newsletter-page .signup-art img,
  .about-page .about-hero-card img,
  .blog-page .blog-hero-card img {
    max-height: 300px;
    object-fit: contain;
  }

  .shop-page .filter-chip {
    width: min(100%, 280px);
    min-width: 0;
  }

  .shop-page .catalog-card > img,
  .shop-page .featured-book > img {
    width: min(190px, 70vw);
  }

  .shop-page .book-links {
    grid-template-columns: 1fr;
  }

  .shop-page .featured-scenery {
    min-height: 145px;
  }

  .shop-page .shop-note {
    margin-left: 5vw;
    margin-right: 5vw;
    background:
      url("assets/shop-bottom-landscape.webp") center bottom / auto 110px no-repeat,
      rgba(255, 253, 248, .82);
  }

  .contact-support {
    padding-bottom: 110px;
    background:
      url("assets/shop-bottom-landscape.webp") center bottom / auto 110px no-repeat,
      var(--paper);
  }

  .shop-page .synopsis-modal {
    max-height: 88vh;
  }
}

/* Restored homepage icon set from the supplied mockup. */
.home-page .stat-row img {
  display: block;
  width: 52px;
  height: 48px;
  margin: 0 auto 12px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.home-page .stat-row article:nth-child(4) img {
  width: 58px;
}

.home-page .publish-type-grid img {
  display: block;
  width: 86px;
  height: 72px;
  margin: 0 auto 12px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.home-page .stat-row article,
.home-page .publish-type-grid article {
  background-color: transparent;
}

@media (max-width: 680px) {
  .home-page .stat-row img {
    width: 48px;
    height: 44px;
  }

  .home-page .publish-type-grid img {
    width: 74px;
    height: 62px;
  }
}

/* Submissions page watercolor hero. */
.submissions-page main {
  background: var(--paper);
}

.submissions-page .submissions-hero {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(420px, 1.18fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: 0;
  padding: 28px 7vw 26px;
  background: var(--paper);
  border-top: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.submissions-page .submissions-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  line-height: .94;
}

.submissions-page .submissions-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
  line-height: 1.5;
}

.submissions-page .submissions-hero-copy .primary-button {
  margin-top: 26px;
}

.submissions-page .submissions-hero-art {
  min-height: 0;
}

.submissions-page .submissions-hero-art img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 610px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.submissions-page .looking-for-section {
  background:
    url("assets/mock-hero-left.webp") left bottom / 210px auto no-repeat,
    var(--paper);
}

.submissions-page .submission-grid {
  background: rgba(255, 253, 248, .76);
}

@media (max-width: 900px) {
  .submissions-page .submissions-hero {
    grid-template-columns: 1fr;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .submissions-page .submissions-hero-art img {
    max-height: 360px;
  }
}

@media (max-width: 680px) {
  .submissions-page .submissions-hero {
    padding-top: 22px;
  }

  .submissions-page .submissions-hero-copy h1 {
    font-size: clamp(2.9rem, 14vw, 3.8rem);
  }

  .submissions-page .submissions-hero-copy p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .submissions-page .looking-for-section {
    background: var(--paper);
  }
}

/* Exact stat icons supplied for the homepage. */
.screen-reader-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-page .stat-row img[src*="stat_icon_"] {
  display: block;
  margin: 0 auto 10px;
  object-fit: cover;
  object-position: top center;
  mix-blend-mode: multiply;
}

.home-page .stat-row img[src*="stat_icon_books_published"] {
  width: 61px;
  height: 44px;
}

.home-page .stat-row img[src*="stat_icon_coffee_consumed"] {
  width: 52px;
  height: 52px;
}

.home-page .stat-row img[src*="stat_icon_proudly_canadian_leaf"] {
  width: 58px;
  height: 48px;
}

.home-page .stat-row img[src*="stat_icon_ottawa_building"] {
  width: 72px;
  height: 52px;
}

/* Shop bottom band matched to the supplied mockup. */
.shop-page .shop-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  margin: 22px 4vw 0;
  padding: 0 0 clamp(54px, 6vw, 86px);
  color: var(--navy);
  background:
    url("assets/shop-bottom-landscape.webp") center bottom / 100% auto no-repeat,
    rgba(255, 253, 248, .82);
  border: 1px solid rgba(7, 31, 73, .18);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  text-align: left;
  overflow: hidden;
}

.shop-page .shop-note-panel {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
  align-items: center;
  min-height: 196px;
  padding: clamp(18px, 3vw, 34px);
  background: rgba(255, 253, 248, .56);
  border-right: 1px solid rgba(7, 31, 73, .18);
}

.shop-page .shop-note-panel:last-child {
  border-right: 0;
}

.shop-page .shop-note-panel > img {
  width: 100%;
  height: 142px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.shop-page .shop-newsletter-panel {
  grid-template-columns: 112px minmax(0, 1fr);
}

.shop-page .shop-newsletter-panel > img {
  width: 96px;
  height: 96px;
  justify-self: center;
}

.shop-page .shop-note h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.05;
}

.shop-page .shop-note p {
  max-width: 520px;
  margin: 0 0 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .98rem;
  line-height: 1.4;
}

.shop-note-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.shop-note-actions span {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .9rem;
}

.shop-note-signup input[name="website"] {
  display: none;
}

.shop-note-email-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto;
  max-width: 430px;
  border: 1px solid rgba(7, 31, 73, .32);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 253, 248, .92);
}

.shop-note-email-row input {
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  color: var(--navy);
  background: transparent;
  border: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.shop-note-email-row button {
  min-height: 42px;
  padding: 0 18px;
  color: white;
  background: var(--navy);
  border: 0;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-page .shop-note .outline-button {
  min-height: 34px;
  padding: 7px 18px;
  color: var(--navy);
  border-color: rgba(7, 31, 73, .58);
  background: rgba(255, 253, 248, .72);
}

.shop-page .site-footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .shop-page .shop-note {
    grid-template-columns: 1fr;
    background:
      url("assets/shop-bottom-landscape.webp") center bottom / auto 130px no-repeat,
      rgba(255, 253, 248, .82);
  }

  .shop-page .shop-note-panel,
  .shop-page .shop-newsletter-panel {
    grid-template-columns: 150px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(7, 31, 73, .18);
  }

  .shop-page .shop-note-panel:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .shop-page .shop-note {
    margin-left: 5vw;
    margin-right: 5vw;
    padding-bottom: 112px;
  }

  .shop-page .shop-note-panel,
  .shop-page .shop-newsletter-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shop-page .shop-note-panel > img {
    height: 110px;
  }

  .shop-page .shop-newsletter-panel > img {
    width: 86px;
    height: 86px;
  }

  .shop-note-actions {
    justify-content: center;
  }

  .shop-note-email-row {
    grid-template-columns: 1fr;
    margin: 0 auto;
  }
}

/* Final Daily Dive and submissions polish using the June 24 artwork. */
.blog-page .blog-hero {
  grid-template-columns: minmax(320px, .78fr) minmax(460px, 1.22fr);
  padding-top: 32px;
  padding-bottom: 34px;
  background:
    url("assets/newsletter-left-forest.webp") left bottom / min(28vw, 320px) auto no-repeat,
    var(--paper);
}

.blog-page .blog-hero-copy {
  max-width: 610px;
}

.blog-page .blog-hero .eyebrow {
  display: none;
}

.blog-page .blog-hero-card img {
  max-height: 520px;
  object-fit: contain;
  object-position: center;
}

.blog-page .blog-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.blog-page .featured-post-card {
  grid-template-columns: minmax(280px, .85fr) minmax(340px, 1.15fr);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .94), rgba(255, 253, 248, .8)),
    url("assets/dive-category-canada.webp") right center / 240px auto no-repeat;
}

.blog-page .featured-post-art {
  min-height: 300px;
  background-image: url("assets/dive-feature-lake.webp");
}

.blog-page .featured-post-card > div:last-child {
  background: none;
}

.blog-page .blog-section {
  padding-top: 28px;
}

.blog-page .blog-card {
  min-height: 184px;
}

.blog-page .blog-card-art.dive-card-news {
  background-image: url("assets/dive-hero-desk.webp");
  background-position: center;
}

.blog-page .blog-card-art.dive-card-canada {
  background-image: url("assets/dive-feature-lake.webp");
}

.blog-page .blog-card-art.dive-card-writing {
  background-image: url("assets/dive-post-revision.webp");
}

.blog-page .blog-card-art.dive-card-press {
  background-image: url("assets/dive-post-press.webp");
}

.blog-page .blog-card-art.dive-card-submission {
  background-image: url("assets/dive-post-submission.webp");
}

.blog-page .blog-newsletter {
  background:
    url("assets/newsletter-footer-landscape.webp") center bottom / 100% auto no-repeat,
    linear-gradient(120deg, rgba(47, 82, 125, .98), rgba(14, 43, 83, .98));
}

.submissions-page .looking-for-section {
  grid-template-columns: minmax(280px, .88fr) minmax(260px, .56fr) minmax(300px, .92fr);
  gap: clamp(22px, 4vw, 54px);
  padding-top: 42px;
  padding-bottom: 42px;
  background: var(--paper);
}

.submissions-page .looking-for-section h2 {
  max-width: 650px;
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  line-height: 1.05;
}

.submissions-page .looking-for-section p {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.5;
}

.submissions-page .looking-for-list {
  align-self: center;
}

.submissions-page .looking-for-list li {
  padding: 13px 16px;
  background: rgba(255, 253, 248, .82);
  border-radius: 5px;
  box-shadow: none;
}

.submissions-page .looking-for-art {
  margin: 0;
}

.submissions-page .looking-for-art img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

@media (max-width: 1080px) {
  .blog-page .blog-hero,
  .blog-page .featured-post-card,
  .submissions-page .looking-for-section {
    grid-template-columns: 1fr;
  }

  .blog-page .blog-hero-card img,
  .submissions-page .looking-for-art img {
    max-height: 360px;
  }

  .submissions-page .looking-for-list {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .blog-page .blog-hero {
    background: var(--paper);
  }

  .blog-page .blog-hero-copy h1 {
    font-size: clamp(3.35rem, 16vw, 4.5rem);
  }

  .blog-page .blog-hero-subtitle {
    font-size: clamp(1.35rem, 8vw, 2rem);
  }

  .blog-page .blog-hero-card img {
    max-height: 280px;
  }

  .blog-page .featured-post-art {
    min-height: 220px;
  }

  .submissions-page .looking-for-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

/* Blog popout and full-cover book image fixes. */
.blog-page .blog-read-button {
  width: max-content;
  margin-top: 10px;
  padding: 0 0 3px;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(7, 31, 73, .55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
}

.blog-page .blog-read-button::after {
  content: " \2192";
}

.excerpt-hover {
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: 100%;
  margin: 8px 0 4px;
  z-index: 20;
}

.excerpt-hover-trigger {
  padding: 6px 12px;
  color: var(--navy);
  background: rgba(255, 253, 248, .86);
  border: 1px solid rgba(7, 31, 73, .42);
  border-radius: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
}

.excerpt-popover {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 15;
  width: min(320px, calc(100vw - 48px));
  max-height: 230px;
  overflow-y: auto;
  padding: 15px 17px;
  color: var(--navy);
  background: rgba(255, 253, 248, .98);
  border: 1px solid rgba(7, 31, 73, .25);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(7, 31, 73, .18);
  font-size: .95rem;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
}

.excerpt-hover.is-open .excerpt-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.excerpt-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.excerpt-popover > div {
  padding-right: 18px;
}

.excerpt-popover p {
  margin: 0 0 10px;
}

.excerpt-popover p:last-child {
  margin-bottom: 0;
}

.blog-page .blog-card,
.daily-card-grid article {
  overflow: visible;
}

.admin-current-image {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px;
  background: rgba(255, 253, 248, .78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-current-image img,
.admin-post-thumb {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid rgba(7, 31, 73, .18);
}

.admin-post-thumb {
  flex: 0 0 auto;
}

.submission-step-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: 0 0 16px;
  border-radius: 6px;
  border: 1px solid rgba(7, 31, 73, .18);
  background: rgba(255, 253, 248, .8);
}

.shop-page .synopsis-modal {
  padding-right: clamp(28px, 4vw, 44px);
  background: rgba(255, 253, 248, .97);
}

.blog-page .post-excerpt p,
.blog-page .blog-post-modal .post-body p {
  margin: 0 0 12px;
}

.blog-page .blog-post-modal {
  display: block;
  width: min(860px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 42px));
  overflow-y: auto;
}

.blog-page .blog-post-modal .post-body {
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.72;
}

.blog-page .blog-post-modal .post-body ul,
.blog-page .blog-post-modal .post-body ol,
.rich-book-text ul,
.rich-book-text ol {
  padding-left: 1.35rem;
}

.home-page .featured-books img,
.home-page .shark-feature-cover img,
.shop-page .catalog-card > img,
.shop-page .featured-book > img,
.book-row img {
  object-fit: contain;
  background: rgba(255, 253, 248, .78);
}

.home-page .featured-books img {
  padding: 6px;
}

.shop-page .catalog-card > img {
  padding: 5px;
}

.shop-page .featured-book > img {
  padding: 0;
}
