﻿:root {
  --sage: #a8bba3;
  --forest: #4f6b53;
  --cream: #f8f4ee;
  --rose: #d8b4a6;
  --lavender: #cfc8e8;
  --ink: #2b2420;
  --muted: #635b55;
  --paper: #fffdf9;
  --line: rgba(79, 107, 83, 0.18);
  --shadow: 0 18px 44px rgba(72, 56, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.top-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 34px;
  padding: 5px clamp(18px, 5vw, 70px);
  background: var(--sage);
  color: white;
}

.top-bar > span {
  justify-self: end;
  margin-right: 12px;
  color: #f4d7d1;
}

.top-bar p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.top-bar nav {
  justify-self: end;
  display: flex;
  gap: 20px;
  font-size: 13px;
  font-weight: 800;
}

.top-bar nav a {
  padding: 3px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  padding: 20px clamp(22px, 5vw, 70px);
  border-bottom: 1px solid rgba(79, 107, 83, 0.09);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: block;
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-text strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.86;
}

.brand-text strong::after {
  color: #d49e97;
  content: "\2665";
  font-family: Inter, sans-serif;
  font-size: 15px;
  margin-left: 4px;
  vertical-align: top;
}

.brand-text small {
  display: block;
  margin-top: 12px;
  color: #6c605a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  padding-block: 8px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: #c6857f;
  border-bottom-color: currentColor;
}

.bag-link {
  justify-self: end;
  color: var(--ink);
  font-size: 29px;
  cursor: default;
  user-select: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest);
}

.hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(380px, 1.05fr);
  align-items: stretch;
  min-height: 430px;
  background: var(--paper);
}

.hero-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(48px, 7vw, 74px) clamp(22px, 5vw, 76px);
  text-align: center;
}

.mini-logo {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 18px;
  mix-blend-mode: multiply;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.02;
}

.hero h1 em {
  color: var(--forest);
  font-style: normal;
}

.script-line {
  margin: 13px 0 18px;
  color: #cb8581;
  font-family: Sacramento, cursive;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.hero-subhead {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.button,
button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 28px;
  font: 800 13px/1 Inter, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.primary,
button {
  background: var(--forest);
  color: white;
}

.secondary {
  border-color: #ca8580;
  background: transparent;
  color: #c47e7a;
}

.hero-photo {
  min-height: 430px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: clamp(54px, 7vw, 84px) clamp(22px, 5vw, 70px);
}

.welcome {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  position: relative;
  background: var(--paper);
}

.welcome::before,
.welcome::after {
  position: absolute;
  color: #dba5a0;
  content: "\2667";
  font-size: clamp(80px, 12vw, 150px);
  opacity: 0.7;
}

.welcome::before {
  left: 44px;
  top: 110px;
  transform: rotate(-24deg);
}

.welcome::after {
  right: 78px;
  top: 52px;
  transform: rotate(28deg);
}

.portrait-card,
.welcome-copy {
  position: relative;
  z-index: 1;
}

.portrait-card {
  justify-self: end;
  width: min(280px, 100%);
  overflow: hidden;
  border-radius: 90px 90px 6px 6px;
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 10px;
  color: #c98882;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.light {
  color: white;
}

h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.welcome h2,
.section-heading h2,
.resource-band h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.05;
}

.welcome p,
.section-heading p,
.focus-grid p,
.resource-band p,
.article-grid p,
footer p {
  color: var(--muted);
  line-height: 1.65;
}

.compact {
  min-height: 40px;
  margin-top: 8px;
  padding: 11px 20px;
  font-size: 12px;
}

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

.blog-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.blog-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
}

.blog-intro p:last-child {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.blog-archive-hero {
  background: var(--paper);
  text-align: center;
}

.blog-archive-hero h1 {
  max-width: 820px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.02;
}

.blog-archive-hero p:last-child {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.blog-archive-section {
  background: var(--cream);
}

.story-page {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(248, 244, 238, 0.98)),
    var(--cream);
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 56px;
  align-items: center;
  background: var(--paper);
}

.story-hero-copy {
  max-width: 760px;
}

.story-hero-copy .mini-logo {
  width: 86px;
  height: 86px;
  margin-bottom: 20px;
}

.story-hero h1,
.story-next h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  line-height: 0.96;
}

