/* ==========================================================================
   ALL PLACES — NEWSLETTER LANDING PAGE
   Aesthetics: Warm Minimalist, Editorial, Tactile Vintage Accents
   ========================================================================== */

:root {
  --bg-cream: #faf6f0;
  --bg-input: #f4eee6;
  --bg-button: #dfc3bc;
  --bg-button-hover: #d2b3ab;
  --text-main: #2b1810;
  --text-muted: #5e4a42;
  --text-light: #8c7971;
  --border-subtle: #e6dcce;
  --border-strong: #ccbeae;
  --track-bg: #ece5da;
  --track-thumb: #beafa2;
  --font-script: 'Nothing You Could Do', cursive, sans-serif;
  --font-typewriter: 'Courier Prime', 'Space Mono', monospace;
  --font-serif: 'Instrument Serif', 'Fraunces', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-cream);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ==========================================================================
   LAYOUT: 50 / 50 Split
   ========================================================================== */

.page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100vw;
  position: relative;
}

/* --------------------------------------------------------------------------
   LEFT PANEL: Visual Art & "THE CURIOUS ONES"
   -------------------------------------------------------------------------- */
.visual-panel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: #3b2c21;
}

.visual-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visual-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-panel:hover .visual-bg {
  transform: scale(1.05);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(35, 20, 10, 0.2) 100%),
              linear-gradient(to bottom, transparent 60%, rgba(20, 10, 5, 0.35) 100%);
  pointer-events: none;
}

.curious-tag {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  line-height: 1.25;
  color: rgba(255, 252, 248, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  user-select: none;
}

.curious-tag-mobile {
  display: none;
}

/* --------------------------------------------------------------------------
   RIGHT PANEL: Content & Newsletter
   -------------------------------------------------------------------------- */
.content-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 48px 32px 36px 32px;
  background-color: var(--bg-cream);
  position: relative;
}

.content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 480px;
  min-height: calc(100vh - 84px);
  text-align: center;
}

/* Top Logo */
.brand-header {
  width: 100%;
  padding-top: 12px;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.brand-logo-link:hover {
  opacity: 0.8;
}

.brand-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* Center Content */
.hero-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto 0;
  width: 100%;
  padding: 24px 0;
}

.eyebrow-kicker {
  font-family: var(--font-typewriter);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--text-main);
  margin-bottom: 24px;
  display: block;
}

.main-heading {
  font-family: var(--font-script);
  font-size: 3.1rem;
  font-weight: 400;
  line-height: 1.22;
  color: var(--text-main);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  transform: rotate(-1deg);
}

.sub-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   FORM & RETRO SCROLLBAR
   -------------------------------------------------------------------------- */
