/* ─────────────────────────────────────────────
   little kaizen — calm-smart aesthetic
   palette inspired by Headspace × Lovevery
   ───────────────────────────────────────────── */

:root {
  --cream:        #FAF6EF;
  --cream-deep:   #F2EBDF;
  --ink:          #2A2825;
  --ink-soft:     #5C5750;
  --muted:        #8A857C;
  --sage:         #7A8B6F;
  --sage-deep:    #5C6F52;
  --terracotta:   #C9885F;
  --terracotta-deep: #A8693F;
  --rule:         #E5DDD0;
  /* Ghibli atmosphere additions */
  --sky:          #B8CDD4;
  --sky-deep:     #88A6B0;
  --cloud:        #F5F0E8;
  --sun:          #E8C77A;
}

/* soft sky band — atmosphere behind the top of every page */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(180deg, rgba(184, 205, 212, 0.22), rgba(250, 246, 239, 0));
  pointer-events: none;
  z-index: -1;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

main {
  max-width: 880px;
  margin: 0 auto;
  padding: 44px 28px 80px;
}

/* prose / reading-line constraint inside wider main */
.prose,
.practice,
.signup,
.signup-lede,
.signup-msg,
#signup-form,
.faq-list,
.resource-group,
.books-list,
.hero h1,
.hero .lede,
.hero-ctas {
  max-width: 640px;
}

/* ── wordmark ───────────────────────────── */

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  margin-bottom: 96px;
}

.wordmark .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
}

/* ── hero ───────────────────────────────── */

.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-deep);
}

.hero .lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 32em;
  margin: 0 0 80px;
}

/* ── practice ───────────────────────────── */

.practice {
  margin: 0 0 80px;
  padding: 0 0 40px;
  border-bottom: 1px solid var(--rule);
}

.practice p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

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

/* ── signup ─────────────────────────────── */

.signup h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}

.signup-lede {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 16px;
}

#signup-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#signup-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s ease;
}

#signup-form input[type="email"]:focus {
  border-color: var(--sage);
}

#signup-form button {
  padding: 14px 22px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  background: var(--sage-deep);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}

#signup-form button:hover {
  background: var(--ink);
}

.signup-msg {
  margin: 14px 0 0;
  min-height: 1.4em;
  font-size: 15px;
  color: var(--sage-deep);
}

.signup-msg.err {
  color: var(--terracotta-deep);
}

.signup-msg.ok {
  color: var(--sage-deep);
}

/* ── footer ─────────────────────────────── */

footer {
  margin-top: 96px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

footer p {
  margin: 0;
}

/* ── a11y ───────────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── responsive ─────────────────────────── */

@media (max-width: 480px) {
  main {
    padding: 40px 22px 64px;
  }
  .wordmark {
    margin-bottom: 64px;
  }
  .hero .lede {
    margin-bottom: 56px;
    font-size: 18px;
  }
  .practice,
  .signup h2 {
    margin-bottom: 56px;
  }
  #signup-form button {
    flex: 1 1 100%;
  }
}

/* ── nav (shared chrome) ────────────────── */

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Caveat', 'Fraunces', cursive, serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.site-nav .brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav ul a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}

.site-nav ul a:hover {
  color: var(--sage-deep);
  border-bottom-color: var(--sage);
}

.site-nav ul a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--sage-deep);
}

/* ── page header (inner pages) ──────────── */

.page-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 16px;
}

.page-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 48px;
  color: var(--ink);
}

.page-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-deep);
}

/* ── prose ──────────────────────────────── */

.prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.prose h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
  color: var(--ink);
}

.prose h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  margin: 32px 0 8px;
  color: var(--ink);
}

.prose ul, .prose ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.prose li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.prose em { font-style: italic; }
.prose strong { font-weight: 600; color: var(--ink); }

.prose a {
  color: var(--sage-deep);
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s;
}
.prose a:hover { text-decoration-color: var(--sage-deep); }

.prose blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--sage);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}

/* ── books list ─────────────────────────── */

.book {
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}
.book:first-of-type { padding-top: 8px; }
.book:last-of-type { border-bottom: 0; }

.book h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 4px;
  color: var(--ink);
}

.book .meta {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 14px;
}

.book p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ── home explore cards ─────────────────── */

.explore {
  margin: 0 0 80px;
}

.explore h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 24px;
  color: var(--ink);
}

.cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  display: block;
  padding: 20px;
  background: #FCFAF4;
  border: 1px solid var(--rule);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}

.card:hover {
  border-color: var(--sage);
  transform: translateY(-1px);
}

.card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--ink);
}

.card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* ── founder letter ─────────────────────── */

.signoff {
  margin-top: 48px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}

.signoff .family {
  display: block;
  font-size: 14px;
  color: var(--muted);
  font-style: normal;
  margin-top: 4px;
}

