/* ==========================================================================
   BUNNY POOP™ — Brand Stylesheet
   Design tokens live at the top. Swap these to re-skin the whole site.
   ========================================================================== */

:root {
  /* ---- Brand color tokens ---- */
  /* Sampled directly from the official logo artwork so page backgrounds
     blend seamlessly with the logo files' own baked-in yellow. */
  --bp-yellow: #fef402;       /* primary saturated brand yellow (from logo art) */
  --bp-yellow-deep: #e6dc00;  /* pressed / hover state on yellow */
  --bp-brown: #3b1404;        /* dark chocolate ink (from logo art) — primary text/ink */
  --bp-brown-soft: #63301a;   /* lighter brown tint — secondary text on light surfaces */
  --bp-cream: #fdf5e2;        /* cream accent surface (from logo art) */
  --bp-cream-deep: #f5e7c6;   /* pressed cream */

  /* ---- Type tokens ---- */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- Layout tokens ---- */
  --max-width: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 3px; /* intentionally almost square — flat, cut-paper feel */
  --border-w: 3px;
  --nav-height: 68px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--bp-brown);
  background: var(--bp-yellow);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 0.94;
  margin: 0;
  letter-spacing: 0.2px;
}

p {
  margin: 0;
}

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--bp-brown);
  outline-offset: 3px;
}
.on-dark :focus-visible {
  outline-color: var(--bp-yellow);
}

/* ==========================================================================
   Buttons — flat, hard-edged, no shadow. Compress slightly on click.
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: var(--border-w) solid var(--bp-brown);
  border-radius: var(--radius);
  padding: 0.85em 1.6em;
  cursor: pointer;
  transition: transform 0.08s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--bp-brown);
  color: var(--bp-yellow);
}
.btn-primary:hover {
  background: #1c0f09;
}

.btn-outline {
  background: transparent;
  color: var(--bp-brown);
}
.btn-outline:hover {
  background: var(--bp-brown);
  color: var(--bp-yellow);
}

.on-dark .btn-primary {
  background: var(--bp-yellow);
  color: var(--bp-brown);
  border-color: var(--bp-yellow);
}
.on-dark .btn-primary:hover {
  background: var(--bp-cream);
}
.on-dark .btn-outline {
  color: var(--bp-yellow);
  border-color: var(--bp-yellow);
}
.on-dark .btn-outline:hover {
  background: var(--bp-yellow);
  color: var(--bp-brown);
}

/* ==========================================================================
   Section surfaces — full-bleed alternating bands
   ========================================================================== */

.section {
  padding-block: clamp(3.5rem, 9vw, 7rem);
}

.surface-yellow { background: var(--bp-yellow); color: var(--bp-brown); }
.surface-brown  { background: var(--bp-brown); color: var(--bp-cream); }
.surface-brown .btn-outline { color: var(--bp-cream); border-color: var(--bp-cream); }
.surface-brown .btn-outline:hover { background: var(--bp-cream); color: var(--bp-brown); }
.surface-cream  { background: var(--bp-cream); color: var(--bp-brown); }

.on-dark { color: var(--bp-cream); }

.eyebrow-none { /* intentionally no eyebrow labels — headlines carry the weight */ }

.kicker {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: var(--bp-brown-soft);
}
.surface-brown .kicker { color: var(--bp-yellow); }

/* ==========================================================================
   Nav
   ========================================================================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: var(--bp-yellow);
  border-bottom: var(--border-w) solid var(--bp-brown);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bp-brown);
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  padding-block: 0.25rem;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover {
  border-bottom-color: var(--bp-brown);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: var(--border-w) solid var(--bp-brown);
  border-radius: var(--radius);
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background: var(--bp-brown);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

@media (min-width: 861px) {
  .nav-cta { display: inline-flex; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bp-yellow);
    border-bottom: var(--border-w) solid var(--bp-brown);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem var(--gutter) 1.75rem;
    gap: 1rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }
  .nav-links[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links .nav-cta {
    display: inline-flex;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding-block: clamp(2.5rem, 7vw, 5rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas:
    "wordmark art"
    "headline art"
    "supporting art"
    "cta art";
  align-items: start;
  column-gap: clamp(2rem, 5vw, 4rem);
  row-gap: clamp(0.9rem, 2.2vw, 1.4rem);
}
.hero-grid .hero-art {
  align-self: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "wordmark"
      "headline"
      "art"
      "supporting"
      "cta";
  }
  .hero-grid .hero-art {
    max-width: 260px;
    margin-inline: auto;
  }
}

.hero-copy {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-reveal 0.6s ease forwards;
  animation-delay: 0.05s;
}

@keyframes hero-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* The wordmark is the biggest single element in the hero — the brand name
   has to register before the mascot does. */