.newsletter-wrapper {
  width: 100%;
  max-width: 400px;
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.input-group {
  display: flex;
  width: 100%;
  height: 46px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.input-group:focus-within {
  border-color: var(--track-thumb);
  box-shadow: 0 0 0 2px rgba(223, 195, 188, 0.4), inset 0 1px 2px rgba(0,0,0,0.04);
}

.input-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
}

.input-group input::placeholder {
  color: #a49187;
  font-style: normal;
}

/* Multi-step Container Rules */
.form-step {
  display: none !important;
  width: 100%;
}

.form-step.active {
  display: block !important;
  animation: stepFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-step-back {
  width: 44px;
  height: 100%;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
  padding: 0;
  flex-shrink: 0;
}

.btn-step-back:hover {
  background-color: rgba(0, 0, 0, 0.04);
  color: var(--text-main);
}

.btn-step-next,
.btn-submit {
  height: 100%;
  padding: 0 22px;
  background-color: var(--bg-button);
  color: #4a2f26;
  border: none;
  border-left: 1px solid var(--border-subtle);
  font-family: var(--font-sans), sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-step-next:hover,
.btn-submit:hover {
  background-color: var(--bg-button-hover);
  color: #382017;
}

.btn-step-next:active,
.btn-submit:active {
  transform: scale(0.98);
}

.btn-step-next:disabled,
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Custom DDI Select Styling */
.ddi-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  border-right: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.02);
  height: 100%;
  flex-shrink: 0;
}

.ddi-wrapper select {
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 10px 0 12px;
  font-family: var(--font-sans), sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%234a2f26' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 10px;
  padding-right: 20px;
}

.ddi-wrapper select option {
  background-color: #f7eee9;
  color: #2b1f1a;
  padding: 8px;
  font-family: var(--font-sans), sans-serif;
}

/* Custom Select Styling */
.select-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.select-wrapper select {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 16px;
  font-family: var(--font-sans), sans-serif;
  font-size: 0.92rem;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%234a2f26' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 34px;
}

.select-wrapper select option {
  background-color: #f7eee9;
  color: #2b1f1a;
  padding: 10px;
  font-family: var(--font-sans), sans-serif;
}

/* Loading state */
.btn-loader {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(74, 47, 38, 0.3);
  border-top-color: #4a2f26;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .btn-loader {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Feedback toast */
.form-feedback {
  margin-top: 14px;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  min-height: 20px;
  opacity: 0;
  transform: translateY(-4px);
  transition: var(--transition-smooth);
}

.form-feedback.show {
  opacity: 1;
  transform: translateY(0);
}

.form-feedback.success {
  color: #2e6945;
  font-weight: 500;
}

.form-feedback.error {
  color: #aa3838;
}

/* --------------------------------------------------------------------------
   INFO SECTION
   -------------------------------------------------------------------------- */
.info-block {
  margin-top: 10px;
}

.info-title {
  font-family: var(--font-typewriter);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-main);
  margin-bottom: 12px;
}

.info-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   CONFIRMATION (IN-PAGE THANK YOU)
   -------------------------------------------------------------------------- */
.confirmation-block {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto 0;
  width: 100%;
  padding: 24px 0;
}

.confirmation-block.active {
  display: flex !important;
  animation: stepFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.confirmation-spacer {
  width: 48px;
  height: 1px;
  background: rgba(74, 47, 38, 0.2);
  margin: 36px 0;
}

.confirmation-sub {
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .confirmation-spacer {
    background: rgba(255, 255, 255, 0.35);
    margin: 28px 0;
  }
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.content-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
}

.footer-title {
  font-family: var(--font-typewriter);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-main);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-typewriter);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.footer-links a,
.footer-links .text-link {
  color: var(--text-main);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  padding: 0;
  transition: opacity 0.2s ease;
}

.footer-links a:hover,
.footer-links .text-link:hover {
  opacity: 0.6;
}

.footer-links .divider {
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   MODAL: Privacy Policy
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(30, 20, 15, 0.45);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  z-index: 2;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  max-width: 480px;
  width: 100%;
  padding: 32px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-main);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-body p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.modal-body p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN (MOBILE & TABLET)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
  }

  .visual-panel {
    display: none;
  }

  .content-panel {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    background-color: #5e4635;
    background: url('mobile-bg.jpg') no-repeat center center / cover;
    padding-top: max(28px, calc(16px + env(safe-area-inset-top, 0px)));
    padding-bottom: max(24px, calc(16px + env(safe-area-inset-bottom, 0px)));
    padding-left: max(20px, calc(16px + env(safe-area-inset-left, 0px)));
    padding-right: max(20px, calc(16px + env(safe-area-inset-right, 0px)));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 52px);
    min-height: calc(100dvh - 52px);
    width: 100%;
    max-width: 440px;
    justify-content: space-between;
  }

  /* Header & Mobile Tag */
  .brand-header {
    padding-top: 24px;
  }

  .brand-logo-img {
    height: 26px;
  }

  .curious-tag-mobile {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.92);
    margin: 14px 0 0 4px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  }

  /* Hero Block on Mobile */
  .hero-block {
    padding: 16px 0 20px 0;
    margin: auto 0;
  }

  .eyebrow-kicker {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    margin-bottom: 18px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  }

  .main-heading {
    color: #ffffff;
    font-size: 2.75rem;
    line-height: 1.16;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transform: rotate(-0.5deg);
  }

  .sub-headline {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: 28px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  }

  /* Form on Mobile */
  .newsletter-wrapper {
    max-width: 100%;
    margin-bottom: 32px;
  }

  .input-group {
    height: 48px;
    background-color: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  .input-group:focus-within {
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
  }

  .input-group input {
    color: #ffffff;
    font-size: 0.95rem;
  }

  .input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  .btn-submit {
    background-color: #dfc3bc;
    color: #382017;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0 22px;
  }

  .btn-submit:hover {
    background-color: #d6b8b0;
  }

  .form-feedback.success {
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  }

  .form-feedback.error {
    color: #ffd2d2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  }

  /* Info Block on Mobile */
  .info-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .info-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.02rem;
    line-height: 1.48;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  /* Footer on Mobile */
  .footer-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .footer-links {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .footer-links a,
  .footer-links .text-link {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .footer-links .divider {
    color: rgba(255, 255, 255, 0.6);
  }
}

@media (max-width: 400px) {
  .main-heading {
    font-size: 2.45rem;
  }

  .content-panel {
    padding-top: max(24px, calc(14px + env(safe-area-inset-top, 0px)));
    padding-bottom: max(20px, calc(14px + env(safe-area-inset-bottom, 0px)));
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-header {
    padding-top: 24px;
  }
}

/* ==========================================================================
   ALL VOICES — MANIFESTO, EXPANDED QUESTIONS & POETIC CONFIRMATION
   ========================================================================== */

/* Manifesto Typography & Structure */
.av-manifesto-block {
  width: 100%;
  max-width: 520px;
  animation: stepFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.av-thesis {
  font-family: var(--font-sans);
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.av-triad {
  border-left: none;
  padding-left: 0;
  margin: 24px 0 32px 0;
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-main);
}

.av-triad p {
  margin-bottom: 4px;
}

.av-triad p:last-child {
  margin-bottom: 0;
}

.av-invitation {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--text-muted);
  margin-bottom: 34px;
}

.av-rule-block {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.av-rule-title {
  font-family: var(--font-typewriter);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.av-rule-text {
  font-family: var(--font-serif);
  font-size: 1.16rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.45;
}

/* Questionnaire Container & Steps */
.av-questionnaire-container {
  display: none;
  width: 100%;
  max-width: 520px;
  animation: stepFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.av-step-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-family: var(--font-typewriter);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--text-light);
  text-transform: uppercase;
}

.av-step-card {
  display: none;
  width: 100%;
}

.av-step-card.active {
  display: block !important;
  animation: stepFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.av-step-kicker {
  display: block;
  font-family: var(--font-typewriter);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a05a46;
  margin-bottom: 10px;
  font-weight: 700;
}

.av-step-heading {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  line-height: 1.16;
  color: var(--text-main);
  margin-bottom: 12px;
  font-weight: 400;
}

.av-step-sub {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Fields & Labels */
.field-block {
  margin-bottom: 18px;
  width: 100%;
}

.field-label {
  display: block;
  font-family: var(--font-typewriter);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 600;
}

.field-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}

.field-label-row .field-label {
  margin-bottom: 0;
}

.field-optional {
  font-family: var(--font-typewriter);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-transform: lowercase;
}

/* Navigation Buttons */
.step-nav-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  width: 100%;
}

.btn-pill-back {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.btn-pill-back:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-main);
  border-color: var(--border-strong);
}

.btn-pill-next,
.btn-pill-submit {
  background: var(--bg-button);
  border: 1px solid transparent;
  color: #4a2f26;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  user-select: none;
  white-space: nowrap;
}

.btn-pill-next:hover,
.btn-pill-submit:hover {
  background: var(--bg-button-hover);
  color: #382017;
  transform: translateY(-1px);
}

.btn-pill-next:disabled,
.btn-pill-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Chips Grid for Tela 04 */
.av-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
}

.chip-tag:hover {
  border-color: var(--border-strong);
  background: #ede3d7;
}

.chip-tag.selected {
  background: #2b1810;
  color: #faf6f0;
  border-color: #2b1810;
}

.chip-other-box {
  width: 100%;
  margin-top: 10px;
  display: none;
}

.chip-other-box.show {
  display: block;
  animation: stepFadeIn 0.25s ease-out forwards;
}

.chip-other-input {
  width: 100%;
  height: 44px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 0 16px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-smooth);
}

.chip-other-input:focus {
  border-color: var(--track-thumb);
  box-shadow: 0 0 0 2px rgba(223, 195, 188, 0.4);
}

/* Participation Cards for Tela 05 */
.av-options-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.participation-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
}

.participation-item:hover {
  border-color: var(--border-strong);
  background: #ede3d7;
}

.participation-item.selected {
  background: rgba(223, 195, 188, 0.35);
  border-color: #beafa2;
}

.participation-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: transparent;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.participation-item.selected .participation-check {
  background: #2b1810;
  border-color: #2b1810;
  color: #faf6f0;
}

.participation-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.4;
}

