/**
 * Schoch Edelstahl — Brand Tokens
 * Farbe: Logo-Blau + Weiß/Cream (Auftrag 2026-07-29)
 * Layout/Typo-Rhythmus: Heinz-Skala (Fonts + Maße)
 * Font: Heinz Kit lokal unter /prototype/vendor/fonts/heinz-kit.css
 */

:root {
  --font-title: HeinzLabel1;
  --font-body-regular: HeinzSans3;
  --font-body-semibold: HeinzSans4;
  --font-body-bold: HeinzSans5;

  --global-navbar-height-sm: 64px;
  --global-navbar-height-md: 72px;
  --global-navbar-height-lg: 80px;
  --global-header-height: var(--global-navbar-height-sm);

  /* Schoch brand */
  --schoch-blue: #0e2879;
  --schoch-blue-hover: #16359a;
  --schoch-blue-press: #0a1d5c;
  --schoch-blue-deep: #050d2b;
  --schoch-blue-soft: #e8eefc;

  /* Cream / white (behalten) */
  --cream: #fef1dd;
  --cream-2: #fff9f1;
  --cream-3: #fcf9f0;
  --white: #ffffff;

  --text: #050d2b;
  --text-muted: #3a4460;
  --stroke: #d5dbeb;

  --color-bg-primary: var(--white);
  --color-bg-secondary: var(--cream-2);
  --color-bg-tertiary: var(--cream);
  --color-text-primary: var(--text);
  --color-text-secondary: var(--text-muted);
  --color-headline-primary: var(--schoch-blue);
  /* Primary: navy + cream/white text; hover INVERTS to cream + navy text */
  --color-cta-default: var(--schoch-blue);
  --color-cta-hover: var(--cream);
  --color-cta-press: var(--cream-2);
  --color-cta-text-primary: var(--white);
  --color-cta-hover-text: var(--schoch-blue);
  --color-cta-subdued-default: var(--schoch-blue);
  --color-cta-subdued-hover: var(--schoch-blue-press);
  --color-stroke-primary: var(--stroke);
}

@media (min-width: 768px) {
  :root {
    --global-header-height: var(--global-navbar-height-md);
  }
}
@media (min-width: 1024px) {
  :root {
    --global-header-height: var(--global-navbar-height-lg);
  }
}

/* Themes */
.theme-white {
  --color-bg-primary: var(--white);
  --color-bg-secondary: var(--cream-3);
  --color-text-primary: var(--text);
  --color-text-secondary: var(--text-muted);
  --color-headline-primary: var(--schoch-blue);
  --color-cta-default: var(--schoch-blue);
  --color-cta-hover: var(--cream);
  --color-cta-press: var(--cream-2);
  --color-cta-text-primary: var(--white);
  --color-cta-hover-text: var(--schoch-blue);
  --color-cta-subdued-default: var(--schoch-blue);
  --color-cta-subdued-hover: var(--schoch-blue-press);
}

.theme-cream {
  --color-bg-primary: var(--cream);
  --color-bg-secondary: var(--cream-2);
  --color-text-primary: var(--text);
  --color-text-secondary: var(--text-muted);
  --color-headline-primary: var(--schoch-blue);
  --color-cta-default: var(--schoch-blue);
  --color-cta-hover: var(--schoch-blue-deep);
  --color-cta-press: var(--schoch-blue-press);
  --color-cta-text-primary: var(--white);
  --color-cta-hover-text: var(--cream);
  --color-cta-subdued-default: var(--schoch-blue);
  --color-cta-subdued-hover: var(--schoch-blue-press);
}

.theme-blue {
  --color-bg-primary: var(--schoch-blue);
  --color-bg-secondary: var(--schoch-blue-hover);
  --color-text-primary: var(--white);
  --color-text-secondary: rgba(255, 255, 255, 0.85);
  --color-headline-primary: var(--white);
  --color-cta-default: var(--cream);
  --color-cta-hover: var(--schoch-blue-deep);
  --color-cta-press: var(--schoch-blue-press);
  --color-cta-text-primary: var(--schoch-blue);
  --color-cta-hover-text: var(--cream);
  --color-cta-subdued-default: var(--cream);
  --color-cta-subdued-hover: var(--white);
}

