:root {
  --ink: #17201c;
  --muted: #64706a;
  --line: #e6e2d9;
  --paper: #fbf8f1;
  --white: #ffffff;
  --soft: #f2eadc;
  --accent: #a8763e;
  --accent-dark: #75512c;
  --sage: #dbe4d6;
  --shadow: 0 24px 70px rgba(31, 35, 32, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5vw;
  background: rgba(251, 248, 241, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 226, 217, 0.8);
}

.brand { display: flex; gap: 12px; align-items: center; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand strong { display: block; font-size: 1rem; }
.brand small { display: block; color: var(--muted); font-size: 0.78rem; margin-top: -2px; }

.nav { display: flex; gap: 22px; align-items: center; color: var(--muted); font-size: 0.94rem; }
.nav a:hover { color: var(--ink); }
.nav-cta { border: 1px solid var(--line); padding: 9px 14px; border-radius: 999px; background: var(--white); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 720px;
  padding: 96px 5vw 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  align-items: end;
  gap: 54px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, rgba(251,248,241,0.98) 0%, rgba(251,248,241,0.84) 40%, rgba(251,248,241,0.30) 100%),
    radial-gradient(circle, rgba(191, 166, 214, 0.34) 0%, rgba(191, 166, 214, 0.14) 32%, rgba(191, 166, 214, 0) 60%),
    radial-gradient(circle, rgba(236, 184, 205, 0.30) 0%, rgba(236, 184, 205, 0.12) 28%, rgba(236, 184, 205, 0) 58%),
    radial-gradient(circle, rgba(222, 193, 224, 0.20) 0%, rgba(222, 193, 224, 0) 42%),
    url('assets/hero-portrait-schweizer-auswahl.webp');
  background-position: center, 18% 20%, 40% 12%, 78% 18%, 68% center;
  background-size: auto, auto, auto, auto, cover;
  background-repeat: no-repeat;
  z-index: -2;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 300px;
  background: linear-gradient(0deg, var(--paper), transparent);
}
.hero-content { max-width: 780px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -0.04em; }
h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.3rem, 8vw, 7.4rem);
  max-width: 980px;
}
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: 1.35rem; }
.hero-lead { max-width: 650px; font-size: 1.25rem; color: #3e4842; margin: 24px 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}
.button.primary { background: var(--ink); color: var(--paper); }
.button.primary:hover { background: #2a342f; }
.button.secondary { background: rgba(255,255,255,0.72); border-color: var(--line); }
.button.secondary:hover { background: var(--white); }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.trust-row span { background: rgba(255,255,255,0.66); border: 1px solid var(--line); padding: 8px 12px; border-radius: 999px; color: #4a554f; font-size: 0.9rem; }

.hero-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow);
  border-radius: 32px;
  padding: 32px;
  backdrop-filter: blur(14px);
}
.badge { display: inline-flex; padding: 7px 11px; background: var(--sage); border-radius: 999px; font-weight: 800; font-size: 0.8rem; margin-bottom: 16px; }
.hero-card h2 { font-size: 2rem; margin-bottom: 14px; }
.hero-card p { color: var(--muted); }
.mini-stat { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; gap: 16px; align-items: center; }
.mini-stat strong { font-size: 3rem; font-family: "Playfair Display", Georgia, serif; }
.mini-stat span { color: var(--muted); }

.section { padding: 74px 5vw; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.intro-grid p:last-child { font-size: 1.13rem; color: var(--muted); max-width: 660px; }
.section-heading { display: flex; justify-content: space-between; gap: 36px; align-items: end; margin-bottom: 34px; }
.section-heading p { color: var(--muted); max-width: 520px; margin: 0; }

.premium-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 22px; }
.premium-card {
  min-height: 410px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 32px;
  background: #ddd;
  box-shadow: var(--shadow);
}
.premium-card.small { min-height: 220px; }
.premium-stack { display: grid; gap: 22px; }
.premium-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.premium-card:hover img { transform: scale(1.04); }
.premium-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.66), rgba(0,0,0,0.02) 65%); }
.premium-content { position: relative; z-index: 1; color: white; padding: 28px; width: 100%; box-sizing: border-box; }
.premium-content p { margin: 8px 0 0; max-width: 620px; color: rgba(255,255,255,0.82); }
.premium-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; max-width: 100%; }
.premium-meta span { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.24); padding: 5px 9px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; line-height: 1.2; }
.premium-card.small .premium-content { padding: 20px; }
.premium-card.small .premium-content p { font-size: 0.9rem; line-height: 1.45; }
.premium-card.small h3 { font-size: 1.12rem; line-height: 1.2; }
.premium-card.small .premium-readmore { margin-top: 10px; padding: 7px 10px; font-size: 0.78rem; }


