/* ============================================================
   Elizabeth Rhodes — Author Website
   ============================================================ */

/* === TOKENS === */
:root {
  --teal:     #0CB8B4;
  --teal-dk:  #0A9C98;
  --teal-lt:  #EDF9F8;
  --yellow:   #F5B800;
  --yellow-lt:#FFFBEB;
  --coral:    #F97316;
  --coral-lt: #FFF7ED;
  --lavender: #7B61FF;
  --lav-lt:   #F0EEFF;
  --green:    #10B981;
  --green-lt: #ECFDF5;

  --ink:     #0F1117;
  --body:    #374151;
  --muted:   #6B7280;
  --subtle:  #9CA3AF;
  --border:  #E5E7EB;
  --cream:   #FAFAF9;
  --white:   #FFFFFF;

  --font-display: 'Manrope', sans-serif;
  --font-body:    'Inter', sans-serif;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-pill: 999px;

  --sh-xs: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
  --sh-sm: 0 4px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --sh-md: 0 12px 36px rgba(0,0,0,0.09), 0 3px 8px rgba(0,0,0,0.05);
  --sh-lg: 0 24px 64px rgba(0,0,0,0.12), 0 6px 16px rgba(0,0,0,0.06);
  --sh-book: 18px 18px 56px rgba(0,0,0,0.22), 4px 4px 12px rgba(0,0,0,0.10);

  --nav-h:  68px;
  --bar-h:  5px;
  --width:  1160px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--width);
  margin: 0 auto;
  padding: 0 32px;
}
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  font-weight: 800;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem);   letter-spacing: -0.02em; }
h4 { font-size: 1rem; font-weight: 700; }

p { max-width: 66ch; }
p + p { margin-top: 1.1em; }
em { font-style: italic; }

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* Eyebrow labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
  background: var(--teal-lt);
  color: var(--teal-dk);
}
.eyebrow--yellow   { background: var(--yellow-lt); color: #92660A; }
.eyebrow--coral    { background: var(--coral-lt);  color: #C2410C; }
.eyebrow--lavender { background: var(--lav-lt);    color: #5B21B6; }
.eyebrow--green    { background: var(--green-lt);  color: #065F46; }

.section-title    { margin-bottom: 14px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 52px;
  max-width: 52ch;
  line-height: 1.65;
}

/* === RAINBOW BAR === */
.rainbow-bar {
  height: var(--bar-h);
  background: linear-gradient(90deg,
    #0CB8B4 0%,
    #F5B800 25%,
    #FF6052 50%,
    #7B61FF 75%,
    #10B981 100%
  );
  flex-shrink: 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(15,17,23,0.20);
}
.btn--primary:hover { background: #1a1e2a; box-shadow: 0 6px 20px rgba(15,17,23,0.28); }

.btn--teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(12,184,180,0.28);
}
.btn--teal:hover { background: var(--teal-dk); box-shadow: 0 6px 20px rgba(12,184,180,0.38); }

.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(245,184,0,0.32);
}
.btn--yellow:hover { background: #DDA800; box-shadow: 0 6px 20px rgba(245,184,0,0.42); }

.btn--coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(249,115,22,0.28);
}
.btn--coral:hover { background: #EA6C00; box-shadow: 0 6px 20px rgba(249,115,22,0.38); }

.btn--soft {
  background: var(--teal-lt);
  color: var(--teal-dk);
  box-shadow: none;
}
.btn--soft:hover { background: #d4f0ee; box-shadow: var(--sh-xs); }

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: rgba(255,255,255,0.25); }

/* === NAVIGATION === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav {
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  transition: box-shadow 0.25s;
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.nav-logo span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dk);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color 0.14s, background 0.14s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--cream);
}
.nav-links a.active { color: var(--teal-dk); background: var(--teal-lt); }
.nav-links .btn--primary,
.nav-links .btn--teal { padding: 9px 20px; font-size: 0.8rem; color: var(--white); }
.nav-links .btn--primary:hover,
.nav-links .btn--teal:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.22s;
}

/* === HOME HERO === */
.home-hero {
  background: var(--white);
  padding: 72px 0 80px;
  overflow: hidden;
}
.home-hero .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: calc(90vh - var(--nav-h) - var(--bar-h));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-text h1 {
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-text p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 44ch;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero visual panel */
.hero-panel {
  background: var(--teal);
  border-radius: var(--r-xl);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-panel-inner {
  position: relative;
  z-index: 1;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Book mockup (placeholder) */
.book-mockup {
  background: var(--yellow);
  border-radius: 4px 14px 14px 4px;
  width: 220px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--sh-book);
  position: relative;
}
.book-mockup::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background: rgba(0,0,0,0.12);
  border-radius: 4px 0 0 4px;
}
.book-mockup-icon  { margin-bottom: 14px; display: flex; align-items: center; justify-content: center; }
.book-mockup-icon svg { width: 44px; height: 44px; opacity: 0.65; }
.book-mockup-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.book-mockup-author {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(15,17,23,0.55);
}

/* real image version */
.book-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* === ABOUT STRIP === */
.about-strip { background: var(--cream); }
.about-strip .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.author-photo-frame {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--teal);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 15%;
}
.about-photo-frame-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 15%;
}
.author-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
}
.author-photo-placeholder svg { width: 80px; height: 80px; }

.about-text h2 { margin-bottom: 18px; }
.about-text p  { color: var(--muted); }
.about-text p + p { margin-top: 1em; }
.about-text .btn { margin-top: 28px; }

/* === BOOK FEATURE === */
.book-feature { background: var(--white); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.book-feature-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}
.book-feature-inner--reverse {
  grid-template-columns: 1fr auto;
}
.book-feature-inner--reverse .book-feature-cover { order: 2; }
.book-feature-inner--reverse .book-feature-info  { order: 1; }

.book-feature-cover {
  width: 340px;
  flex-shrink: 0;
}
.book-feature-cover .book-mockup {
  width: 100%;
  min-height: 300px;
}
.book-feature-cover img {
  width: 100%;
  display: block;
}

.book-feature-info h2  { margin-bottom: 14px; }
.book-feature-info p   { color: var(--muted); }

.book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 28px;
}
.book-meta-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--teal-lt);
  color: var(--teal-dk);
}
.book-meta-tag:nth-child(2) { background: var(--yellow-lt); color: #92660A; }
.book-meta-tag:nth-child(3) { background: var(--coral-lt);  color: #C2410C; }
.book-meta-tag:nth-child(4) { background: var(--lav-lt);    color: #5B21B6; }
.book-meta-tag:nth-child(5) { background: var(--green-lt);  color: #065F46; }

.book-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* === BOOK INLINE SLIDER === */
.book-slider {
  position: relative;
  margin-top: 40px;
}
.slider-viewport {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  line-height: 0;
}
.slider-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.45s ease;
}
.slider-img.active {
  opacity: 1;
  position: relative;
  z-index: 2;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  border: none;
  font-size: 2rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
  transition: background 0.2s, transform 0.15s;
  z-index: 5;
  color: var(--ink);
}
.slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active { background: var(--teal); transform: scale(1.35); }

/* === PRESS GRID === */
.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Press page uses 3 columns so 5 cards sit in a clean 3+2 layout */
#press-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Homepage selected press — 3 cols on desktop, responsive like the rest */
.press-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.press-card { display: flex; flex-direction: column; }

.press-card-img {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--cream);
  box-shadow: var(--sh-xs);
}
.press-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.press-card:hover .press-card-img img { transform: scale(1.05); }
.press-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  padding: 16px;
  line-height: 1.4;
}

.press-card h3 { font-size: 0.98rem; margin-bottom: 8px; color: var(--ink); }
.press-card p  { font-size: 0.9rem; color: var(--muted); flex: 1; margin-bottom: 18px; }
.press-card .btn { align-self: flex-start; font-size: 0.78rem; padding: 9px 18px; }

/* === EVENTS === */
.events-list { display: flex; flex-direction: column; gap: 12px; }

.event-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.event-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }

