:root {
  --ink: #21172c;
  --muted: #6d5a78;
  --paper: #fff9ef;
  --paper-pink: #fff0f7;
  --pink: #ff4fa3;
  --hot-pink: #e81778;
  --baby-pink: #ffc7e2;
  --purple: #8d62d6;
  --lavender: #d9c3ff;
  --blue: #92d9ff;
  --lime: #c6f35a;
  --silver: #edf0f7;
  --white: #ffffff;
  --shadow: 7px 7px 0 rgba(33, 23, 44, 0.16);
  --shadow-small: 4px 4px 0 rgba(33, 23, 44, 0.14);
  --border: 2px solid var(--ink);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 13px 13px, rgba(141, 98, 214, 0.15) 2px, transparent 2.5px) 0 0 / 28px 28px,
    linear-gradient(145deg, #fffaf2 0%, #fff0f8 52%, #eee5ff 100%);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.55) 48%, transparent 61%);
  opacity: 0.55;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border: var(--border);
  border-radius: 10px;
  background: var(--lime);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(33, 23, 44, 0.14);
  background: rgba(255, 249, 239, 0.88);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: var(--border);
  border-radius: 50% 42% 50% 38%;
  background: linear-gradient(145deg, #fff, #ff83be 45%, #a884ed);
  box-shadow: var(--shadow-small);
  transform: rotate(-5deg);
}

.brand-mark::after {
  content: "✦";
  font-size: 1.35rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a:not(.nav-pill)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 4px;
  border-radius: 99px;
  background: var(--pink);
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

.nav-pill {
  padding: 9px 15px;
  border: var(--border);
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 3px 3px 0 var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  border: var(--border);
  border-radius: 12px;
  color: var(--ink);
  background: var(--baby-pink);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.marquee {
  overflow: hidden;
  border-bottom: var(--border);
  color: var(--white);
  background: var(--ink);
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.hero {
  position: relative;
  min-height: 620px;
  margin: 36px auto 76px;
  overflow: hidden;
  border: var(--border);
  border-radius: 34px;
  background-color: #d9b7e8;
  background-image: linear-gradient(90deg, rgba(225, 197, 238, 0.93) 0%, rgba(225, 197, 238, 0.76) 36%, rgba(225, 197, 238, 0.08) 61%), url("../images/hero.webp");
  background-position: center;
  background-size: cover;
  box-shadow: 12px 12px 0 rgba(33, 23, 44, 0.15);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(3px 4px 0 rgba(33, 23, 44, 0.18));
}

.hero::before {
  content: "✦";
  top: 34px;
  left: 48%;
  color: var(--lime);
  font-size: 3rem;
  transform: rotate(10deg);
}

.hero::after {
  content: "♡";
  left: 46%;
  bottom: 34px;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  transform: rotate(-12deg);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  width: 52%;
  min-height: 620px;
  padding: clamp(32px, 6vw, 76px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: var(--border);
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-title,
.page-title,
.section-title,
.post-title {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero-title {
  max-width: 680px;
  margin: 0 0 22px;
  font-size: clamp(3.2rem, 7.6vw, 6.8rem);
}

.hero-title .chrome,
.page-title .chrome {
  color: var(--pink);
  background: linear-gradient(180deg, #fff 0%, #ff9aca 24%, #d5116e 50%, #ffb8d8 72%, #8b0750 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(33, 23, 44, 0.7);
  filter: drop-shadow(3px 4px 0 rgba(255, 255, 255, 0.85)) drop-shadow(5px 7px 0 rgba(33, 23, 44, 0.18));
}

.hero-text {
  max-width: 520px;
  margin: 0 0 26px;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 18px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: var(--border);
  border-radius: 14px;
  color: var(--ink);
  background: var(--pink);
  box-shadow: 5px 5px 0 var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.button.secondary {
  background: var(--white);
}

.button.lime {
  background: var(--lime);
}

.tiny-note {
  margin: 20px 0 0;
  color: rgba(33, 23, 44, 0.74);
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  font-size: 0.92rem;
  font-weight: 700;
  transform: rotate(-1deg);
}

.section {
  margin-block: 82px;
}

.section-heading {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--hot-pink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.scribble {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.scribble::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -3%;
  right: -3%;
  bottom: 4px;
  height: 15px;
  border-radius: 50%;
  background: var(--baby-pink);
  transform: rotate(-1deg);
}

.featured-card {
  display: grid;
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.featured-art {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  border-right: var(--border);
  background:
    radial-gradient(circle at 24% 26%, #fff 0 5%, transparent 5.4%),
    radial-gradient(circle at 72% 68%, var(--lime) 0 9%, transparent 9.4%),
    repeating-radial-gradient(circle at center, transparent 0 32px, rgba(255,255,255,.32) 33px 36px),
    linear-gradient(145deg, #ff75b5, #b999f3 58%, #82d7ff);
}

.featured-art::before {
  content: "becoming\A more me";
  white-space: pre;
  padding: 26px;
  border: var(--border);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-transform: lowercase;
  transform: rotate(-5deg);
}

.featured-art::after {
  content: "✦ ♡ ✦";
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--white);
  font-size: 1.8rem;
  letter-spacing: 0.18em;
  text-shadow: 2px 2px 0 var(--ink);
  transform: rotate(8deg);
}

.featured-copy {
  display: flex;
  padding: clamp(28px, 5vw, 58px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.category-tag {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 5px 10px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  color: #6a318e;
  background: #f1e5ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-copy h3,
.post-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.featured-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.3vw, 4rem);
}

.featured-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  font-weight: 900;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--pink);
  text-underline-offset: 5px;
}

.filter-bar {
  display: flex;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  padding: 8px 13px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: background 150ms ease, transform 150ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button[aria-pressed="true"] {
  background: var(--lime);
  transform: translateY(-2px);
}

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

.post-card {
  position: relative;
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-small);
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:nth-child(even) {
  transform: rotate(0.45deg);
}

.post-card:nth-child(odd) {
  transform: rotate(-0.35deg);
}

.post-card:hover,
.post-card:focus-within {
  z-index: 2;
  box-shadow: 10px 10px 0 rgba(33, 23, 44, 0.2);
  transform: translateY(-5px) rotate(0);
}

.post-card[hidden] {
  display: none;
}

.post-art {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  overflow: hidden;
  border-bottom: var(--border);
}

.post-art::before {
  position: relative;
  z-index: 2;
  font-family: Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  filter: drop-shadow(4px 5px 0 rgba(33, 23, 44, 0.22));
}

.post-art::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 4px dotted rgba(255, 255, 255, 0.8);
  border-radius: 45% 55% 43% 57%;
  animation: slow-spin 16s linear infinite;
}

.art-unmasking {
  background: linear-gradient(135deg, #b99af3, #ffd0e6);
}

.art-unmasking::before {
  content: "🦋";
}

.art-motherhood {
  background: linear-gradient(135deg, #ff8fbd, #ffe38e);
}

.art-motherhood::before {
  content: "🧸";
}

.art-chronic {
  background: linear-gradient(135deg, #83dfff, #d9c3ff);
}

.art-chronic::before {
  content: "🌙";
}

.art-lifestyle {
  background: linear-gradient(135deg, #ff66ae, #c6f35a);
}

.art-lifestyle::before {
  content: "💄";
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

.post-card-copy {
  display: flex;
  padding: 26px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.post-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.post-card h3 a {
  text-decoration: none;
}

.post-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.post-card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.post-meta {
  display: flex;
  margin-top: auto;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.post-meta span + span::before {
  content: "✦";
  margin-right: 8px;
  color: var(--pink);
}

.about-slice {
  position: relative;
  display: grid;
  padding: clamp(30px, 6vw, 72px);
  overflow: hidden;
  border: var(--border);
  border-radius: 36px 16px 36px 16px;
  background:
    linear-gradient(105deg, rgba(255,249,239,.98), rgba(255,240,247,.96)),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(141,98,214,.1) 31px 32px);
  box-shadow: var(--shadow);
  gap: 40px;
  grid-template-columns: 0.7fr 1.3fr;
}

.about-slice::after {
  content: "real life lives here ♡";
  position: absolute;
  right: 24px;
  bottom: 16px;
  color: var(--purple);
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  font-weight: 700;
  transform: rotate(-2deg);
}

.about-sticker {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: var(--border);
  border-radius: 48% 52% 41% 59%;
  background: linear-gradient(145deg, var(--pink), var(--lavender) 62%, var(--blue));
  box-shadow: 10px 10px 0 var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(4rem, 10vw, 8rem);
  transform: rotate(-4deg);
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  margin: 0 0 18px;
  font-family: Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.98;
}

.about-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.social-strip {
  display: flex;
  padding: clamp(24px, 5vw, 48px);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: 8px 8px 0 var(--pink);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.social-strip h2 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.social-strip p {
  margin: 0;
  color: #e6dbec;
}

.site-footer {
  margin-top: 92px;
  padding: 42px 0 30px;
  border-top: var(--border);
  background: rgba(255, 199, 226, 0.55);
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 0.9fr 1fr;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
}

.footer-grid p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-links a {
  font-weight: 800;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(33, 23, 44, 0.24);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Inner pages */
.page-hero {
  position: relative;
  margin: 46px auto 70px;
  padding: clamp(40px, 8vw, 94px) clamp(28px, 7vw, 80px);
  overflow: hidden;
  border: var(--border);
  border-radius: 30px;
  background: linear-gradient(135deg, #ffd0e6 0%, #e3ceff 55%, #bcecff 100%);
  box-shadow: var(--shadow);
}

.page-hero::before {
  content: "✦";
  position: absolute;
  top: 14%;
  right: 10%;
  color: var(--lime);
  font-size: 7rem;
  text-shadow: 4px 4px 0 var(--ink);
  transform: rotate(12deg);
}

.page-title {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.page-lede {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
}

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

.value-card {
  padding: 26px;
  border: var(--border);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.value-card:nth-child(2) {
  background: var(--paper-pink);
  transform: translateY(12px);
}

.value-card:nth-child(3) {
  background: #f1eaff;
}

.value-card .icon {
  font-size: 2.4rem;
}

.value-card h3 {
  margin: 10px 0 8px;
  font-family: Georgia, serif;
  font-size: 1.65rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

/* Article pages */
.reading-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue), var(--lime));
}

.article-header {
  padding: 58px 0 36px;
  text-align: center;
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.post-title {
  max-width: 940px;
  margin: 0 auto 22px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.article-header .post-meta {
  justify-content: center;
}

.article-cover {
  position: relative;
  display: grid;
  min-height: 390px;
  margin: 18px auto 58px;
  place-items: center;
  overflow: hidden;
  border: var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.article-cover::before,
.article-cover::after {
  position: absolute;
  pointer-events: none;
}

.article-cover::before {
  top: 18px;
  left: 7%;
  font-size: clamp(4rem, 9vw, 7rem);
  filter: drop-shadow(5px 6px 0 rgba(33, 23, 44, 0.2));
  transform: rotate(-10deg);
}

.article-cover::after {
  content: "✦  ♡  ✦";
  right: 5%;
  bottom: 20px;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.15em;
  text-shadow: 3px 3px 0 var(--ink);
  transform: rotate(7deg);
}

.cover-unmasking {
  background: repeating-radial-gradient(circle at center, transparent 0 42px, rgba(255,255,255,.25) 43px 47px), linear-gradient(135deg, #b99af3, #ffd0e6);
}

.cover-unmasking::before {
  content: "🦋";
}

.cover-motherhood {
  background: repeating-linear-gradient(45deg, transparent 0 34px, rgba(255,255,255,.2) 35px 38px), linear-gradient(135deg, #ff8fbd, #ffe38e);
}

.cover-motherhood::before {
  content: "🧸";
}

.cover-chronic {
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.75) 0 5%, transparent 5.4%), repeating-radial-gradient(circle at 80% 20%, transparent 0 28px, rgba(255,255,255,.18) 29px 32px), linear-gradient(135deg, #83dfff, #d9c3ff);
}

.cover-chronic::before {
  content: "🌙";
}

.cover-lifestyle {
  background: radial-gradient(circle at 20% 75%, rgba(255,255,255,.7) 0 4%, transparent 4.5%), repeating-linear-gradient(-35deg, transparent 0 40px, rgba(255,255,255,.22) 41px 44px), linear-gradient(135deg, #ff66ae, #c6f35a);
}

.cover-lifestyle::before {
  content: "💄";
}

.article-cover .cover-note {
  position: relative;
  z-index: 2;
  padding: 22px 28px;
  border: var(--border);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: rotate(-3deg);
}

.article-layout {
  display: grid;
  max-width: 1030px;
  margin-inline: auto;
  align-items: start;
  gap: 50px;
  grid-template-columns: minmax(0, 1fr) 230px;
}

.article-body {
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  line-height: 1.85;
}

.article-body > p:first-child::first-letter {
  float: left;
  margin: 9px 8px 0 0;
  color: var(--hot-pink);
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 0.72;
}

.article-body h2 {
  margin: 48px 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
}

.article-body blockquote {
  position: relative;
  margin: 38px 0;
  padding: 26px 30px;
  border: var(--border);
  border-radius: 8px 22px 8px 22px;
  background: var(--paper-pink);
  box-shadow: var(--shadow-small);
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.45;
}

.article-body blockquote::before {
  content: "“";
  position: absolute;
  top: -27px;
  left: 12px;
  color: var(--pink);
  font-size: 5rem;
}

.article-body ul {
  padding-left: 1.3em;
}

.article-body li::marker {
  color: var(--pink);
}

.article-aside {
  position: sticky;
  top: 110px;
  padding: 20px;
  border: var(--border);
  border-radius: 18px;
  background: var(--lime);
  box-shadow: var(--shadow-small);
  font-size: 0.9rem;
  transform: rotate(1.5deg);
}

.article-aside strong {
  display: block;
  margin-bottom: 7px;
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.article-end {
  max-width: 760px;
  margin: 72px auto 0;
  padding: 30px;
  border: var(--border);
  border-radius: 22px;
  background: linear-gradient(135deg, #ffd7e9, #e5d7ff);
  box-shadow: var(--shadow);
  text-align: center;
}

.article-end h2 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.article-end p {
  margin: 0 0 19px;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 215px);
  place-items: center;
  text-align: center;
}

.not-found-card {
  max-width: 720px;
  padding: clamp(38px, 8vw, 80px);
  border: var(--border);
  border-radius: 36px;
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--pink);
}

.not-found-card .big {
  margin: 0;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  line-height: 0.8;
}

.not-found-card h1 {
  margin: 20px 0 10px;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 6vw, 4rem);
}

@media (max-width: 900px) {
  .hero {
    min-height: 760px;
    background-image: linear-gradient(180deg, rgba(225, 197, 238, 0.98) 0%, rgba(225, 197, 238, 0.78) 44%, rgba(225, 197, 238, 0.05) 68%), url("../images/hero.webp");
    background-position: 65% center;
  }

  .hero-copy {
    width: 76%;
    min-height: 500px;
    justify-content: flex-start;
  }

  .featured-card,
  .about-slice {
    grid-template-columns: 1fr;
  }

  .featured-art {
    min-height: 320px;
    border-right: 0;
    border-bottom: var(--border);
  }

  .about-sticker {
    width: min(270px, 70%);
    justify-self: center;
  }

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

  .article-aside {
    position: static;
    max-width: 440px;
    grid-row: 1;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 2px);
    right: 12px;
    left: 12px;
    display: none;
    padding: 20px;
    border: var(--border);
    border-radius: 16px;
    background: var(--paper);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 4px;
    text-align: center;
  }

  .hero {
    min-height: 720px;
    margin-top: 20px;
    border-radius: 24px;
    background-position: 63% bottom;
  }

  .hero-copy {
    width: 100%;
    min-height: auto;
    padding: 35px 23px;
  }

  .hero-title {
    font-size: clamp(3.05rem, 17vw, 5.6rem);
  }

  .hero::before {
    top: 48%;
    left: 12%;
  }

  .hero::after {
    left: auto;
    right: 5%;
    bottom: 25%;
  }

  .section {
    margin-block: 64px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .post-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card:nth-child(2) {
    transform: none;
  }

  .social-strip {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero::before {
    top: auto;
    right: 4%;
    bottom: 2%;
    font-size: 4rem;
  }

  .article-cover {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
