/* =========================================================
   大胸女友 — Hand-drawn Zine Style
   Cormorant + Montserrat · #fafaf8 / #4a4a4a / #1a1a1a
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #fafaf8;
  color: #4a4a4a;
  font-family: 'Montserrat', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper texture overlay via pseudo-element on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(26,26,26,0.4) 2px,
      rgba(26,26,26,0.4) 3px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 4px,
      rgba(26,26,26,0.15) 4px,
      rgba(26,26,26,0.15) 5px
    );
}

a { color: #1a1a1a; text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-style: wavy; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant', 'Georgia', serif;
  color: #1a1a1a;
  line-height: 1.2;
  font-weight: 600;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Site Wrapper ── */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =========================================================
   NAVIGATION
   header > nav > p > a  (spec-required structure)
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fafaf8;
  border-bottom: 1.5px solid #1a1a1a;
  /* slight hand-drawn skew on border */
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  gap: 1rem;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  flex: 1;
  margin: 0;
}

.nav-right {
  justify-content: flex-end;
}

.nav-brand {
  font-family: 'Cormorant', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transform: rotate(-0.4deg);
  display: inline-block;
}

.nav-brand:hover {
  text-decoration: none;
  transform: rotate(0.4deg);
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #4a4a4a;
  padding: 0.5rem 0.7rem;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: none;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav-link:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
  text-decoration: none;
  transform: rotate(-0.6deg);
}

/* CTA pill button */
.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fafaf8;
  background: #1a1a1a;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid #1a1a1a;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: none;
  margin-left: 0.4rem;
}

.nav-cta:hover {
  background: #4a4a4a;
  border-color: #4a4a4a;
  text-decoration: none;
  transform: rotate(0.5deg) translateY(-1px);
}

/* Anchor bar (category page secondary nav) */
.anchor-bar {
  position: sticky;
  top: 60px;
  z-index: 190;
  background: #fafaf8;
  border-bottom: 1px solid rgba(26,26,26,0.2);
  padding: 0.5rem 0;
}

.anchor-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.anchor-pill {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #4a4a4a;
  border: 1px solid #4a4a4a;
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: none;
}

.anchor-pill:hover {
  background: #1a1a1a;
  color: #fafaf8;
  border-color: #1a1a1a;
  text-decoration: none;
  transform: rotate(-0.5deg);
}

/* =========================================================
   PAGE BODY
   ========================================================= */
.page-body {
  flex: 1;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #4a4a4a;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.breadcrumb a {
  color: #4a4a4a;
}

.breadcrumb a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

.bc-sep {
  opacity: 0.5;
  font-family: 'Cormorant', serif;
}

/* =========================================================
   HOME LAYOUT
   ========================================================= */
