*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper: #faf6f0;
  --ink: #2a2118;
  --ink-light: #6b5e4e;
  --yellow: #f9e84e;
  --yellow-dark: #f0d700;
  --pink: #ffb3c1;
  --blue: #b8dff0;
  --green: #c8eabc;
  --peach: #ffd4a8;
  --shadow: rgba(42, 33, 24, 0.15);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(249,232,78,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184,223,240,0.1) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(250,246,240,0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid rgba(42,33,24,0.08);
}
.nav-logo {
  font-family: 'Caveat', cursive;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-links { display: flex; gap: 0.4rem; list-style: none; }
.nav-links a {
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-light);
  text-decoration: none;
  padding: 0.3rem 0.9rem;
  border-radius: 3px;
  transition: all 0.2s;
  position: relative;
}
.nav-links a:hover {
  color: var(--ink);
  background: var(--yellow);
}

/* STICKY NOTE COMPONENT - Reusable */
.sticky {
  --width: 150px;
  --top: auto;
  --bottom: auto;
  --left: auto;
  --right: auto;
  --rotation: 0deg;
  --font-size: 1rem;
  --delay: 0s;
  
  position: absolute;
  width: var(--width);
  font-size: var(--font-size);
  font-family: 'Caveat', cursive;
  padding: 1rem 1.1rem 1.3rem;
  box-shadow: 3px 4px 12px var(--shadow), 0 1px 3px rgba(0,0,0,0.08);
  line-height: 1.4;
  pointer-events: none;
  transition: transform 0.3s ease;
  top: var(--top);
  bottom: var(--bottom);
  left: var(--left);
  right: var(--right);
  transform: rotate(var(--rotation));
}
.sticky::before {
  content: '';
  display: block;
  height: 0.5rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.06), transparent);
  position: absolute; top: 0; left: 0; right: 0;
  border-radius: 1px 1px 0 0;
}

/* Color Variants */
.sticky.yellow { background: var(--yellow); }
.sticky.pink   { background: var(--pink); }
.sticky.blue   { background: var(--blue); }
.sticky.green  { background: var(--green); }
.sticky.peach  { background: var(--peach); }

/* Animation Variant - fade in with pop */
.sticky.animate {
  opacity: 0;
  animation: popIn 0.5s ease var(--delay) forwards;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 620px;
  z-index: 2;
  position: relative;
}
.hero-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: var(--ink-light);
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}
h1 {
  font-family: 'Lora', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}
h1 em {
  font-style: italic;
  position: relative;
  display: inline-block;
}
h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: -2px; right: -2px;
  height: 12px;
  background: var(--yellow);
  z-index: -1;
  transform: rotate(-1deg);
}
.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.55s forwards;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none; border-radius: 3px;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s;
  box-shadow: 3px 3px 0 var(--ink-light);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink-light);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: 2px solid var(--ink);
  border-radius: 3px;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: var(--yellow);
}

/* Hero sticky note interaction */
#hero .sticky {
  pointer-events: all;
  cursor: default;
}
#hero .sticky:hover {
  transform: scale(1.04) rotate(0deg) !important;
  z-index: 10;
}

/* SECTION SHARED */
section { position: relative; padding: 6rem 3rem; }
.section-label {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--ink-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* ABOUT */
#about {
  background: white;
  border-top: 2px dashed rgba(42,33,24,0.1);
  border-bottom: 2px dashed rgba(42,33,24,0.1);
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-light);
  margin-bottom: 1.2rem;
}
.about-text p strong { color: var(--ink); font-weight: 600; }
.about-sticky-cluster {
  position: relative;
  height: 380px;
}
.about-sticky-cluster .sticky { pointer-events: all; cursor: default; }
.about-sticky-cluster .sticky:hover { transform: scale(1.04) rotate(0deg) !important; z-index: 10; }

/* BLOG POSTS */
#posts { background: var(--paper); }
.posts-inner { max-width: 1100px; margin: 0 auto; }
.posts-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.post-card {
  background: white;
  border-radius: 2px;
  padding: 2rem;
  border: 1.5px solid rgba(42,33,24,0.08);
  transition: all 0.25s;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(42,33,24,0.1);
}
.post-tag {
  display: inline-block;
  background: var(--yellow);
  font-family: 'Caveat', cursive;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
  transform: rotate(-1deg);
}
.post-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.post-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-light);
  margin-bottom: 1.2rem;
}
.post-meta {
  font-family: 'Caveat', cursive;
  font-size: 0.9rem;
  color: var(--ink-light);
}

