:root {
  --cream: #FBF6EE;
  --card: #FFFFFF;
  --coral: #D85A30;
  --coral-dark: #993C1D;
  --coral-light: #FAECE7;
  --teal: #0F6E56;
  --teal-dark: #085041;
  --teal-light: #E1F5EE;
  --green: #7C9A5E;
  --green-dark: #4A5E38;
  --green-light: #EEF3E6;
  --ink: #2C2C2A;
  --ink-secondary: #5F5E5A;
  --ink-muted: #8A8880;
  --border: #E7E1D3;
  --radius: 14px;
  --radius-sm: 8px;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background-color: var(--cream);
  background-image: radial-gradient(circle, rgba(44,44,42,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
}

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

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.brand-name {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 60;
  font-size: 21px;
  font-weight: 600;
  color: var(--teal-dark);
}

nav.site-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

nav.site-nav a {
  color: var(--ink-secondary);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

nav.site-nav a:hover, nav.site-nav a.active {
  color: var(--coral-dark);
  border-bottom-color: var(--coral);
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink-secondary);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-bottom: 2px solid transparent;
}

.nav-dropdown summary::-webkit-details-marker { display: none; }

.nav-dropdown summary:hover,
.nav-dropdown[open] summary {
  color: var(--coral-dark);
}

.nav-dropdown .chevron {
  width: 9px;
  height: 9px;
  transition: transform 0.15s ease;
}

.nav-dropdown[open] .chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(44,44,42,0.14);
  padding: 8px;
  width: 250px;
  z-index: 30;
  animation: ivyDropdownIn 0.18s ease;
}

@keyframes ivyDropdownIn {
  from {
    opacity: 0;
    translate: 0 -8px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

.nav-dropdown .nav-dropdown-menu a {
  display: block;
  padding: 6px 10px 6px 26px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.nav-dropdown .nav-dropdown-menu a:hover {
  background: var(--cream);
  color: var(--coral-dark);
}

.nav-dropdown .nav-dropdown-menu a.active {
  background: var(--coral-light);
  color: var(--coral-dark);
}

.dropdown-category {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 800;
  margin: 9px 10px 3px 2px;
}

.dropdown-category:first-child {
  margin-top: 4px;
}

@media (max-width: 640px) {
  .nav-dropdown-menu { left: auto; right: 0; transform: none; width: 220px; }
}

/* Hero */
.hero {
  text-align: center;
  padding: 48px 24px 40px;
  max-width: 720px;
  margin: 0 auto;
}

.hero-cluster {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 0 26px;
  opacity: 0;
  animation: heroFadeUp 0.6s ease 0.05s both;
}

.cluster-photo {
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 6px 16px rgba(44,44,42,0.16);
  margin: 0 -10px;
  position: relative;
}

.cluster-photo.c1 { width: 64px; height: 64px; rotate: -8deg; z-index: 1; }
.cluster-photo.c2 { width: 76px; height: 76px; rotate: 5deg; z-index: 2; top: 6px; }
.cluster-photo.c3 { width: 96px; height: 96px; rotate: -3deg; z-index: 4; }
.cluster-photo.c4 { width: 96px; height: 96px; rotate: 4deg; z-index: 4; }
.cluster-photo.c6 { width: 76px; height: 76px; rotate: -5deg; z-index: 2; top: 6px; }
.cluster-photo.c5 { width: 64px; height: 64px; rotate: 8deg; z-index: 1; }

@media (max-width: 560px) {
  .cluster-photo.c1, .cluster-photo.c5 { display: none; }
  .cluster-photo.c2, .cluster-photo.c6 { width: 68px; height: 68px; }
  .cluster-photo.c3, .cluster-photo.c4 { width: 84px; height: 84px; }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    translate: 0 14px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

.hero h1 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  font-style: italic;
  font-weight: 500;
  font-size: 42px;
  color: var(--coral-dark);
  margin: 0 0 12px;
  opacity: 0;
  animation: heroFadeUp 0.6s ease 0.15s both;
}

.hero p.subhead {
  font-size: 17px;
  color: var(--ink-secondary);
  opacity: 0;
  animation: heroFadeUp 0.6s ease 0.25s both;
  margin: 0 0 24px;
}

.hero .cta {
  display: inline-block;
  background: var(--coral);
  color: #FFF6F0;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  opacity: 0;
  animation: heroFadeUp 0.6s ease 0.35s both;
}

.hero .cta:hover { background: var(--coral-dark); }

/* Board grid on homepage */
.section-label {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.board-grid {
  column-count: 3;
  column-gap: 18px;
  margin-bottom: 40px;
}

@media (max-width: 760px) {
  .board-grid { column-count: 2; }
}
@media (max-width: 480px) {
  .board-grid { column-count: 1; }
}

.section-label {
  margin-top: 32px;
}

.section-label:first-of-type {
  margin-top: 0;
}

.board-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 18px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.board-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44,44,42,0.08);
}

.board-card .collage {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.board-card:hover .collage {
  transform: scale(1.04);
}

.board-card--tall .collage {
  aspect-ratio: 4 / 5;
}

.board-card .card-body {
  padding: 16px 18px 20px;
}

.board-card h3 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 50;
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 6px;
  color: var(--ink);
}

.board-card p {
  font-size: 13px;
  color: var(--ink-secondary);
  margin: 0 0 10px;
  line-height: 1.5;
}

.board-card .count {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 600;
}

.tint-teal { background: var(--teal-light); color: var(--teal-dark); }
.tint-coral { background: var(--coral-light); color: var(--coral-dark); }
.tint-green { background: var(--green-light); color: var(--green-dark); }

/* About section */
.about {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about-teaser {
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: left;
}

.teaser-portrait {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.about-teaser h2 {
  font-size: 20px;
  margin: 0 0 6px;
}

.about-teaser p {
  margin: 0 0 8px;
}

.read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
}

.about-page {
  padding-top: 8px;
}

.about-full {
  text-align: left;
  overflow: hidden;
}

.about-full::after {
  content: "";
  display: table;
  clear: both;
}

.float-photo {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(44,44,42,0.10);
}

.float-right {
  float: right;
  margin-left: 20px;
}

.float-left {
  float: left;
  margin-right: 20px;
}

@media (max-width: 560px) {
  .about-teaser { flex-direction: column; text-align: center; }
  .float-photo { width: 100%; height: 200px; float: none; margin: 0 0 16px; }
}

.about h2 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 70, "WONK" 1;
  font-style: italic;
  font-weight: 500;
  font-size: 27px;
  color: var(--coral-dark);
  margin-top: 0;
}

.about p {
  font-size: 15px;
  color: var(--ink-secondary);
  margin-bottom: 16px;
}

.about .disclosure {
  font-size: 12px;
  color: var(--ink-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--card);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin: 2px 0 22px;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: #E60023;
  box-shadow: 0 4px 14px rgba(44,44,42,0.10);
}

/* Board page */
.board-header {
  text-align: center;
  max-width: 620px;
  margin: 40px auto 8px;
  padding: 0 24px;
}

.board-header h1 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  font-style: italic;
  font-weight: 500;
  font-size: 34px;
  color: var(--coral-dark);
  margin: 0 0 10px;
}

.board-header p {
  color: var(--ink-secondary);
  font-size: 15px;
  margin: 0 0 6px;
}

.board-header .board-disclosure {
  font-size: 12px;
  color: var(--ink-muted);
  font-style: italic;
}

.featured-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 24px 0;
}

.featured-card {
  position: relative;
  background: var(--coral-light);
  border: 1.5px dashed var(--coral);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 620px;
  margin: 0 auto;
}

.featured-img-wrap {
  position: relative;
  flex-shrink: 0;
}

.featured-img-wrap img {
  width: 220px;
  height: 220px;
  border-radius: 14px;
  object-fit: contain;
  background: var(--green-light);
  padding: 8px;
  display: block;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(44,44,42,0.15);
  transform: rotate(-3deg);
}

.book-featured img {
  width: 165px;
  height: 220px;
  object-fit: contain;
  background: var(--green-light);
  border-radius: 10px;
  padding: 6px;
}

.doodle-arrow {
  position: absolute;
  width: 58px;
  height: 46px;
  top: -38px;
  right: -2px;
  transform: rotate(4deg);
}

.featured-card .label {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 80, "WONK" 1;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--coral-dark);
  margin: 0 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transform: rotate(-1deg);
}