.main-home {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.home-article {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* Hero */
.hero-block {
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3rem;
  border-bottom: 1.5px solid #1a1a1a;
  margin-bottom: 3rem;
  position: relative;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #4a4a4a;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.hero-h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  max-width: 18em;
  margin-bottom: 1.2rem;
  /* raw, slightly uneven */
  transform: rotate(-0.2deg);
}

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #4a4a4a;
  max-width: 36em;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fafaf8;
  background: #1a1a1a;
  border: 1.5px solid #1a1a1a;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  min-height: 44px;
  transition: none;
  align-self: flex-start;
}

.hero-btn:hover {
  background: transparent;
  color: #1a1a1a;
  text-decoration: none;
  transform: rotate(0.5deg);
}

/* Home content */
.home-content {
  max-width: 68ch;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  color: #4a4a4a;
}

/* Home categories grid */
.home-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.home-category-block {
  border-top: 1.5px solid #1a1a1a;
  padding-top: 1.25rem;
}

.home-cat-title {
  font-family: 'Cormorant', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.home-cat-title a {
  color: #1a1a1a;
}

.home-cat-title a:hover {
  text-decoration: underline;
  text-decoration-style: wavy;
}

/* Entry list (dl > dt > a + dd) */
.entry-list {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(26,26,26,0.12);
}

.entry-list:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.entry-list dt {
  margin-bottom: 0.25rem;
}

.entry-link {
  font-family: 'Cormorant', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.entry-link:hover {
  text-decoration: underline;
  text-decoration-style: wavy;
}

.entry-list dd {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: #4a4a4a;
  line-height: 1.6;
}

.card-date {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: rgba(74,74,74,0.6);
  margin-top: 0.3rem;
}

/* =========================================================
   CATEGORY LAYOUT
   ========================================================= */
.main-cat {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cat-article {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.cat-hero {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid #1a1a1a;
}

.cat-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a4a4a;
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.cat-h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  transform: rotate(-0.15deg);
  display: inline-block;
}

.cat-desc {
  font-size: 0.95rem;
  color: #4a4a4a;
  max-width: 55ch;
  line-height: 1.65;
}

.cat-content {
  max-width: 65ch;
  font-size: 1.05rem;
  color: #4a4a4a;
  margin-bottom: 3rem;
  line-height: 1.75;
}

/* Category entry list */
.cat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cat-entry {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(26,26,26,0.15);
}

.cat-entry:last-child {
  border-bottom: 1px solid rgba(26,26,26,0.15);
}

.cat-entry-dt {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.cat-entry-num {
  font-family: 'Cormorant', serif;
  font-size: 0.85rem;
  color: rgba(26,26,26,0.3);
  font-weight: 400;
  flex-shrink: 0;
  transform: rotate(-1deg);
  display: inline-block;
}

.cat-entry-link {
  font-family: 'Cormorant', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
}

.cat-entry-link:hover {
  text-decoration: underline;
  text-decoration-style: wavy;
}

.cat-entry-dd {
  grid-column: 1 / -1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: #4a4a4a;
  line-height: 1.65;
}

.cat-entry-img {
  margin-top: 0.75rem;
  border-radius: 10px;
  overflow: hidden;
  max-width: 360px;
}

.cat-entry-img img {
  border-radius: 10px;
  width: 100%;
}

.cat-entry-desc {
  margin-bottom: 0.25rem;
}

/* =========================================================
   ENTRY LAYOUT
   ========================================================= */
.entry-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: start;
}

.entry-main {
  min-width: 0;
}

.entry-article {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.entry-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1.5px solid #1a1a1a;
}

.entry-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a4a4a;
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.entry-h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 1rem;
  transform: rotate(-0.2deg);
  display: inline-block;
}

.entry-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.entry-date,
.entry-date-mod {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  color: rgba(74,74,74,0.65);
}

.entry-hero-wrap {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
}

.entry-hero-img {
  width: 100%;
  border-radius: 10px;
}

.entry-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 68ch;
}

.entry-body h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed rgba(26,26,26,0.25);
}

.entry-body h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

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

.entry-body ul { list-style: disc; }
.entry-body ol { list-style: decimal; }

.entry-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.entry-body blockquote {
  border-left: 3px solid #1a1a1a;
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: rgba(26,26,26,0.03);
  font-style: italic;
}

.entry-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.entry-body th,
.entry-body td {
  border: 1px solid rgba(26,26,26,0.2);
  padding: 0.6rem 0.9rem;
  text-align: left;
}

.entry-body th {
  background: rgba(26,26,26,0.06);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.entry-footer-nav {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26,26,26,0.15);
}

.back-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #4a4a4a;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(26,26,26,0.3);
  border-radius: 50px;
  display: inline-block;
  min-height: 40px;
  align-items: center;
}

.back-link:hover {
  background: #1a1a1a;
  color: #fafaf8;
  border-color: #1a1a1a;
  text-decoration: none;
  transform: rotate(-0.4deg);
}

/* Entry aside */
.entry-aside {
  padding-top: 2rem;
  position: sticky;
  top: 80px;
}

.aside-block {
  margin-bottom: 2.5rem;
  padding: 1.25rem;
  background: rgba(26,26,26,0.02);
  border: 1px solid rgba(26,26,26,0.1);
  border-radius: 10px;
  /* slight tilt for raw feel */
  transform: rotate(0.3deg);
}

.aside-block--cats {
  transform: rotate(-0.25deg);
}

.aside-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.5);
  display: block;
  margin-bottom: 1rem;
}

.entry-list--sibling {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
}

.aside-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #4a4a4a;
  display: inline-block;
  margin-top: 0.5rem;
}

.aside-more:hover {
  color: #1a1a1a;
}

.aside-cat-list li {
  margin-bottom: 0.6rem;
}

.aside-cat-list a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: #4a4a4a;
  font-weight: 400;
}

.aside-cat-list a:hover {
  color: #1a1a1a;
}

/* =========================================================
   ABOUT LAYOUT
   ========================================================= */
.about-layout {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-main {
}

.about-article {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.about-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid #1a1a1a;
}

.about-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.5);
  margin-bottom: 0.75rem;
}

.about-h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 1rem;
  transform: rotate(-0.2deg);
  display: inline-block;
}

.about-lead {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
  max-width: 55ch;
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 3rem;
}

.about-body h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.about-body p {
  margin-bottom: 1.2rem;
}

.about-cats {
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(26,26,26,0.2);
}