.theme-deep {
  --color-bg-primary: var(--schoch-blue-deep);
  --color-bg-secondary: #0a163f;
  --color-text-primary: var(--white);
  --color-text-secondary: rgba(254, 241, 221, 0.85);
  --color-headline-primary: var(--cream);
  --color-cta-default: var(--cream);
  --color-cta-hover: var(--schoch-blue);
  --color-cta-press: var(--schoch-blue-press);
  --color-cta-text-primary: var(--schoch-blue-deep);
  --color-cta-hover-text: var(--cream);
  --color-cta-subdued-default: var(--cream);
  --color-cta-subdued-hover: var(--white);
}

.bg-skin-primary {
  background-color: var(--color-bg-primary);
}
.bg-skin-secondary {
  background-color: var(--color-bg-secondary);
}
.text-skin-primary {
  color: var(--color-text-primary);
}
.text-skin-secondary {
  color: var(--color-text-secondary);
}

/* Typography — Heinz scale */
.headline-1,
.headline-2,
.headline-3,
.headline-4,
.headline-5,
.headline-6 {
  font-family: var(--font-title), sans-serif;
  line-height: 1;
  color: var(--color-headline-primary);
  margin: 0;
}
.headline-1 {
  font-size: 6rem;
}
.headline-2 {
  font-size: 4.5rem;
}
.headline-3 {
  font-size: 3.75rem;
}
.headline-4 {
  font-size: 3rem;
}
.headline-5 {
  font-size: 2.25rem;
}
.headline-6 {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .headline-1 {
    font-size: 8rem;
  }
  .headline-2 {
    font-size: 6rem;
  }
  .headline-3 {
    font-size: 4.5rem;
  }
  .headline-4 {
    font-size: 3.75rem;
  }
  .headline-5 {
    font-size: 3rem;
  }
  .headline-6 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .headline-1 {
    font-size: 9rem;
  }
  .headline-2 {
    font-size: 8rem;
  }
  .headline-3 {
    font-size: 6rem;
  }
  .headline-4 {
    font-size: 4.5rem;
  }
  .headline-5 {
    font-size: 3.75rem;
  }
  .headline-6 {
    font-size: 3rem;
  }
}

.paragraph-xsmall,
.paragraph-small,
.paragraph-medium,
.paragraph-large,
.paragraph-xlarge {
  font-family: var(--font-body-regular), sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin: 0;
}
.paragraph-xsmall {
  font-size: 0.75rem;
}
.paragraph-small {
  font-size: 0.875rem;
}
.paragraph-medium {
  font-size: 1rem;
}
.paragraph-large {
  font-size: 1.25rem;
}
.paragraph-xlarge {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .paragraph-xsmall {
    font-size: 0.875rem;
  }
  .paragraph-small {
    font-size: 1rem;
  }
  .paragraph-medium {
    font-size: 1.125rem;
  }
  .paragraph-large {
    font-size: 1.5rem;
  }
  .paragraph-xlarge {
    font-size: 1.875rem;
  }
}
@media (min-width: 1280px) {
  .paragraph-medium {
    font-size: 1.25rem;
  }
  .paragraph-large {
    font-size: 1.875rem;
  }
  .paragraph-xlarge {
    font-size: 2.25rem;
  }
}
.paragraph-prominent {
  font-family: var(--font-body-semibold), sans-serif;
  font-weight: 600;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body-bold), sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 9999px;
  padding: 0.875rem 1.5rem;
  background: var(--color-cta-default);
  color: var(--color-cta-text-primary);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.cta-button:hover,
.cta-button:focus-visible {
  background: var(--color-cta-hover);
  color: var(--color-cta-hover-text);
}
.cta-button:active {
  background: var(--color-cta-press);
  color: var(--color-cta-hover-text);
}
.cta-button--subdued {
  background: transparent;
  color: var(--color-cta-subdued-default);
  box-shadow: inset 0 0 0 2px var(--color-cta-subdued-default);
}
.cta-button--subdued:hover,
.cta-button--subdued:focus-visible {
  background: transparent;
  color: var(--color-cta-subdued-hover);
  box-shadow: inset 0 0 0 2px var(--color-cta-subdued-hover);
}
@media (min-width: 768px) {
  .cta-button {
    font-size: 1.125rem;
    padding: 1rem 1.75rem;
  }
}
@media (min-width: 1280px) {
  .cta-button {
    font-size: 1.25rem;
  }
}

.section-pad {
  padding: 3rem 0;
}
@media (min-width: 1024px) {
  .section-pad {
    padding: 4rem 0;
  }
}
.container-5xl {
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.container-7xl {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-t-3xl {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
