/* Base reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.section p + p {
  margin-top: 1.2rem;
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #07090b;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Layout helpers */

.section {
  padding: 5rem 1.5rem;
}

.section-alt {
  background: radial-gradient(circle at top, #14181f 0, #050608 55%);
  padding: 5rem 1.5rem;
}

.section-inner,
.header-inner,
.footer-inner,
.hero-content,
.sample-layout {
  max-width: 1120px;
  margin: 0 auto;
}
.sample-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.sample-reader-column {
  width: 100%;
}

.pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.pdf-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.2rem;
}

.pdf-subtitle {
  font-size: 0.85rem;
  color: #a0a0a0;
}

.pdf-open-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f6c453;
  text-decoration: none;
  white-space: nowrap;
}

.pdf-open-link:hover {
  color: #ffe09b;
}

.pdf-wrapper {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #050608;
  box-shadow: 0 18px 40px rgba(0,0,0,0.65);
}

.pdf-frame {
  width: 100%;
  height: 70vh;        /* controls reader height */
  border: none;
  display: block;
}

.sample-footnote {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: #9a9a9a;
}

/* Mobile PDF download notice - ONLY shows on mobile */
.mobile-pdf-notice {
  display: none !important;  /* Force hide on desktop */
}

/* Show on mobile only */
@media (max-width: 768px) {
  .mobile-pdf-notice {
    display: block !important;
    max-width: 100%;
    margin: 2.5rem auto 0;  /* More spacing from footnote */
    padding: 1.75rem 2rem;
    background: rgba(10, 12, 16, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
  }

  .mobile-pdf-notice h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }

  .mobile-pdf-notice p {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }

  .mobile-pdf-notice .btn {
    width: 100%;
  }
}

.sample-cta {
  max-width: 360px;
  padding: 1.75rem 2rem;
  background: rgba(10, 12, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.sample-cta h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.sample-cta p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .sample-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .pdf-frame {
    height: 60vh;
  }

  .sample-cta {
    max-width: 100%;
  }
}


/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #f5f5f5;
}


/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: #d7d7d7;
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: #f6c453;
  transition: width 0.18s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger button - hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f5f5f5;
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* MOBILE NAVIGATION - Consolidated styles */
@media (max-width: 768px) {
  .header-inner {
    padding: 0.85rem 1.5rem;
  }

  /* Show hamburger button on mobile */
  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  /* Mobile menu dropdown */
  .nav-links {
    position: absolute;
    top: 100%;  /* Sits directly below the header */
    right: 1.5rem;  /* Aligns with right padding of header */
    margin-top: 0;
    padding: 1rem 1.25rem;
    background: rgba(7, 9, 11, 0.97);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 10px 10px;
    list-style: none;
    display: none;  /* Hidden by default */
    flex-direction: column;
    gap: 0.75rem;
    min-width: 210px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  }

  /* Show menu when open */
  .nav-links.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.95rem;
  }

  .nav-links a::after {
    display: none;  /* Remove underline animation on mobile */
  }

  /* Hamburger animation when open */
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* Hero */

