:root {
  --ink: #22313c;
  --muted: #5f6f7c;
  --brand: #2d74a6;
  --brand-dark: #1d4f73;
  --rose: #8054a6;
  --rose-soft: #f0e9f8;
  --gold: #e2b456;
  --leaf: #dbeefa;
  --line: #d7e7f1;
  --paper: #ffffff;
  --page: #f4f9fd;
  --shadow: 0 18px 48px rgba(31, 96, 139, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(210, 232, 247, .75), transparent 520px), var(--page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.site-header {
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner, main, .footer-inner, .footer-cta-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}
.brand-link img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.brand-link strong {
  display: block;
  color: var(--brand-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.32rem, 2vw, 1.95rem);
  line-height: 1;
}
.brand-link small { display: block; color: var(--rose); font-size: .88rem; margin-top: 3px; }
.main-nav {
  flex: 1 1 560px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}
.main-nav a {
  flex: 0 0 auto;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  color: var(--brand-dark);
  font-weight: 760;
  font-size: .94rem;
  padding: 10px 12px;
  border-radius: 6px;
}
.main-nav a:hover, .main-nav a.active { background: var(--leaf); color: var(--brand-dark); }
.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3 {
  color: var(--brand-dark);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2.15rem, 4.4vw, 4.25rem); margin: 0 0 18px; }
h2 { font-size: clamp(1.75rem, 3vw, 2.55rem); margin: 0 0 14px; }
h3 { font-size: 1.34rem; margin: 0 0 10px; }
p { margin: 0 0 16px; }
.hero, .page-hero {
  margin: 28px 0 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .94), rgba(238, 247, 253, .72)),
    url("../images/brand/banner.svg") center / cover no-repeat;
  box-shadow: var(--shadow);
}
.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(300px, .74fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(28px, 6vw, 72px);
}
.hero h1 { font-size: clamp(1.55rem, 2.85vw, 2.7rem); }
.hero-copy p:not(.eyebrow), .page-hero p:not(.eyebrow) { max-width: 690px; font-size: 1.1rem; color: #43525d; }
.page-hero { padding: clamp(30px, 6vw, 70px); }
.cover-stack { position: relative; min-height: 510px; }
.cover-stack img {
  position: absolute;
  width: 58%;
  height: auto;
  max-width: 290px;
  border: 10px solid var(--paper);
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(31, 96, 139, .2);
}
.cover-stack img:nth-child(1) { top: 0; left: 21%; transform: rotate(-3deg); z-index: 3; }
.cover-stack img:nth-child(2) { top: 105px; left: 0; transform: rotate(5deg); z-index: 2; }
.cover-stack img:nth-child(3) { top: 162px; right: 0; transform: rotate(-2deg); z-index: 1; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  font-weight: 850;
}
.button.primary { background: var(--brand); color: white; box-shadow: 0 12px 24px rgba(45, 116, 166, .24); }
.button.secondary { border: 1px solid var(--line); background: var(--paper); color: var(--brand-dark); }
.content-section, .category-band, .about-panel, .related { margin: 42px 0; }
.section-heading { max-width: 790px; margin-bottom: 26px; }
.section-heading.compact { margin-bottom: 18px; }
.category-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.category-tile {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 158px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 22px;
  border: 1px solid #badced;
  border-radius: 8px;
  background: linear-gradient(145deg, #f2faff, #dbeefa);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(45, 116, 166, .13);
  transition: transform .16s ease, box-shadow .16s ease;
}
.category-tile::after {
  content: "→";
  position: absolute;
  top: 18px;
  right: 20px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  font-weight: 900;
}
.category-tile:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(45, 116, 166, .2); }
.category-tile strong {
  color: var(--brand-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.52rem;
  line-height: 1.05;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.category-tile small { color: var(--muted); }
.product-card, .product-row {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(45, 116, 166, .1);
}
.product-card { display: flex; flex-direction: column; }
.product-image-link { background: var(--rose-soft); aspect-ratio: 1 / 1; overflow: hidden; }
.product-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.product-copy { display: flex; flex: 1; flex-direction: column; padding: 18px; }
.product-copy h3 a { text-decoration: none; }
.product-copy p { color: var(--muted); }
.meta-line { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 14px; }
.meta-line span {
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #eef7fd;
  font-size: .82rem;
  font-weight: 800;
}
.text-link {
  display: inline-flex;
  margin-top: auto;
  color: var(--rose);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 18px;
  color: var(--muted);
  font-size: .92rem;
}
.breadcrumb a { color: var(--rose); text-decoration: underline; text-underline-offset: 5px; font-weight: 800; }
.product-detail {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  margin: 18px 0 46px;
}
.detail-media {
  padding: 18px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.detail-media img { width: 100%; border-radius: 6px; box-shadow: 0 10px 22px rgba(31, 96, 139, .17); }
.lead { font-size: 1.12rem; color: #43525d; }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}
.fact-grid span { padding: 14px; border-radius: 8px; background: #eef7fd; color: var(--brand-dark); font-weight: 800; }
.fact-grid strong { display: block; color: var(--rose); font-size: 1.12rem; }
.article-content { max-width: 980px; }
.notice-page { max-width: 860px; margin: 0 0 52px; }
.notice-page h2 { margin-top: 30px; }
.notice-page .notice-box h2 { margin-top: 0; }
.page-date { color: var(--muted); font-size: .94rem; }
.info-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.info-columns section, .about-panel, .notice-box, .impressum-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.about-panel { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1fr); gap: 28px; }
.impressum-panel {
  max-width: 840px;
  margin: 28px 0 52px;
  box-shadow: 0 14px 34px rgba(45, 116, 166, .09);
}
.impressum-panel img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  user-select: none;
}
ul { margin: 0; padding-left: 1.2rem; }
li + li { margin-top: 7px; }
.site-footer { margin-top: 70px; background: #1d4f73; color: white; }
.footer-cta {
  color: var(--brand-dark);
  background:
    linear-gradient(90deg, rgba(245, 250, 254, .98), rgba(215, 236, 249, .92)),
    url("../images/brand/banner.svg") center / cover no-repeat;
  border-top: 1px solid rgba(45, 116, 166, .16);
  border-bottom: 1px solid rgba(45, 116, 166, .16);
}
.footer-cta-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
}
.footer-cta-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  font-size: 2.6rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(128, 84, 166, .22);
}
.footer-cta-copy strong {
  display: block;
  color: var(--brand-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.05;
}
.footer-cta-copy span { display: block; margin-top: 6px; color: #43525d; font-size: 1rem; }
.footer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 8px;
  background: var(--rose);
  color: white;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(128, 84, 166, .24);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 24px;
  padding: 34px 0;
}
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.site-footer a { color: #eef8ff; text-decoration: underline; text-underline-offset: 4px; }
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.site-footer .footer-inner .youtube-footer-link,
.site-footer .footer-inner .pinterest-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: white;
  text-decoration: none;
}
.youtube-footer-icon,
.pinterest-footer-icon {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
  transition: transform .18s ease, filter .18s ease;
}
.youtube-footer-icon { background: #ff0033; }
.youtube-footer-icon::before {
  content: "";
  display: block;
  margin-left: 5px;
  border-left: 21px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}
.pinterest-footer-icon {
  background: #e60023;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}
.youtube-footer-copy,
.pinterest-footer-copy {
  display: block;
  min-width: 0;
}
.youtube-footer-copy strong,
.pinterest-footer-copy strong {
  display: inline;
  color: white;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.youtube-footer-copy span,
.pinterest-footer-copy span {
  display: block;
  margin-top: 5px;
  color: #cfe1ec;
  font-size: .92rem;
}
.youtube-footer-link:hover .youtube-footer-icon,
.pinterest-footer-link:hover .pinterest-footer-icon {
  filter: brightness(.98);
  transform: translateY(-1px);
}
.transparency { color: #cfe1ec; font-size: .92rem; }
@media (max-width: 920px) {
  .header-inner { align-items: flex-start; flex-direction: column; gap: 10px; }
  .main-nav { flex: 0 1 auto; width: 100%; justify-content: flex-start; align-content: flex-start; padding-bottom: 4px; }
  .hero, .category-grid, .product-grid, .about-panel, .product-detail, .info-columns, .footer-inner, .footer-cta-inner { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .cover-stack { min-height: 360px; }
  .cover-stack img { max-width: 215px; }
}
@media (max-width: 560px) {
  .header-inner, main, .footer-inner, .footer-cta-inner { width: min(100% - 22px, 1180px); }
  .brand-link small { display: none; }
  .brand-link img { width: 48px; height: 48px; }
  .main-nav a { padding: 9px 10px; font-size: .88rem; }
  .fact-grid { grid-template-columns: 1fr; }
}
