/* Guitar Diversity Pledge – Styles */

:root {
  --bg: #FDFBF7;
  --text: #1F1F1F;
  --muted: #5C5C5C;
  --accent: #6B1D23;
  --accent-dark: #541820;
  --sand: #E8DDD0;
  --border: #E6DFD6;
  --card: #FFFFFF;
  --success: #2F6B4F;
  --error: #9B1C1C;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(31, 31, 31, 0.08);
  --shadow-sm: 0 2px 12px rgba(31, 31, 31, 0.06);
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --container: 1200px;
  --narrow: 720px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--accent-dark);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2rem, var(--narrow));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.brand,
.wordmark {
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  flex-shrink: 0;
}

.brand-name,
.wordmark-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.wordmark-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 16rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-list a:hover {
  color: var(--accent);
}

.lang-switch a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.lang-switch a.is-active {
  color: var(--accent);
}

.lang-divider {
  color: var(--border);
  margin: 0 0.25rem;
}

/* Hero (legacy + landing) */
.hero {
  padding: 3rem 0 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 42rem;
  font-weight: 700;
}

.hero-subline {
  font-size: 1rem;
  color: var(--text);
  max-width: 40rem;
  margin: 0 0 1.75rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Landing page */
.page-home .site-header {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(8px);
}

.landing {
  padding-bottom: 2rem;
}

.hero-block {
  padding: 2rem 0 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--accent);
  margin: 0 0 0.75rem;
  line-height: 1.45;
  max-width: 36rem;
}

.hero-scope {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.55;
  max-width: 40rem;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: start;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: top center;
}

.stats-grid--inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-align: left;
}

.stat-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(107, 29, 35, 0.1);
  position: relative;
}

.stat-icon::after {
  content: "";
  position: absolute;
  inset: 0.45rem;
  background: var(--accent);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.stat-icon--people::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M16 11c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 3-1.34 3-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5C15 14.17 10.33 13 8 13zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M16 11c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 3-1.34 3-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5C15 14.17 10.33 13 8 13zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}

.stat-icon--globe::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
}

.stat-icon--trend::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m16 6 2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m16 6 2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z'/%3E%3C/svg%3E");
}

.stat-body {
  min-width: 0;
}

.stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.stat-goal {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.2rem;
}

.stat-progress {
  display: block;
  width: 100%;
  height: 0.35rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: rgba(107, 29, 35, 0.12);
  overflow: hidden;
}

.stat-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 0.35s ease;
}

.stat-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.btn-arrow::after {
  content: "›";
  margin-left: 0.35rem;
  font-size: 1.1em;
}

.btn-icon-doc {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.4rem;
  vertical-align: -0.15em;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.landing-split {
  padding: 2rem 0;
}

.landing-split .why-block {
  margin-bottom: 2rem;
}

.sign-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: start;
  position: sticky;
  top: 5.5rem;
  align-self: start;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  margin: 0 0 1rem;
}

.why-text {
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 36rem;
  line-height: 1.65;
}

.why-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.why-pillars li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  max-width: 14rem;
}

.pillar-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(107, 29, 35, 0.12);
  flex-shrink: 0;
  position: relative;
}

.pillar-icon::after {
  content: "";
  position: absolute;
  inset: 0.5rem;
  background: var(--accent);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.pillar-icon--shield::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z'/%3E%3C/svg%3E");
}

.pillar-icon--scales::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 3c-1.1 0-2 .9-2 2v1H6v2h1v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h1V6h-4V5c0-1.1-.9-2-2-2zm-2 5h4v7c0 1.1-.9 2-2 2s-2-.9-2-2V8z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 3c-1.1 0-2 .9-2 2v1H6v2h1v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h1V6h-4V5c0-1.1-.9-2-2-2zm-2 5h4v7c0 1.1-.9 2-2 2s-2-.9-2-2V8z'/%3E%3C/svg%3E");
}

.pillar-icon--people::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M16 11c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 3-1.34 3-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5C15 14.17 10.33 13 8 13zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M16 11c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 3-1.34 3-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5C15 14.17 10.33 13 8 13zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}

.sign-form-column {
  min-width: 0;
}

.sign-supporters {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 8rem);
}

.sign-supporters .supporters-preview-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.pledge-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: visible;
  border: 1px solid var(--border);
}

.pledge-card__head {
  background: var(--accent);
  color: #fff;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  min-width: 0;
}

.pledge-form .form-row-full,
.pledge-form .form-row-full textarea {
  width: 100%;
}

.sign-supporters__goal {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.sign-supporters__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 0.85rem;
  color: var(--accent);
}

.pledge-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.pledge-card__intro {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.92;
  line-height: 1.45;
}

.pledge-card__body {
  padding: 1.25rem 1.35rem 1rem;
}

.pledge-card__body .form-row {
  margin-bottom: 0.85rem;
}

.pledge-card__body label {
  font-size: 0.82rem;
}

.pledge-card__body input,
.pledge-card__body textarea,
.pledge-card__body .country-picker-toggle {
  font-size: 0.9rem;
  padding: 0.5rem 0.65rem;
}

.pledge-card__body .checkbox-row label {
  font-size: 0.8rem;
}

.btn-pledge-submit {
  margin-top: 0.25rem;
  padding: 0.85rem 1rem;
  font-size: 1rem;
}

