:root {
  --prp-graphite: #22262C;
  --prp-blue: #1B3A6B;
  --prp-blue-dark: #142C52;
  --prp-amber: #C68A2E;
  --prp-brick: #A8462F;
  --prp-surface: #F3F4F6;
  --prp-surface-2: #E7E9ED;
  --prp-white: #FFFFFF;
  --prp-ink: #16191D;
  --prp-muted: #545B66;
  --prp-line: #D5D8DE;
  --prp-line-soft: #E3E5EA;
  --prp-focus: #1B3A6B;
  --prp-radius: 4px;
  --prp-maxw: 1120px;
  --prp-readw: 720px;
  --prp-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --prp-sans: "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --prp-shadow: 0 1px 2px rgba(34,38,44,0.06), 0 2px 8px rgba(34,38,44,0.05);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--prp-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--prp-ink);
  background: var(--prp-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--prp-blue); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--prp-blue-dark); }

h1, h2, h3, h4 {
  font-family: var(--prp-serif);
  color: var(--prp-graphite);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(1.85rem, 5vw, 2.85rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.6vw, 1.4rem); }
h4 { font-size: clamp(1.02rem, 2vw, 1.15rem); }

p { margin: 0 0 1.1em; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25rem; }
li { margin-bottom: 0.5em; }

.prp-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--prp-blue);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
  border-radius: 0 0 var(--prp-radius) 0;
}
.prp-skip:focus { left: 0; }

.prp-wrap { width: 100%; max-width: var(--prp-maxw); margin: 0 auto; padding: 0 18px; }

:focus-visible {
  outline: 3px solid var(--prp-amber);
  outline-offset: 2px;
}

.prp-eyebrow {
  font-family: var(--prp-sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--prp-blue);
  margin: 0 0 0.6em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.prp-modnum {
  font-family: var(--prp-serif);
  color: var(--prp-amber);
  font-weight: 600;
}

.prp-icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.prp-icon-sm { width: 18px; height: 18px; }
.prp-icon-lg { width: 30px; height: 30px; }

.prp-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(150%) blur(6px);
  border-bottom: 1px solid var(--prp-line);
}
.prp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
}
.prp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--prp-graphite);
  font-family: var(--prp-serif);
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.1;
}
.prp-brand .prp-mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--prp-blue);
  color: #fff;
  border-radius: var(--prp-radius);
  flex: none;
}
.prp-brand small { display: block; font-family: var(--prp-sans); font-size: 0.68rem; font-weight: 600; color: var(--prp-muted); letter-spacing: 0.02em; }

.prp-navtoggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--prp-line);
  border-radius: var(--prp-radius);
  color: var(--prp-graphite);
  cursor: pointer;
}
.prp-navtoggle .prp-icon-close { display: none; }
.prp-navtoggle[aria-expanded="true"] .prp-icon-open { display: none; }
.prp-navtoggle[aria-expanded="true"] .prp-icon-close { display: block; }

.prp-navmenu {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 8px 0 14px;
}
.prp-navmenu.is-open { display: flex; }
.prp-navlinks { display: flex; flex-direction: column; gap: 2px; list-style: none; margin: 0; padding: 0; }
.prp-navlinks a {
  display: block;
  padding: 12px 8px;
  min-height: 44px;
  text-decoration: none;
  color: var(--prp-graphite);
  font-weight: 600;
  border-radius: var(--prp-radius);
}
.prp-navlinks a:hover, .prp-navlinks a[aria-current="page"] { background: var(--prp-surface); color: var(--prp-blue); }
.prp-navcta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  margin-top: 6px;
  background: var(--prp-blue);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--prp-radius);
}
.prp-navcta:hover { background: var(--prp-blue-dark); }

