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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #e8e0ed;
  line-height: 1.6;
}

/* Screen-reader only (visually hidden but accessible) */
.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;
}

/* Focus-visible ring for keyboard navigation */
*:focus-visible {
  outline: 2px solid #A429D9;
  outline-offset: 3px;
}

/* ========== SKIP LINK (accessibility) ========== */
.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  background: #1a1225;
  color: #e8e0ed;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  text-decoration: none;
  z-index: 10000;
  transition: transform 0.3s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translate(-50%, 0);
  outline: 2px solid #A429D9;
  outline-offset: 2px;
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168,85,247,0.1);
}

nav .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #c9a0dc;
  text-decoration: none;
}
nav .logo:hover {
  color: #e8e0ed;
}

nav .nav-links a {
  color: #a89bb0;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 40px;
  font-weight: 300;
  transition: color 0.3s, border-bottom 0.3s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav .nav-links a:hover {
  color: #e8e0ed;
  border-bottom: 2px solid #A429D9;
}

/* HAMBURGER — hidden on desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #c9a0dc;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== SECTION 1: HERO ========== */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0e2e 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.hero canvas#petals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 72px;
  font-weight: 400;
  letter-spacing: 12px;
  color: #e8e0ed;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.hero .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: #9b7db8;
  letter-spacing: 4px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.hero .tagline {
  font-size: 18px;
  font-weight: 300;
  color: #9484a4;
  letter-spacing: 2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background: #0a0a0a;
}

.section-divider .line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.25), transparent);
}

.section-divider .diamond {
  width: 6px;
  height: 6px;
  background: rgba(168,85,247,0.3);
  transform: rotate(45deg);
  margin: 0 20px;
  flex-shrink: 0;
}

.lace-divider {
  width: 100%;
  text-align: center;
  padding: 5px 0;
  background: #0a0a0a;
}

.lace-divider img {
  max-width: 900px;
  width: 80%;
  height: auto;
  opacity: 0.85;
}

/* ========== SECTION 2: ABOUT ========== */
.about {
  padding: 60px 60px 20px 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: visible;
  background: #0a0612;
  box-shadow: 0 0 0 100vmax #0a0612;
  clip-path: inset(0 -100vmax);
}

