@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,450;9..144,550;9..144,650&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --cream: #faf7f0;
  --cream-deep: #f0e8d8;
  /* Unified brand green — Ash's explicit call: every green on the site is
     this exact literal value, flat, including headings/logo/button text.
     Note this is a deliberate, informed trade-off against WCAG AA contrast
     (flagged and confirmed) in favor of matching the brand's soft, low-
     stimulation look exactly. */
  --sage: #8f9e8b;
  --sage-deep: #8f9e8b;
  --sage-text: #8f9e8b;
  --sage-ink: #8f9e8b;
  --lavender: #e3dcf5;
  --lavender-deep: #b9a8e8;
  --gold: #b6935a;
  --gold-soft: #e6d3ae;
  --ink: #322f2a;
  --ink-soft: #6e685e;
  --ink-faint: #9a9284;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(45, 42, 30, 0.10);
  --shadow-lg: 0 26px 60px rgba(45, 42, 30, 0.16);
  /* Legibility aids for the flat #8f9e8b green above — a soft dark echo
     directly behind the letterforms, not a color/contrast change. Reads
     as a faint depth cue at normal viewing distance, giving text edges
     definition without altering the green anyone actually perceives. */
  --text-legibility-shadow: 0 1px 1px rgba(38, 45, 36, 0.35);
  --text-legibility-shadow-strong: 0 1px 2px rgba(20, 24, 18, 0.5);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  position: relative;
}

/* Faint editorial grain — sits above everything, never blocks input */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Headings adopt the display serif everywhere */
h1,
h2,
h3,
.brand-mark {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

/* Header */
header.site-header {
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.5), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(255, 255, 255, 0.4), transparent 46%),
    linear-gradient(135deg, var(--sage) 0%, var(--lavender) 100%);
  padding: 88px 24px 104px;
  text-align: center;
  position: relative;
}

/* Full-bleed photographic hero — only on the homepage header (book detail
   pages use the plain .compact gradient above, so the photo is fetched once). */
header.site-header:not(.compact) {
  padding: 96px 24px 118px;
  background: url("../images/header-hero.jpg") center 58% / cover no-repeat;
}

header.site-header:not(.compact)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(194, 219, 200, 0.4), rgba(227, 220, 245, 0.32));
  mix-blend-mode: soft-light;
}

header.site-header:not(.compact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(250, 247, 240, 0), var(--cream));
}

@media (max-width: 640px) {
  header.site-header:not(.compact) {
    padding: 64px 18px 84px;
    background-position: 68% 60%;
  }
}

.header-inner {
  position: relative;
  z-index: 1;
}

.header-inner > * {
  animation: fadeUp 0.7s ease both;
}

.header-inner > *:nth-child(2) {
  animation-delay: 0.2s;
}

.header-card {
  display: inline-block;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 40px 52px;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
}

.header-card > * {
  animation: fadeUp 0.7s ease both;
}

.header-card > *:nth-child(2) {
  animation-delay: 0.06s;
}
.header-card > *:nth-child(3) {
  animation-delay: 0.12s;
}
.header-card > *:nth-child(4) {
  animation-delay: 0.18s;
}

@media (max-width: 640px) {
  .header-card {
    padding: 28px 26px;
    border-radius: 22px;
  }
}

.brand-logo {
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark {
  font-size: 3rem;
  font-weight: 550;
  letter-spacing: -0.015em;
  color: var(--sage-ink);
  margin: 0;
}

.brand-mark a {
  text-decoration: none;
  color: inherit;
}

.brand-sub {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-tagline {
  margin: 24px auto 0;
  max-width: 480px;
  color: #5a5248;
  font-size: 1.04rem;
}

nav.site-nav {
  margin: 40px auto 0;
  max-width: fit-content;
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  position: sticky;
  top: 16px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow);
}

nav.site-nav a {
  text-decoration: none;
  color: var(--sage-ink);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

nav.site-nav a:hover {
  background: var(--sage-ink);
  color: var(--white);
}

/* Compact header used on book detail pages */
header.site-header.compact {
  padding: 40px 24px 56px;
}

header.site-header.compact .brand-logo {
  width: 68px;
  height: 68px;
  margin-bottom: 6px;
}

header.site-header.compact .brand-mark {
  font-size: 1.7rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--sage-ink);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.back-link:hover {
  text-decoration: underline;
}

/* Sections */
section {
  padding: 88px 0;
  scroll-margin-top: 88px;
}

.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 550;
  color: var(--sage-ink);
  margin: 0 0 14px;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin: 16px auto 0;
  background: var(--gold);
  opacity: 0.7;
}

.section-heading p {
  color: var(--ink-soft);
  margin: 0;
}

/* Book grid */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.book-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  position: relative;
  border: 1px solid rgba(45, 42, 30, 0.05);
}