.prp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  font-family: var(--prp-sans);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--prp-radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.prp-btn-primary { background: var(--prp-amber); color: #1d1404; border-color: var(--prp-amber); }
.prp-btn-primary:hover { background: #b27c27; color: #1d1404; }
.prp-btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.prp-btn-secondary:hover { background: rgba(255,255,255,0.12); color: #fff; }
.prp-btn-ghost { background: var(--prp-white); color: var(--prp-blue); border-color: var(--prp-line); }
.prp-btn-ghost:hover { background: var(--prp-surface); }
.prp-btn-block { width: 100%; }

.prp-hero {
  position: relative;
  background-color: var(--prp-graphite);
  background-image: linear-gradient(180deg, rgba(20,24,30,0.86) 0%, rgba(27,58,107,0.82) 100%), url('../img/home-hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
.prp-hero-inner { padding: 56px 0 64px; }
.prp-hero h1 { color: #fff; margin-bottom: 0.35em; }
.prp-hero-sub { font-size: clamp(1.02rem, 2.4vw, 1.2rem); color: #E7EBF2; max-width: 640px; margin: 0 0 1.5em; }
.prp-hero-toc {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--prp-radius);
  padding: 16px 18px;
  margin: 0 0 1.6em;
  max-width: 560px;
}
.prp-hero-toc h2 { color: #fff; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--prp-sans); font-weight: 700; margin-bottom: 12px; }
.prp-hero-toc ol { margin: 0; padding-left: 1.2rem; color: #E7EBF2; }
.prp-hero-toc li { margin-bottom: 6px; }
.prp-hero-toc a { color: #fff; text-decoration: none; }
.prp-hero-toc a:hover { text-decoration: underline; }
.prp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.prp-section { padding: 48px 0; }
.prp-section + .prp-section { border-top: 1px solid var(--prp-line-soft); }
.prp-section-alt { background: var(--prp-surface); }
.prp-section-head { max-width: var(--prp-readw); margin: 0 0 28px; }
.prp-section-head p { color: var(--prp-muted); margin-bottom: 0; }

.prp-lead { font-size: 1.1rem; color: var(--prp-graphite); }

.prp-about-grid { display: grid; gap: 26px; }
.prp-about-figure { margin: 0; }
.prp-about-figure img { border-radius: var(--prp-radius); border: 1px solid var(--prp-line); }
.prp-about-figure figcaption { font-size: 0.85rem; color: var(--prp-muted); margin-top: 8px; }
.prp-statline { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.prp-stat { flex: 1 1 150px; border-left: 3px solid var(--prp-amber); padding: 4px 0 4px 14px; }
.prp-stat strong { display: block; font-family: var(--prp-serif); font-size: 1.5rem; color: var(--prp-graphite); }
.prp-stat span { font-size: 0.86rem; color: var(--prp-muted); }
.prp-note-small { font-size: 0.82rem; color: var(--prp-muted); margin-top: 12px; }

.prp-checklist { display: grid; gap: 16px; counter-reset: prp-c; }
.prp-check-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  background: var(--prp-white);
  border: 1px solid var(--prp-line);
  border-left: 4px solid var(--prp-blue);
  border-radius: var(--prp-radius);
  padding: 18px;
}
.prp-check-num {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--prp-surface);
  color: var(--prp-blue);
  border-radius: 50%;
  font-family: var(--prp-serif);
  font-weight: 600;
  font-size: 1.1rem;
}
.prp-check-item h3 { margin-bottom: 6px; font-size: 1.12rem; }
.prp-check-item p { margin-bottom: 0; color: var(--prp-muted); }

.prp-grid-featured { display: grid; gap: 22px; }
.prp-card {
  display: flex;
  flex-direction: column;
  background: var(--prp-white);
  border: 1px solid var(--prp-line);
  border-radius: var(--prp-radius);
  overflow: hidden;
  box-shadow: var(--prp-shadow);
}
.prp-card-media { aspect-ratio: 16 / 9; background: var(--prp-surface-2); overflow: hidden; }
.prp-card-media img { width: 100%; height: 100%; object-fit: cover; }
.prp-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prp-card-meta { font-size: 0.78rem; color: var(--prp-muted); letter-spacing: 0.03em; text-transform: uppercase; font-weight: 700; }
.prp-card-body h3 { margin: 0; font-size: 1.22rem; }
.prp-card-body h3 a { text-decoration: none; color: var(--prp-graphite); }
.prp-card-body h3 a:hover { color: var(--prp-blue); }
.prp-card-body p { margin: 0; color: var(--prp-muted); }
.prp-card-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; text-decoration: none; color: var(--prp-blue);
  padding-top: 6px;
}
.prp-card-link:hover { gap: 9px; }
.prp-card-featured .prp-card-media { aspect-ratio: 16 / 8; }
.prp-card-featured .prp-card-body h3 { font-size: 1.5rem; }

.prp-list-cards { display: grid; gap: 14px; }
.prp-list-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  background: var(--prp-white);
  border: 1px solid var(--prp-line);
  border-radius: var(--prp-radius);
  padding: 12px;
  align-items: center;
}
.prp-list-item .prp-list-media { aspect-ratio: 1 / 1; border-radius: var(--prp-radius); overflow: hidden; background: var(--prp-surface-2); }
.prp-list-item .prp-list-media img { width: 100%; height: 100%; object-fit: cover; }
.prp-list-item h3 { margin: 0 0 4px; font-size: 1.06rem; }
.prp-list-item h3 a { text-decoration: none; color: var(--prp-graphite); }
.prp-list-item h3 a:hover { color: var(--prp-blue); }
.prp-list-item p { margin: 0; font-size: 0.9rem; color: var(--prp-muted); }

.prp-advantages { display: grid; gap: 18px; }
.prp-adv {
  background: var(--prp-white);
  border: 1px solid var(--prp-line);
  border-radius: var(--prp-radius);
  padding: 20px;
}
.prp-adv .prp-adv-ic {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--prp-surface); color: var(--prp-blue);
  border-radius: var(--prp-radius);
  margin-bottom: 12px;
}
.prp-adv h3 { font-size: 1.15rem; margin-bottom: 6px; }
.prp-adv p { margin: 0; color: var(--prp-muted); }

.prp-policywatch { display: grid; gap: 16px; }
.prp-policy-item {
  border: 1px solid var(--prp-line);
  border-radius: var(--prp-radius);
  background: var(--prp-white);
  padding: 18px;
}
.prp-policy-item .prp-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--prp-amber);
  margin-bottom: 8px;
}
.prp-policy-item h3 { font-size: 1.14rem; margin-bottom: 6px; }
.prp-policy-item p { margin: 0; color: var(--prp-muted); }
.prp-disclaimer {
  border-left: 4px solid var(--prp-amber);
  background: #FBF4E7;
  padding: 14px 16px;
  border-radius: var(--prp-radius);
  font-size: 0.92rem;
  color: #5b4818;
}
.prp-disclaimer strong { color: #4a3a10; }

.prp-newsletter {
  background: var(--prp-graphite);
  color: #fff;
  border-radius: var(--prp-radius);
  padding: 28px 22px;
}
.prp-newsletter h2 { color: #fff; }
.prp-newsletter p { color: #DCE0E7; }
.prp-form-row { display: grid; gap: 12px; }
.prp-field { display: flex; flex-direction: column; gap: 6px; }
.prp-field label { font-weight: 700; font-size: 0.92rem; }
.prp-field input, .prp-field textarea {
  width: 100%;
  font-family: var(--prp-sans);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--prp-line);
  border-radius: var(--prp-radius);
  background: #fff;
  color: var(--prp-ink);
  min-height: 48px;
}
.prp-field textarea { min-height: 120px; resize: vertical; }
.prp-field input:focus, .prp-field textarea:focus { outline: 3px solid var(--prp-amber); outline-offset: 1px; border-color: var(--prp-amber); }
.prp-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: #DCE0E7; }
.prp-consent input { width: 22px; height: 22px; min-height: 22px; margin-top: 2px; flex: none; }
.prp-newsletter .prp-consent a { color: #fff; }
.prp-form-note { font-size: 0.82rem; color: #B9C0CC; margin-top: 4px; }

.prp-cta-band {
  background: linear-gradient(135deg, var(--prp-blue) 0%, var(--prp-blue-dark) 100%);
  color: #fff;
  border-radius: var(--prp-radius);
  padding: 34px 24px;
  text-align: center;
}
.prp-cta-band h2 { color: #fff; }
.prp-cta-band p { color: #DCE3EE; max-width: 560px; margin-left: auto; margin-right: auto; }
.prp-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 18px; }

.prp-article { padding: 32px 0 48px; }
.prp-article-head { max-width: var(--prp-readw); margin: 0 auto 24px; }
.prp-breadcrumb { font-size: 0.85rem; color: var(--prp-muted); margin-bottom: 14px; }
.prp-breadcrumb a { color: var(--prp-blue); text-decoration: none; }
.prp-breadcrumb a:hover { text-decoration: underline; }
.prp-byline { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 0.88rem; color: var(--prp-muted); margin-top: 10px; }
.prp-byline span { display: inline-flex; align-items: center; gap: 6px; }
.prp-article-hero { max-width: var(--prp-maxw); margin: 0 auto 28px; }
.prp-article-hero img { width: 100%; border-radius: var(--prp-radius); border: 1px solid var(--prp-line); aspect-ratio: 16 / 7; object-fit: cover; }
.prp-article-body { max-width: var(--prp-readw); margin: 0 auto; }
.prp-article-body h2 { margin-top: 1.6em; }
.prp-article-body h3 { margin-top: 1.3em; }
.prp-article-body img { border-radius: var(--prp-radius); border: 1px solid var(--prp-line); margin: 1.4em 0; }
.prp-callout {
  border-left: 4px solid var(--prp-blue);
  background: var(--prp-surface);
  padding: 14px 18px;
  border-radius: var(--prp-radius);
  margin: 1.4em 0;
}
.prp-callout p:last-child { margin-bottom: 0; }
.prp-keyfacts {
  border: 1px solid var(--prp-line);
  border-radius: var(--prp-radius);
  padding: 18px 20px;
  background: var(--prp-white);
  margin: 1.6em 0;
}
.prp-keyfacts h3 { margin-top: 0; }

.prp-prevnext {
  max-width: var(--prp-readw);
  margin: 36px auto 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--prp-line);
  padding-top: 24px;
}
.prp-pn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--prp-line);
  border-radius: var(--prp-radius);
  padding: 14px 16px;
  text-decoration: none;
  color: var(--prp-graphite);
}
.prp-pn:hover { border-color: var(--prp-blue); background: var(--prp-surface); }
.prp-pn .prp-pn-label { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--prp-blue); }
.prp-pn .prp-pn-title { font-family: var(--prp-serif); font-weight: 600; }
.prp-pn-next { text-align: right; align-items: flex-end; }

.prp-page-head {
  background: var(--prp-surface);
  border-bottom: 1px solid var(--prp-line);
  padding: 40px 0;
}
.prp-page-head .prp-eyebrow { color: var(--prp-blue); }
.prp-page-head p { color: var(--prp-muted); max-width: var(--prp-readw); margin-bottom: 0; }

.prp-prose { max-width: var(--prp-readw); }
.prp-prose h2 { margin-top: 1.6em; }
.prp-prose h3 { margin-top: 1.2em; }

.prp-legal-toc {
  border: 1px solid var(--prp-line);
  border-radius: var(--prp-radius);
  background: var(--prp-surface);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.prp-legal-toc h2 { font-size: 1rem; margin-bottom: 10px; font-family: var(--prp-sans); text-transform: uppercase; letter-spacing: 0.06em; }
.prp-legal-toc ol { margin: 0; }

.prp-contact-grid { display: grid; gap: 26px; }
.prp-map-wrap {
  border: 1px solid var(--prp-line);
  border-radius: var(--prp-radius);
  overflow: hidden;
  background: var(--prp-surface-2);
}
.prp-map-wrap iframe { display: block; width: 100%; height: 300px; border: 0; }
.prp-contact-info { display: grid; gap: 14px; }
.prp-contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--prp-line);
  border-radius: var(--prp-radius);
  padding: 14px 16px;
  background: var(--prp-white);
}
.prp-contact-item .prp-ci-ic {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--prp-surface); color: var(--prp-blue);
  border-radius: var(--prp-radius);
}
.prp-contact-item h3 { font-size: 1rem; margin-bottom: 2px; font-family: var(--prp-sans); }
.prp-contact-item p, .prp-contact-item a { margin: 0; font-size: 0.95rem; }
.prp-contact-form-card {
  border: 1px solid var(--prp-line);
  border-radius: var(--prp-radius);
  background: var(--prp-white);
  padding: 22px;
}

.prp-footer {
  background: var(--prp-graphite);
  color: #C9CFD8;
  padding: 40px 0 22px;
  margin-top: 16px;
}
.prp-footer a { color: #E4E8EE; }
.prp-footer-cols { display: grid; gap: 28px; }
.prp-footer h2 { color: #fff; font-size: 1.05rem; font-family: var(--prp-sans); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.prp-footer-brand .prp-brand { color: #fff; }
.prp-footer-brand .prp-brand small { color: #AEB6C2; }
.prp-footer-brand p { margin-top: 12px; font-size: 0.92rem; }
.prp-footer-contact p { margin: 0 0 8px; font-size: 0.92rem; display: flex; gap: 8px; align-items: flex-start; }
.prp-footer-contact a { text-decoration: none; }
.prp-footer-contact a:hover { text-decoration: underline; }
.prp-footer-links { list-style: none; margin: 0; padding: 0; }
.prp-footer-links li { margin-bottom: 8px; }
.prp-footer-links a { text-decoration: none; }
.prp-footer-links a:hover { text-decoration: underline; }
.prp-cookie-reopen {
  background: none; border: 0; padding: 0;
  color: #E4E8EE; cursor: pointer; font: inherit;
  text-decoration: underline; text-underline-offset: 2px;
}
.prp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 0.85rem;
  color: #9AA3AF;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
}

.prp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,19,23,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 200;
}
.prp-modal-overlay.is-open { display: flex; }
.prp-modal {
  background: #fff;
  border-radius: var(--prp-radius);
  max-width: 440px;
  width: 100%;
  padding: 26px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.prp-modal .prp-modal-ic {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--prp-surface); color: var(--prp-blue);
  border-radius: 50%;
  margin-bottom: 12px;
}
.prp-modal h2 { font-size: 1.4rem; }
.prp-modal p { color: var(--prp-muted); }
.prp-modal-close { margin-top: 14px; }

.prp-cookiebar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: #fff;
  border-top: 2px solid var(--prp-blue);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  display: none;
}
.prp-cookiebar.is-visible { display: block; }
.prp-cookiebar-inner { padding: 16px 0; }
.prp-cookiebar-row { display: flex; flex-direction: column; gap: 12px; }
.prp-cookiebar-text { font-size: 0.92rem; color: var(--prp-ink); margin: 0; }
.prp-cookiebar-text a { color: var(--prp-blue); }
.prp-cookiebar-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.prp-cookiebar-actions .prp-btn { min-height: 44px; padding: 10px 16px; font-size: 0.95rem; }

.prp-cookie-panel { display: none; margin-top: 18px; border-top: 1px solid var(--prp-line); padding-top: 16px; }
.prp-cookie-panel.is-open { display: block; }
.prp-cookie-cat {
  border: 1px solid var(--prp-line);
  border-radius: var(--prp-radius);
  padding: 14px 16px;
  margin-bottom: 12px;
}
.prp-cookie-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.prp-cookie-cat-head h3 { margin: 0; font-size: 1.02rem; font-family: var(--prp-sans); }
.prp-cookie-detailtoggle {
  background: none; border: 0; color: var(--prp-blue); cursor: pointer;
  font: inherit; font-size: 0.85rem; text-decoration: underline; padding: 6px 0; min-height: 44px;
  display: inline-flex; align-items: center; gap: 4px;
}
.prp-cookie-detail { display: none; margin-top: 10px; font-size: 0.9rem; color: var(--prp-muted); }
.prp-cookie-detail.is-open { display: block; }

.prp-switch { position: relative; display: inline-flex; align-items: center; }
.prp-switch input { position: absolute; opacity: 0; width: 52px; height: 30px; margin: 0; cursor: pointer; }
.prp-switch .prp-track {
  width: 52px; height: 30px; border-radius: 999px;
  background: #B6BCC6; position: relative; transition: background .18s ease; display: inline-block;
}
.prp-switch .prp-track::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 24px; height: 24px; border-radius: 50%; background: #fff;
  transition: transform .18s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.prp-switch input:checked + .prp-track { background: var(--prp-blue); }
.prp-switch input:checked + .prp-track::after { transform: translateX(22px); }
.prp-switch input:focus-visible + .prp-track { outline: 3px solid var(--prp-amber); outline-offset: 2px; }
.prp-switch input:disabled + .prp-track { background: var(--prp-blue); opacity: 0.6; cursor: not-allowed; }
.prp-cookie-panel-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

.prp-error { color: var(--prp-brick); font-size: 0.85rem; margin-top: 4px; display: none; }
.prp-error.is-shown { display: block; }
.prp-field.has-error input, .prp-field.has-error textarea { border-color: var(--prp-brick); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

@media (min-width: 480px) {
  .prp-wrap { padding: 0 24px; }
  .prp-checklist { grid-template-columns: repeat(2, 1fr); }
  .prp-cookiebar-row { flex-direction: row; align-items: center; justify-content: space-between; }
  .prp-cookiebar-text { flex: 1; }
  .prp-form-row-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .prp-navtoggle { display: none; }
  .prp-navmenu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    flex: 1;
    padding: 0;
    gap: 18px;
  }
  .prp-navlinks { flex-direction: row; gap: 4px; }
  .prp-navlinks a { padding: 8px 12px; }
  .prp-navcta { margin-top: 0; }
  .prp-nav { justify-content: space-between; }
  .prp-hero-inner { padding: 76px 0 88px; }
  .prp-advantages { grid-template-columns: repeat(2, 1fr); }
  .prp-grid-featured { grid-template-columns: 1fr 1fr; align-items: start; }
  .prp-card-featured { grid-row: span 2; }
  .prp-about-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .prp-contact-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
  .prp-footer-cols { grid-template-columns: 1.4fr 1fr; }
  .prp-prevnext { grid-template-columns: 1fr 1fr; }
  .prp-policywatch { grid-template-columns: repeat(2, 1fr); }
  .prp-map-wrap iframe { height: 380px; }
}

@media (min-width: 1024px) {
  .prp-checklist { grid-template-columns: repeat(3, 1fr); }
  .prp-advantages { grid-template-columns: repeat(3, 1fr); }
  .prp-footer-cols { grid-template-columns: 1.6fr 1fr 1fr; }
  .prp-newsletter { padding: 36px 32px; }
  .prp-policywatch { grid-template-columns: repeat(3, 1fr); }
}
body,p,li,a,dd,dt,h1,h2,h3,h4,figcaption,td,blockquote{overflow-wrap:break-word;}
