/* Sasha Bailyn — static site styles (v2 — inventory assets + live Spells copy) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@400;500;600&display=swap');

:root {
  --sb-ink: #1a1a1a;
  --sb-charcoal: #39383b;
  --sb-gray: #bfbfbf;
  --sb-paper: #f7f4ef;
  --sb-white: #ffffff;
  --sb-accent: #1e3a5f;
  --sb-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sb-sans: Poppins, system-ui, sans-serif;
  --sb-measure: 38rem;
  --sb-footer-bg: #1a1a1a;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sb-serif);
  color: var(--sb-ink);
  background: var(--sb-paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a.sb-underline {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
a.sb-underline:hover { opacity: 0.8; }

h1, h2, h3, .sb-display {
  font-family: var(--sb-serif);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.sb-section {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
}
.sb-section--full { max-width: none; padding-left: 0; padding-right: 0; }
.sb-measure { max-width: var(--sb-measure); margin-left: auto; margin-right: auto; }
.sb-center { text-align: center; }

/* ---- Buttons ---- */
.sb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 12.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.6rem;
  background: #000;
  color: #fff !important;
  text-decoration: none !important;
  font-family: var(--sb-serif);
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  border: 1px solid #000;
  text-align: center;
}
.sb-btn:hover { opacity: 0.88; color: #fff !important; }
.sb-btn--ghost {
  background: transparent;
  color: var(--sb-ink) !important;
  border: 1px solid var(--sb-ink);
  min-width: 12.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.6rem;
}

/* ---- Header / Nav ---- */
.sb-site-header {
  background: var(--sb-paper);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}
.sb-header-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 0 1.125rem 0 1.125rem;
  gap: 0.5rem;
}
.sb-site-title {
  font-family: var(--sb-serif);
  font-size: clamp(1.7rem, 5.4vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  max-width: calc(100% - 48px);
}
.sb-site-title:hover { opacity: 0.85; }

.sb-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex: 0 0 44px;
}
.sb-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #1a1a1a;
}

.sb-nav-desktop { display: none; }
.sb-nav-desktop ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
}
.sb-nav-desktop > ul > li { position: relative; }
.sb-nav-desktop a {
  font-family: var(--sb-sans);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.4rem 0.55rem;
  display: inline-block;
}
.sb-nav-desktop a:hover,
.sb-nav-desktop a[aria-current="page"] { text-decoration: underline; text-underline-offset: 0.2em; }

.sb-nav-desktop .sb-has-sub > button,
.sb-nav-desktop .sb-has-sub > .sb-nav-label {
  font-family: var(--sb-sans);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  background: none;
  border: none;
  padding: 0.4rem 0.55rem;
  cursor: pointer;
}
.sb-nav-desktop .sb-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 16rem;
  max-width: 20rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  z-index: 50;
}
.sb-nav-desktop .sb-has-sub:hover > .sb-submenu,
.sb-nav-desktop .sb-has-sub:focus-within > .sb-submenu {
  display: block;
}
.sb-nav-desktop .sb-submenu a {
  display: block;
  padding: 0.55rem 1rem;
  white-space: normal;
  line-height: 1.35;
  font-size: 1rem;
}

.sb-header-substack {
  display: none;
  background: #1a1a1a;
  color: #fff !important;
  font-family: var(--sb-sans);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  text-decoration: none !important;
  border: none;
  flex: 0 0 auto;
}
.sb-header-substack:hover { opacity: 0.9; color: #fff !important; }

/* Mobile drawer */
.sb-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 110;
}
.sb-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(20rem, 88vw);
  background: #fff;
  z-index: 120;
  padding: 1.5rem 1.25rem 2rem;
  overflow-y: auto;
  box-shadow: -8px 0 24px rgba(0,0,0,0.12);
}
.sb-nav-drawer[hidden],
.sb-nav-overlay[hidden] { display: none !important; }