.event-date        { text-align: center; }
.event-date .month {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dk);
}
.event-date .day {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.event-info h3 { font-size: 1rem; margin-bottom: 3px; }
.event-info p  { font-size: 0.86rem; color: var(--muted); max-width: none; }

.event-type {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.event-type--in-person { background: var(--teal-lt);  color: var(--teal-dk); }
.event-type--virtual   { background: var(--yellow-lt); color: #92660A; }
.event-type--podcast   { background: var(--lav-lt);    color: #5B21B6; }

/* === ETSY FEATURE === */
.etsy-feature {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  background: var(--teal-lt);
  border-radius: var(--r-xl);
  padding: 48px 56px;
  margin-bottom: 0;
}
.etsy-feature-text h3 { font-size: 1.5rem; margin-bottom: 14px; }
.etsy-feature-text p  { color: var(--muted); margin-bottom: 28px; max-width: 44ch; }
.etsy-feature-img { width: 300px; flex-shrink: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.etsy-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === PRINTS GRID === */
.prints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.print-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.print-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.print-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
}
.print-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.print-card:hover .print-card-img img { transform: scale(1.04); }
.print-card-info {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.print-card-info h3 { font-size: 1rem; color: var(--ink); }
.print-card-info p  { font-size: 0.85rem; color: var(--muted); flex: 1; margin-bottom: 14px; }

@media (max-width: 768px) {
  .etsy-feature { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .etsy-feature-img { width: 100%; margin: 0 auto; }
  .prints-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === COMING SOON === */
.coming-soon-card {
  background: var(--teal-lt);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--sh-sm);
}
.coming-soon-card h3 { margin-bottom: 12px; }
.coming-soon-card p  { color: var(--muted); margin: 0 auto; font-size: 0.96rem; }

.coming-soon-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}

/* === EMAIL STRIP === */
.email-strip {
  background: var(--teal);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.email-strip h2  { color: var(--white); margin-bottom: 10px; position: relative; z-index: 1; }
.email-strip p   { color: rgba(255,255,255,0.80); margin: 0 auto 28px; position: relative; z-index: 1; }

.email-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.email-form input {
  flex: 1;
  padding: 13px 20px;
  border-radius: var(--r-pill);
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.16);
  color: var(--white);
  outline: none;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.3);
  transition: background 0.15s;
}
.email-form input::placeholder { color: rgba(255,255,255,0.58); }
.email-form input:focus { background: rgba(255,255,255,0.24); }

/* === CONTACT STRIP === */
.contact-strip {
  background: var(--cream);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.contact-strip h2 { margin-bottom: 12px; }
.contact-strip p  { color: var(--muted); margin: 0 auto 28px; }
.contact-strip .btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--cream);
  padding: 80px 0 64px;
}
.page-hero h1     { margin-bottom: 14px; }
.page-hero p      { font-size: 1.1rem; color: var(--muted); }
.page-hero .eyebrow { margin-bottom: 18px; }

/* === ABOUT PAGE HERO === */
.about-hero {
  background: var(--teal);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.about-hero .container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-hero h1 { color: var(--white); margin-bottom: 10px; }
.about-hero-text .subtitle {
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  font-weight: 500;
  max-width: none;
}

.about-photo-wrap { display: flex; justify-content: center; }
.about-photo-frame-hero {
  width: 280px;
  height: 340px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  box-shadow: var(--sh-lg);
}
.about-photo-frame-hero svg { width: 80px; height: 80px; }
.about-photo-frame-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === ABOUT BIO === */
.about-bio .container { max-width: 800px; }
.about-bio h2 { margin-bottom: 22px; }
.about-bio p  { color: var(--muted); font-size: 1.04rem; }

/* === PRESS PAGE === */
.press-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: var(--cream);
  color: var(--muted);
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--sh-sm);
}

/* === NO EVENTS === */
.no-events {
  text-align: center;
  padding: 64px 24px;
  background: var(--cream);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xs);
}
.no-events h3 { margin-bottom: 10px; color: var(--muted); }
.no-events p  { color: var(--subtle); margin: 0 auto; }

/* === PAST EVENTS === */
.past-event-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.past-event-item:last-child { border-bottom: none; }
.past-event-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 9px;
}
.past-event-info p { font-size: 0.88rem; color: var(--muted); margin-top: 2px; }

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.footer-logo span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 2px;
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 28ch;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.14s;
}
.footer-col ul a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.30);
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-display);
  transition: background 0.14s, color 0.14s;
}
.social-links a:hover { background: var(--teal); color: var(--white); }