/* BOOKS */
#books {
  background: var(--ink);
  color: var(--paper);
}
#books .section-label { color: rgba(250,246,240,0.5); }
#books h2 { color: var(--paper); }
.books-inner { max-width: 1100px; margin: 0 auto; }
.book-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.book-cover {
  background: var(--yellow);
  aspect-ratio: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}
.book-cover-title {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.book-cover-author {
  font-family: 'Caveat', cursive;
  font-size: 0.9rem;
  color: var(--ink-light);
  position: absolute;
  bottom: 1rem;
}
.book-info h3 {
  font-family: 'Lora', serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--paper);
}
.book-genre {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: rgba(250,246,240,0.5);
  margin-bottom: 1.2rem;
}
.book-info p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(250,246,240,0.75);
  margin-bottom: 1.8rem;
}
.coming-soon-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-family: 'Caveat', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  transform: rotate(-1deg);
}


/* EMAIL SIGNUP */
#signup {
  background: var(--yellow);
  text-align: center;
  padding: 5rem 3rem;
}
.signup-inner { max-width: 560px; margin: 0 auto; position: relative; }
#signup h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
#signup p {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.signup-form {
  display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap;
}
.signup-input {
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  padding: 0.75rem 1.4rem;
  border: 2px solid var(--ink);
  border-radius: 3px;
  background: white;
  color: var(--ink);
  width: 280px;
  outline: none;
}
.signup-input:focus { box-shadow: 3px 3px 0 var(--ink); }
.signup-input::placeholder { color: var(--ink-light); opacity: 0.7; }

/* Signup sticky note interaction */
#signup .sticky { pointer-events: all; cursor: default; }
#signup .sticky:hover { transform: scale(1.04) rotate(0deg) !important; z-index: 10; }

/* INSTAGRAM */
#instagram { background: var(--paper); text-align: center; }
.insta-inner { max-width: 900px; margin: 0 auto; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.insta-placeholder {
  aspect-ratio: 1;
  background: white;
  border: 1.5px solid rgba(42,33,24,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--ink-light);
  text-align: center;
  padding: 1rem;
  transition: all 0.2s;
  cursor: pointer;
}
.insta-placeholder:hover {
  transform: rotate(1deg) scale(1.03);
  box-shadow: 4px 4px 12px var(--shadow);
}
.insta-placeholder:nth-child(even) { background: var(--blue); }
.insta-placeholder:nth-child(3) { background: var(--pink); }
.insta-placeholder:nth-child(4) { background: var(--peach); }

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(250,246,240,0.6);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--paper);
}
footer p { font-size: 0.85rem; font-family: 'Caveat', cursive; font-size: 1rem; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.85) rotate(var(--r, 4deg)); }
  to   { opacity: 1; transform: scale(1) rotate(var(--r, 4deg)); }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* WRITING PAGE */
.page-header {
  background: var(--paper);
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.page-header-inner {
  max-width: 800px;
  z-index: 2;
}
.page-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: var(--ink-light);
  margin-bottom: 0.8rem;
}
.page-header h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.page-header h1 em {
  font-style: italic;
  position: relative;
  display: inline-block;
}
.page-header h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: -2px; right: -2px;
  height: 10px;
  background: var(--pink);
  z-index: -1;
  transform: rotate(-1deg);
}
.page-header p {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 600px;
}

/* Header sticky notes */
.header-sticky {
  pointer-events: all;
  cursor: default;
}
.header-sticky:hover {
  transform: scale(1.04) rotate(0deg) !important;
  z-index: 10;
}

