:root {
  --bg: #f5eee6;
  --surface: rgba(255, 251, 246, 0.9);
  --surface-strong: #1b1519;
  --surface-soft: #f0e7de;
  --text: #221b1d;
  --muted: #6b5f66;
  --line: rgba(40, 31, 33, 0.09);
  --line-strong: rgba(40, 31, 33, 0.14);
  --line-light: rgba(255, 255, 255, 0.12);
  --accent: #bc7d4b;
  --accent-strong: #9a6237;
  --accent-soft: rgba(188, 125, 75, 0.1);
  --shadow: 0 26px 72px rgba(30, 20, 18, 0.08);
  --shadow-soft: 0 16px 34px rgba(30, 20, 18, 0.055);
  --shadow-strong: 0 24px 54px rgba(18, 12, 12, 0.14);
  --radius: 24px;
  --radius-small: 16px;
  --max: 1180px;
  --measure: 64ch;
  --section-space: 1.18rem;
  --section-space-tight: 0.38rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(188, 125, 75, 0.1), transparent 27rem),
    radial-gradient(circle at 85% 0%, rgba(149, 129, 138, 0.09), transparent 24rem),
    linear-gradient(180deg, #fcf8f4 0%, #f8f2eb 36%, var(--bg) 100%);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration-color: rgba(184, 111, 49, 0.45);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: rgba(184, 111, 49, 0.85);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

code {
  font-family: Consolas, monospace;
  background: rgba(32, 25, 27, 0.06);
  padding: 0.1rem 0.35rem;
  border-radius: 0.35rem;
}

main { display: block; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 880px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(252, 248, 244, 0.82);
  border-bottom: 1px solid rgba(40, 31, 33, 0.05);
  box-shadow: 0 10px 26px rgba(24, 16, 14, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.1rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  z-index: 120;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(40, 31, 33, 0.14);
  background: rgba(255, 252, 247, 0.98);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(15, 10, 11, 0.16);
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-nav a {
  padding: 0.58rem 0.84rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(34, 27, 29, 0.045);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.84);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  font-weight: 600;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6.2rem 0 3.35rem;
  isolation: isolate;
  color: var(--text);
}

.page-hero:not(.page-hero--immersive) .hero-inner {
  max-width: 940px;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(249, 242, 235, 0.96)),
    radial-gradient(circle at top right, rgba(188, 125, 75, 0.08), transparent 18rem);
  box-shadow: var(--shadow-soft);
}

.page-hero:not(.page-hero--immersive) h1 {
  max-width: 15ch;
  color: var(--text);
  line-height: 1.01;
  text-shadow: none;
}

.page-hero:not(.page-hero--immersive) .eyebrow {
  color: var(--accent-strong);
}

.page-hero:not(.page-hero--immersive) .lead,
.page-hero:not(.page-hero--immersive) .hero-note {
  color: var(--muted);
}

.page-hero--immersive {
  color: #f6f1ea;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 16, 18, 0.94), rgba(11, 9, 10, 0.98));
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 12, 13, 0.3), rgba(14, 12, 13, 0.62)),
    radial-gradient(circle at 22% 30%, rgba(188, 125, 75, 0.2), transparent 28rem);
  z-index: 1;
}

.hero-media .media-asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: blur(8px) brightness(0.74) saturate(0.84);
  transform: scale(1.06);
  opacity: 0.92;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: min(1060px, 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  max-width: 40rem;
  padding-top: 0.12rem;
}

.hero-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  justify-self: end;
  width: min(100%, 25rem);
  background: linear-gradient(180deg, rgba(24, 18, 21, 0.82), rgba(18, 14, 17, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
  color: #f6f1ea;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%),
    radial-gradient(circle at top right, rgba(188, 125, 75, 0.16), transparent 48%);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  z-index: -1;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01));
}

.hero-panel > * + * { margin-top: 0.82rem; }
.hero-panel p:last-child { margin-bottom: 0; }

.hero-panel .media-surface {
  margin-bottom: 1.18rem;
  padding: 0.52rem;
  border-radius: calc(var(--radius) - 2px);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(11, 10, 12, 0.96), rgba(20, 16, 18, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 34px rgba(9, 7, 8, 0.2);
}

.hero-panel .media-surface::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    radial-gradient(circle at top, rgba(188, 125, 75, 0.12), transparent 54%);
}