.about canvas#about-dust {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a0e2e, #2d1f3d);
  border: 1px solid rgba(168,85,247,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a7a9a;
  font-size: 14px;
  font-style: italic;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
}
.about-image.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-text {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.about-text.visible {
  opacity: 1;
  transform: translateX(0);
}
.about-image img {
  filter: grayscale(100%) contrast(1.1) brightness(0.85);
  transition: filter 0.8s ease, transform 0.8s ease;
}
.about-image:hover img {
  filter: grayscale(0%) contrast(1) brightness(1);
  transform: scale(1.03);
}

.about-text h2 {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  font-weight: 400;
  color: #c9a0dc;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.about-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: #b0a3bd;
  margin-bottom: 20px;
}

.inspirations-bar {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 60px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-style: italic;
  color: #9484a4;
  letter-spacing: 3px;
  line-height: 1.6;
}

/* ========== SECTION 3: IMMERSIVE BOOK SECTIONS ========== */
.book-immersive {
  position: relative;
  background: #0a0a0a;
}

.book-immersive .book-canvas {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: block;
  z-index: 0;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.book-panels {
  position: relative;
  z-index: 1;
  margin-top: -100vh;
}

.book-panel {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.book-panel.visible {
  opacity: 1;
  transform: translateY(0);
}

.book-title {
  font-family: 'Cinzel', serif;
  font-size: 52px;
  font-weight: 400;
  color: #d4a0e8;
  letter-spacing: 4px;
  margin-bottom: 24px;
  text-transform: uppercase;
  white-space: nowrap;
}

.book-genre {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: #c9a0dc;
  letter-spacing: 2px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.genre-bar {
  display: inline-block;
  width: 3px;
  height: 24px;
  background: #A429D9;
  border-radius: 2px;
}

.book-desc {
  font-size: 16px;
  font-weight: 300;
  color: #b0a3bd;
  line-height: 1.9;
  max-width: 650px;
  margin-bottom: 30px;
}

.book-buy {
  margin-top: 8px;
}

.book-buy a {
  color: #c9a0dc;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(168,85,247,0.3);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.book-buy a:hover {
  color: #e8e0ed;
  border-bottom-color: #A429D9;
}

.buy-sep {
  color: #9484a4;
  font-size: 13px;
}

.book-excerpt-panel blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: #d4c0e8;
  line-height: 1.8;
  max-width: 600px;
}

.excerpt-label {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 4px;
  color: #c9a0dc;
  text-transform: uppercase;
}

/* Book section progress bar */
.book-progress {
  position: sticky;
  top: 0;
  height: 0;
  width: 0;
  z-index: 3;
  pointer-events: none;
}

.book-progress-track {
  position: fixed;
  left: 40px;
  top: 35vh;
  width: 3px;
  height: 30vh;
  background: rgba(164, 41, 217, 0.15);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.book-progress-dot {
  position: fixed;
  left: 36px;
  top: 35vh;
  width: 11px;
  height: 11px;
  background: #c9a0dc;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease, top 0.3s ease;
}

.book-immersive.in-view .book-progress-track,
.book-immersive.in-view .book-progress-dot {
  opacity: 1;
}

/* ========== SECTION 5: HOODOO HOOD ========== */
.hoodoo {
  padding: 80px 60px;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0f0a 30%, #12090a 70%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

#bayou-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hoodoo .coming, .hoodoo h2, .hoodoo-subtitle, .hoodoo-tracklist, .hoodoo-player {
  position: relative;
  z-index: 1;
}

.hoodoo-player {
  margin: 16px auto 20px;
  max-width: 320px;
}
.hoodoo-player audio {
  width: 100%;
  height: 36px;
  opacity: 0.7;
  transition: opacity 0.3s;
  filter: sepia(0.3) saturate(0.6) brightness(0.9);
}
.hoodoo-player audio:hover {
  opacity: 1;
}

.hoodoo .coming {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8a7a6d;
  margin-bottom: 20px;
}

.hoodoo h2 {
  font-family: 'Cinzel', serif;
  font-size: 46px;
  font-weight: 600;
  color: #a88a5a;
  letter-spacing: 8px;
  margin-bottom: 12px;
}

.hoodoo-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: #8a7a6d;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.hoodoo-tracklist {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  columns: 2;
  column-gap: 60px;
}

.hoodoo-tracklist .track {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #9a8a7a;
  padding: 8px 0;
  border-bottom: 1px solid rgba(138, 106, 66, 0.08);
  transition: color 0.3s;
}

.hoodoo-tracklist .track:last-child {
  border-bottom: none;
}

.hoodoo-tracklist .track:hover {
  color: #c9a070;
}

.hoodoo-tracklist .track-num {
  display: inline-block;
  width: 42px;
  font-size: 14px;
  color: #8a7d6a;
  letter-spacing: 1px;
}

.hoodoo-tracklist .col-break {
  break-before: column;
}

/* ========== SECTION 6: PHOTOGRAPHY ========== */
.photography {
  padding: 40px 60px;
  position: relative;
  overflow: hidden;
  background: #0a0612;
}

.photography canvas#photo-bokeh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.photography h2,
.photography .photography-ig,
.photography .photo-grid {
  position: relative;
  z-index: 1;
}

.photography h2 {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  font-weight: 400;
  color: #c9a0dc;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.photography-ig {
  text-align: center;
  margin-bottom: 40px;
}

.photography-ig a {
  color: #9484a4;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.photography-ig a:hover {
  color: #e8e0ed;
  border-bottom-color: #A429D9;
}

.photo-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 10px;
}

.photo-grid .photo {
  background: linear-gradient(135deg, #120a1f, #1a0e2e, #150c22);
  border: 1px solid rgba(168,85,247,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a7a9a;
  font-size: 13px;
  font-style: italic;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.photo-grid .photo:hover,
.photo-grid .photo:focus-visible {
  transform: scale(1.02);
  border-color: rgba(168,85,247,0.3);
  z-index: 2;
}
.photo-grid .photo:focus-visible {
  outline: 2px solid #A429D9;
  outline-offset: 2px;
}

.photo-grid .photo span {
  z-index: 1;
  text-align: center;
  padding: 10px;
  display: none;
}

/* Empty state — subtle camera/lens icon for unfilled slots */
.photo-grid .photo:not(:has(img))::before {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(168,85,247,0.12);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.photo-grid .photo:not(:has(img))::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(168,85,247,0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.photo-grid .photo img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.6) saturate(0.8) brightness(0.85);
  transition: filter 0.5s ease;
}

.photo-grid .photo:hover img {
  filter: sepia(0) saturate(1) hue-rotate(0deg) brightness(1);
}

.photo-grid .photo.tall {
  grid-row: span 2;
}

.photo-grid .photo.wide {
  grid-column: span 2;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(5, 3, 10, 0);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: background 0.4s ease, opacity 0.4s ease;
}

.lightbox.open {
  pointer-events: auto;
  opacity: 1;
  background: rgba(5, 3, 10, 0.95);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(168,85,247,0.15);
  box-shadow: 0 0 60px rgba(168,85,247,0.1);
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.lightbox.open .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 36px;
  color: #c9a0dc;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 1001;
}

.lightbox-close:hover {
  color: #fff;
}

/* ========== SECTION 7: SUBSCRIBE ========== */
.connect {
  padding: 40px 60px;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #110a1e 100%);
}

.connect h2 {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  font-weight: 400;
  color: #c9a0dc;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(26, 14, 46, 0.6);
  border: 1px solid rgba(168,85,247,0.15);
  border-right: none;
  color: #e8e0ed;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  outline: none;
  transition: border-color 0.3s;
}

.subscribe-form input::placeholder {
  color: #8a7d9a;
}

.subscribe-form input:focus {
  border-color: rgba(168,85,247,0.35);
}

.subscribe-form button {
  padding: 14px 30px;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.15);
  color: #c9a0dc;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.subscribe-form button:hover {
  background: rgba(168,85,247,0.3);
  color: #e8e0ed;
}

/* ========== FOOTER ========== */
footer {
  padding: 40px 60px;
  text-align: center;
  font-size: 12px;
  color: #8a7d9a;
  border-top: 1px solid rgba(168,85,247,0.05);
  line-height: 2;
}
footer a {
  color: #c9a0dc;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
footer a:hover {
  color: #e8e0ed;
  border-bottom-color: #A429D9;
}

/* ========== RESPONSIVE — TABLET (max 1024px) ========== */
@media (max-width: 1024px) {
  /* NAV — HAMBURGER on tablet and below */
  nav {
    padding: 16px 30px;
    flex-wrap: wrap;
  }
  .hamburger { display: block; }
  nav .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 16px 0 8px;
    gap: 0;
    border-top: 1px solid rgba(168,85,247,0.1);
    margin-top: 10px;
  }
  nav .nav-links.open { display: flex; }
  nav .nav-links a {
    margin-left: 0;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(168,85,247,0.05);
  }
  nav .nav-links a:last-child { border-bottom: none; }

  .hero h1 { font-size: 52px; letter-spacing: 8px; }
  .hero .subtitle { font-size: 20px; }

  .about {
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 40px 30px 20px 30px;
  }
  .about-text h2 { font-size: 34px; }

  .inspirations-bar { font-size: 19px; padding: 20px 30px; }

  .book-title { font-size: 42px; }
  .book-panel { padding: 60px 30px 60px 40px; }
  .book-desc { font-size: 20px; }
  .book-excerpt-panel blockquote { font-size: 29px; }

  .hoodoo { padding: 60px 30px; }
  .hoodoo h2 { font-size: 38px; letter-spacing: 6px; }

  .photography { padding: 40px 30px; }
  .photography h2 { font-size: 34px; }

  .connect { padding: 40px 30px; }
  .connect h2 { font-size: 34px; }

  footer { padding: 30px; }
}

/* ========== RESPONSIVE — MOBILE (max 768px) ========== */
@media (max-width: 768px) {
  /* NAV — tighter padding on mobile */
  nav { padding: 14px 20px; }
  nav .logo { font-size: 18px; }

  /* HERO */
  .hero h1 { font-size: 36px; letter-spacing: 6px; }
  .hero .subtitle { font-size: 22px; letter-spacing: 2px; }
  .hero .tagline { font-size: 20px; }

  /* ABOUT */
  .about {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px 20px 20px;
  }
  .about-image { max-width: 280px; margin: 0 auto; }
  .about-text h2 { font-size: 28px; text-align: center; }
  .about-text p { font-size: 19px; }

  .inspirations-bar { font-size: 21px; padding: 16px 20px; letter-spacing: 1px; }

  /* LACE */
  .lace-divider img { width: 90%; }

  /* BOOKS (immersive) */
  .book-title { font-size: 32px; letter-spacing: 3px; }
  .book-panel { padding: 40px 20px 40px 30px; }
  .book-genre { font-size: 22px; }
  .book-desc { font-size: 19px; }
  .book-excerpt-panel blockquote { font-size: 27px; }
  .book-progress-track { left: 20px; }
  .book-progress-dot { left: 16px; }
  .book-buy a { font-size: 18px; }
  .buy-sep { font-size: 18px; }

  /* HOODOO HOOD */
  .hoodoo { padding: 50px 20px; }
  .hoodoo h2 { font-size: 28px; letter-spacing: 4px; }
  .hoodoo-subtitle { font-size: 20px; margin-bottom: 30px; }
  .hoodoo-tracklist {
    columns: 1;
    max-width: 100%;
  }
  .hoodoo-tracklist .col-break { break-before: auto; }
  .hoodoo-tracklist .track { font-size: 23px; }
  .hoodoo-tracklist .track-num { width: 36px; font-size: 13px; }

  /* PHOTOGRAPHY */
  .photography { padding: 30px 20px; }
  .photography h2 { font-size: 28px; }
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  /* LIGHTBOX */
  .lightbox-close { top: 16px; right: 16px; font-size: 28px; }

  /* SUBSCRIBE */
  .connect { padding: 30px 20px; }
  .connect h2 { font-size: 28px; margin-bottom: 24px; }
  .subscribe-form {
    flex-direction: column;
    max-width: 100%;
  }
  .subscribe-form input {
    border-right: 1px solid rgba(168,85,247,0.15);
    border-bottom: none;
  }
  .subscribe-form button { padding: 14px; }

  /* FOOTER */
  footer { padding: 24px 20px; font-size: 17px; }
}

/* ========== RESPONSIVE — SMALL MOBILE (max 480px) ========== */
@media (max-width: 480px) {
  /* Body text +5px bump (not headings) */
  body { font-size: 21px; }
  .about-text p { font-size: 20px; }
  .book-desc { font-size: 21px; }
  .hoodoo-tracklist .track { font-size: 23px; }

  .hero h1 { font-size: 28px; letter-spacing: 4px; }
  .hero .subtitle { font-size: 20px; }
  .hero .tagline { font-size: 20px; }

  .about-text h2 { font-size: 24px; }

  .inspirations-bar { font-size: 19px; }

  .book-title { font-size: 26px; letter-spacing: 2px; }
  .book-panel { padding: 30px 16px 30px 26px; }
  .book-genre { font-size: 22px; }
  .book-excerpt-panel blockquote { font-size: 24px; }
  .book-progress-track { left: 14px; }
  .book-progress-dot { left: 10px; }
  .book-buy a { font-size: 18px; }
  .buy-sep { font-size: 18px; }

  .hoodoo h2 { font-size: 22px; letter-spacing: 3px; }
  .hoodoo-subtitle { font-size: 20px; }

  .photography h2 { font-size: 24px; }

  footer { font-size: 17px; }
  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .photo-grid .photo {
    aspect-ratio: 1;
  }
  .photo-grid .photo.wide,
  .photo-grid .photo.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .connect h2 { font-size: 24px; }
}

/* ========== REDUCED MOTION (accessibility) ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .about-image img {
    transition: none !important;
  }
  canvas {
    display: none !important;
  }
}