.hero {
  position: relative;
  padding: 6rem 1.5rem 5rem;
  background:
    linear-gradient(145deg, rgba(0,0,0,0.92), rgba(8,11,18,0.96)),
    url("../assets/bg-retail-chaos.jpg") center/cover no-repeat;
  color: #f5f5f5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(246,196,83,0.2), transparent 55%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  align-items: center;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #f6c453;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.3rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-blurb {
  max-width: 36rem;
  color: #e1e1e1;
  font-size: 0.98rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-cover {
  display: flex;
  justify-content: flex-end;
}

.cover-frame {
  width: 400px;
  max-width: 100%;
  aspect-ratio: 2.2 / 3.4;
  padding: 0.5rem;
}

.cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.sample-warning {
  background-color: #f6c453; /* deep muted red */
  color: #000000;
  padding: 0.6rem 0.8rem;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
 /*border-left: 4px solid #ffcc00; *//* subtle gold accent to match your button color */
  border-radius: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.sample-warning p {
  margin: 0;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  gap: 0.4rem;
  transition: background 0.16s ease-out, color 0.16s ease-out, border-color 0.16s ease-out, transform 0.1s ease-out;
}

.btn.primary {
  background: #f6c453;
  color: #111;
  font-weight: 600;
}

.btn.primary:hover {
  background: #ffd577;
  transform: translateY(-1px);
}

.btn.secondary {
  background: #181b20;
  border-color: #30343b;
  color: #f5f5f5;
}

.btn.secondary:hover {
  background: #22262d;
}

.btn.ghost {
  background: transparent;
  border-color: #f6c453;
  color: #f6c453;
}

.btn.ghost:hover {
  background: rgba(246,196,83,0.09);
}

.btn.danger {
  background: #d94545;
  color: #fff;
  font-weight: 600;
}

.btn.danger:hover {
  background: #e55a5a;
  transform: translateY(-1px);
}

.btn.full-width {
  width: 100%;
}


/* Sections */

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.section-kicker {
  color: #f6c453;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Character grid */

.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.character-card {
  background: radial-gradient(circle at top, #12161d, #050608);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.4rem;
  text-align: center;
  transition: border-color 0.18s ease-out, transform 0.18s ease-out;
}

.character-card:hover {
  border-color: rgba(246,196,83,0.4);
  transform: translateY(-4px);
}

.character-image {
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(246,196,83,0.4);
  background: #0a0c10;
}

.character-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.character-card h3 {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.character-card .role {
  font-size: 0.78rem;
  color: #f6c453;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.65rem;
}

.character-card p {
  font-size: 0.88rem;
  color: #c7c7c7;
  line-height: 1.5;
}

/* Details list */

.details-list {
  list-style: none;
  font-size: 0.92rem;
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: rgba(15, 18, 22, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.details-list li {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.4rem;
}

.details-list li:last-child {
  margin-bottom: 0;
}

.details-list li span {
  font-weight: 600;
  color: #f6c453;
  min-width: 80px;
}

/* Contact form */

.contact-form {
  max-width: 520px;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.87rem;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c9c9c9;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #050608;
  color: #f5f5f5;
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: 1px solid #f6c453;
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: #979797;
}

.contact-alt h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.contact-alt p {
  font-size: 0.93rem;
  margin-bottom: 0.8rem;
}

.contact-alt a {
  color: #f6c453;
  text-decoration: none;
}

.contact-alt a:hover {
  text-decoration: underline;
}

/* Modal */

.excerpt-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.68);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 100;
}

.excerpt-modal.active {
  display: flex;
}

.excerpt-dialog {
  position: relative;
  max-width: 800px;
  width: 100%;
  max-height: 80vh;
  background: #050608;
  border-radius: 16px;
  border: 1px solid rgba(246,196,83,0.5);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.85);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  border: none;
  background: none;
  color: #f5f5f5;
  font-size: 1.5rem;
  cursor: pointer;
}

.excerpt-dialog h2 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  padding-right: 2rem;
}

.excerpt-note {
  font-size: 0.8rem;
  color: #b3b3b3;
  margin-bottom: 0.9rem;
}

.excerpt-body {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
  font-size: 0.95rem;
}

.excerpt-body p + p {
  margin-top: 0.85rem;
}

/* Copy deterrent */

.no-select {
  user-select: none;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem 1.4rem;
  background: #050608;
  font-size: 0.82rem;
  color: #a5a5a5;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-right strong {
  font-weight: 600;
}

/* Responsive */

@media (max-width: 880px) {
  .hero-content {
    grid-template-columns: minmax(0,1fr);
  }

  .hero-cover {
    justify-content: flex-start;
  }

  .grid.two-col {
    grid-template-columns: minmax(0,1fr);
  }

  .sample-layout {
    grid-template-columns: minmax(0,1fr);
  }
  
  .sample-reader {
    max-width: 760px;
    margin-top: 1rem;
  }
}

.sample-tabs {
  display: inline-flex;
  gap: 0.5rem;
  border-radius: 999px;
  background: rgba(10, 12, 16, 0.9);
  padding: 0.25rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.sample-tab {
  border: none;
  background: transparent;
  color: #c9c9c9;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.sample-tab.active {
  background: #f6c453;
  color: #111;
  font-weight: 600;
}

.sample-meta-row {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #aaa;
}

.sample-pane {
  display: none;
}

.sample-pane.active {
  display: block;
}

.sample-pane-header h3 {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.sample-body {
  background: rgba(9, 11, 16, 0.96);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.3rem 1.4rem;
  max-height: 70vh;
  overflow-y: auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e4e4e4;
}

.sample-body p + p {
  margin-top: 0.9rem;
}

.scene-break {
  margin: 1.4rem auto;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
}

.sample-cta-below {
  margin-top: 2rem;
  max-width: 620px;
}

.sample-cta-below h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.sample-cta-below p {
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
}

@media (max-width: 720px) {
  .sample-body {
    background: rgba(9, 11, 16, 0.96);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.07);
    padding: 1.3rem 1.4rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e4e4e4;
  }

  /* spacing between paragraphs */
  .sample-body p + p {
    margin-top: 0.9rem;
  }

  /* collapsed state: show just a slice + fade */
  .sample-pane.collapsed .sample-body {
    max-height: 260px;
    overflow: hidden;
    position: relative;
  }

  .sample-pane.collapsed .sample-body::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: linear-gradient(
      to bottom,
      rgba(9, 11, 16, 0) 0%,
      rgba(9, 11, 16, 0.94) 90%,
      rgba(9, 11, 16, 1) 100%
    );
  }

  /* expanded state: full readable box with scroll */
  .sample-pane:not(.collapsed) .sample-body {
    max-height: 70vh;
    overflow-y: auto;
  }

  /* toggle button under each pane */
  .sample-toggle {
    margin-top: 0.75rem;
    border: none;
    background: none;
    color: #f6c453;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    padding: 0;
  }

  .sample-toggle:hover {
    color: #ffe09b;
  }

  .sample-toggle:focus-visible {
    outline: 2px solid #f6c453;
    outline-offset: 3px;
  }

  .sample-reader {
    max-width: 100%;
  }

  .sample-meta-row {
    flex-direction: column;
    gap: 0.3rem;
  }
}

/* PDF fallback box */
.pdf-fallback {
  margin-top: 1rem;
  text-align: left;
  max-width: 650px;
}

/* button */
.pdf-download-btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  background: #f6c453;
  color: #111;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.pdf-download-btn:hover {
  background: #ffdb88;
}

/* note text */
.pdf-note {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  opacity: 0.75;
  line-height: 1.4;
}

/* Optional: show ONLY on small screens */
@media (min-width: 769px) {
  .pdf-fallback {
    display: none;
  }
}

/* Book Signup Form Styling */
.hero-signup {
  margin-top: 2rem;
 /* padding: 0 1rem;*/
}

.hero-signup-inner {
  max-width: 100%; /* Full width of section */
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  background: rgba(15, 18, 22, 0.6); /* Same gray tone as details box */
    background-image: url('/images/The-Zoo-Chaos.png');
  background-size: cover; /* or 'contain' depending on your preference */
  background-position: center;
  background-repeat: no-repeat;
    position: relative;
}

.hero-signup-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 18, 22, 0.70); /* Dark overlay */
  border-radius: 12px;
  z-index: 0;
}
.hero-signup-inner > * {
  position: relative;
  z-index: 1;
}

