:root {
  --bg: #f4efe7;
  --surface: rgba(255, 249, 240, 0.88);
  --surface-strong: #fffaf3;
  --ink: #17231e;
  --muted: #5f6d65;
  --accent: #d85c3d;
  --accent-dark: #9f3821;
  --accent-soft: #efc6a3;
  --line: rgba(23, 35, 30, 0.1);
  --shadow: 0 24px 70px rgba(60, 43, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(239, 198, 163, 0.9), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(216, 92, 61, 0.18), transparent 20%),
    linear-gradient(180deg, #f7f1e9 0%, #f1ebe1 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(23, 35, 30, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 35, 30, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
}

.site-header,
.hero-visual,
.profile-card,
.issue-card,
.agenda-panel,
.agenda-list,
.event-card,
.voice-card,
.support-card,
.site-footer {
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.76);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #f28b52);
  color: white;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
}

.brand-copy {
  display: grid;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.96rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.3rem;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 16px 30px rgba(216, 92, 61, 0.22);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.button-small {
  min-height: 2.6rem;
  padding-inline: 1rem;
  font-size: 0.94rem;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 250, 243, 0.9);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  min-height: calc(100vh - 7rem);
  align-items: center;
  padding: 2rem 0 3rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  animation: hero-copy-in 720ms cubic-bezier(.2,.75,.25,1) both;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3.2rem, 5.5vw, 4.8rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.hero-text,
.profile-card p,
.agenda-panel p,
.cta-copy p,
.trust-band p,
.site-footer p,
.issue-card p,
.event-card p,
.voice-card p,
.support-card p,
.agenda-list p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-statement {
  max-width: 54ch;
  margin: 1.2rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  font-weight: 500;
  line-height: 1.5;
}

.hero-text {
  max-width: 60ch;
  margin: 1.25rem 0 0;
  font-size: 1.06rem;
}

.hero-subtext {
  margin: 1rem 0 0;
  color: var(--ink);
  font-weight: 500;
}

.quote-mark {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 700px;
  margin: 0 calc((100vw - min(1180px, calc(100vw - 2rem))) / -2) 0 0;
  overflow: hidden;
  border-radius: 42px 0 0 42px;
  background: #b6a99b;
  box-shadow: -24px 28px 80px rgba(60, 43, 20, 0.18);
  animation: hero-reveal 900ms cubic-bezier(.2,.75,.25,1) both;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 35, 30, 0.12), transparent 38%, transparent 72%, rgba(23, 35, 30, 0.18));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  display: block;
  object-fit: cover;
  object-position: 48% center;
  animation: hero-image-in 1.4s cubic-bezier(.2,.75,.25,1) both;
  transition: transform 700ms cubic-bezier(.2,.75,.25,1);
}

.hero-visual:hover img {
  transform: scale(1.025);
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 4vw, 4rem);
  bottom: clamp(1.25rem, 4vw, 3.5rem);
  display: grid;
  gap: 0.15rem;
  max-width: 17rem;
  padding: 1rem 1.2rem;
  color: white;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--accent-soft);
}

.hero-visual figcaption span {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual figcaption strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  line-height: 1.05;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes hero-reveal {
  from { opacity: 0; clip-path: inset(0 0 0 100% round 42px 0 0 42px); }
  to { opacity: 1; clip-path: inset(0 0 0 0 round 42px 0 0 42px); }
}

@keyframes hero-image-in {
  from { transform: scale(1.09); }
  to { transform: scale(1); }
}

.trust-band {
  margin: 1rem 0 5rem;
  padding: 1.2rem 1.4rem;
  border-block: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.issues,
.profile,
.agenda,
.voices,
.events,
.cta {
  margin-top: 5rem;
}

.profile-grid,
.issue-grid,
.event-list,
.voice-grid,
.support-grid {
  display: grid;
  gap: 1.2rem;
}

.profile-grid,
.voice-grid,
.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voice-marquee {
  position: relative;
  display: flex;
  gap: 1.6rem;
  overflow: hidden;
  margin: -0.4rem 0 1.6rem;
  padding: 1.1rem 0;
  border-block: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.voice-marquee-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 1.6rem;
  min-width: max-content;
  animation: voice-marquee 30s linear infinite;
}

.voice-marquee span {
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.voice-marquee span::after {
  content: "|";
  margin-left: 1.6rem;
  color: var(--accent-dark);
}

@keyframes voice-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 1.6rem));
  }
}