/* Tela 06 - Textarea & Radios */
.av-helper-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.av-textarea {
  width: 100%;
  min-height: 95px;
  padding: 12px 16px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-main);
  resize: vertical;
  line-height: 1.5;
  margin-bottom: 22px;
  outline: none;
  transition: var(--transition-smooth);
}

.av-textarea:focus {
  border-color: var(--track-thumb);
  box-shadow: 0 0 0 2px rgba(223, 195, 188, 0.4);
}

.radio-pills-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.radio-pill {
  padding: 9px 18px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-input);
  border-radius: 24px;
  font-size: 0.88rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
}

.radio-pill:hover {
  border-color: var(--border-strong);
  background: #ede3d7;
}

.radio-pill.selected {
  background: #2b1810;
  color: #faf6f0;
  border-color: #2b1810;
}

/* Relation with All Places Single-Select (Tela 04) */
.av-relation-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.relation-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
}

.relation-item:hover {
  border-color: var(--border-strong);
  background: #ede3d7;
}

.relation-item.selected {
  background: rgba(223, 195, 188, 0.35);
  border-color: #beafa2;
}

.relation-radio {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.relation-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: var(--transition-smooth);
}

.relation-item.selected .relation-radio {
  border-color: #2b1810;
}

.relation-item.selected .relation-radio::after {
  background: #2b1810;
}