.about-cats-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(26,26,26,0.5);
  margin-bottom: 0.75rem;
}

.about-cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-cat-list li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #4a4a4a;
  border: 1px solid rgba(26,26,26,0.3);
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
  display: inline-block;
  min-height: 40px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.about-cat-list li a:hover {
  background: #1a1a1a;
  color: #fafaf8;
  border-color: #1a1a1a;
  text-decoration: none;
  transform: rotate(0.4deg);
}

/* =========================================================
   PROSE LAYOUT (privacy / default)
   ========================================================= */
.prose-layout {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.prose-main {}

.prose-article {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.prose-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1.5px solid #1a1a1a;
}

.prose-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.5);
  margin-bottom: 0.75rem;
}

.prose-h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  transform: rotate(-0.2deg);
  display: inline-block;
}

.prose-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 3rem;
}

.prose-body h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px dashed rgba(26,26,26,0.2);
}

.prose-body h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose-body p { margin-bottom: 1.2rem; }
.prose-body ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.prose-body li { margin-bottom: 0.4rem; }

.prose-footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.prose-footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4a4a4a;
  border: 1px solid rgba(26,26,26,0.3);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.prose-footer-links a:hover {
  background: #1a1a1a;
  color: #fafaf8;
  border-color: #1a1a1a;
  text-decoration: none;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #1a1a1a;
  color: #fafaf8;
  margin-top: auto;
}

.footer-cta-block {
  padding: 4rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(250,250,248,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-cta-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #fafaf8;
  line-height: 1.3;
  max-width: 30em;
  margin-bottom: 0;
}

.footer-cta-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  background: #fafaf8;
  border: 1.5px solid #fafaf8;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  transition: none;
}

.footer-cta-btn:hover {
  background: transparent;
  color: #fafaf8;
  text-decoration: none;
  transform: rotate(-0.4deg);
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid rgba(250,250,248,0.08);
}

.footer-brand {
  font-family: 'Cormorant', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fafaf8;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.footer-brand-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(250,250,248,0.55);
  line-height: 1.65;
  margin-bottom: 0;
}

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.45);
  display: block;
  margin-bottom: 1rem;
}

.footer-nav li {
  margin-bottom: 0.6rem;
}

.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(250,250,248,0.7);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.footer-nav a:hover {
  color: #fafaf8;
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: rgba(250,250,248,0.35);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: rgba(250,250,248,0.35);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: rgba(250,250,248,0.7);
  text-decoration: underline;
}

/* =========================================================
   SCROLL REVEAL (JS-driven, prefers-reduced-motion off)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px) rotate(0.3deg);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
  body::before { display: none; }
}

/* =========================================================
   HOVER MICRO-INTERACTIONS
   ========================================================= */
.cat-entry {
  transition: none;
}

.cat-entry:hover .cat-entry-link {
  text-decoration: underline;
  text-decoration-style: wavy;
}

.entry-list:hover .entry-link {
  letter-spacing: 0.01em;
}

/* =========================================================
   RESPONSIVE — Tablet
   ========================================================= */
@media (max-width: 960px) {
  .entry-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .entry-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .aside-block,
  .aside-block--cats {
    transform: none;
  }

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

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

/* =========================================================
   RESPONSIVE — Mobile (≤768px)
   ========================================================= */
@media (max-width: 768px) {
  .nav-inner {
    height: 56px;
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .nav-left {
    display: none;
  }

  .nav-right {
    gap: 0.25rem;
  }

  .nav-link {
    font-size: 0.65rem;
    padding: 0.45rem 0.55rem;
  }

  .nav-cta {
    font-size: 0.65rem;
    padding: 0.5rem 0.9rem;
  }

  .anchor-bar {
    top: 56px;
  }

  .hero-block {
    min-height: 45vh;
    padding-bottom: 2rem;
  }

  .hero-h1 {
    font-size: 2rem;
  }

  .home-categories {
    grid-template-columns: 1fr;
  }

  .entry-aside {
    grid-template-columns: 1fr;
  }

  .footer-cta-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1rem;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

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

  .footer-bottom {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cat-entry-dt {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* =========================================================
   RESPONSIVE — Small Mobile (≤480px)
   ========================================================= */
@media (max-width: 480px) {
  .nav-inner {
    padding: 0 0.75rem;
  }

  .nav-link {
    display: none;
  }

  .hero-h1 {
    font-size: 1.75rem;
  }

  .main-home,
  .main-cat,
  .about-layout,
  .prose-layout {
    padding: 0 0.875rem;
  }

  .entry-layout {
    padding: 0 0.875rem;
  }
}

/* =========================================================
   UTILITY
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