.hero-wordmark {
  grid-area: wordmark;
}
.hero-wordmark img {
  width: min(420px, 85%);
  height: auto;
  display: block;
}

.hero-headline {
  grid-area: headline;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  margin: 0;
}

.hero-supporting {
  grid-area: supporting;
}
.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 46ch;
  margin: 0 0 0.4rem;
}

.hero-lede strong {
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 50ch;
  margin: 0.6rem 0 0;
}

.hero-cta {
  grid-area: cta;
}

.hero-form .form-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 480px;
}

.hero-form .field-email {
  flex: 1 1 240px;
}

.hero-form .form-status {
  margin-top: 0.25rem;
}
.hero-form .form-status[data-state="success"] {
  text-align: left;
  align-items: flex-start;
}

.hero-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--bp-brown-soft);
}

.hero-art {
  grid-area: art;
  position: relative;
}

.hero-art img {
  width: 100%;
  height: auto;
  display: block;
}

/* Rabbit mascot is a flat brand-art PNG, so the interaction is a whole-image
   nudge (tiny tilt + lift) rather than an animated eye/pellet — the closest
   equivalent to the spec'd "eye shifts, pellets nudge" for a static asset. */
.mascot-img {
  transition: transform 0.25s ease;
  transform-origin: 60% 85%;
}
.hero-art:hover .mascot-img {
  transform: rotate(-2deg) translateY(-4px);
}

/* ==========================================================================
   Inputs
   ========================================================================== */

.field {
  border: var(--border-w) solid var(--bp-brown);
  border-radius: var(--radius);
  background: var(--bp-cream);
  color: var(--bp-brown);
  padding: 0.85em 1em;
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
}
.field::placeholder {
  color: #7a5b3f;
}
.on-dark .field {
  background: var(--bp-brown);
  border-color: var(--bp-cream);
  color: var(--bp-cream);
}
.on-dark .field::placeholder {
  color: #b99f7f;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.form-row .field {
  flex: 1 1 200px;
}

.form-status {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: 1rem;
  min-height: 1.4em;
}
.form-status[data-state="success"] {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  margin-top: 1rem;
}

.success-headline {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.05;
  color: var(--bp-brown);
}

.success-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--bp-brown-soft);
}

.on-dark .success-headline {
  color: var(--bp-yellow);
}

.on-dark .success-sub {
  color: var(--bp-cream);
}