.book-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-deep), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.book-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.book-card:hover::before {
  transform: scaleX(1);
}

.book-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background-color: #faf7f2;
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.book-card:hover .book-cover img {
  transform: scale(1.045);
}

.book-body {
  padding: 22px 20px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.book-body h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  font-weight: 550;
  line-height: 1.35;
  color: var(--ink);
  /* Reserve room for up to 3 lines so short and long titles all hand off
     to the description paragraph at the same height across a row. */
  min-height: calc(1.08rem * 1.35 * 3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-badge {
  display: inline-block;
  align-self: center;
  background: var(--cream-deep);
  color: var(--sage-text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid rgba(182, 147, 90, 0.25);
}

.book-body p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  flex: 1;
}

.btn-amazon,
.btn-view {
  display: inline-block;
  text-decoration: none;
  background: var(--sage-ink);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Two book cards per row on phones, scaled down so the grid moves
   faster than one giant card at a time. */
@media (max-width: 640px) {
  .wrap {
    padding: 0 16px;
  }

  nav.site-nav {
    position: static;
    background: rgba(255, 255, 255, 0.5);
  }

  .book-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .book-body {
    padding: 14px 12px 18px;
  }

  .age-badge {
    font-size: 0.64rem;
    padding: 2px 8px;
    margin-bottom: 8px;
  }

  .book-body h3 {
    font-size: 0.84rem;
    line-height: 1.3;
    min-height: calc(0.84rem * 1.3 * 3);
    margin-bottom: 4px;
  }

  .book-body p {
    font-size: 0.74rem;
    margin-bottom: 12px;
  }

  .btn-view {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
}

.btn-amazon:hover,
.btn-view:hover {
  background: var(--sage-text);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(143, 158, 139, 0.25);
}

/* About / Mission */
.mission {
  background: var(--white);
}

.mission-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.mission-card {
  background: linear-gradient(150deg, var(--cream-deep), var(--lavender));
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(182, 147, 90, 0.18);
}

.mission-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: #4c4740;
}

.mission-card li {
  margin-bottom: 16px;
  padding-left: 26px;
  position: relative;
}

.mission-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.mission-card li:last-child {
  margin-bottom: 0;
}

.mission-text h2 {
  color: var(--sage-ink);
  font-size: 2rem;
  font-weight: 550;
  margin: 0 0 20px;
}

.mission-text p {
  color: var(--ink-soft);
  margin: 0 0 16px;
}

@media (max-width: 760px) {
  .mission-inner {
    grid-template-columns: 1fr;
  }
}

/* Free Printables */
.printables {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 45%),
    linear-gradient(135deg, var(--sage) 0%, var(--lavender) 100%);
}

.printables-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid rgba(182, 147, 90, 0.15);
}

.printables-box h2 {
  color: var(--sage-ink);
  font-size: 1.7rem;
  font-weight: 550;
  margin: 0 0 14px;
}

.printables-box p {
  color: var(--ink-soft);
  margin: 0 0 28px;
  font-size: 0.98rem;
}

.btn-printables {
  display: inline-block;
  text-decoration: none;
  background: var(--sage-ink);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-printables:hover {
  background: var(--sage-text);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(143, 158, 139, 0.28);
}

.printables-note {
  margin-top: 18px !important;
  font-size: 0.8rem !important;
  color: var(--ink-faint) !important;
}

/* Book detail hero */
.book-hero {
  background: var(--white);
}

.book-hero-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.book-hero-cover {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(45, 42, 30, 0.06);
}

.book-hero-cover img {
  width: 100%;
  height: auto;
}

.book-hero-info h1 {
  font-size: 2.1rem;
  font-weight: 550;
  color: var(--sage-ink);
  margin: 0 0 14px;
}

.book-hero-info .age-badge {
  align-self: flex-start;
  margin-bottom: 18px;
}

.book-hero-info > p.book-desc {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0 0 32px;
}

@media (max-width: 760px) {
  .book-hero-inner {
    grid-template-columns: 1fr;
  }
  .book-hero-cover {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* Offer cards (sampler / digital pack / paperback) */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

.offer-card {
  background: var(--cream-deep);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(182, 147, 90, 0.14);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.offer-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.offer-card .offer-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.offer-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 550;
  color: var(--ink);
}

.offer-card p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  flex: 1;
}

.offer-card .offer-price {
  font-weight: 700;
  color: var(--ink);
}

.offer-btn {
  display: inline-block;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.offer-btn.sampler {
  background: var(--sage);
  color: var(--ink);
}

/* Text legibility helpers — see --text-legibility-shadow(-strong) in :root.
   Green text on light backgrounds gets the soft shadow; white button text
   on the green background gets the stronger one. The green itself is
   untouched in every rule below. */
.brand-mark,
nav.site-nav a,
.back-link,
.section-heading h2,
.age-badge,
.mission-text h2,
.printables-box h2,
.book-hero-info h1,
.sampler-success,
.footer-brand,
.footer-links button,
.modal-box h3,
.offer-btn.sampler {
  text-shadow: var(--text-legibility-shadow);
}

.btn-amazon,
.btn-view,
.btn-printables,
.btn-tiktok,
.offer-btn.amazon,
nav.site-nav a:hover {
  text-shadow: var(--text-legibility-shadow-strong);
}

.offer-btn.sampler:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(143, 158, 139, 0.35);
}

.offer-btn.pack {
  background: var(--lavender-deep);
  color: #3a2f52;
}

.offer-btn.pack:hover {
  background: #b8a9ea;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(185, 168, 232, 0.35);
}

.offer-btn.amazon {
  background: var(--sage-ink);
  color: var(--white);
}

.offer-btn.amazon:hover {
  background: var(--sage-text);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(143, 158, 139, 0.3);
}

.offer-note {
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.8rem;
  margin: 20px 0 0;
}

/* Sampler email capture form */
.sampler-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  text-align: left;
}

.sampler-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--sage-deep);
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  font-family: inherit;
  text-align: center;
}