/* Tabs */
.tabs-wrapper {
  background: white;
  padding: 3rem;
}
.tabs {
  max-width: 1100px;
  margin: 0 auto 2rem;
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid rgba(42,33,24,0.1);
  padding-bottom: 1rem;
}
.tab-btn {
  background: transparent;
  border: none;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-light);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.tab-btn:hover {
  color: var(--ink);
}
.tab-btn.active {
  color: var(--ink);
  border-bottom: 3px solid var(--yellow);
  margin-bottom: -1rem;
  padding-bottom: 1rem;
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-sticky-cluster { height: 280px; }
  .book-card { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
  .page-header { padding: 6rem 1.5rem; }
  .header-sticky { display: none; }
}

/* Active nav link indicator */
.nav-links a.active {
  color: var(--ink);
  background: var(--yellow);
}

/* PAGE HEADER */
.page-header {
  padding: 9rem 3rem 4rem;
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.page-header-inner { position: relative; z-index: 2; }
.page-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: var(--ink-light);
  margin-bottom: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}
.page-header h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}
.page-header h1 em {
  font-style: italic;
  position: relative;
  display: inline-block;
}
.page-header h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: -2px; right: -2px;
  height: 12px;
  background: var(--yellow);
  z-index: -1;
  transform: rotate(-1deg);
}
.page-header p {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

/* Floating sticky notes in header */
.header-sticky {
  position: absolute;
  pointer-events: none;
}
.hs1 { width: 155px; font-size: 0.95rem; top: 6rem; right: 8%; transform: rotate(4deg);
  opacity: 0; animation: popIn 0.5s ease 0.7s forwards; }
.hs2 { width: 140px; font-size: 0.9rem; top: 13rem; right: 24%; transform: rotate(-3deg);
  opacity: 0; animation: popIn 0.5s ease 0.9s forwards; }
.hs3 { width: 160px; font-size: 0.95rem; bottom: 1rem; right: 14%; transform: rotate(2deg);
  opacity: 0; animation: popIn 0.5s ease 1.1s forwards; }

/* TABS */
.tabs-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
}
.tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid rgba(42,33,24,0.1);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.5s forwards;
}
.tab-btn {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.7rem 2rem;
  border: none;
  background: transparent;
  color: var(--ink-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  position: relative;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 20%; right: 20%;
  height: 3px;
  background: var(--yellow);
}

/* TAB PANELS */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* SCATTERED STICKY NOTES between content */
.scatter-zone {
  position: relative;
  min-height: 80px;
  margin: 1rem 0 2rem;
}
.scatter-sticky {
  display: inline-block;
  margin: 0.5rem;
  font-size: 0.95rem;
  width: 160px;
  vertical-align: top;
}
.scatter-sticky:nth-child(1) { transform: rotate(-3deg); margin-top: 1rem; }
.scatter-sticky:nth-child(2) { transform: rotate(2deg); margin-top: 0.2rem; }
.scatter-sticky:nth-child(3) { transform: rotate(-1deg); margin-top: 1.5rem; }
.scatter-sticky:nth-child(4) { transform: rotate(4deg); margin-top: 0.5rem; }
.scatter-sticky:hover { transform: rotate(0deg) scale(1.05) !important; z-index: 10; transition: all 0.2s; }

/* POST GRID */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.post-card {
  background: white;
  border-radius: 2px;
  padding: 2rem;
  border: 1.5px solid rgba(42,33,24,0.08);
  transition: all 0.25s;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s, translateY 0.25s;
}
.post-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.post-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(42,33,24,0.1);
}
.post-tag {
  display: inline-block;
  background: var(--yellow);
  font-family: 'Caveat', cursive;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
  transform: rotate(-1deg);
  display: inline-block;
}
.post-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.post-card .post-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-light);
  margin-bottom: 1.2rem;
  font-family: 'Lora', serif;
  font-style: italic;
}
.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-meta {
  font-family: 'Caveat', cursive;
  font-size: 0.95rem;
  color: var(--ink-light);
}
.post-read {
  font-family: 'Caveat', cursive;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
  transition: all 0.2s;
}
.post-read:hover { background: var(--yellow); padding: 0 3px 1px; }

/* Warning sticky on card */
.card-sticky {
  position: absolute;
  top: -12px; right: 16px;
  font-size: 0.78rem;
  padding: 0.4rem 0.6rem 0.6rem;
  pointer-events: none;
  width: 100px;
}
.card-sticky.rotate-left { transform: rotate(-3deg); }
.card-sticky.rotate-right { transform: rotate(3deg); }

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--ink-light);
}
.empty-state .sticky {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  width: 200px;
  transform: rotate(-2deg);
}
.empty-state p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
}

/* BOTTOM CTA */
.bottom-cta {
  text-align: center;
  padding: 4rem 3rem 6rem;
  border-top: 2px dashed rgba(42,33,24,0.1);
  max-width: 1100px;
  margin: 0 auto;
}
.bottom-cta p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--ink-light);
  margin-bottom: 1.2rem;
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(250,246,240,0.6);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
}
footer p { font-family: 'Caveat', cursive; font-size: 1rem; }

/* BUTTONS */
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none; border-radius: 3px;
  cursor: pointer; text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 3px 3px 0 var(--ink-light);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink-light);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .page-header { padding: 7rem 1.5rem 3rem; }
  .tabs-wrapper { padding: 0 1.5rem; }
  .hs1, .hs2, .hs3 { display: none; }
  .posts-grid { grid-template-columns: 1fr; }
}