.form-status[data-state="error"] { color: #b23a2f; }

/* Once a form succeeds, the fields disappear so the confirmation reads
   as a clean replacement rather than a message stacked above two empty
   inputs and a still-visible button. */
form.is-submitted .form-fields {
  display: none;
}

/* Honeypot field — hidden from humans, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==========================================================================
   Section headings
   ========================================================================== */

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.prose {
  max-width: 58ch;
  font-size: 1.08rem;
}
.prose + .prose {
  margin-top: 1rem;
}
.section-head--center .prose {
  margin-inline: auto;
}

/* ==========================================================================
   Truth section (dark, oversized type + pellet motif)
   ========================================================================== */

.truth-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 820px) {
  .truth-layout {
    grid-template-columns: 1fr;
  }
  .truth-art {
    max-width: 220px;
  }
}
.truth-art svg {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Feature blocks — flat bordered cut-cards, no radius/shadow soup.
   Explicit breakpoints (not auto-fit) so the grid never lands on an
   orphaned card: 4-across on desktop, a deliberate 2×2 checkerboard on
   tablet, single column on mobile.
   ========================================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: var(--border-w) solid var(--bp-brown);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (max-width: 1000px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  padding: 1.75rem 1.6rem;
  border-right: var(--border-w) solid var(--bp-brown);
  background: var(--bp-cream);
}
.feature:nth-child(2),
.feature:nth-child(4) {
  background: var(--bp-yellow);
}
.feature:nth-child(4) {
  border-right: none;
}

/* Tablet: 2×2 — checkerboard the colors so the second row doesn't just
   repeat the first, and fix borders so the grid reads as one composed
   block (no doubled or missing edges). */
@media (max-width: 1000px) {
  .feature {
    border-bottom: var(--border-w) solid var(--bp-brown);
  }
  .feature:nth-child(2) {
    border-right: none;
  }
  .feature:nth-child(3) {
    background: var(--bp-yellow);
    border-right: var(--border-w) solid var(--bp-brown);
  }
  .feature:nth-child(4) {
    background: var(--bp-cream);
  }
  .feature:nth-child(3),
  .feature:nth-child(4) {
    border-bottom: none;
  }
}

/* Mobile: single column — every card gets a bottom divider except the
   last, nobody gets a right border, and colors settle back into a plain
   top-to-bottom alternation. */
@media (max-width: 600px) {
  .feature {
    border-right: none;
    border-bottom: var(--border-w) solid var(--bp-brown);
  }
  .feature:nth-child(3) {
    background: var(--bp-cream);
  }
  .feature:nth-child(4) {
    background: var(--bp-yellow);
    border-bottom: none;
  }
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.feature p {
  font-size: 0.98rem;
}

/* Runs flush under the feature grid as its own strip rather than a
   floating badge, so it reads as part of the same composed block. */
.disclaimer-strip {
  margin-top: 0;
  border: var(--border-w) dashed var(--bp-brown);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
}

/* ==========================================================================
   Testing stepper — content IS a real sequence, so a stepper earns its keep
   ========================================================================== */

.testing-list {
  columns: 2;
  column-gap: 3rem;
  max-width: 640px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.testing-list li {
  margin-bottom: 0.5rem;
  break-inside: avoid;
}
@media (max-width: 560px) {
  .testing-list { columns: 1; }
}

.stepper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.stepper-step {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  border: var(--border-w) solid var(--bp-cream);
  border-radius: var(--radius);
  padding: 0.6em 1em;
  white-space: nowrap;
}
.stepper-step[data-current="true"] {
  background: var(--bp-yellow);
  color: var(--bp-brown);
  border-color: var(--bp-yellow);
}
.stepper-arrow {
  font-family: var(--font-display);
  opacity: 0.7;
}

/* ==========================================================================
   Meet the team — photo cards: rounded corners, soft shadow, full-color
   portraits. A deliberate departure from the flat/hard-edge system used
   elsewhere on the site — this section is styled to match a client-supplied
   reference for the team page specifically.
   ========================================================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
@media (max-width: 980px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  border-radius: 20px;
  background: var(--bp-cream);
  box-shadow: 0 10px 24px rgba(59, 20, 4, 0.16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(59, 20, 4, 0.22);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.team-card-body {
  padding: 1.1rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.team-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
}

.team-role {
  font-size: 0.92rem;
  line-height: 1.4;
}

.team-divider {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(59, 20, 4, 0.2);
  margin: 0.75rem 0;
}

.team-line {
  font-size: 0.9rem;
  line-height: 1.4;
}
.team-line + .team-line {
  margin-top: 0.4rem;
}
.team-line strong {
  font-weight: 700;
}

/* The Rabbit: full-width horizontal card, same cream/shadow treatment as
   the rest. The handwritten aside is attached directly to this card (not
   a sibling floating below it) so on every breakpoint it's unmistakably
   his line, not a comment on the whole section. */
.rabbit-row {
  grid-column: 1 / -1;
}

.team-card--rabbit-wide {
  position: relative;
  flex-direction: row;
  align-items: center;
  overflow: visible; /* lets the desktop note break the card's edge */
}
.rabbit-photo-wrap {
  position: relative;
  flex: none;
  width: 200px;
}
.team-card--rabbit-wide .team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px 0 0 20px;
}
.team-card--rabbit-wide .team-card-body {
  padding: 1.4rem 1.6rem;
}

.rabbit-aside {
  position: absolute;
  margin: 0;
  font-family: 'Permanent Marker', cursive;
  line-height: 1.22;
  color: var(--bp-brown);
  text-align: center;
  pointer-events: none;
  z-index: 3;
}

/* Desktop: pinned to the card's upper-right, deliberately breaking the
   boundary — a scribbled complaint stuck onto the site itself. */
.rabbit-aside--wide {
  top: 20px;
  right: -42px;
  width: 190px;
  font-size: 1.3rem;
  transform: rotate(-6deg);
}

/* Tablet: same corner, pulled back inside so it reads as tucked in
   rather than breaking the edge (card is still row-layout here). */
@media (max-width: 900px) {
  .rabbit-aside--wide {
    top: 14px;
    right: 14px;
    width: 130px;
    font-size: 1.05rem;
    transform: rotate(-5deg);
  }
}

/* The mobile version lives inside the photo instead — hidden until the
   card stacks to a column, at which point the wide version steps aside. */
.rabbit-aside--mobile {
  display: none;
}

@media (max-width: 700px) {
  .team-card--rabbit-wide {
    flex-direction: column;
  }
  .rabbit-photo-wrap {
    width: 100%;
  }
  .team-card--rabbit-wide .team-photo {
    border-radius: 20px 20px 0 0;
  }
  .rabbit-aside--wide {
    display: none;
  }
  .rabbit-aside--mobile {
    display: block;
    bottom: 12px;
    right: 12px;
    width: 150px;
    font-size: 1.1rem;
    background: rgba(253, 245, 226, 0.88);
    border-radius: 10px;
    padding: 0.35rem 0.6rem;
    transform: rotate(-6deg);
  }
}

/* ==========================================================================
   Manifesto
   ========================================================================== */

.manifesto {
  text-align: left;
}
.manifesto h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  max-width: 20ch;
  margin-bottom: 1.75rem;
}
.manifesto .prose {
  max-width: 46ch;
  font-size: 1.15rem;
}
.manifesto-logo {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin-top: 2.5rem;
}

/* ==========================================================================
   Email capture — the aggressive one
   ========================================================================== */

.capture {
  text-align: center;
}
.capture h2 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}
.capture .prose {
  margin-inline: auto;
  text-align: left;
  max-width: 34ch;
}
.capture-benefits {
  list-style: none;
  margin: 1.5rem auto 2.25rem;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  font-size: 1.05rem;
}
.capture-benefits li::before {
  content: "— ";
  color: var(--bp-yellow);
}
.capture-form {
  max-width: 460px;
  margin-inline: auto;
  text-align: left;
}
.capture-form .btn {
  width: 100%;
  margin-top: 0.9rem;
}
.capture-form .form-status {
  text-align: center;
}
.capture-form .form-status[data-state="success"] {
  text-align: center;
  align-items: center;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  border-top: var(--border-w) solid var(--bp-brown);
}