/* === DIVIDER === */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* === UTILS === */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* === GRID UTILITIES === */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.icon-cell {
  display: flex;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--teal-dk);
}
.icon-cell svg { width: 20px; height: 20px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .press-grid, #press-grid, .press-grid--three  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quote-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 64px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: calc(var(--nav-h) + var(--bar-h));
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 16px; text-align: center; }
  .nav-toggle  { display: flex; }

  .home-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    min-height: auto;
    padding: 40px 0 60px;
  }
  .hero-badge { margin: 0 auto 20px; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-panel { min-height: 360px; border-radius: var(--r-xl); }
  .book-mockup { width: 180px; min-height: 230px; }

  .about-strip .container  { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .author-photo-frame      { max-width: 100%; margin: 0 auto; }
  .about-text p            { margin-left: auto; margin-right: auto; }

  .book-feature-inner  { grid-template-columns: 1fr; text-align: center; }
  .book-feature-inner--reverse .book-feature-cover { order: unset; }
  .book-feature-inner--reverse .book-feature-info  { order: unset; }
  .book-feature-cover  { width: 260px; margin: 0 auto; }
  .book-meta           { justify-content: center; }
  .book-ctas           { justify-content: center; }

  .press-grid, #press-grid, .press-grid--three  { grid-template-columns: 1fr; }
  .hero-panel { display: none; }

  .event-card  { grid-template-columns: auto 1fr; gap: 16px; }
  .event-type  { grid-column: 2; }

  .about-hero .container { grid-template-columns: 1fr; text-align: center; }
  .about-photo-wrap      { order: -1; }
  .about-photo-frame-hero { width: 100%; height: auto; aspect-ratio: 4/5; }

  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .email-form { flex-direction: column; padding: 0 16px; }

  .two-col-grid { grid-template-columns: 1fr; gap: 40px; }
  .buy-grid     { grid-template-columns: 1fr; max-width: 320px; }
  .quote-grid   { grid-template-columns: 1fr; }
  .gallery-thumb { width: 150px; }
}

@media (max-width: 480px) {
  .press-grid, #press-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .container { padding: 0 20px; }
  .about-hero .container { gap: 40px; }
  .about-photo-frame-hero { width: 100%; height: auto; }
  .book-feature-cover { width: 220px; }
  .author-photo-frame { max-width: 100%; }
  .prints-grid { grid-template-columns: 1fr; }
  .etsy-feature-img { width: 100%; }
}