.draft-note {
  margin-top: 40px;
  padding: 12px 16px;
  background: var(--cream-deep);
  border-left: 3px solid var(--terracotta);
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  border-radius: 0 4px 4px 0;
}

/* ── notify (split list) ────────────────── */

.split-list {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
  margin: 32px 0 40px;
}

.split-list .col h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 12px;
  color: var(--ink);
}

.split-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.split-list li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.split-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sage);
}

@media (max-width: 600px) {
  .split-list { grid-template-columns: 1fr; gap: 24px; }
}

/* ── mobile nav stack ───────────────────── */

@media (max-width: 600px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 56px;
  }
  .site-nav ul { gap: 14px 18px; }
}

/* ─────────────────────────────────────────────
   ROUND 2 — logo mark, footer, animations, icons
   ───────────────────────────────────────────── */

/* logo mark in nav */
.site-nav .brand .brand-mark {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

/* subtle kaizen pulse on the largest dot */
@keyframes kaizen-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.10); opacity: 0.88; }
}
.site-nav .brand .brand-mark circle:nth-of-type(3) {
  transform-origin: 48px 16px;
  transform-box: fill-box;
  animation: kaizen-pulse 5s ease-in-out infinite;
}

/* ── hero illustration ─────────────────── */

.hero-illo {
  display: block;
  width: clamp(140px, 28vw, 200px);
  height: auto;
  margin: 0 0 32px;
}

/* ── card icons + new card layout ──────── */

.card .card-icon {
  display: block;
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
  color: var(--sage-deep);
  stroke-width: 1.5;
}
.card:hover .card-icon { color: var(--terracotta-deep); transition: color 0.2s ease; }

/* ── family motif ──────────────────────── */

.family-motif {
  display: block;
  width: 90px;
  height: 90px;
  margin: 56px auto 8px;
  opacity: 0.85;
}

/* ── rich footer ───────────────────────── */

.site-footer {
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 6px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.footer-col a:hover {
  color: var(--sage-deep);
  border-bottom-color: var(--sage);
}
.footer-col p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.footer-note {
  font-style: italic;
  font-size: 12px !important;
  color: var(--muted);
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}
.footer-cta {
  display: inline-block;
  font-size: 14px;
  color: var(--sage-deep);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: border-color 0.15s;
}
.footer-cta:hover { border-bottom-color: var(--sage-deep); }

/* socials */
.socials {
  display: flex;
  gap: 10px;
  margin: 0 0 4px !important;
  padding: 0;
  list-style: none;
}
.socials li { margin: 0 !important; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: color 0.15s, border-color 0.15s, transform 0.15s;
}
.socials a:hover {
  color: var(--sage-deep);
  border-color: var(--sage);
  transform: translateY(-1px);
}
.socials a svg { display: block; }

/* footer bottom row */
.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--muted);
}
.footer-bottom p { margin: 0; }
.footer-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── faq ───────────────────────────────── */

.faq-list { margin-top: 8px; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.faq-item:first-of-type { padding-top: 12px; }
.faq-item:last-of-type { border-bottom: 0; }
.faq-q {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.faq-a {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.faq-a a {
  color: var(--sage-deep);
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 2px;
}
.faq-a a:hover { text-decoration-color: var(--sage-deep); }

/* ── resources ─────────────────────────── */

.resource-group { margin: 40px 0; }
.resource-group h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.resource-group .group-intro {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 16px;
}
.resource-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.resource-item:last-of-type { border-bottom: 0; }
.resource-item h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 6px;
}
.resource-item h3 a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: border-color 0.15s;
}
.resource-item h3 a:hover { border-bottom-color: var(--sage-deep); }
.resource-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ── store ─────────────────────────────── */

.store-status {
  display: inline-block;
  padding: 5px 14px;
  background: var(--cream-deep);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0 40px;
}
.store-item {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.store-item:hover {
  border-color: var(--sage);
  transform: translateY(-1px);
}
.store-item h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ink);
}
.store-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ── entrance animation ────────────────── */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
main > * {
  animation: fade-up 0.55s ease-out backwards;
}
main > *:nth-of-type(1) { animation-delay: 0.00s; }
main > *:nth-of-type(2) { animation-delay: 0.06s; }
main > *:nth-of-type(3) { animation-delay: 0.12s; }
main > *:nth-of-type(4) { animation-delay: 0.18s; }
main > *:nth-of-type(5) { animation-delay: 0.24s; }
main > *:nth-of-type(6) { animation-delay: 0.30s; }
main > *:nth-of-type(7) { animation-delay: 0.36s; }
main > *:nth-of-type(8) { animation-delay: 0.42s; }
main > *:nth-of-type(9) { animation-delay: 0.48s; }

/* respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  main > *,
  .site-nav .brand .brand-mark circle,
  .card,
  .store-item,
  .socials a,
  #signup-form button,
  .drift,
  .sun-disk {
    animation: none !important;
    transition: none !important;
  }
}

/* ─────────────────────────────────────────────
   ROUND 4 — Studio Ghibli atmosphere motifs
   ───────────────────────────────────────────── */