.hero-panel .media-asset {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.04;
  object-fit: contain;
  object-position: center top;
  border-radius: calc(var(--radius) - 10px);
  background: #0c0d10;
}

.hero-panel p {
  max-width: none;
  color: rgba(246, 241, 234, 0.8);
  line-height: 1.6;
}

.hero-panel p strong {
  color: #fff6eb;
}

.hero-kicker {
  margin: 0 0 0.7rem;
  color: #f0c58d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: -0.034em;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 4.65rem);
  max-width: 12ch;
}

.page-hero--immersive h1 {
  color: #fff7ef;
  max-width: 12.7ch;
  line-height: 0.98;
  letter-spacing: -0.042em;
  text-shadow: 0 8px 22px rgba(7, 5, 6, 0.28);
}

h2 {
  font-size: clamp(1.58rem, 3.4vw, 2.34rem);
  margin: 0 0 0.9rem;
}

h3 {
  font-size: clamp(1.14rem, 2.3vw, 1.42rem);
  margin: 0 0 0.72rem;
}

p, li, summary { font-size: 0.99rem; }

p { margin: 0 0 0.95rem; }

ul, ol {
  margin: 0.9rem 0 0;
  padding-left: 1.15rem;
}

.lead {
  margin: 1.18rem 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.55vw, 1.13rem);
  max-width: 42ch;
  line-height: 1.74;
}

.page-hero--immersive .eyebrow {
  color: rgba(240, 197, 141, 0.94);
}

.page-hero--immersive .lead,
.page-hero--immersive .hero-note {
  color: rgba(246, 241, 234, 0.82);
}

.hero-note {
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 46ch;
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 1.55rem;
  align-items: center;
}

.hero-actions .button {
  flex: 0 0 auto;
  min-width: 12.75rem;
  max-width: none;
}

.hero-actions .button:first-child {
  min-width: 16.4rem;
  box-shadow: 0 16px 32px rgba(171, 108, 62, 0.2);
}

.page-hero--immersive .hero-actions .button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(246, 241, 234, 0.94);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.28rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust a,
.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 2.28rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(34, 27, 29, 0.04);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.89rem;
}

.page-hero--immersive .hero-trust a,
.page-hero--immersive .hero-trust span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(246, 241, 234, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.page-section {
  padding: var(--section-space) 0;
}

.page-section > .container {
  position: relative;
}

.page-section + .page-section {
  padding-top: var(--section-space-tight);
}

.page-section > .container.grid > .col > p:first-child + h2,
.page-section > .container.grid > .col > p:first-child + h3 {
  margin-top: 0.14rem;
}

.page-section > .container.grid > .col > h2,
.page-section > .container.grid > .col > h3 {
  max-width: 19ch;
}

.page-section > .container.grid > .col > h2 + p,
.page-section > .container.grid > .col > h3 + p {
  max-width: 54ch;
}

.section-dark {
  color: #f6f1ea;
}

.section-dark .container {
  background: linear-gradient(180deg, rgba(31, 24, 28, 0.97), rgba(21, 17, 21, 0.985));
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1.22rem, 2vw, 1.82rem);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.col { min-width: 0; }
.col-12 { grid-column: span 12; }
.col-8 { grid-column: span 8; }
.col-7 { grid-column: span 7; }
.col-6 { grid-column: span 6; }
.col-5 { grid-column: span 5; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }

.col > * + * {
  margin-top: 0.95rem;
}

.col > p,
.col > ul,
.col > ol,
.col > details,
.col > nav,
.col > blockquote,
.col > figure,
.col > div,
.col > section {
  max-width: 100%;
}

.col > p,
.card p,
details p,
.notice p {
  max-width: var(--measure);
}

.card,
.quote-card,
.notice {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(252, 247, 241, 0.88));
  border: 1px solid rgba(40, 31, 33, 0.07);
  border-radius: var(--radius);
  padding: clamp(1.14rem, 1.85vw, 1.52rem);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.content-card {
  padding: clamp(1.12rem, 1.85vw, 1.48rem);
}

.card > .inner-grid > .col > * + * {
  margin-top: 0.78rem;
}

.inner-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.82rem;
}

