:root {
  --psv-bg: #f6f2ea;
  --psv-bg-soft: #fffaf1;
  --psv-card: rgba(255,255,255,.88);
  --psv-card-solid: #ffffff;
  --psv-text: #161616;
  --psv-text-soft: #343434;
  --psv-muted: #6d665c;
  --psv-line: rgba(21,21,21,.12);
  --psv-line-strong: rgba(21,21,21,.22);
  --psv-accent: #b71c1c;
  --psv-accent-dark: #741010;
  --psv-ink: #111111;
  --psv-cream: #fff7e8;
  --psv-radius-xl: 34px;
  --psv-radius-lg: 24px;
  --psv-radius-md: 16px;
  --psv-shadow: 0 24px 70px rgba(41,28,12,.16);
  --psv-shadow-soft: 0 12px 36px rgba(41,28,12,.10);
  --psv-container: 1180px;
  --psv-font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--psv-font);
  color: var(--psv-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(183,28,28,.12), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(0,0,0,.06), transparent 26rem),
    linear-gradient(135deg, #fbf7ef 0%, #f4eee2 48%, #fffdf7 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  background-image:
    linear-gradient(rgba(0,0,0,.85) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.85) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

img { max-width: 100%; height: auto; }
a { color: inherit; }
a:hover { text-decoration-thickness: 2px; }

.psv-skip {
  position: fixed;
  left: 1rem;
  top: 1rem;
  transform: translateY(-200%);
  padding: .75rem 1rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  z-index: 9999;
}
.psv-skip:focus { transform: none; }

.psv-container {
  width: min(var(--psv-container), calc(100% - 32px));
  margin-inline: auto;
}

.psv-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0;
  transition: background .2s ease, box-shadow .2s ease, backdrop-filter .2s ease;
}
.psv-header.is-scrolled {
  background: rgba(255,250,241,.74);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 38px rgba(41,28,12,.12);
}
.psv-header-inner {
  width: min(var(--psv-container), calc(100% - 24px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(41,28,12,.08);
}
.psv-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--psv-text);
  text-decoration: none;
  min-width: 0;
  flex: 0 0 auto;
}
.psv-brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: inset 0 0 0 5px rgba(183,28,28,.05);
  overflow: hidden;
}
.psv-brand-mark img { width: 54px; height: 54px; object-fit: contain; }
.psv-brand-text { display: grid; line-height: 1.05; }
.psv-brand-text strong { font-size: 1.02rem; letter-spacing: .02em; }
.psv-brand-text small { color: var(--psv-muted); margin-top: 4px; }

.psv-main-nav { margin-left: auto; }
.psv-menu-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.psv-menu-list li { position: relative; }
.psv-menu-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 999px;
  color: rgba(20,20,20,.84);
  text-decoration: none;
  font-weight: 800;
  font-size: .94rem;
  letter-spacing: .005em;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.psv-menu-list a:hover,
.psv-menu-list .current > a,
.psv-menu-list .menu-current > a,
.psv-menu-list .active > a,
.psv-menu-list .trail > a {
  background: var(--psv-ink);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}
.psv-menu-list ul,
.psv-menu-list .psv-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 230px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--psv-line);
  box-shadow: var(--psv-shadow-soft);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: .16s ease;
}
.psv-menu-list li:hover > ul,
.psv-menu-list li:focus-within > ul {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.psv-menu-list ul a { width: 100%; justify-content: flex-start; }

.psv-mobile-language { display: none; }

.psv-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 3;
}
.psv-language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  border-radius: 999px;
}
.psv-language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: .82rem;
  color: var(--psv-muted);
}
.psv-language-switch a:hover,
.psv-language-switch a.is-active {
  background: var(--psv-accent);
  color: #fff;
}

.psv-nav-toggle {
  display: none;
  border: 0;
  background: var(--psv-ink);
  color: #fff;
  border-radius: 999px;
  padding: 11px 14px;
  align-items: center;
  gap: 4px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.psv-nav-toggle span:not(.psv-nav-toggle-label) {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}
.psv-nav-toggle-label { margin-left: 6px; }

.psv-main { color: var(--psv-text); }
.psv-hero {
  position: relative;
  overflow: hidden;
  color: var(--psv-text);
  min-height: clamp(420px, 66vh, 700px);
  display: grid;
  align-items: center;
  padding: 70px 0 94px;
}
.psv-hero-bg {
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 76% 38%, rgba(255,255,255,.84), transparent 18rem),
    radial-gradient(circle at 18% 70%, rgba(183,28,28,.15), transparent 22rem),
    linear-gradient(135deg, rgba(255,255,255,.64), rgba(255,247,232,.38));
}
.psv-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/img/yinyang.svg");
  background-repeat: no-repeat;
  background-size: min(48vw, 560px);
  background-position: 92% 62%;
  opacity: .045;
  filter: blur(.1px);
}
.psv-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 430px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}
.psv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--psv-muted);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .11em;
  box-shadow: 0 10px 28px rgba(41,28,12,.08);
}
.psv-kicker::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--psv-accent); box-shadow: 0 0 0 6px rgba(183,28,28,.14); }
.psv-hero h1,
.psv-hero-content h1 {
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 6.1rem);
  line-height: .94;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.psv-hero h1 strong,