.hero-signup-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: #fff;
}

.hero-signup-title .highlight {
  color: #fff;
}

.hero-signup-subtitle {
  font-size: 0.95rem;
  color: #c7c7c7;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Override ConvertKit form styling */
.hero-signup .formkit-form[data-uid="c8ae4104f3"] {
  max-width: 600px !important;
  margin: 0 auto !important;
}

/* Hide "Built with Kit" badge */
.hero-signup .formkit-powered-by-convertkit-container {
  display: none !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-signup {
    margin-top: 2rem;
  }
  
  .hero-signup-inner {
    padding: 2rem 1.5rem;
  }
  
  .hero-signup-title {
    font-size: 1.4rem;
  }
  
  .hero-signup-subtitle {
    font-size: 0.88rem;
  }
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

/*.faq-item {
  background: rgba(15, 18, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}*/

.faq-item {
  width: 100%;
  background: rgba(15, 18, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item.open {
  border-color: rgba(246,196,83,0.45);
}

/*.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #f5f5f5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}*/

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.6rem;
  background: transparent;
  color: #f5f5f5;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.04);
}

/*.faq-icon {
  font-size: 1.4rem;
  color: #f6c453;
  transition: transform 0.2s ease;
}*/

.faq-icon {
  color: #f6c453;
  font-size: 1.4rem;
  margin-left: 1.2rem;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/*.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  color: #c9c9c9;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}*/

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.6rem;
  background: rgba(10, 12, 16, 0.8);
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: max-height 0.28s ease, padding 0.28s ease;
}

/*.faq-item.open .faq-answer {
  padding: 0 1.2rem 1.2rem;
  max-height: 500px;
}*/

.faq-item.open .faq-answer {
  max-height: 400px; /* enough for several paragraphs */
  padding: 1.2rem 1.6rem;
}

.faq-answer a {
  color: #f6c453;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-question-text {
  flex: 1;
  display: block;
}

.faq-answer p {
  color: #c8c8c8;
  font-size: 0.95rem;
  line-height: 1.6;
}
/* Reader feedback block */
#reader-feedback {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#reader-feedback .feedback-heading {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.feedback-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feedback-btn {
  border: none;
  cursor: pointer;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  border-radius: 999px;
  font-family: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

/* Adjust colours to match your accent (#56073e etc.) */
.feedback-btn.thumbs-up {
  background-color: #56073e;
  color: #ffffff;
}

.feedback-btn.thumbs-down {
  background-color: #333333;
  color: #ffffff;
}

.feedback-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.feedback-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.feedback-btn.active {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.feedback-message {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2em; /* keeps layout from jumping */
}

/* Kit form wrapper */
.kit-form-wrapper {
  max-width: 500px;
  margin: 1.5rem auto 0;
}

.kit-intro {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* Feedback section container */
#reader-feedback {
  max-width: 850px;
  margin: 3rem auto;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  background: #111; /* keeps it subtle but distinct */
  border: 2px solid #e8c058; /* your accent yellow */
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

/* Header */
#reader-feedback .feedback-heading {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* Buttons */
.feedback-btn {
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.6rem;
  font-size: 1rem;
  border-radius: 1000px;
  font-family: inherit;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.15s ease;
}

/* YES button — use yellow */
/*.feedback-btn.thumbs-up {
  background-color: #e8c058;
  color: #000;
}*/

.feedback-btn.thumbs-up {
  background-color: transparent;
  border: 2px solid #e8c058; /* yellow accent */
  color: #ffffff;
}

/*.feedback-btn.thumbs-up:hover {
  background-color: #f2d075;
  box-shadow: 0 0 12px rgba(232, 192, 88, 0.5);
}*/

.feedback-btn.thumbs-up:hover {
  background-color: rgba(232, 192, 88, 0.12);
  box-shadow: 0 0 12px rgba(232, 192, 88, 0.4);
}

.feedback-btn.thumbs-up.active {
  background-color: rgba(232, 192, 88, 0.15);
  border-color: #e8c058;
}

/* NO button — greyed but visible */
.feedback-btn.thumbs-down {
  background-color: #333;
  color: #fff;
}

.feedback-btn.thumbs-down:hover {
  background-color: #444;
}

/* Active state */
.feedback-btn.active {
  outline: 2px solid #e8c058;
}

/* Smooth expand animation for Kit form */
/*#kit-signup {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease;
}*/

#kit-signup {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: none; /* hidden by default */
}

#kit-signup.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.nav-instagram {
  margin-left: 20px;
}

.instagram-icon {
  width: 22px;
  height: 22px;
  display: block;
  filter: invert(1); /* looks good with your dark theme */
  opacity: 0.85;
  transition: opacity 0.2s;
}

.instagram-icon:hover {
  opacity: 1;
}