.content-card > .inner-grid {
  min-height: 100%;
  align-content: start;
}

.section-dark .card,
.section-dark .quote-card,
.section-dark .notice {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.52rem;
  padding: 0.92rem 1.46rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(180deg, #d59a6c, #bc7a47);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(171, 108, 62, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(171, 108, 62, 0.18);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: wait;
  opacity: 0.74;
  transform: none;
  box-shadow: 0 8px 18px rgba(171, 108, 62, 0.12);
}

.button:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(188, 125, 75, 0.18),
    0 12px 24px rgba(171, 108, 62, 0.14);
}

a:focus-visible,
summary:focus-visible {
  outline: none;
  border-radius: 0.65rem;
  box-shadow:
    0 0 0 3px rgba(188, 125, 75, 0.18),
    0 0 0 1px rgba(92, 62, 50, 0.28);
}

.button-secondary {
  background: rgba(34, 27, 29, 0.03);
  color: var(--text);
  border: 1px solid rgba(40, 31, 33, 0.12);
  box-shadow: none;
  font-weight: 620;
}

.button-secondary:hover {
  background: rgba(34, 27, 29, 0.045);
}

.section-dark .button-secondary {
  color: #f6f1ea;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.section-dark .button-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
}

.cta-wrap {
  margin: 1.12rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
  align-items: center;
}

.cta-wrap + .cta-wrap {
  margin-top: 0.72rem;
}

.card .cta-wrap,
.notice .cta-wrap,
.section-dark .container > .grid > .col > .cta-wrap {
  margin-top: 1.18rem;
}

.feature-list,
.download-list {
  padding-left: 1.15rem;
  margin: 0.9rem 0 0;
}

.feature-list li,
.download-list li,
ul li,
ol li {
  margin: 0.35rem 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0.72rem;
  border: 1px solid rgba(40, 31, 33, 0.08);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(249, 242, 235, 0.84));
  box-shadow: var(--shadow-soft);
}

.trust-chip {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(40, 31, 33, 0.07);
  border-radius: 999px;
  padding: 0.84rem 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 240, 233, 0.86));
  text-align: center;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.42;
}

.link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.link-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(32, 25, 27, 0.05);
  text-decoration: none;
}

.section-dark .link-pills a {
  background: rgba(255, 255, 255, 0.06);
}

.quote-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.quote-card p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.66;
}

.quote-card footer {
  color: var(--muted);
  font-size: 0.95rem;
}
.feedback-shell {
  display: grid;
  gap: 1.35rem;
  max-width: 56rem;
  margin-inline: auto;
}

.feedback-copy {
  display: grid;
  gap: 0.72rem;
}

.feedback-copy h2 {
  max-width: 18ch;
  margin-bottom: 0;
}

.feedback-copy .eyebrow {
  margin-bottom: 0;
}

.feedback-lead,
.feedback-assistive,
.feedback-field-hint,
.feedback-scale,
.feedback-privacy-note {
  color: var(--muted);
}

.feedback-lead,
.feedback-assistive,
.feedback-privacy-note {
  max-width: 52ch;
  margin: 0;
}

.feedback-assistive,
.feedback-field-hint,
.feedback-scale,
.feedback-privacy-note,
.feedback-checkbox {
  font-size: 0.94rem;
  line-height: 1.62;
}

.feedback-form {
  display: grid;
  gap: 1.05rem;
  max-width: 44rem;
}

.feedback-field,
.feedback-fieldset {
  display: grid;
  gap: 0.52rem;
}