.psv-hero-content h1 strong { color: var(--psv-accent); }
.psv-hero-lead,
.psv-hero-content p {
  max-width: 720px;
  color: var(--psv-text-soft);
  font-size: clamp(1.07rem, 2vw, 1.28rem);
  line-height: 1.62;
}
.psv-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.psv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.16);
  transition: transform .18s ease, background .18s ease, color .18s ease, border .18s ease, box-shadow .18s ease;
}
.psv-btn:hover { transform: translateY(-2px); }
.psv-btn-primary { background: var(--psv-accent); color: #fff; border-color: var(--psv-accent); box-shadow: 0 12px 30px rgba(183,28,28,.22); }
.psv-btn-primary:hover { background: var(--psv-accent-dark); }
.psv-btn-ghost { color: var(--psv-text); background: rgba(255,255,255,.62); }
.psv-btn-ghost:hover { background: #fff; }
.psv-hero-emblem {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255,255,255,.96), rgba(255,255,255,.2) 68%);
  filter: drop-shadow(0 24px 70px rgba(41,28,12,.15));
}
.psv-hero-emblem::before,
.psv-hero-emblem::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.10);
}
.psv-hero-emblem::before { inset: 2%; }
.psv-hero-emblem::after { inset: 12%; border-color: rgba(183,28,28,.18); }
.psv-hero-emblem img {
  width: min(92%, 390px);
  opacity: .98;
}

.psv-content-wrap {
  position: relative;
  margin-top: -58px;
  padding-bottom: 70px;
}
.psv-breadcrumb {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: .25rem;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--psv-muted);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--psv-line);
  font-size: .9rem;
  box-shadow: 0 8px 24px rgba(41,28,12,.08);
}
.psv-breadcrumb a { color: var(--psv-text); text-decoration: none; font-weight: 800; }

.psv-section { margin-bottom: 28px; }
.psv-content-card,
.psv-teaser-block {
  border-radius: var(--psv-radius-xl);
  background: rgba(255,255,255,.94);
  box-shadow: var(--psv-shadow);
  border: 1px solid rgba(255,255,255,.76);
  overflow: hidden;
}
.psv-content-card { padding: clamp(24px, 5vw, 56px); }
.psv-teaser-block {
  padding: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,247,232,.86));
}
.psv-content-card > :first-child,
.psv-teaser-block > :first-child { margin-top: 0; }
.psv-content-card > :last-child,
.psv-teaser-block > :last-child { margin-bottom: 0; }
.psv-content-card h1,
.psv-content-card h2,
.psv-content-card h3,
.psv-teaser-block h1,
.psv-teaser-block h2,
.psv-teaser-block h3 {
  line-height: 1.05;
  letter-spacing: -.035em;
}
.psv-content-card h1 { font-size: clamp(2.1rem, 5vw, 4rem); }
.psv-content-card h2 { font-size: clamp(1.65rem, 3.4vw, 2.7rem); }
.psv-content-card h3 { font-size: clamp(1.25rem, 2.1vw, 1.7rem); }
.psv-content-card p,
.psv-content-card li,
.psv-teaser-block p,
.psv-teaser-block li {
  color: #2b2c31;
  line-height: 1.72;
  font-size: 1.03rem;
}
.psv-content-card a:not(.psv-btn) { color: #8f1414; font-weight: 800; text-underline-offset: 3px; }
.psv-content-card table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}
.psv-content-card th,
.psv-content-card td {
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--psv-line);
  text-align: left;
}
.psv-content-card th { background: #111; color: #fff; }

/* Generic card grids for WebsiteBaker/WYSIWYG content */
.psv-teaser-block .cards,
.psv-content-card .cards,
.psv-teaser-block .wb-cards,
.psv-content-card .wb-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.psv-teaser-block .card,
.psv-content-card .card,
.psv-teaser-block .wb-card,
.psv-content-card .wb-card {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 34px rgba(41,28,12,.08);
}

/* Module-friendly defaults */
.psv-content-card input[type="text"],
.psv-content-card input[type="email"],
.psv-content-card input[type="tel"],
.psv-content-card input[type="number"],
.psv-content-card input[type="date"],
.psv-content-card input[type="time"],
.psv-content-card select,
.psv-content-card textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 14px;
  padding: .85rem 1rem;
  font: inherit;
  background: #fff;
  color: #111;
}
.psv-content-card button,
.psv-content-card input[type="submit"],
.psv-content-card .button {
  border: 0;
  border-radius: 999px;
  padding: .85rem 1.15rem;
  font: inherit;
  font-weight: 900;
  background: #111;
  color: #fff;
  cursor: pointer;
}
.psv-content-card button:hover,
.psv-content-card input[type="submit"]:hover { filter: brightness(1.12); }

