/* =========================================================
   SkinCare Konstanz – Smadar Bührer
   Design Tokens + globale Styles
   ========================================================= */

:root {
  /* Farben – recherchiert aus bestehendem Markenauftritt (phase2_markenanalyse.md) */
  --color-bg: #fdfdfd;
  --color-bg-alt: #f7f3ec;
  --color-bg-deep: #22201c;
  --color-text: #5a5c5b;
  --color-text-strong: #262625;
  --color-gold: #af8e49;
  --color-gold-light: #d9c08a;
  --color-gold-dark: #8a6c34;
  --color-bordeaux: #6b2635;
  --color-border: #e7e1d3;
  --color-white: #ffffff;

  --font-serif: "Old Standard TT", "Iowan Old Style", "Georgia", serif;
  --font-sans: "Poppins", "Segoe UI", system-ui, sans-serif;

  --container-w: 1200px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 24px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --shadow-soft: 0 20px 60px -25px rgba(38, 34, 20, 0.35);
  --shadow-card: 0 10px 30px -15px rgba(38, 34, 20, 0.25);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 220ms;
  --dur-med: 480ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  color: var(--color-text-strong);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { margin: 0 0 var(--space-sm); }

a { color: var(--color-gold-dark); text-decoration: none; }
a:hover { color: var(--color-bordeaux); }

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

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-xs);
}

.section {
  padding: var(--space-xl) 0;
}
.section--alt { background: var(--color-bg-alt); }
.section--deep {
  background: var(--color-bg-deep);
  color: #d8d4c9;
}
.section--deep h2, .section--deep h3 { color: var(--color-white); }

.section-head {
  max-width: 720px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}
.section-head p { font-size: 1.05rem; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-gold);
  color: #fff;
  padding: 0.9em 1.4em;
  z-index: 10000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--color-gold-dark);
  outline-offset: 3px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 2em;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: inherit;
}
.btn-ghost:hover { background: rgba(175,142,73,0.12); border-color: var(--color-gold); }
.btn-outline {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
}
.btn-outline:hover { background: var(--color-gold); color: #fff; }

/* =========================================================
   Header / Navigation
   Anforderung: Logo ganz links, Nav-Items je 1 Zeile, gleicher Abstand
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 253, 253, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-fast), border-color var(--dur-fast), padding var(--dur-fast);
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 8px 30px -20px rgba(0,0,0,0.25);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 1.1rem var(--space-md);
  max-width: var(--container-w);
  margin: 0 auto;
}
.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-text-strong);
  white-space: nowrap;
  margin-right: auto;
}
.brand strong {
  color: var(--color-gold-dark);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.brand span.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2.4rem);
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--color-text-strong);
  font-size: 0.95rem;
  font-weight: 400;
  white-space: nowrap;
  position: relative;
  padding: 0.3em 0.05em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--color-gold);
  transition: right var(--dur-fast) var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--color-gold-dark); }

.nav-cta { flex: 0 0 auto; display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--color-text-strong); display: block; transition: transform var(--dur-fast), opacity var(--dur-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 72px 0 0 0;
    height: calc(100vh - 72px);
    background: var(--color-bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-md);
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease-out);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.4rem; }
  .nav-cta .btn-outline { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #1b1a17 0%, #23201b 55%, #2b241d 100%);
  color: #f4f1e9;
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transform: scale(1.08);
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(175,142,73,0.28), transparent 60%),
    linear-gradient(180deg, rgba(18,17,14,0.55) 0%, rgba(18,17,14,0.78) 60%, rgba(18,17,14,0.95) 100%);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: calc(var(--space-xl) + 3rem) var(--space-md) var(--space-xl);
}
.hero-inner .eyebrow { color: var(--color-gold-light); }
.hero-inner h1 {
  color: #fff;
  max-width: 15ch;
}
.hero-inner h1 em {
  font-style: normal;
  color: var(--color-gold-light);
}
.hero-lead {
  max-width: 46ch;
  font-size: 1.15rem;
  color: #e8e4d8;
  margin-bottom: var(--space-md);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-lg);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  align-items: center;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #e8e4d8;
}
.hero-badge .stars { color: var(--color-gold-light); letter-spacing: 0.1em; }
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #cfc9b8;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}
.hero-scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--color-gold-light), transparent);
  animation: scrollcue 2.2s var(--ease-out) infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue .line { animation: none; }
}

/* Page hero (subpages) */
.page-hero {
  position: relative;
  padding: calc(var(--space-xl) + 3rem) 0 var(--space-lg);
  background: var(--color-bg-deep);
  color: #f4f1e9;
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.32;
}
.page-hero .hero-scrim {
  background: linear-gradient(180deg, rgba(18,17,14,0.65) 0%, rgba(18,17,14,0.92) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-gold-light);
  margin-bottom: var(--space-sm);
}
.breadcrumb a { color: var(--color-gold-light); }

/* =========================================================
   Cards / Grids
   ========================================================= */
.grid {
  display: grid;
  gap: var(--space-md);
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.value-card .icon {
  width: 46px; height: 46px;
  margin-bottom: 1rem;
  color: var(--color-gold-dark);
}

.treatment-teaser {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  color: #fff;
  isolation: isolate;
}
.treatment-teaser img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.treatment-teaser::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,14,0.05) 30%, rgba(20,18,14,0.85) 100%);
}
.treatment-teaser:hover img { transform: scale(1.06); }
.treatment-teaser .content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.6rem;
}
.treatment-teaser .content .price { color: var(--color-gold-light); font-size: 0.85rem; }
.treatment-teaser .content h3 { color: #fff; margin-bottom: 0.3rem; }

/* Trust / rating split section (Startseite) */
.trust-split { position: relative; overflow: hidden; }
.trust-split::before {
  content: "”";
  position: absolute;
  top: -4rem; right: 4%;
  font-family: var(--font-serif);
  font-size: 26rem;
  line-height: 1;
  color: rgba(175,142,73,0.08);
  pointer-events: none;
  user-select: none;
}
.trust-split-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.trust-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  padding-right: var(--space-lg);
  border-right: 1px solid rgba(255,255,255,0.15);
}
.trust-figure .trust-num {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 10vw, 8.5rem);
  color: var(--color-gold-light);
}
.trust-figure .stars { color: var(--color-gold-light); font-size: 1.3rem; margin-top: 0.6rem; letter-spacing: 0.12em; }
@media (max-width: 700px) {
  .trust-split-grid { grid-template-columns: 1fr; text-align: center; }
  .trust-figure { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-right: 0; padding-bottom: var(--space-md); }
}