.story-hero p:last-child {
  max-width: 600px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.story-hero-image {
  overflow: hidden;
  border: 12px solid rgba(255, 253, 249, 0.88);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(79, 107, 83, 0.18);
}

.story-hero-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.story-body {
  background: var(--cream);
}

.story-letter {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(216, 180, 166, 0.26);
  border-radius: 8px;
  background: var(--paper);
  padding: clamp(34px, 6vw, 72px);
  box-shadow: 0 22px 60px rgba(79, 107, 83, 0.08);
}

.story-letter p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.story-letter .script-line {
  margin-top: 28px;
  color: var(--rose);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
}

.story-beliefs {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.story-beliefs p {
  margin: 0;
  border-left: 4px solid var(--sage);
  background: rgba(168, 187, 163, 0.12);
  padding: 18px 20px;
  color: var(--forest);
  font-weight: 700;
}

.story-signoff {
  color: var(--ink) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px !important;
  line-height: 1.25 !important;
}

.story-next {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: var(--sage);
  color: #fff;
}

.story-next .eyebrow,
.story-next h2 {
  color: #fff;
}

.story-next h2 {
  max-width: 720px;
  font-size: clamp(36px, 5vw, 58px);
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.story-actions .button.secondary {
  background: rgba(255, 253, 249, 0.85);
}

.archive-window-note {
  max-width: 680px;
  margin: -14px auto 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.category-filter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto 34px;
}

.article-categories a,
.post-categories a {
  border: 1px solid rgba(216, 180, 166, 0.5);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.category-filter a {
  display: grid;
  grid-template-rows: 150px 1fr auto;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(216, 180, 166, 0.26);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(79, 107, 83, 0.08);
  color: var(--ink);
}

.category-filter img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.category-filter span,
.category-filter small {
  padding-inline: 18px;
}

.category-filter span {
  align-self: end;
  padding-top: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
}

.category-filter small {
  display: block;
  padding-top: 8px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.category-filter a.active,
.category-filter a:hover {
  border-color: rgba(79, 107, 83, 0.45);
  transform: translateY(-2px);
}

.category-filter a.active span {
  color: var(--forest);
}

.article-categories a:hover,
.post-categories a:hover {
  border-color: rgba(79, 107, 83, 0.3);
  background: var(--sage);
  color: #fff;
}

.article-categories,
.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.article-categories a,
.post-categories a {
  padding: 8px 10px;
}

.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-archive-grid article {
  overflow: hidden;
  border: 1px solid rgba(216, 180, 166, 0.22);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(72, 56, 45, 0.06);
}

.blog-archive-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-archive-grid h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.05;
}

.blog-archive-grid p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
}

.blog-archive-grid a {
  color: #a75f5b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.focus-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  column-gap: 24px;
  align-items: center;
  min-height: 142px;
  padding: 26px;
  border: 1px solid rgba(216, 180, 166, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 14px 28px rgba(72, 56, 45, 0.06);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.focus-grid article::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(168, 187, 163, 0.12), rgba(216, 180, 166, 0.14));
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.focus-grid article > * {
  position: relative;
  z-index: 1;
}

.focus-grid article:hover,
.focus-grid article:focus-within {
  border-color: rgba(79, 107, 83, 0.22);
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 20px 42px rgba(72, 56, 45, 0.11);
  transform: translateY(-6px);
}

.focus-grid article:hover::before,
.focus-grid article:focus-within::before {
  opacity: 1;
}

.focus-grid article,
.article-grid article,
.shop-card,
.resource-copy,
.footer-kit-embed,
footer > * {
  min-width: 0;
}

.focus-icon {
  grid-row: span 3;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 42px;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.focus-grid article:hover .focus-icon,
.focus-grid article:focus-within .focus-icon {
  box-shadow: 0 12px 26px rgba(79, 107, 83, 0.18);
  transform: scale(1.06);
}

.heart {
  background: #93a58b;
}

.journal {
  background: #d39791;
}

.growth {
  background: #b9a0c8;
}

.focus-grid h3 {
  margin: 0;
  font-size: 28px;
}

.focus-grid p {
  margin: 7px 0;
  font-size: 14px;
}

.focus-grid a,
.article-grid a {
  color: #a75f5b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.focus-grid a {
  display: inline-flex;
  align-items: center;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.focus-grid article:hover a,
.focus-grid article:focus-within a {
  color: var(--forest);
  transform: translateX(4px);
}

.resource-band {
  display: grid;
  grid-template-columns: minmax(520px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(26px, 4vw, 44px) clamp(22px, 5vw, 70px);
  background: linear-gradient(90deg, #8fa184, #b8c5ae);
  color: white;
}

.resource-band > img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.resource-signup {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(290px, 1fr);
  gap: 22px;
  align-items: center;
  width: 100%;
}

.resource-signup img {
  width: 100%;
  min-width: 0;
  min-height: 250px;
  aspect-ratio: 0.86 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(44, 62, 44, 0.18);
}

.resource-band h2 {
  color: white;
}

.resource-band p {
  color: white;
}

.resource-copy {
  align-self: center;
  width: 100%;
}

.resource-copy h2 {
  max-width: 700px;
  margin: 0;
  color: white;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
}

.resource-copy p {
  max-width: 680px;
  color: white;
  font-size: 17px;
  margin: 14px 0;
}

.resource-copy .button {
  min-height: 42px;
  margin-top: 4px;
  padding: 12px 20px;
  font-size: 12px;
  background: var(--forest);
}

.footer-kit-embed {
  width: 100%;
  max-width: none;
  min-width: 0;
  align-self: center;
}

.footer-kit-embed form,
.footer-kit-embed .formkit-form,
.footer-kit-embed [data-uid="db5c298283"] {
  max-width: 100% !important;
  margin: 0 !important;
}

.footer-kit-embed .formkit-form {
  overflow: hidden !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 249, 0.96) !important;
  box-shadow: none !important;
  width: 100% !important;
}

.footer-kit-embed .formkit-container {
  padding: 0 !important;
  background: rgba(255, 253, 249, 0.96) !important;
}

.footer-kit-embed .formkit-hero {
  display: none !important;
}

.footer-kit-embed .formkit-fields {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(112px, auto) !important;
  gap: 10px !important;
  align-items: stretch !important;
  margin: 10px 0 0 !important;
  width: 100% !important;
}

.footer-kit-embed .formkit-field,
.footer-kit-embed .formkit-submit {
  margin: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
}

.footer-kit-embed .formkit-input {
  display: block !important;
  min-height: 44px !important;
  height: 44px !important;
  padding: 9px 13px !important;
  border: 1px solid rgba(79, 107, 83, 0.22) !important;
  border-radius: 4px !important;
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

.footer-kit-embed .formkit-submit {
  display: flex !important;
  min-height: 44px !important;
  height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 4px !important;
  background: var(--forest) !important;
  color: white !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.footer-kit-embed .formkit-submit > span {
  display: flex !important;
  min-height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 14px !important;
}

.footer-kit-embed .formkit-powered-by-convertkit-container {
  display: none !important;
}

input {
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(79, 107, 83, 0.2);
  border-radius: 4px;
  padding: 0 14px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.footer-kit-embed button {
  background: var(--forest);
}

.section-heading.rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  text-align: center;
}

.section-heading.rule span {
  height: 1px;
  background: rgba(216, 180, 166, 0.55);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.article-archive-link {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.article-archive-link .button {
  min-width: min(230px, 100%);
}

.article-grid article {
  display: grid;
  grid-template-columns: minmax(130px, 0.62fr) 1fr;
  overflow: hidden;
  min-height: 160px;
  border: 1px solid rgba(216, 180, 166, 0.22);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(72, 56, 45, 0.06);
}

.article-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-copy {
  padding: 18px;
}

.article-grid h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.05;
}

.article-grid p {
  margin: 0 0 12px;
  font-size: 13px;
}

.shop {
  padding-top: 0;
}

.coming-soon-banner {
  max-width: 860px;
  margin: 0 auto 34px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(216, 180, 166, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(241, 235, 228, 0.96));
  box-shadow: 0 16px 32px rgba(72, 56, 45, 0.07);
  text-align: center;
}

.coming-soon-banner h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
}

.coming-soon-banner p:last-child {
  max-width: 660px;
  margin: 12px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.shop-card {
  position: relative;
  text-align: center;
  opacity: 0.72;
  filter: saturate(0.82);
  pointer-events: none;
}

.shop-card::after {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(79, 107, 83, 0.92);
  color: white;
  content: "Coming Soon";
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.shop-card img,
.shop-cover {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #eee2d7;
  box-shadow: 0 12px 26px rgba(72, 56, 45, 0.08);
}

.shop-cover {
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
}

.shop-card h3 {
  margin: 12px 0 4px;
  font-size: 18px;
  line-height: 1.15;
}

.shop-card strong {
  font-size: 14px;
}

footer {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 0.75fr 0.85fr 0.7fr;
  gap: clamp(24px, 3vw, 40px);
  padding: 36px clamp(22px, 5vw, 70px);
  border-top: 1px solid rgba(79, 107, 83, 0.12);
  background: #f1ebe4;
}

.footer-logo {
  width: 74px;
  height: 74px;
}

.footer-brand {
  align-items: flex-start;
}

.heart-dot {
  display: block;
  margin-top: 12px;
  color: #d09891;
}

footer h3 {
  margin: 0 0 10px;
  color: #c98680;
  font: 800 13px/1 Inter, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer nav {
  display: grid;
  align-content: start;
  gap: 6px;
  font-size: 14px;
}

footer nav a {
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--muted);
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

footer nav a:hover,
footer nav a:focus-visible {
  background: rgba(216, 180, 166, 0.28);
  color: var(--forest);
  outline: none;
  transform: translateX(3px);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.social-row a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(79, 107, 83, 0.2);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 253, 249, 0.62);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-row a:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.copyright {
  padding: 9px;
  background: var(--forest);
  color: white;
  font-size: 12px;
  text-align: center;
}

.post-page {
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 180, 166, 0.16), transparent 28%),
    var(--cream);
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-shell {
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(79, 107, 83, 0.14);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.post-loading {
  padding: 70px 30px;
  color: var(--muted);
  text-align: center;
}

.post-hero {
  padding: clamp(38px, 6vw, 72px) clamp(24px, 6vw, 86px) 26px;
  text-align: center;
}

.post-hero h1 {
  max-width: 780px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
}

.post-intro {
  max-width: 600px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.post-featured-image {
  width: min(840px, calc(100% - 40px));
  max-height: 470px;
  margin: 0 auto 34px;
  border-radius: 10px;
  object-fit: cover;
}

.post-body {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 44px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.82;
}

.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4 {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
}

.post-body h2 {
  margin: 38px 0 12px;
  font-size: 38px;
}

.post-body h3 {
  margin: 30px 0 10px;
  font-size: 30px;
}

.post-body p {
  margin: 0 0 20px;
}

.post-body a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.post-body blockquote {
  margin: 28px 0;
  padding-left: 18px;
  border-left: 4px solid var(--rose);
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.2;
}

.post-body ul,
.post-body ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.post-cta {
  margin-top: 18px;
  padding: clamp(30px, 5vw, 48px);
  background: linear-gradient(90deg, #8fa184, #b8c5ae);
  color: white;
  text-align: center;
}

.post-cta h2 {
  margin: 0;
  color: white;
  font-size: clamp(30px, 4vw, 44px);
}

.post-cta p {
  max-width: 620px;
  margin: 14px auto 24px;
  color: white;
  line-height: 1.7;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    display: none;
    width: min(330px, calc(100vw - 40px));
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .welcome,
  .story-hero,
  .resource-band {
    grid-template-columns: 1fr;
  }

  .story-hero-image img {
    height: 460px;
  }

  .story-next {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-actions {
    justify-content: flex-start;
  }

  .resource-band {
    padding-block: clamp(30px, 5vw, 48px);
  }

  footer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .portrait-card {
    justify-self: center;
  }

  .focus-grid,
  .article-grid,
  .category-filter,
  .blog-archive-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .top-bar {
    grid-template-columns: auto 1fr;
  }

  .top-bar nav {
    display: none;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand-text strong {
    font-size: 38px;
  }

  .brand-text small {
    font-size: 9px;
    letter-spacing: 0.15em;
  }

  .bag-link {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 280px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .button,
  button {
    width: 100%;
    padding-inline: 18px;
    white-space: normal;
  }

  .focus-grid,
  .article-grid,
  .category-filter,
  .blog-archive-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .focus-grid article {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .focus-icon {
    grid-row: auto;
  }

  .article-grid article {
    grid-template-columns: 1fr;
  }

  .article-grid img {
    height: 180px;
  }

  .resource-band img {
    height: 145px;
  }

  .story-hero-image img {
    height: 360px;
  }

  .story-actions,
  .story-actions .button {
    width: 100%;
  }

  .resource-signup {
    grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
  }

  .resource-signup img {
    min-height: 220px;
  }

  .footer-kit-embed .formkit-fields {
    grid-template-columns: minmax(0, 1fr) minmax(112px, auto) !important;
  }

  .section-heading.rule {
    grid-template-columns: 1fr;
  }

  .section-heading.rule span {
    display: none;
  }
}

@media (max-width: 460px) {
  footer {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  footer nav {
    justify-items: center;
  }

  .resource-signup {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .resource-signup img {
    width: min(190px, 100%);
    height: auto;
    min-height: 0;
  }

  .footer-kit-embed .formkit-fields {
    grid-template-columns: 1fr !important;
  }

  .social-row {
    justify-content: center;
  }
}