.relation-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .relation-item {
    background: rgba(244, 238, 230, 0.92);
  }
}

/* Tela 07 — Found you (Poetic & Minimalist Reveal) */
.av-found-you-container {
  display: none;
  width: 100%;
  max-width: 500px;
  padding: 20px 0;
  animation: poeticFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes poeticFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.found-kicker {
  display: block;
  font-family: var(--font-typewriter);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
}

.found-title {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  line-height: 1.05;
  color: var(--text-main);
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.found-lead {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1.28;
  color: var(--text-main);
  margin-bottom: 24px;
  font-style: italic;
}

.found-body {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.62;
  margin-bottom: 26px;
  max-width: 440px;
}

.found-dash {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1;
}

.found-date {
  font-family: var(--font-typewriter);
  font-size: 1rem;
  color: #8c422f;
  letter-spacing: 0.04em;
  font-weight: 700;
}

/* Mobile adjustments for All Voices copy */
@media (max-width: 768px) {
  .av-step-heading {
    font-size: 1.95rem;
  }

  .found-title {
    font-size: 2.8rem;
  }

  .found-lead {
    font-size: 1.35rem;
  }

  .av-thesis,
  .av-invitation,
  .found-body {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .av-triad {
    border-left: none;
    padding-left: 0;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .av-step-sub,
  .av-helper-italic {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .field-label,
  .av-step-progress,
  .found-kicker,
  .av-rule-title {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  .av-rule-text {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .av-rule-block {
    border-top-color: rgba(255, 255, 255, 0.35);
  }

  .found-title,
  .found-lead {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  }

  .found-date {
    color: #ffbba7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .chip-tag {
    background: rgba(244, 238, 230, 0.92);
  }

  .participation-item {
    background: rgba(244, 238, 230, 0.92);
  }

  .radio-pill {
    background: rgba(244, 238, 230, 0.92);
  }

  .btn-pill-back {
    background: rgba(244, 238, 230, 0.9);
    color: var(--text-main);
  }
}