.issue-grid,
.event-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-card,
.issue-card,
.event-card,
.voice-card,
.support-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.78);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 500ms ease, opacity 500ms ease;
}

.profile-card.visible,
.issue-card.visible,
.event-card.visible,
.voice-card.visible,
.agenda-panel.visible,
.agenda-list.visible,
.support-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.profile-label,
.voice-label,
.support-label {
  margin: 0 0 0.8rem;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-card h3,
.voice-card h3,
.support-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
}

.voice-card {
  overflow: hidden;
  background: rgba(255, 250, 243, 0.82);
}

.voice-portrait {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 280px;
  margin: -1.4rem -1.4rem 1.35rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 250, 243, 0.52), transparent 26%),
    linear-gradient(145deg, rgba(216, 92, 61, 0.82), rgba(239, 198, 163, 0.92));
}

.voice-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.voice-portrait .voice-image-dietrich {
  object-position: center 16%;
}

.voice-portrait .voice-image-stefanie {
  object-position: center 10%;
}

.voice-portrait .voice-image-benjamin {
  object-position: 58% 24%;
}

.voice-portrait span {
  display: grid;
  place-items: center;
  width: 6.2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.78);
  color: var(--accent-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(60, 43, 20, 0.12);
}

.issue-card span,
.event-date {
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.issue-card h3,
.event-card h3 {
  margin: 0.8rem 0;
  font-size: 1.45rem;
}

.accent-card {
  background: linear-gradient(160deg, rgba(216, 92, 61, 0.95), rgba(163, 65, 37, 0.92));
  color: white;
}

.accent-card span,
.accent-card p {
  color: rgba(255, 255, 255, 0.88);
}

.agenda {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
}

.agenda-panel,
.agenda-list {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 250, 243, 0.8);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 500ms ease, opacity 500ms ease;
}

.agenda-list {
  display: grid;
  gap: 1rem;
}

.agenda-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.agenda-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.agenda-list strong {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.cta {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.support-grid {
  align-items: stretch;
}

.support-card {
  background: rgba(255, 250, 243, 0.84);
  box-shadow: var(--shadow);
}

.support-card .button {
  margin-top: 1.25rem;
}

.site-footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  margin: 5rem 0 1rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 250, 243, 0.84);
}

.legal-page {
  margin: 3rem 0 5rem;
}

.legal-card {
  max-width: 60ch;
  padding: 1.8rem 2rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.84);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 1.8rem 0 0.6rem;
  font-size: 1.15rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-details p {
  margin: 0 0 0.65rem;
}

.footer-details a {
  color: inherit;
}

.footer-note {
  max-width: 42ch;
}

@media (max-width: 1100px) {
  .hero,
  .agenda,
  .cta,
  .issue-grid,
  .event-list,
  .profile-grid,
  .voice-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 620px;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 1.6rem;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
  }

  h1 {
    max-width: none;
    font-size: clamp(2.9rem, 13vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .site-header {
    padding: 0.85rem;
  }

  .brand {
    width: 100%;
  }

  .brand-copy {
    min-width: 0;
  }

  .hero {
    gap: 1.2rem;
    padding-top: 1.2rem;
  }

  .hero-visual {
    order: -1;
    min-height: min(78vh, 620px);
    margin: 0 -0.5rem;
    border-radius: 26px;
  }

  .hero-visual img {
    min-height: min(78vh, 620px);
    object-position: 45% center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .profile-grid,
  .issue-grid,
  .event-list,
  .voice-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    flex-direction: column;
  }

  .hero-points li,
  .site-nav a {
    width: 100%;
  }

  .site-nav {
    display: none;
  }

  .button-small {
    width: 100%;
  }

  .profile-card,
  .issue-card,
  .agenda-panel,
  .agenda-list,
  .event-card,
  .voice-card,
  .support-card,
  .site-footer {
    padding: 1.15rem;
  }

  .voice-portrait {
    min-height: 260px;
    margin: -1.15rem -1.15rem 1.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .voice-marquee {
    overflow-x: auto;
    mask-image: none;
  }
}