.filters { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.filter-dropdowns label { display: grid; gap: 7px; min-width: 220px; }
.filter-dropdowns label span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 800; }
.filter-select {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(31,35,32,0.05);
}
.no-results { color: var(--muted); font-weight: 700; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.portrait-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31,35,32,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.portrait-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-image { height: 220px; background: var(--soft); overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-body { padding: 24px; }
.card-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.card-meta span { background: var(--soft); color: var(--accent-dark); font-weight: 800; border-radius: 999px; padding: 5px 9px; font-size: 0.76rem; }
.card-body p { color: var(--muted); }
.card-link { display: inline-flex; margin-top: 8px; color: var(--accent-dark); font-weight: 800; }

.principle { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; align-items: stretch; }
.principle-card, .principle-list { background: var(--white); border: 1px solid var(--line); border-radius: 32px; padding: 34px; }
.principle-card p:last-child { color: var(--muted); font-size: 1.06rem; }
.principle-list { display: grid; gap: 18px; }
.principle-list div { border-left: 4px solid var(--accent); padding-left: 18px; }
.principle-list p { margin: 6px 0 0; color: var(--muted); }

.offer {
  margin: 0 5vw 70px;
  padding: 42px;
  border-radius: 34px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}
.offer p { color: rgba(251,248,241,0.72); max-width: 680px; }
.offer .eyebrow { color: #e6caa5; }
.offer .button.primary { background: var(--paper); color: var(--ink); }

.footer { padding: 34px 5vw; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; color: var(--muted); }
.footer strong { color: var(--ink); }
.footer p { margin: 6px 0 0; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--ink); }

.legal-page { max-width: 880px; margin: 0 auto; padding: 80px 5vw; }
.legal-page h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); margin-bottom: 22px; }
.legal-page h2 { font-size: 1.6rem; margin-top: 32px; }
.legal-page p, .legal-page li { color: var(--muted); }
.notice { background: var(--soft); border: 1px solid var(--line); border-radius: 20px; padding: 18px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-card { max-width: 620px; }
  .hero-bg { background-position: center, 16% 18%, 42% 10%, 82% 18%, 74% center; }
  .premium-grid, .intro-grid, .principle { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-heading { display: block; }
  .section-heading p { margin-top: 14px; }
}

@media (max-width: 700px) {
  .site-header { align-items: center; gap: 12px; flex-direction: row; flex-wrap: wrap; padding: 14px 5vw; }
  .brand { flex: 1; min-width: 0; }
  .brand strong { font-size: 0.98rem; }
  .brand small { font-size: 0.76rem; }
  .nav-toggle { display: inline-flex; }
  .nav { display: none; width: 100%; overflow: visible; padding: 8px 0 4px; flex-direction: column; align-items: stretch; gap: 8px; color: var(--ink); }
  .nav.nav-open { display: flex; }
  .nav a { padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,0.86); }
  .nav-cta { padding: 12px 14px; border-radius: 14px; }
  h1 { font-size: 3.3rem; }
  .hero-bg { background-position: center, 14% 16%, 40% 8%, 82% 16%, 77% center; }
  .card-grid { grid-template-columns: 1fr; }
  .premium-grid { display: block; }
  .premium-stack { margin-top: 18px; }
  .offer { flex-direction: column; align-items: flex-start; margin-left: 5vw; margin-right: 5vw; }
  .footer { flex-direction: column; }
}

.button.ghost {
  background: rgba(23,32,28,0.08);
  border-color: rgba(23,32,28,0.16);
  color: var(--ink);
}
.button.ghost:hover { background: rgba(23,32,28,0.14); }
.button.full { width: 100%; }

.suggestion {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 390px;
  gap: 28px;
  align-items: stretch;
}
.suggestion-content,
.suggestion-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(31,35,32,0.06);
}
.suggestion-content {
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(242,234,220,0.68)),
    radial-gradient(circle at top right, rgba(168,118,62,0.18), transparent 42%);
}
.suggestion-content p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}
.suggestion-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.suggestion-card p { color: var(--muted); }
.suggestion-card small,
.suggest-form small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.45;
}
.suggestion-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.suggestion-steps span {
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
  font-size: 0.86rem;
}

.page-hero {
  padding: 88px 5vw 44px;
  max-width: 980px;
}
.page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); }
.page-hero p:not(.eyebrow) { color: var(--muted); font-size: 1.16rem; max-width: 780px; }
.form-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  padding-top: 20px;
}
.form-copy,
.suggest-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 12px 40px rgba(31,35,32,0.06);
}
.form-copy p { color: var(--muted); }
.principle-list.compact {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin-top: 24px;
}
.suggest-form {
  display: grid;
  gap: 16px;
}
.suggest-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}
.suggest-form input,
.suggest-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}
.suggest-form textarea { resize: vertical; }
.checkbox-label {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
}
.checkbox-label input { width: auto; margin-top: 5px; }

@media (max-width: 980px) {
  .suggestion,
  .form-section { grid-template-columns: 1fr; }
}


/* KI-/Suchmaschinen-Sichtbarkeit und Inhaltsseiten */
.ai-visibility { padding-top: 28px; }
.ai-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, var(--white), var(--soft));
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 14px 42px rgba(31,35,32,0.06);
}
.ai-panel p { color: var(--muted); max-width: 760px; }
.ai-points { display: grid; gap: 12px; }
.ai-points span {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 800;
  color: var(--accent-dark);
}
.page-hero {
  padding: 96px 5vw 56px;
  background: linear-gradient(135deg, var(--paper), var(--soft));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 980px; font-size: clamp(2.5rem, 7vw, 5.8rem); }