.psv-footer {
  color: var(--psv-text);
  padding: 42px 0;
  border-top: 1px solid var(--psv-line);
  background: rgba(255,255,255,.72);
}
.psv-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 28px;
  align-items: center;
}
.psv-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.psv-footer-brand img { width: 76px; height: 76px; object-fit: contain; }
.psv-footer-brand strong,
.psv-footer-brand span { display: block; }
.psv-footer-brand span,
.psv-footer-content { color: var(--psv-muted); }
.psv-footer-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.psv-footer-meta a {
  color: var(--psv-text);
  text-decoration: none;
  font-weight: 800;
}
.psv-footer-meta a:hover { color: var(--psv-accent); text-decoration: underline; }

@media (max-width: 1120px) {
  .psv-brand-text { display: none; }
}

@media (max-width: 980px) {
  .psv-header-inner { border-radius: 28px; }
  .psv-nav-toggle { display: inline-flex; }
  .psv-main-nav {
    position: fixed;
    inset: 92px 16px auto 16px;
    display: none;
    padding: 14px;
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--psv-line);
    backdrop-filter: blur(18px);
    box-shadow: var(--psv-shadow);
  }
  .psv-main-nav.is-open { display: block; }
  .psv-menu-list { display: grid; gap: 6px; }
  .psv-menu-list a { width: 100%; justify-content: space-between; }
  .psv-menu-list ul,
  .psv-menu-list .psv-submenu {
    position: static;
    display: grid;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    min-width: 0;
    margin: 4px 0 8px 12px;
    box-shadow: none;
    background: rgba(183,28,28,.05);
  }
  .psv-hero-grid { grid-template-columns: 1fr; }
  .psv-hero-emblem {
    max-width: 320px;
    margin-inline: auto;
    opacity: .92;
  }
  .psv-footer-grid { grid-template-columns: 1fr; }
  .psv-footer-meta { justify-content: flex-start; }
  .psv-teaser-block .cards,
  .psv-content-card .cards,
  .psv-teaser-block .wb-cards,
  .psv-content-card .wb-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .psv-language-switch a { min-width: 34px; min-height: 32px; padding: 0 8px; }
}

@media (max-width: 640px) {
  .psv-container { width: min(100% - 22px, var(--psv-container)); }
  .psv-header { padding: 8px 0; }
  .psv-header-inner { width: calc(100% - 16px); padding: 8px; gap: 8px; }
  .psv-brand-mark { width: 50px; height: 50px; }
  .psv-brand-mark img { width: 46px; height: 46px; }
  .psv-nav-toggle-label { display: none; }
  .psv-header-actions .psv-language-switch { display: none; }
  .psv-mobile-language { display: block; margin-bottom: 10px; }
  .psv-main-nav .psv-language-switch { display: inline-flex; }
  .psv-hero { min-height: 0; padding: 46px 0 86px; }
  .psv-hero-actions { gap: 9px; }
  .psv-btn { width: 100%; }
  .psv-content-wrap { margin-top: -46px; }
  .psv-content-card { border-radius: 26px; padding: 22px; }
  .psv-teaser-block .cards,
  .psv-content-card .cards,
  .psv-teaser-block .wb-cards,
  .psv-content-card .wb-cards { grid-template-columns: 1fr; }
  .psv-content-card table { display: block; overflow-x: auto; }
}

.psv-cookie-note {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 99999;
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 18px;
  background: #ffffff;
  color: #222;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  border: 1px solid rgba(0,0,0,.12);
}

.psv-cookie-note p {
  margin: 0 0 .8rem;
  line-height: 1.45;
}

.psv-cookie-note a {
  color: #991b1b;
  font-weight: 700;
}

.psv-cookie-note button {
  border: 0;
  border-radius: 999px;
  padding: .6rem .9rem;
  background: #991b1b;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