.sampler-input:focus {
  outline: none;
  border-color: var(--sage-text);
  box-shadow: 0 0 0 3px rgba(60, 90, 71, 0.15);
}

.sampler-input::placeholder {
  color: var(--ink-soft);
}

.sampler-form .offer-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sampler-form [hidden] {
  display: none !important;
}

.sampler-form .offer-btn:disabled {
  opacity: 0.65;
  cursor: default;
}

.sampler-success {
  margin: 2px 0 0 !important;
  color: var(--sage-text) !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  text-align: center;
}

.sampler-error {
  margin: 2px 0 0 !important;
  color: #a05a4a !important;
  font-size: 0.82rem !important;
  text-align: center;
}

.offer-card-soon {
  background: #f1ede3;
}

.offer-btn.soon {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  background: transparent;
  color: var(--ink-faint);
  border: 1.5px dashed #c9c2b3;
  cursor: default;
}

/* Footer */
footer.site-footer {
  background: linear-gradient(180deg, #eef3ec 0%, var(--cream-deep) 100%);
  padding: 64px 24px 44px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 550;
  color: var(--sage-ink);
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.footer-connect {
  margin: 32px auto 0;
  max-width: 460px;
  background: var(--white);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(182, 147, 90, 0.14);
}

.footer-connect p {
  margin: 7px 0;
}

.footer-connect .connect-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.footer-links {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links button {
  background: none;
  border: none;
  color: var(--sage-text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
  font-family: inherit;
}

.footer-copy {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(182, 147, 90, 0.2);
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(50, 47, 42, 0.5);
  backdrop-filter: blur(2px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 36px 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  position: relative;
  text-align: left;
}

.modal-box h3 {
  margin: 0 0 18px;
  color: var(--sage-ink);
  font-size: 1.35rem;
  font-weight: 550;
}

.modal-box p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin: 0 0 14px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--cream-deep);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  background: var(--sage);
}

/* Scroll-reveal (progressive enhancement — see js/reveal.js).
   Content stays fully visible if JS never runs. */
body.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

body.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* TikTok follow button (footer "Connect With Us") — plain static link,
   no SDK/embed/API involved. Small pill matching the site's existing
   button language (.btn-view / .btn-printables). */
.btn-tiktok {
  display: inline-block;
  text-decoration: none;
  background: var(--sage-ink);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-tiktok:hover {
  background: var(--sage-text);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(143, 158, 139, 0.22);
}