.pledge-card__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.secure-icon {
  width: 1rem;
  height: 1rem;
  background: var(--muted);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.landing-triple {
  padding: 1rem 0 2.5rem;
}

.landing-triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.landing-triple-grid--stack {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.landing-triple-grid--stack .preview-panel {
  min-height: 0;
  width: 100%;
}

.preview-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.preview-panel__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.preview-panel__note {
  font-size: 0.8rem;
  margin: 0 0 0.75rem;
}

.preview-panel__link {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.preview-panel__link:hover {
  text-decoration: underline;
}

.accordion--panel .accordion-item--compact,
.faq-list--panel .faq-item--compact {
  margin-bottom: 0.5rem;
  border-radius: 8px;
}

.accordion--panel .accordion-summary {
  font-size: 0.88rem;
  padding: 0.65rem 0.85rem;
}

.faq-list--panel .faq-item summary {
  font-size: 0.88rem;
  padding: 0.65rem 0.85rem;
}

.supporters-preview-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.supporter-preview-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem 0.65rem;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.supporter-preview-item:last-child {
  border-bottom: 0;
}

.supporter-preview-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(107, 29, 35, 0.1);
  position: relative;
}

.supporter-preview-icon::after {
  content: "";
  position: absolute;
  inset: 0.4rem;
  background: var(--accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.supporter-preview-name {
  font-weight: 500;
}

.supporter-preview-time {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}

/* Sections */
.section {
  padding: 2.5rem 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
}

.section-intro,
.section-note {
  margin: 0 0 1.5rem;
  max-width: 42rem;
}

.teaser-block {
  padding: 0 0 1.5rem;
}

.teaser-text {
  font-size: 1.02rem;
  max-width: 52rem;
  margin: 0;
  line-height: 1.7;
  color: var(--text);
}

.source-notice {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
  background: #F8F4EE;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  margin: 0 0 1rem;
}

.muted {
  color: var(--muted);
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-card {
  padding: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* Accordion / FAQ */
.accordion-item,
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-summary,
.faq-item summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.accordion-summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.accordion-body,
.faq-item p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
}

.sources-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  word-break: break-word;
}

.sources-label {
  margin: 1rem 0 0.25rem;
  font-size: 0.9rem;
}

/* Forms */
.form-row {
  margin-bottom: 1rem;
}

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.required {
  color: var(--accent);
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
  background: #fff;
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.checkbox-row label {
  margin: 0;
  font-weight: 400;
}

.field-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Country picker */
.form-row-country {
  min-width: 0;
}

.country-picker {
  position: relative;
}

.country-picker-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
  background: #fff;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.country-picker-toggle:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.country-picker-toggle[aria-expanded="true"] {
  border-color: var(--accent);
}

.country-picker-flag {
  flex-shrink: 0;
  width: 28px;
  height: 21px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.country-picker-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-picker-text.is-placeholder {
  color: var(--muted);
  font-weight: 400;
}

.country-picker-chevron {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  margin-top: -0.15rem;
  transition: transform 0.15s ease;
}

.country-picker-toggle[aria-expanded="true"] .country-picker-chevron {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
}

.country-picker-panel {
  position: absolute;
  z-index: 200;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.country-picker-search {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 0;
  border-bottom: 1px solid var(--border);
  font: inherit;
  background: #fafafa;
}

.country-picker-search:focus {
  outline: none;
  background: #fff;
}

.country-picker-list {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  max-height: 16rem;
  overflow-y: auto;
}

.country-picker-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.country-picker-option:hover,
.country-picker-option.is-focused {
  background: var(--bg-alt, #f4f4f5);
}

.country-picker-option[aria-selected="true"] {
  background: rgba(196, 30, 58, 0.08);
  font-weight: 600;
}

.country-picker-option img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.country-picker-empty {
  padding: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-errors {
  background: #fdeaea;
  border: 1px solid #f5c2c2;
  color: var(--error);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.form-success {
  background: #e8f3ed;
  border: 1px solid #b8d9c8;
  color: var(--success);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* Supporters */
.supporters-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.supporter-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.supporter-name {
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.supporter-comment {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Footer */
.site-footer {
  background: #F3F0EB;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 1.25rem;
  margin-top: 2rem;
}

.footer-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand-icon {
  opacity: 0.85;
}

.footer-tagline {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
  max-width: 20rem;
  line-height: 1.35;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

.footer-copy a {
  color: var(--text);
  text-decoration: none;
}

.footer-copy a:hover {
  color: var(--accent);
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 52rem;
  margin: 0;
  line-height: 1.5;
  text-align: center;
  margin-inline: auto;
}

.footer-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.footer-meta a {
  color: var(--text);
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-sep {
  color: var(--border);
}

.prose a {
  color: var(--accent);
}

/* Legal / prose */
.prose h1 {
  font-family: var(--font-serif);
  margin-top: 0;
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-top: 2rem;
}

.prose p,
.prose li {
  max-width: 42rem;
}

.message-success {
  color: var(--success);
  font-size: 1.1rem;
}

.message-error {
  color: var(--error);
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .sign-split-grid {
    grid-template-columns: 1fr;
    position: static;
  }

  .sign-supporters {
    max-height: 16rem;
  }

  .sign-supporters .supporters-preview-list {
    max-height: 16rem;
  }

  .landing-triple-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid--inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0.5rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .form-row-split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .footer-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .why-pillars {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}