.feedback-fieldset {
  margin: 0;
  padding: 1rem 1rem 1.05rem;
  border: 0;
  border-radius: calc(var(--radius) - 6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 241, 234, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.section-dark .feedback-fieldset {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feedback-fieldset legend,
.feedback-field label {
  display: block;
  margin: 0;
  font-weight: 700;
  line-height: 1.45;
}

.feedback-required {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.feedback-stars-control {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.42rem;
  flex-wrap: wrap;
}

.feedback-stars-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.feedback-stars-control label {
  width: 3.25rem;
  min-width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(40, 31, 33, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  color: rgba(188, 125, 75, 0.35);
  cursor: pointer;
  font-size: 1.72rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(26, 19, 18, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.section-dark .feedback-stars-control label {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(240, 197, 141, 0.34);
  box-shadow: none;
}

.feedback-stars-control label:hover,
.feedback-stars-control label:hover ~ label,
.feedback-stars-control input:checked + label,
.feedback-stars-control input:checked + label ~ input + label {
  color: var(--accent);
  border-color: rgba(188, 125, 75, 0.34);
  background: rgba(255, 249, 243, 0.96);
}

.section-dark .feedback-stars-control label:hover,
.section-dark .feedback-stars-control label:hover ~ label,
.section-dark .feedback-stars-control input:checked + label,
.section-dark .feedback-stars-control input:checked + label ~ input + label {
  background: rgba(255, 255, 255, 0.1);
}

.feedback-stars-control input:focus-visible + label {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(188, 125, 75, 0.18),
    0 0 0 1px rgba(92, 62, 50, 0.28);
}

.feedback-input,
.feedback-textarea {
  width: 100%;
  border: 1px solid rgba(40, 31, 33, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  line-height: 1.6;
  padding: 0.92rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.section-dark .feedback-input,
.section-dark .feedback-textarea {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #f6f1ea;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feedback-input::placeholder,
.feedback-textarea::placeholder {
  color: rgba(107, 95, 102, 0.85);
}

.section-dark .feedback-input::placeholder,
.section-dark .feedback-textarea::placeholder {
  color: rgba(246, 241, 234, 0.58);
}

.feedback-textarea {
  min-height: 11rem;
  resize: vertical;
}

.feedback-input:focus-visible,
.feedback-textarea:focus-visible,
.feedback-checkbox input:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(188, 125, 75, 0.18),
    0 0 0 1px rgba(92, 62, 50, 0.28);
}

.feedback-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(34, 27, 29, 0.03);
  color: var(--muted);
}

.section-dark .feedback-checkbox {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(246, 241, 234, 0.82);
}

.feedback-checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.feedback-actions {
  display: grid;
  gap: 0.78rem;
  align-items: start;
  padding-top: 0.1rem;
}

.feedback-actions .button {
  min-width: 15rem;
}

.feedback-status {
  display: none;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.feedback-status[data-state="error"],
.feedback-status[data-state="success"] {
  display: block;
}

.feedback-status[data-state="error"] {
  color: #8a3434;
  background: rgba(176, 71, 71, 0.08);
  border: 1px solid rgba(176, 71, 71, 0.16);
}

.feedback-status[data-state="success"] {
  color: #3f6f4b;
  background: rgba(63, 111, 75, 0.08);
  border: 1px solid rgba(63, 111, 75, 0.14);
}

.section-dark .feedback-status[data-state="error"] {
  color: #f1c1c1;
  background: rgba(176, 71, 71, 0.12);
  border-color: rgba(241, 193, 193, 0.14);
}

.section-dark .feedback-status[data-state="success"] {
  color: #cde4d2;
  background: rgba(63, 111, 75, 0.16);
  border-color: rgba(205, 228, 210, 0.12);
}

.feedback-honeypot {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

.feedback-testimonials-head {
  max-width: 44rem;
  margin-bottom: 1.05rem;
}

.feedback-testimonials-head > * + * {
  margin-top: 0.72rem;
}

.feedback-testimonial-card {
  display: grid;
  align-content: start;
  padding: 1.15rem;
}

.feedback-testimonial-rating {
  margin: 0 0 0.74rem;
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.feedback-testimonial-text {
  white-space: pre-line;
}

.feedback-testimonial-card footer {
  margin-top: 0.25rem;
  font-weight: 600;
}
.media { margin: 0; }

.media img {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1rem 0;
}

.notice p:first-child { margin-top: 0; }
.notice p:last-child { margin-bottom: 0; }

.page--faq .hero-inner,
.page--faq-heart-reset .hero-inner,
.page--impressum .hero-inner,
.page--datenschutz .hero-inner,
.page--widerruf .hero-inner,
.page--agb .hero-inner {
  max-width: 940px;
}

.page--faq .page-section .col-8,
.page--faq .page-section .col-7,
.page--faq .page-section .col-6,
.page--faq .page-section .col-5,
.page--faq .page-section .col-4,
.page--faq .page-section .col-3,
.page--faq-heart-reset .page-section .col-8,
.page--faq-heart-reset .page-section .col-7,
.page--faq-heart-reset .page-section .col-6,
.page--faq-heart-reset .page-section .col-5,
.page--faq-heart-reset .page-section .col-4,
.page--faq-heart-reset .page-section .col-3 {
  max-width: 100%;
}

details {
  background: rgba(32, 25, 27, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 1rem 1.05rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.82), rgba(249, 243, 236, 0.76));
}

details + details {
  margin-top: 0.8rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  line-height: 1.45;
}

summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  margin-bottom: 0.65rem;
}

.site-footer {
  padding: 3.8rem 0 2.6rem;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.4fr 1fr;
  border-top: 1px solid rgba(40, 31, 33, 0.08);
  padding-top: 1.65rem;
}

.footer-title {
  margin: 0 0 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.media-break {
  margin: 1.9rem 0 1.55rem;
}

.media-break .container {
  position: relative;
}

.media-surface {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(25, 19, 22, 0.98), rgba(17, 14, 16, 0.96));
  box-shadow: var(--shadow-strong);
}

.media-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%),
    radial-gradient(circle at top, rgba(188, 125, 75, 0.16), transparent 58%);
}

.media-surface--break,
.media-surface--micro,
.media-surface--focus {
  padding: clamp(0.78rem, 1.6vw, 1.08rem);
}

.media-surface .media-asset {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius) - 6px);
  background: #080808;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.micro-media {
  margin: 1.18rem 0 0.52rem;
}

.media-surface--break .media-asset,
.media-surface--focus .media-asset {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: clamp(0.2rem, 1vw, 0.55rem);
}

.media-surface--micro .media-asset {
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.media-focus {
  margin: 3.7rem auto 1.95rem;
}

.media-focus .media-surface {
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 28px 60px rgba(16, 12, 12, 0.15);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-content: start;
  justify-content: flex-end;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; margin-left: auto; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 247, 242, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open { display: grid; }

  .page-hero { padding: 4.7rem 0 2.05rem; }
  .page-hero:not(.page-hero--immersive) .hero-inner { padding: 1.15rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .hero-copy,
  .hero-panel { max-width: none; }
  .hero-panel { width: 100%; justify-self: stretch; }
  .hero-panel .media-surface { margin-bottom: 1rem; }
  h1 { max-width: none; }

  .grid,
  .inner-grid {
    gap: 0.9rem;
  }

  .col-8,
  .col-7,
  .col-6,
  .col-5,
  .col-4,
  .col-3 {
    grid-column: span 12;
  }

  .button {
    width: 100%;
    min-height: 3.38rem;
  }

  .hero-actions {
    width: 100%;
    gap: 0.62rem;
  }

  .hero-actions .button,
  .hero-actions .button:first-child {
    min-width: 0;
    width: 100%;
  }

  .link-pills a {
    width: 100%;
    justify-content: center;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .media-break {
    margin: 1.35rem 0 1.2rem;
  }

  .media-focus {
    margin: 2.35rem auto 1.55rem;
  }
}

@media (max-width: 768px) {
  .feedback-stars-control label {
    font-size: 1.8rem;
  }

  .feedback-actions .button {
    width: 100%;
  }
  .page-hero {
    padding: 4rem 0 1.72rem;
  }

  .page-hero:not(.page-hero--immersive) h1 {
    max-width: 14ch;
  }

  .hero-media .media-asset {
    filter: blur(6px) brightness(0.66) saturate(0.86);
    transform: scale(1.04);
  }

  .hero-copy {
    max-width: 100%;
  }

  .page-hero--immersive h1 {
    max-width: 10.8ch;
    font-size: clamp(1.98rem, 8.2vw, 2.92rem);
  }

  .lead {
    max-width: 31ch;
    line-height: 1.68;
  }

  .hero-panel {
    padding: 1.05rem;
  }

  .hero-panel .media-asset {
    aspect-ratio: 1.12;
  }

  .media-surface--break .media-asset,
  .media-surface--focus .media-asset,
  .media-surface--micro .media-asset {
    aspect-ratio: auto;
  }

  .page-section {
    padding: 0.94rem 0;
  }

  .page-section + .page-section {
    padding-top: 0.22rem;
  }

  .page-section > .container.grid > .col > h2,
  .page-section > .container.grid > .col > h3 {
    max-width: none;
  }

  .section-dark .container,
  .card,
  .quote-card,
  .notice {
    padding: 1rem;
  }

  .content-card {
    padding: 1rem;
  }

  .trust-strip {
    padding: 0.62rem;
    gap: 0.62rem;
  }

  .page-section > .container.grid > .col > h2 + p,
  .page-section > .container.grid > .col > h3 + p {
    max-width: 100%;
  }

  .media-surface {
    border-radius: 23px;
  }

  .media-surface--break,
  .media-surface--micro,
  .media-surface--focus {
    padding: 0.62rem;
  }
}

@media (max-width: 560px) {
  body { line-height: 1.62; }

  .container {
    width: min(calc(100% - 1rem), var(--max));
  }

  .site-header { backdrop-filter: blur(14px); }

  .section-dark .container {
    border-radius: 24px;
    padding: 0.94rem;
  }

  .card,
  .quote-card,
  .notice {
    border-radius: 20px;
    padding: 0.94rem;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
  }

  .page-section {
    padding: 0.76rem 0;
  }

  .lead {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
    margin-top: 1.18rem;
  }

  .hero-actions .button,
  .hero-actions .button:first-child {
    width: 100%;
    min-width: 0;
  }

  .hero-panel {
    padding: 0.94rem;
  }

  .hero-trust {
    gap: 0.4rem;
    margin-top: 0.94rem;
    padding-top: 0.78rem;
  }

  .hero-panel .media-surface {
    margin-bottom: 0.82rem;
    padding: 0.4rem;
  }

  .hero-panel .media-asset {
    aspect-ratio: 1.08;
  }

  .hero-trust a,
  .hero-trust span {
    width: 100%;
    justify-content: center;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 0.52rem;
    gap: 0.52rem;
  }

  .cta-wrap {
    margin-top: 0.82rem;
  }

  .media-surface {
    border-radius: 20px;
  }

  .media-surface .media-asset {
    border-radius: 14px;
  }

  .media-focus .media-surface {
    border-radius: 22px;
  }

  .content-card {
    padding: 0.94rem;
  }
}

.about-intro-grid {
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.about-portrait-col {
  display: flex;
}

.about-copy-col {
  display: grid;
  align-content: center;
}

.about-portrait {
  width: min(100%, 24rem);
  margin: 0;
  padding: 0.62rem;
  border-radius: calc(var(--radius) + 4px);
}

.about-portrait .media-asset {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center 22%;
}

@media (max-width: 860px) {
  .about-intro-grid {
    gap: 1rem;
  }

  .about-portrait {
    width: min(100%, 22rem);
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .about-portrait {
    padding: 0.46rem;
  }

  .about-portrait .media-asset {
    aspect-ratio: 0.88;
    object-position: center 18%;
  }
}

/* ── Sticky Akut-Hilfe Button ───────────────────────────────────────── */
.akut-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: #c0392b;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(192,57,43,0.45);
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
  white-space: nowrap;
}

.akut-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(192,57,43,0.55);
  text-decoration: none;
}

.page--go-freebie-screen-1-2 .akut-btn,
.page--go-freebie-screen-2-2 .akut-btn,
.page--freebie-danke-angebot-2 .akut-btn {
  display: none;
}

/* ── Gratis-Reset Funnel Progress Bar ──────────────────────────────── */
.funnel-progress {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
}

.funnel-progress .container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.funnel-progress-steps {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex: 1;
}

.funnel-progress-step {
  height: 5px;
  border-radius: 99px;
  flex: 1;
  background: var(--line-strong);
}

.funnel-progress-step.is-done {
  background: var(--accent);
}

.funnel-progress-label {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Social-Proof Leiste ───────────────────────────────────────────── */
.social-proof-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1rem 0;
  text-align: center;
}

.social-proof-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.social-proof-bar-item strong {
  font-size: 1.25rem;
  color: var(--accent-strong);
}

.social-proof-bar-item span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
}