:root {
  --ink: #202522;
  --ink-soft: #4e5751;
  --paper: #f5f2eb;
  --paper-warm: #ebe7de;
  --surface: #fffdf8;
  --forest: #28453a;
  --forest-deep: #173128;
  --sage: #617b6e;
  --brass: #a48248;
  --brass-light: #d6c49f;
  --line: #d8d4cb;
  --danger: #872f2f;
  --success: #2e674c;
  --shadow-sm: 0 1px 2px rgba(27, 34, 30, 0.08), 0 8px 24px rgba(27, 34, 30, 0.06);
  --shadow-lg: 0 24px 70px rgba(20, 31, 25, 0.16);
  --radius-sm: 0.45rem;
  --radius-md: 0.9rem;
  --radius-lg: 1.4rem;
  --content: 73rem;
  --reading: 48rem;
  --header-height: 4.75rem;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  padding-bottom: 5.25rem;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--forest);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--forest-deep);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.btn,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e0a840;
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  hyphens: none;
  letter-spacing: -0.025em;
  line-height: 1.12;
  overflow-wrap: break-word;
  text-wrap: balance;
  word-break: normal;
}

h1 {
  max-width: 17ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
}

h2 {
  max-width: 22ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.35rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.reading-width {
  max-width: var(--reading);
}

.flow > * + * {
  margin-top: 1rem;
}

.eyebrow {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  background: var(--brass);
  content: "";
}

.lead {
  max-width: 43rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

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

.kicker {
  color: var(--forest);
  font-weight: 700;
}

.topbar {
  display: none;
  background: var(--forest-deep);
  color: #eef4f0;
  font-size: 0.82rem;
}

.topbar .container {
  display: flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: space-between;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: inherit;
}

.logo-masthead {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdf8 0%, #efebe2 100%);
}

.logo-masthead .container {
  display: grid;
  place-items: center;
  padding-block: clamp(0.8rem, 2vw, 1.35rem);
}

.logo-link {
  display: block;
  width: min(92vw, 44rem);
  line-height: 0;
}

.logo-masthead-compact .logo-link {
  width: min(90vw, 38rem);
}

.site-logo {
  width: 100%;
  height: auto;
}

.masthead-claim {
  margin: 0.45rem 0 0;
  color: #4e5751;
  font-size: clamp(0.72rem, 1.8vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(216, 212, 203, 0.8);
  background: rgba(245, 242, 235, 0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  min-width: 0;
  gap: 0.75rem;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.05;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 3rem;
  height: 2.5rem;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid #c9c3b7;
  border-radius: 0.5rem;
  background: var(--surface);
  color: var(--forest);
}

.brand-mark img {
  width: 2.65rem;
  height: 2rem;
  object-fit: contain;
}

.brand-copy {
  overflow: hidden;
}

.brand-name {
  display: block;
  overflow: hidden;
  max-width: 16rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-place {
  display: block;
  margin-top: 0.22rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand > span:last-child strong,
.brand > span:last-child small {
  display: block;
}

.brand > span:last-child small {
  margin-top: 0.22rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  display: none;
  overflow-y: auto;
  padding: 1.25rem 1rem 7rem;
  background: var(--paper);
}

.nav-open .primary-nav {
  display: block;
}

.primary-nav ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  display: block;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  color: var(--forest);
}

.nav-toggle {
  display: inline-grid;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -0.38rem;
}

.nav-toggle-lines::after {
  top: 0.38rem;
}

.nav-open .nav-toggle-lines {
  background: transparent;
}

.nav-open .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.header-cta {
  display: none !important;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 3.2rem;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.12rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 10px 24px rgba(23, 49, 40, 0.2);
}

.btn-primary:hover {
  background: var(--forest-deep);
  color: #fff;
}

.btn-secondary {
  border-color: #b8b3a9;
  background: transparent;
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--forest);
  background: var(--surface);
  color: var(--forest);
}

.btn-light {
  background: #fff;
  color: var(--forest-deep);
}

.hero-text-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  padding-inline: 0.3rem;
  color: var(--forest-deep);
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.3em;
}

.hero-text-link:hover {
  color: var(--forest);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.25rem, 5vw, 4.75rem);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -14rem;
  left: -12rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(164, 130, 72, 0.09);
  content: "";
}

.hero-grid {
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 58rem;
}

.hero .lead {
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.85rem);
}

.hero-note {
  display: flex;
  max-width: 39rem;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.hero-note svg {
  width: 1.25rem;
  flex: 0 0 auto;
  margin-top: 0.18rem;
  color: var(--forest);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.trust-list {
  display: grid;
  margin: 0;
  padding: 1.15rem 0;
  gap: 0.8rem;
  list-style: none;
}

.trust-list li {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-list svg {
  width: 1.1rem;
  flex: 0 0 auto;
  color: var(--forest);
}

.section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.section-compact {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.section-muted {
  background: var(--paper-warm);
}

.section-dark {
  background: var(--forest-deep);
  color: #e8eee9;
}

.section-dark h2,
.section-dark h3,
.section-dark .eyebrow {
  color: #fff;
}

.section-dark .eyebrow::before {
  background: var(--brass-light);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading > * {
  min-width: 0;
}

.section-heading p:last-child {
  max-width: 46rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.section-dark .section-heading p:last-child {
  color: #c9d5ce;
}

.section-dark a:not(.btn),
.cta-band a:not(.btn) {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.58);
}

.section-dark a:not(.btn):hover,
.cta-band a:not(.btn):hover {
  color: #f2dcae;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.card > :last-child {
  margin-bottom: 0;
}

.quick-card {
  min-height: 100%;
}

.quick-label {
  margin-bottom: 0.85rem;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-card-caution .quick-label {
  color: var(--danger);
}

.card-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.15rem;
  place-items: center;
  border-radius: 50%;
  background: #e4ebe6;
  color: var(--forest);
}

.card-icon svg {
  width: 1.25rem;
}

.card-link {
  color: inherit;
  text-decoration: none;
}

.card-link::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
}

.card:has(.card-link):hover {
  border-color: #9eaa9f;
  box-shadow: var(--shadow-sm);
}

.notice {
  padding: 1.3rem 1.4rem;
  border-left: 4px solid var(--brass);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #fffaf0;
}

.notice h2,
.notice h3 {
  max-width: none;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.notice > :last-child {
  margin-bottom: 0;
}

.notice-danger {
  border-left-color: var(--danger);
  background: #fff6f3;
}

.notice-info {
  border-left-color: var(--forest);
  background: #edf3ef;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1rem;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 7rem;
  padding: 1.45rem 1.35rem 1.35rem 4.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--brass-light);
  border-radius: 50%;
  color: var(--forest);
  content: counter(steps, decimal-leading-zero);
  font-size: 0.78rem;
  font-weight: 800;
}

.steps h3 {
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.steps li > strong,
.steps li > span {
  display: block;
}

.steps li > strong {
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.steps li > span {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.split {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list,
.plain-list,
.link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-list {
  display: grid;
  gap: 0.55rem;
}

.link-list > a {
  padding-block: 0.3rem;
}

.check-list {
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.95rem;
  height: 0.95rem;
  border: 1px solid var(--sage);
  border-radius: 50%;
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 0.58em;
  left: 0.25rem;
  width: 0.45rem;
  height: 0.25rem;
  border-bottom: 2px solid var(--forest);
  border-left: 2px solid var(--forest);
  content: "";
  transform: rotate(-45deg);
}

.plain-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0.65rem 1.5rem;
}

.plain-list li {
  padding-block: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.region-panel {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: var(--forest-deep);
  color: #e7eee9;
}

.region-panel h2,
.region-panel h3 {
  color: #fff;
}

.region-panel a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.62);
}

.region-panel a:hover {
  color: #f2dcae;
}

.region-map {
  position: relative;
  min-height: 18rem;
}

.region-map svg {
  width: 100%;
  height: auto;
  color: #9bb1a5;
}

.region-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.region-labels span {
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #dce7e0;
  font-size: 0.82rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.faq-question::after {
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(225deg);
}

.faq-answer {
  padding: 0 2.5rem 1.25rem 0;
  color: var(--ink-soft);
}

.faq-answer[hidden] {
  display: none;
}

.cta-band {
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--forest);
  color: #eef4f0;
}

.cta-band h2,
.cta-band h3 {
  color: #fff;
}

.cta-band p {
  max-width: 43rem;
}

.contact-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-intro h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4.4vw, 3.05rem);
  overflow-wrap: normal;
}

.contact-card {
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.contact-card-compact {
  height: 100%;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.42rem;
  align-content: start;
}

.field label,
.field legend {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid #9c9f9a;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(40, 69, 58, 0.13);
  outline: 0;
}

.field-error {
  border-color: var(--danger) !important;
}

.error-text {
  margin: 0;
  color: var(--danger);
  font-size: 0.84rem;
  font-weight: 700;
}

.field-hint {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.7rem;
  align-items: start;
}

.checkbox-field input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.25rem 0 0;
  accent-color: var(--forest);
}

.form-status {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: #fff4df;
  color: #5d451d;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="error"] {
  background: #fff0ed;
  color: var(--danger);
}

.form-status[data-state="success"] {
  background: #e9f5ed;
  color: var(--success);
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-panel .btn[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.breadcrumbs {
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 0.4rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.4rem;
  color: #8a8e89;
  content: "/";
}

.page-hero {
  padding-block: clamp(2.25rem, 5vw, 4.75rem);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 19ch;
}

.page-hero-inner {
  max-width: 55rem;
}

.qualification-line,
.section-note,
.form-note {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.quick-note p {
  margin-bottom: 0;
}

.qualification-line {
  display: inline-block;
  padding: 0.55rem 0.75rem;
  border: 1px dashed #b2874d;
  border-radius: var(--radius-sm);
  background: #fff7e8;
}

.card-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: #74592f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}

.cta-band-inner > div {
  max-width: 45rem;
}

.cta-band-inner h2 {
  max-width: 24ch;
}

.footer-title {
  display: block;
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 1rem;
}

.placeholder-note {
  color: #d6c49f;
  font-size: 0.82rem;
}

.site-footer address {
  font-style: normal;
}

.site-footer ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.45rem;
  list-style: none;
}

.profile-placeholder {
  display: grid;
  min-height: 15rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  place-items: center;
  border: 1px dashed #9eaaa2;
  border-radius: var(--radius-md);
  background: repeating-linear-gradient(135deg, #edf1ed, #edf1ed 12px, #e4e9e5 12px, #e4e9e5 24px);
  color: var(--ink-soft);
  font-weight: 800;
  text-align: center;
}

.area-marker {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.process-list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.process-list h2 {
  max-width: 30ch;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.process-number {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--brass-light);
  border-radius: 50%;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-method {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.contact-method > span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method > a,
.contact-method > strong {
  font-size: 1.08rem;
}

.contact-method small {
  color: var(--ink-soft);
}

.form-panel {
  min-width: 0;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.form-setup-notice {
  margin-bottom: 1.25rem;
}

.setup-checklist {
  display: grid;
  max-width: var(--reading);
  margin: 1.5rem 0 0;
  padding: 0;
  gap: 0.8rem;
  counter-reset: setup;
  list-style: none;
}

.setup-checklist li {
  position: relative;
  padding: 1rem 1rem 1rem 3.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  counter-increment: setup;
}

.setup-checklist li::before {
  position: absolute;
  top: 0.95rem;
  left: 1rem;
  color: var(--forest);
  content: counter(setup, decimal-leading-zero);
  font-size: 0.76rem;
  font-weight: 900;
}

.prose {
  max-width: var(--reading);
}

.prose h2,
.prose h3 {
  margin-top: 2.4rem;
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
}

.prose li + li {
  margin-top: 0.55rem;
}

.prose a {
  overflow-wrap: anywhere;
}

.meta-block {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 0;
  border-block: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.placeholder {
  display: inline-block;
  padding: 0.08rem 0.35rem;
  border: 1px dashed #a66f35;
  border-radius: 0.25rem;
  background: #fff4df;
  color: #644314;
  font-weight: 800;
}

.site-footer {
  padding: 3.5rem 0 6.5rem;
  background: #141c18;
  color: #bdc9c1;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.site-footer a {
  color: #e4ece7;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-place {
  color: #bdc9c1;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

.mobile-contact-bar {
  position: fixed;
  z-index: 45;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.65rem max(0.75rem, env(safe-area-inset-right)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 -8px 28px rgba(20, 31, 25, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, visibility 180ms ease;
}

.contact-in-view .mobile-contact-bar {
  visibility: hidden;
  pointer-events: none;
  transform: translateY(110%);
}

.mobile-contact-bar .btn {
  min-height: 2.9rem;
  padding: 0.65rem 0.7rem;
  font-size: 0.88rem;
}

.noscript-note {
  padding: 0.85rem 1rem;
  background: #fff4df;
  color: #5d451d;
  text-align: center;
}

/* Ratgeber-Hub und Wissensseiten */
.guide-hub-hero .page-hero-inner,
.guide-page-hero .page-hero-inner {
  max-width: 60rem;
}

.guide-search-panel {
  display: grid;
  margin-bottom: clamp(3rem, 7vw, 5rem);
  padding: clamp(1.35rem, 4vw, 2.4rem);
  gap: 1.25rem;
  border: 1px solid #496158;
  border-radius: var(--radius-lg);
  background: var(--forest-deep);
  box-shadow: var(--shadow-sm);
  color: #e7eeea;
}

.guide-search-panel h2,
.guide-search-panel .eyebrow {
  color: #fff;
}

.guide-search-panel h2 {
  max-width: 26ch;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
}

.guide-search-panel p:not(.eyebrow):not(.guide-search-status) {
  max-width: 46rem;
  color: #c9d5ce;
}

.guide-search-field {
  display: grid;
  align-content: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.guide-search-field input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.guide-search-field input::placeholder {
  color: #66706a;
}

.guide-search-field input:focus-visible {
  border-color: #e0a840;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.guide-search-status {
  min-height: 1.45rem;
  margin: 0;
  color: #e8d7b2;
  font-size: 0.9rem;
  font-weight: 750;
}

.guide-cluster {
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.guide-cluster + .guide-cluster {
  margin-top: 1rem;
}

.guide-cluster-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.75rem);
  cursor: pointer;
  list-style: none;
  transition: background-color 160ms ease;
}

.guide-cluster-summary::-webkit-details-marker {
  display: none;
}

.guide-cluster-summary:hover {
  background: #f3f6f4;
}

.guide-cluster-summary:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: -3px;
}

.guide-cluster-summary::after {
  width: 0.72rem;
  height: 0.72rem;
  border-right: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  content: "";
  transform: rotate(45deg) translateY(-0.16rem);
  transition: transform 160ms ease;
}

.guide-cluster[open] .guide-cluster-summary::after {
  transform: rotate(225deg) translate(-0.12rem, -0.12rem);
}

.guide-cluster-summary-copy {
  display: grid;
  gap: 0.3rem;
}

.guide-cluster-summary .eyebrow {
  margin-bottom: 0;
}

.guide-cluster-title {
  display: block;
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.08;
}

.guide-cluster-intro {
  max-width: 46rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.guide-cluster-count {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: #e4ebe7;
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.guide-index-grid {
  padding: 0 clamp(1.2rem, 3vw, 1.75rem) clamp(1.2rem, 3vw, 1.75rem);
}

.guide-index-card,
.guide-related-card {
  height: 100%;
}

.guide-index-card h3,
.guide-related-card h3 {
  font-size: clamp(1.18rem, 2.2vw, 1.48rem);
  line-height: 1.22;
}

.guide-index-card > p:last-child,
.guide-related-card > p:last-child {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.guide-featured-grid .guide-index-card {
  border-top: 3px solid var(--brass);
}

.guide-featured-grid .guide-index-card h3 {
  font-size: clamp(1.12rem, 1.55vw, 1.34rem);
  overflow-wrap: normal;
}

.guide-no-results {
  margin-top: 2rem;
}

.guide-article-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.guide-toc {
  align-self: start;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.guide-toc h2 {
  margin-bottom: 0.85rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-toc ol {
  display: grid;
  margin: 0;
  padding-left: 1.25rem;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.guide-toc a {
  text-decoration-thickness: 0.06em;
}

.guide-toc-contact {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.guide-article {
  min-width: 0;
  max-width: var(--reading);
}

.guide-quick-answer {
  margin-bottom: clamp(2.5rem, 6vw, 4.25rem);
}

.guide-quick-answer h2 {
  font-size: 1.15rem;
}

.guide-copy-section {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.guide-copy-section + .guide-copy-section {
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
}

.guide-copy-section h2 {
  max-width: 28ch;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
}

.guide-copy-section p,
.guide-copy-section li {
  max-width: 72ch;
}

.guide-copy-section p {
  margin-bottom: 1.15rem;
}

.guide-bullet-list {
  margin-top: 1.4rem;
}

.guide-avoid-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.75rem;
  list-style: none;
}

.guide-avoid-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.65rem;
  border: 1px solid #e3c9c5;
  border-radius: var(--radius-sm);
  background: #fff8f6;
}

.guide-avoid-list li::before {
  position: absolute;
  top: 0.88rem;
  left: 0.95rem;
  color: var(--danger);
  content: "×";
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.guide-faq {
  display: grid;
  gap: 0.75rem;
}

.guide-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.guide-faq summary {
  padding: 1rem 3rem 1rem 1rem;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.guide-faq details[open] summary {
  border-bottom: 1px solid var(--line);
}

.guide-faq details p {
  max-width: none;
  margin: 0;
  padding: 1rem;
  color: var(--ink-soft);
}

.guide-sources ul {
  display: grid;
  padding-left: 1.25rem;
  gap: 0.65rem;
}

.guide-sources a {
  overflow-wrap: anywhere;
}

.region-guide .guide-article-section {
  padding-top: clamp(1.75rem, 4vw, 3rem);
}

.region-guide-layout {
  display: block;
}

.region-guide .guide-article {
  margin-inline: auto;
}

.region-guide .guide-quick-answer {
  margin-bottom: 1.25rem;
}

.region-contact-card {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  border-top: 3px solid var(--brass);
}

.region-contact-card h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.region-guide .guide-copy-section + .guide-copy-section {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
}

.region-guide .guide-copy-section h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.region-guide-sources details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.region-guide-sources summary {
  padding: 1rem 3rem 1rem 1rem;
  cursor: pointer;
  font-weight: 800;
}

.region-guide-sources details > :not(summary) {
  margin-inline: 1rem;
}

.related-guide-grid {
  margin-top: 2rem;
}

@media (min-width: 40rem) {
  .container {
    width: min(100% - 3rem, var(--content));
  }

  .logo-masthead:not(.logo-masthead-compact) .logo-link {
    width: min(100%, 30rem);
  }

  .site-header {
    top: 0;
  }

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

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

  .form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .field-full {
    grid-column: 1 / -1;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .guide-search-panel {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    align-items: end;
  }

  .guide-search-status {
    grid-column: 1 / -1;
  }

}

@media (min-width: 64rem) {
  :root {
    --header-height: 5.25rem;
  }

  .topbar {
    display: block;
  }

  body.nav-open {
    overflow: auto;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
  }

  .primary-nav,
  .nav-open .primary-nav {
    position: static;
    display: block;
    overflow: visible;
    padding: 0;
    background: transparent;
  }

  .primary-nav ul {
    display: flex;
    gap: 0.25rem;
    justify-content: flex-end;
  }

  .primary-nav a {
    padding: 0.65rem 0.7rem;
    border: 0;
    border-radius: 999px;
    font-size: 0.87rem;
    font-weight: 750;
  }

  .primary-nav a[aria-current="page"],
  .primary-nav a:hover {
    background: #e5e9e5;
  }

  .nav-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex !important;
  }

  .trust-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .split-reverse .split-media {
    order: 2;
  }

  .steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .steps.compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps-compact-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps li {
    min-height: 14rem;
    padding: 4.8rem 1.25rem 1.25rem;
  }

  .steps li::before {
    top: 1.4rem;
    left: 1.25rem;
  }

  .container.region-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
    align-items: center;
  }

  .contact-layout {
    grid-template-columns: minmax(20rem, 0.9fr) minmax(32rem, 1.1fr);
  }

  .mobile-contact-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .site-footer {
    padding-bottom: 3rem;
  }

  .footer-grid:has(> :nth-child(4)) {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }

  .guide-article-layout {
    grid-template-columns: minmax(13rem, 0.34fr) minmax(0, 1fr);
    align-items: start;
  }

  .guide-article-layout.region-guide-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .guide-toc {
    position: sticky;
    top: calc(var(--header-height) + 1.25rem);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .topbar,
  .logo-masthead,
  .site-header,
  .mobile-contact-bar,
  .btn,
  .site-footer,
  .guide-toc,
  .guide-search-panel {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .section,
  .hero,
  .page-hero {
    padding-block: 1.5rem;
  }

  a {
    color: #000;
  }

  .guide-article-layout {
    display: block;
  }

  .guide-copy-section + .guide-copy-section {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }
}