.page-hero p:last-child { max-width: 820px; color: var(--muted); font-size: 1.15rem; }
.content-page { display: grid; gap: 22px; max-width: 1080px; margin: 0 auto; }
.content-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 10px 34px rgba(31,35,32,0.05);
}
.content-card p { color: var(--muted); }
.highlight-card { background: linear-gradient(135deg, var(--white), var(--sage)); }
.example-card { background: var(--ink); color: var(--paper); }
.example-card p { color: rgba(251,248,241,0.74); }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 20px 0; }
.before-after div { border: 1px solid rgba(251,248,241,0.18); background: rgba(251,248,241,0.06); border-radius: 22px; padding: 22px; }
.before-after strong { display: block; margin-bottom: 8px; color: #e6caa5; }
@media (max-width: 860px) {
  .ai-panel, .before-after { grid-template-columns: 1fr; }
}



.hero-card-link { padding: 0; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.hero-card-link:hover { transform: translateY(-3px); box-shadow: 0 30px 90px rgba(31,35,32,0.18); }
.hero-card-link a { display: block; padding: 32px; color: inherit; height: 100%; }
.special-link { display: inline-flex; margin-top: 18px; font-weight: 800; color: var(--accent-dark); }

.subpage-hero {
  padding: 150px 5vw 80px;
  background: linear-gradient(135deg, var(--soft), #f7efe3);
  border-bottom: 1px solid var(--line);
}
.subpage-hero h1 { max-width: 980px; font-size: clamp(2.7rem, 7vw, 5.7rem); }
.subpage-hero p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 1.18rem; }
.selection-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.selection-intro > p { color: var(--muted); font-size: 1.08rem; }
.selection-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; padding-top: 0; }
.selection-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(31,35,32,0.05);
}
.selection-card img { width: 100%; height: 230px; object-fit: cover; display: block; }
.selection-card > div { padding: 26px; }
.selection-card p { color: var(--muted); }
.selection-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
.selection-card.featured img { height: 100%; min-height: 360px; }
.selection-card.featured > div { display: flex; flex-direction: column; justify-content: center; padding: 42px; }
.selection-card.featured h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
.portrait-badge.dark { background: var(--sage); color: var(--ink); border-color: transparent; margin-bottom: 14px; }
@media (max-width: 800px) {
  .selection-intro,
  .selection-grid,
  .selection-card.featured { grid-template-columns: 1fr; }
  .selection-card.featured img { min-height: 260px; }
}

/* Unternehmensporträts */
.premium-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  color: inherit;
}
.premium-readmore {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 999px;
  color: white;
  font-weight: 800;
  font-size: 0.86rem;
  background: rgba(255,255,255,0.12);
}
.portrait-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 96px 5vw 58px;
  overflow: hidden;
  color: var(--paper);
}
.portrait-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.portrait-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23,32,28,0.86), rgba(23,32,28,0.24));
  z-index: -1;
}
.portrait-hero-content { max-width: 980px; }
.portrait-hero h1 { font-size: clamp(2.7rem, 7vw, 6.1rem); }
.portrait-hero p:not(.eyebrow) { max-width: 760px; font-size: 1.16rem; color: rgba(251,248,241,0.82); }
.portrait-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  font-weight: 800;
  color: white;
}
.portrait-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.portrait-article,
.facts-box,
.profile-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 10px 34px rgba(31,35,32,0.05);
}
.portrait-article p { color: var(--muted); font-size: 1.06rem; }
.portrait-article p:first-of-type { color: #3e4842; font-size: 1.16rem; }
.facts-box { position: sticky; top: 94px; }
.facts-box h2 { font-size: 1.5rem; margin-bottom: 18px; }
.fact-row { display: grid; gap: 4px; padding: 13px 0; border-top: 1px solid var(--line); }
.fact-row strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-dark); }
.fact-row span { color: var(--muted); }
.profile-note { margin-top: 20px; background: var(--soft); }
.profile-note p { margin: 0; color: var(--muted); }
.back-link { display: inline-flex; margin-top: 28px; color: var(--accent-dark); font-weight: 800; }
@media (max-width: 900px) {
  .portrait-layout { grid-template-columns: 1fr; }
  .facts-box { position: static; }
}


.privacy-banner {
  position: fixed;
  left: 5vw;
  right: 5vw;
  bottom: 18px;
  z-index: 100;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.privacy-banner[hidden] { display: none; }
.privacy-banner p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.privacy-banner strong { color: var(--ink); }
.privacy-banner a { color: var(--accent-dark); font-weight: 800; }
.privacy-banner button {
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  padding: 11px 18px;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .privacy-banner { left: 14px; right: 14px; bottom: 14px; flex-direction: column; align-items: flex-start; }
  .privacy-banner button { width: 100%; }
}

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

.suggest-form a {
  color: var(--accent);
  font-weight: 800;
}

.thanks-hero {
  min-height: 58vh;
}