.sb-nav-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sb-nav-drawer > ul > li > a,
.sb-nav-drawer .sb-drawer-writing-btn {
  font-family: var(--sb-serif);
  font-size: clamp(1.85rem, 7vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  padding: 0.65rem 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.sb-nav-drawer .sb-drawer-sub a {
  font-family: var(--sb-serif);
  font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.35;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  padding: 0.45rem 0 0.45rem 0.75rem;
}
.sb-nav-drawer .sb-drawer-sub[hidden] { display: none !important; }

@media (min-width: 992px) {
  .sb-header-inner {
    min-height: 4.25rem;
    padding: 0.85rem clamp(1.5rem, 4vw, 3rem);
    gap: 1.25rem;
  }
  .sb-site-title {
    font-size: clamp(1.65rem, 2vw, 2.05rem);
    max-width: none;
    flex: 0 1 auto;
    overflow: visible;
    text-overflow: clip;
  }
  .sb-nav-toggle { display: none; }
  .sb-nav-desktop {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
    align-items: center;
  }
  .sb-header-substack { display: inline-flex; margin-left: 0.5rem; }
  .sb-nav-drawer,
  .sb-nav-overlay { display: none !important; }
}

/* ---- Hero zoom ---- */
.sb-zoom-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.sb-zoom-frame img,
.sb-zoom-frame .sb-zoom-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform-origin: center center;
  will-change: transform;
}
.sb-hero,
section.sb-hero {
  margin: 0;
  padding: 0;
}
.sb-hero .sb-zoom-frame {
  height: min(68vh, 720px);
  min-height: 320px;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.sb-hero .sb-zoom-frame img,
.sb-hero .sb-zoom-img {
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .sb-hero .sb-zoom-frame img,
  .sb-hero .sb-zoom-frame .sb-zoom-img {
    transform: none !important;
    will-change: auto;
  }
}

/* ---- Welcome ---- */
.sb-welcome.sb-section {
  text-align: left;
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
  padding-bottom: clamp(1.5rem, 3.5vw, 2.75rem);
}
.sb-welcome-copy h1 {
  font-size: clamp(2.85rem, 5.2vw, 4.05rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.sb-welcome-copy p,
.sb-welcome-cta p {
  font-size: clamp(1.55rem, 2.6vw, 1.95rem);
  line-height: 1.65;
  margin: 0 0 1.2rem;
}
.sb-welcome-cta p:last-child { margin-bottom: 0; }

@media (min-width: 768px) and (max-width: 991px) {
  .sb-welcome-grid {
    width: min(72rem, 92vw);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: stretch;
  }
  .sb-welcome-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .sb-welcome-cta p { text-align: center; margin: 0; }
}
@media (max-width: 767px) {
  .sb-welcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .sb-welcome-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .sb-welcome-cta p { text-align: center; margin: 0; }
}

/* ---- Second image (home) ---- */
.sb-second-image {
  margin: 0;
  padding: 0 clamp(1.25rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
}
.sb-second-image .sb-zoom-frame {
  height: auto;
  min-height: 0;
  overflow: hidden;
  line-height: 0;
}
.sb-second-image .sb-zoom-frame img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none !important;
}

/* Home desktop: welcome | second photo side by side */
@media (min-width: 992px) {
  .sb-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hero hero"
      "welcome second"
      "book book";
    align-items: stretch;
  }
  .sb-home > .sb-hero { grid-area: hero; }
  .sb-home > .sb-welcome {
    grid-area: welcome;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
    padding-right: clamp(1.25rem, 3vw, 2.5rem);
    max-width: none;
    margin: 0;
  }
  .sb-home > .sb-second-image {
    grid-area: second;
    margin: 0;
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
    padding-left: clamp(1.25rem, 3vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sb-home > .sb-book-section { grid-area: book; }
  .sb-home .sb-welcome-grid {
    display: block;
    width: 100%;
    max-width: 36rem;
    margin: 0;
  }
  .sb-home .sb-welcome-cta {
    display: block;
    margin-top: 1.75rem;
    text-align: left;
  }
  .sb-home .sb-welcome-cta p { text-align: left; }
}

/* ---- Book teaser ---- */
.sb-book-teaser {
  display: grid;
  grid-template-columns: minmax(140px, 280px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--sb-white);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
@media (max-width: 767px) {
  .sb-book-teaser { grid-template-columns: 1fr; }
}
@media (min-width: 992px) {
  .sb-book-teaser {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}
.sb-book-cover img { width: 100%; height: auto; }
.sb-book-copy h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem;
}
.sb-book-meta {
  font-family: var(--sb-sans);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sb-charcoal);
  margin: 0 0 0.65rem;
}
.sb-book-tagline {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  margin: 0 0 0.65rem;
}
.sb-book-award {
  font-size: 1.05rem;
  margin: 0 0 1rem;
}
.sb-book-copy > p { font-size: 1.2rem; line-height: 1.55; }
.sb-book-copy blockquote {
  margin: 1.25rem 0;
  padding: 0;
  border: 0;
  font-style: italic;
  font-size: 1.2rem;
}
.sb-book-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin-top: 1.25rem;
}
.sb-book-actions .sb-btn,
.sb-book-actions .sb-btn--ghost {
  width: 14.5rem;
  min-width: 14.5rem;
  max-width: 14.5rem;
  height: 3.15rem;
  min-height: 3.15rem;
  padding: 0.85rem 1.5rem;
  margin: 0;
  font-size: 1.05rem;
}

/* ---- About ---- */
.sb-about-intro.sb-section {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  max-width: none;
}
.sb-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
  width: min(72rem, 92vw);
  margin: 0 auto;
}
.sb-about-copy { text-align: left; max-width: 40rem; }
.sb-about-copy h1 {
  font-size: clamp(2.85rem, 5.2vw, 4.05rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.sb-about-copy p {
  font-size: clamp(1.55rem, 2.6vw, 1.95rem);
  line-height: 1.65;
  margin: 0;
}
.sb-about-photo { margin: 0; line-height: 0; }
.sb-about-photo img { width: 100%; height: auto; object-fit: contain; }
@media (min-width: 992px) {
  .sb-about-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
  .sb-about-copy {
    max-width: 36rem;
    padding-right: clamp(0.5rem, 2vw, 1.5rem);
  }
  .sb-about-photo img {
    transform: scale(1.06);
    transform-origin: center center;
  }
}

/* ---- Spells ---- */
.sb-spells {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
}
.sb-spells-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 768px) {
  .sb-spells-grid {
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
}
.sb-spells-cover { margin: 0; line-height: 0; }
.sb-spells-cover img {
  width: 100%;
  height: auto;
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.14);
}
.sb-spells-kicker {
  font-family: var(--sb-sans);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: #39383b;
}
.sb-spells-intro h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}
.sb-spells-tagline {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  margin: 0 0 0.85rem;
}
.sb-spells-award {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin: 0 0 1.5rem;
}
.sb-spells-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0;
}
.sb-spells-synopsis { margin-top: clamp(2.5rem, 5vw, 4rem); }
.sb-spells-prose { max-width: 42rem; margin: 0 auto; }
.sb-spells-prose p {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  line-height: 1.65;
  margin: 0 0 1.15rem;
}
.sb-spells-praise {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.sb-spells-praise-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  text-align: center;
  margin: 0 0 0.5rem;
}
.sb-spells-praise-note {
  text-align: center;
  font-family: var(--sb-sans);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1.75rem;
  color: #39383b;
}
.sb-carousel {
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}
.sb-carousel__track { position: relative; min-height: 14rem; }
.sb-carousel__slide { display: none; }
.sb-carousel__slide.is-active { display: block; }
.sb-carousel__quote { margin: 0; border: 0; padding: 0; }
.sb-carousel__quote p {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}
.sb-carousel__attr {
  margin-top: 1.35rem;
  font-family: var(--sb-sans);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #39383b;
}
.sb-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
.sb-carousel__btn {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid #1a1a1a;
  background: transparent;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: #1a1a1a;
}
.sb-carousel__btn:hover { background: #1a1a1a; color: #fff; }
.sb-carousel__count {
  font-family: var(--sb-sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  min-width: 3.5rem;
}
.sb-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}
.sb-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 1px solid #1a1a1a;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.sb-carousel__dot.is-active { background: #1a1a1a; }
.sb-spells-cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.sb-spells-cta .sb-spells-actions { justify-content: center; }

/* ---- Publications ---- */
.sb-pubs {
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
}
.sb-pubs-feature {
  margin: 0 0 2rem;
  line-height: 0;
}
.sb-pubs-feature img {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  height: auto;
}
.sb-pubs h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  text-align: center;
}
.sb-pubs-subhead {
  text-align: center;
  font-family: var(--sb-sans);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sb-charcoal);
  margin: 0 0 2rem;
}
.sb-pubs-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 44rem;
}
.sb-pubs-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--sb-gray);
  font-size: 1.15rem;
  line-height: 1.45;
}