/* Testimonial / Google rating badge */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  box-shadow: var(--shadow-card);
}
.rating-badge .stars { color: var(--color-gold); letter-spacing: 0.08em; font-size: 1.05rem; }
.rating-badge strong { color: var(--color-text-strong); }

/* =========================================================
   Treatments (Behandlungen) page listing
   ========================================================= */
.treatment-list {
  display: grid;
  gap: 1rem;
}
.treatment-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 1rem 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--color-border);
}
.treatment-row h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-text-strong);
  margin: 0 0 0.35rem;
  grid-column: 1;
}
.treatment-row p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.94rem;
}
.treatment-row .price {
  font-family: var(--font-serif);
  color: var(--color-gold-dark);
  font-size: 1.05rem;
  white-space: nowrap;
}
.treatment-row .duration {
  font-size: 0.82rem;
  color: var(--color-text);
  white-space: nowrap;
  opacity: 0.85;
}
@media (max-width: 560px) {
  .treatment-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .treatment-row .price,
  .treatment-row .duration {
    grid-column: 1;
    white-space: normal;
  }
}
.treatment-category {
  margin-bottom: var(--space-lg);
}
.treatment-category > .eyebrow { display:block; margin-bottom: 0.3rem; }
.treatment-category > h2 { margin-bottom: 1.6rem; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-text-strong);
}
.faq-question .plus {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  color: var(--color-gold-dark);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast);
  font-size: 1rem;
}
.faq-item[open] .faq-question .plus { transform: rotate(45deg); background: var(--color-gold); color: #fff; }
.faq-answer {
  padding: 0 0 1.6rem;
  max-width: 62ch;
}
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

/* =========================================================
   Map / Contact
   ========================================================= */
.map-embed-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16/11;
  min-height: 340px;
  background: var(--color-bg-alt);
}
.map-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 860px) {
  .map-embed-wrap { aspect-ratio: 4/3; min-height: 320px; }
}
@media (max-width: 480px) {
  .map-embed-wrap { aspect-ratio: 1/1; min-height: 300px; }
}
.map-key-note {
  font-size: 0.78rem;
  color: var(--color-text);
  opacity: 0.75;
  margin-top: 0.6rem;
}

.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ic { color: var(--color-gold-dark); flex: none; width: 22px; margin-top: 3px; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px solid var(--color-border); }
.hours-table td:first-child { color: var(--color-text-strong); }
.hours-table td:last-child { text-align: right; }
.hours-note {
  font-size: 0.8rem;
  margin-top: 0.8rem;
  padding: 0.8rem 1rem;
  background: #fbf3df;
  border: 1px solid var(--color-gold-light);
  border-radius: var(--radius-sm);
  color: #6b5726;
}

/* Calendly placeholder */
.calendly-placeholder {
  border: 1.5px dashed var(--color-gold);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  background: var(--color-white);
}
.calendly-placeholder p { font-size: 0.88rem; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--color-bg-deep);
  color: #cbc6b6;
  padding: var(--space-lg) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.1rem;
}
.site-footer a { color: #cbc6b6; }
.site-footer a:hover { color: var(--color-gold-light); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-brand { font-family: var(--font-serif); font-size: 1.6rem; color: #fff; margin-bottom: 0.6rem; }
.footer-social { display: flex; gap: 0.9rem; margin-top: 1rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { border-color: var(--color-gold-light); background: rgba(175,142,73,0.15); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom ul { display: flex; gap: 1.4rem; list-style: none; padding: 0; margin: 0; }

/* Legal draft notice banner used on Impressum/Datenschutz */
.legal-draft-notice {
  background: #fbf3df;
  border: 1px solid var(--color-gold-light);
  color: #6b5726;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}

/* Reveal-on-scroll utility */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Visually hidden (for a11y) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.two-col > * { min-width: 0; }
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
}
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--space-md) var(--space-lg);
  margin-top: var(--space-md);
}
.stat-strip .stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-gold-dark);
  white-space: nowrap;
}
.stat-strip .stat span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
@media (max-width: 560px) {
  .stat-strip { grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
  .stat-strip .stat strong { font-size: 1.5rem; }
  .stat-strip .stat span { white-space: normal; font-size: 0.68rem; }
}

/* Nummerierte Werte-Liste (statt generischer Icon-Cards) */
.value-numbered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border);
}
.value-numbered .value-item {
  padding: var(--space-md) var(--space-md) var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}
.value-numbered .value-item:last-child { border-right: none; }
.value-numbered .value-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-gold);
  margin-bottom: 1.4rem;
}
@media (max-width: 780px) {
  .value-numbered { grid-template-columns: 1fr; }
  .value-numbered .value-item { border-right: none; padding-right: 0; }
}