/* sun breathe (used on hero) */
@keyframes sun-breathe {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}
.sun-disk {
  animation: sun-breathe 8s ease-in-out infinite;
  transform-origin: center;
}

/* cloud drift (used on hero + series page cloud) */
@keyframes cloud-drift {
  0%, 100% { transform: translateX(-12px); }
  50%      { transform: translateX(12px); }
}
.drift {
  animation: cloud-drift 50s ease-in-out infinite;
}

/* floating music player */
.music-player {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sage-deep);
  color: var(--cream);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(92, 111, 82, 0.28);
  z-index: 100;
  animation: levitate 3.8s ease-in-out infinite;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.music-player:hover {
  background: var(--ink);
  transform: scale(1.06);
}
.music-player:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}
.music-player .music-icon {
  width: 22px;
  height: 22px;
}
.music-player.playing {
  background: var(--terracotta-deep);
}
.music-player.playing .music-icon {
  animation: music-pulse 1.4s ease-in-out infinite;
}

/* muted autoplay state — small pulsing dot says "tap to enable sound" */
.music-player.muted::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cream);
  animation: muted-pulse 1.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes muted-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.65); }
}

@keyframes levitate {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 8px 22px rgba(92, 111, 82, 0.28);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(92, 111, 82, 0.30);
  }
}
@keyframes music-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

@media (prefers-reduced-motion: reduce) {
  .music-player {
    animation: none !important;
  }
  .music-player:hover {
    transform: none !important;
  }
  .music-player.playing .music-icon,
  .music-player.muted::after {
    animation: none !important;
  }
}

@media (max-width: 600px) {
  .music-player {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/* per-page motifs */
.breeze-motif {
  display: block;
  width: 100px;
  height: 36px;
  margin: 56px 0 8px;
  opacity: 0.7;
}

.cloud-motif {
  display: block;
  width: 120px;
  height: 50px;
  margin: 0 0 16px auto;
  opacity: 0.9;
}

.bird-motif {
  display: block;
  width: 100px;
  height: 40px;
  margin: 24px 0 8px;
  opacity: 0.7;
}

.cat-motif {
  display: block;
  width: 140px;
  height: 60px;
  margin: 56px auto 16px;
  opacity: 0.7;
}

/* ─────────────────────────────────────────────
   ROUND 3 — UX overhaul: nav restructure, hero CTAs, newsletter strip
   ───────────────────────────────────────────── */

/* nav menu (renamed from default ul) */
.nav-menu {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

/* nav right-side actions (socials + CTA) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* nav inline socials */
.nav-socials {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-socials li { margin: 0; }
.nav-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 0 !important;
  transition: color 0.15s, background 0.15s;
}
.nav-socials a:hover {
  color: var(--sage-deep);
  background: var(--cream-deep);
}
.nav-socials svg { display: block; }

/* primary nav CTA pill */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 16px;
  background: var(--sage-deep);
  color: var(--cream) !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  border-radius: 999px;
  border: 0 !important;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover {
  background: var(--ink);
  transform: translateY(-1px);
}
.nav-cta[aria-current="page"] {
  background: var(--ink);
}

@media (max-width: 980px) {
  .site-nav { gap: 14px; }
  .nav-menu { gap: 16px; }
}
@media (max-width: 760px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .nav-menu { width: 100%; gap: 14px 20px; }
  .nav-actions { width: 100%; justify-content: space-between; }
}

/* hero CTAs (home) */
.hero-ctas {
  display: flex;
  gap: 12px;
  margin: 0 0 80px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.15s, border-color 0.15s;
}
.btn-primary {
  background: var(--sage-deep);
  color: var(--cream);
  border: 1px solid var(--sage-deep);
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.btn-secondary {
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  background: transparent;
}
.btn-secondary:hover {
  border-color: var(--sage-deep);
  color: var(--ink);
}

/* newsletter strip */
.newsletter-strip {
  margin: 80px 0 0;
  padding: 36px 32px;
  background: var(--cream-deep);
  border-radius: 12px;
}
.newsletter-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.newsletter-strip h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.newsletter-strip > .newsletter-strip-inner p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.strip-form {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.strip-form input {
  padding: 11px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  min-width: 200px;
  outline: none;
  transition: border-color 0.15s;
}
.strip-form input:focus {
  border-color: var(--sage);
}
.strip-form button {
  padding: 11px 18px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  background: var(--sage-deep);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.strip-form button:hover {
  background: var(--ink);
}
.strip-msg {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--sage-deep);
  min-height: 1.2em;
}
.strip-msg.err { color: var(--terracotta-deep); }

@media (max-width: 720px) {
  .newsletter-strip {
    padding: 28px 22px;
  }
  .newsletter-strip-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .strip-form input {
    flex: 1 1 100%;
    min-width: 0;
  }
}