.faq-item {
  border-bottom: var(--border-w) solid var(--bp-brown);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  padding: 1.25rem 0.25rem;
  cursor: pointer;
  color: inherit;
}

.faq-icon {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--bp-brown);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 100%; height: 3px; }
.faq-icon::after { width: 3px; height: 100%; transition: transform 0.2s ease; }
.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.22s ease;
}
.faq-answer > div {
  overflow: hidden;
}
.faq-item[data-open="true"] .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  max-width: 60ch;
  font-size: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding-block: 3rem 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: var(--border-w) solid var(--bp-cream);
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.footer-tag {
  font-family: var(--font-display);
  color: var(--bp-yellow);
  margin-top: 0.35rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--bp-yellow);
  margin-bottom: 0.6rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-col a {
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-col a:hover {
  text-decoration: underline;
}

.footer-fine {
  font-size: 0.82rem;
  color: #c9b28d;
  max-width: 70ch;
}
.footer-fine + .footer-fine {
  margin-top: 0.5rem;
}

/* ==========================================================================
   Simple sub-pages (privacy / terms / contact)
   ========================================================================== */

.legal-main {
  background: var(--bp-cream);
  padding-block: clamp(3rem, 6vw, 5rem);
  min-height: 60vh;
}
.legal-main h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}
.legal-main h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}
.legal-main .prose {
  max-width: 70ch;
  margin-bottom: 1rem;
}
.legal-main a {
  text-decoration: underline;
}

.contact-form {
  max-width: 520px;
  margin-top: 2rem;
}
.contact-form .field {
  margin-bottom: 1rem;
}
.contact-form label {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