/* ---- Connect ---- */
.sb-connect {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  text-align: center;
}
.sb-connect-photo {
  margin: 0 auto 3rem;
  max-width: 550px;
  line-height: 0;
}
.sb-connect-photo img { width: 100%; height: auto; margin: 0 auto; }
.sb-connect h1 {
  font-size: clamp(2.85rem, 5.2vw, 4.05rem);
  font-weight: 500;
  margin: 0 0 1rem;
}
.sb-connect-intro {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  line-height: 1.55;
  margin: 0 0 1.5rem;
}
.sb-embed-wrap {
  max-width: 480px;
  width: 100%;
  margin: 1.5rem auto;
}
.sb-embed-wrap iframe {
  width: 100% !important;
  max-width: 480px;
  border: 1px solid #eee;
  background: #fff;
}
.sb-connect-divider {
  border: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.15);
  margin: 2.5rem auto;
  max-width: 12rem;
}
.sb-connect-contact h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin: 0 0 1rem;
}
.sb-connect-contact p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}
.sb-connect-contact a { text-decoration: underline; text-underline-offset: 0.15em; }

/* ---- Footer ---- */
.sb-site-footer {
  background: var(--sb-footer-bg);
  color: #fff;
  padding: 1.25rem 1rem;
}
.sb-footer-inner {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  justify-content: center;
  justify-items: start;
  align-items: center;
  column-gap: 0.85rem;
  row-gap: 0.75rem;
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
}
.sb-footer-icon {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  display: inline-flex;
  margin: 0;
  padding: 0;
}
.sb-footer-icon img {
  width: 72px;
  height: 72px;
  display: block;
}
.sb-footer-link {
  grid-column: 2;
  grid-row: 1;
  color: #fff !important;
  text-decoration: underline !important;
  text-underline-offset: 0.15em;
  line-height: 1.3;
  margin: 0;
  text-align: left;
  max-width: 18rem;
  font-size: 1.3rem;
}
.sb-footer-copy {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  text-align: center;
  color: #fff;
  margin: 0;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .sb-footer-icon img { width: 88px; height: 88px; }
  .sb-footer-link {
    max-width: 22rem;
    font-size: clamp(1.25rem, 3.5vw, 1.55rem);
  }
}
@media (min-width: 992px) {
  .sb-footer-icon img { width: 64px; height: 64px; }
  .sb-footer-link { font-size: 1.2rem; max-width: 28rem; }
}

/* Soft home CTAs */
.sb-soft-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
  padding: 0 1.25rem 3rem;
  font-family: var(--sb-sans);
  font-size: 1rem;
}
.sb-soft-ctas a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.sb-skip {
  position: absolute;
  left: -9999px;
}
.sb-skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  background: #fff;
  padding: 0.5rem 1rem;
}

/* v2 hero polish */
@media (min-width: 992px) {
  .sb-hero .sb-zoom-frame {
    height: min(78vh, 860px);
    min-height: 420px;
  }
}
.sb-pubs-list li:first-child { border-top: 1px solid var(--sb-gray); }
.sb-spells-cover img { border-radius: 2px; }
.sb-book-cover img { box-shadow: 0 14px 32px rgba(26, 26, 26, 0.12); }