.featured-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ink);
}

.featured-card p.fnote-intro {
  font-size: 12.5px;
  color: var(--ink-secondary);
  margin: 0 0 6px;
  line-height: 1.5;
}

.fnote-list {
  margin: 0;
  padding-left: 18px;
  font-size: 12.5px;
  color: var(--ink-secondary);
  line-height: 1.6;
}

.fnote-list li {
  margin-bottom: 3px;
}

.fnote-list li::marker {
  color: var(--coral);
}

.featured-footer-row {
  margin-top: 12px;
}

.item-grid {
  column-count: 4;
  column-gap: 22px;
  padding: 40px 24px 64px;
  max-width: 1120px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .item-grid { column-count: 3; }
}
@media (max-width: 640px) {
  .item-grid { column-count: 2; }
}
@media (max-width: 420px) {
  .item-grid { column-count: 1; }
}

.item-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 22px;
  box-shadow: 0 1px 3px rgba(44,44,42,0.07), 0 1px 2px rgba(44,44,42,0.04);
}

.item-card .note {
  font-size: 12.5px;
  color: var(--coral-dark);
  font-style: italic;
  margin: 0 0 10px;
  line-height: 1.5;
}

.item-card .thumb {
  overflow: hidden;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.item-card .thumb img {
  max-width: 100%;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.item-card .thumb a,
.item-card .book-thumb a,
.featured-img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.item-card .thumb a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-card:hover .thumb img {
  transform: scale(1.06);
}

.item-card .book-thumb {
  aspect-ratio: 3 / 4;
  background: var(--green-light);
}

.item-card .book-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.item-card:hover .book-thumb img {
  transform: scale(1.06);
}

.item-card .body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.item-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.35;
}

.item-card p {
  font-size: 13px;
  color: var(--ink-secondary);
  margin: 0 0 14px;
  line-height: 1.55;
  flex: 1;
}

.item-card .footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.shop-btn {
  background: var(--coral);
  color: #FFF6F0;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease, background 0.15s ease;
  display: inline-block;
}

.shop-btn:hover { background: var(--coral-dark); transform: translateY(-2px); }

.shop-btn.pending {
  background: var(--border);
  color: var(--ink-muted);
  cursor: default;
}

.affiliate-tag {
  font-size: 10px;
  color: var(--ink-muted);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 32px 24px 48px;
  font-size: 12px;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0 auto;
}

.site-footer a { color: var(--teal-dark); font-weight: 600; }

@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  nav.site-nav { gap: 14px; font-size: 13px; }
}
