/* ============================================
   GOLDKRÜMEL — Stylesheet
   ============================================ */

/* ============================================
   FONTS
   ============================================ */
/* Inter */
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Cormorant Garamond */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/cormorant-garamond-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/cormorant-garamond-300italic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/cormorant-garamond-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Tokens */
:root {
  --bg: #f8f5f0;
  --bg-accent: #ede8df;
  --bg-dark: #1d1a16;
  --bg-footer: #151210;
  --text: #1b1815;
  --text-muted: #766b5d;
  --border: #ddd8cf;
  --cream: #fdfcfa;
  --accent: #b18a57;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --nav-h: 76px;
  --ph: clamp(1.5rem, 5vw, 5rem);
}

/* Base */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

.mobile-break {
  display: none;
}

/* ============================================
   NAV
   ============================================ */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--ph);
  height: var(--nav-h);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(28, 25, 23, 0.06);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.82rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--text);
  white-space: nowrap;
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  gap: clamp(1.35rem, 2.6vw, 2.1rem);
  font-size: 0.71rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(118, 107, 93, 0.84);
}

.nav-links a {
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
  opacity: 1;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  min-height: 100vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(var(--nav-h) + clamp(5rem, 12vh, 8rem)) var(--ph) 5rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.1rem;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.1rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.028em;
  margin-bottom: 1.1rem;
  max-width: 8.5ch;
}

.hero-subline {
  font-family: var(--serif);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 1.6rem;
  margin-bottom: 0;
}

.hero-support {
  color: var(--text-muted);
}

.hero-body {
  position: relative;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text);
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  padding-top: 1.05rem;
  max-width: 30ch;
}

.hero-body::before {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  background: var(--accent);
  position: absolute;
  top: 0;
  left: 0;
}

.hero-bridge {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 1.9rem;
  max-width: 32ch;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.cta-note {
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: rgba(118, 107, 93, 0.7);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 1.05rem 2.4rem;
  color: var(--bg);
  box-shadow: 0 10px 22px rgba(28, 25, 23, 0.1);
  transition:
    transform 0.2s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(28, 25, 23, 0.14);
}

.cta-note {
  font-size: 0.7rem;
  letter-spacing: 0.025em;
  color: var(--text-muted);
}

.hero-image {
  overflow: hidden;
  position: relative;
}

.hero-image img {
  object-position: center center;
}

/* ============================================
   PROBLEM
   ============================================ */
.problem {
  padding: 7rem var(--ph);
  display: flex;
  justify-content: center;
}

.problem-text {
  max-width: 480px;
  text-align: left;
}

.problem-text p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.problem-text p:nth-child(2) {
  margin-bottom: 0.4rem;
}

.problem-text p:last-of-type {
  margin-top: 3rem;
  margin-bottom: 0;
}

.problem-text em {
  font-style: italic;
  opacity: 0.85;
  font-size: 1.05em;
}

/* ============================================
   REFRAME
   ============================================ */
.reframe {
  background: var(--bg-accent);
  padding: 6.5rem var(--ph);
}

.reframe-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.reframe-line {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: -0.012em;
  margin: 0;
}

.reframe-line-1 {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  color: var(--text);
}

.reframe-line-2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: rgba(118, 107, 93, 0.92);
  font-style: italic;
  line-height: 1.34;
  margin-top: 0.28em;
}

.reframe-line-3 {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  color: var(--text);
  margin-top: 1.2rem;
}

/* ============================================
   SERVICE SECTION (shared system)
   ============================================ */
.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-image {
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.5rem var(--ph) 5.5rem clamp(2rem, 5vw, 4.5rem);
}

.service-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.service-title {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 1.15rem;
  max-width: 18ch;
}

.service-text {
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 1.75vw, 1.3125rem);
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}

.service-text + .service-text {
  margin-top: 1.45rem;
}

.service-outcome {
  font-style: italic;
  margin-top: 1.9rem;
}

.service-meta {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.7;
  margin: 1.85rem 0 0;
  max-width: 32ch;
}

/* ============================================
   SERVICE SECTION — DARK
   ============================================ */
.service-section--dark {
  background: var(--bg-dark);
  color: var(--cream);
  grid-template-columns: 1.08fr 0.92fr;
}

.service-section--dark .service-label {
  color: rgba(253, 252, 250, 0.46);
}

.service-section--dark .service-text {
  color: rgba(253, 252, 250, 0.85);
}

.service-section--dark .service-outcome {
  color: rgba(253, 252, 250, 0.7);
}

.service-section--dark .service-meta {
  color: rgba(253, 252, 250, 0.48);
}

.service-section--dark .service-image img {
  object-position: center top;
}

/* ============================================
   SERVICE SECTION — LIGHT
   ============================================ */
.service-section--light {
  background: var(--bg);
  color: var(--text);
  grid-template-columns: 0.95fr 1.05fr;
}

.service-section--light .service-label {
  color: rgba(27, 24, 21, 0.58);
}

.service-section--light .service-text {
  color: var(--text);
}

.service-section--light .service-outcome {
  color: rgba(118, 107, 93, 0.72);
}

.service-section--light .service-meta {
  color: rgba(118, 107, 93, 0.5);
}

.service-section--light .service-image img {
  filter: saturate(0.92) contrast(0.97);
}

/* ============================================
   JANA
   ============================================ */
.jana {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 80vh;
}

.jana::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  height: 3rem;
  background: var(--bg-dark);
}

.jana-image {
  overflow: hidden;
  padding-left: var(--ph);
  margin: 0;
  align-self: center;
}

.jana-image img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  object-position: center top;
}

.jana-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 3.5rem var(--ph) 0 clamp(2.5rem, 5vw, 5rem);
  max-width: 34rem;
}

.jana-title {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(27, 24, 21, 0.5);
  margin: 0 0 0.75rem;
}

.jana-content p {
  margin: 0 0 1.2rem;
}

.jana-text {
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 1.75vw, 1.3125rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
}

.jana-emphasis {
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 1.75vw, 1.3125rem);
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
  color: var(--text-muted);
}

.jana-final {
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 1.75vw, 1.3125rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  margin-top: 1.5rem;
}

.jana-name {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 1rem 0 0;
}

/* ============================================
   FOOTER CTA
   ============================================ */
.footer-cta {
  background: var(--bg-dark);
  color: var(--cream);
  padding: 4.5rem var(--ph) 7.5rem;
}

.footer-cta-inner {
  width: min(100%, 40rem);
  max-width: 42ch;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-cta-intro {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: rgba(253, 252, 250, 0.96);
  margin: 0 0 1.5rem;
  max-width: 18ch;
}

.footer-cta-body {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.9vw, 1.35rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(253, 252, 250, 0.82);
  max-width: 32ch;
  margin: 0 0 1.5rem;
}

.footer-cta-pricing {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgba(253, 252, 250, 0.66);
  max-width: 32ch;
  margin: 0 0 1.1rem;
}

.footer-cta-support {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(253, 252, 250, 0.46);
  margin: 0 0 2rem;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1.6rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--bg-dark);
  margin-top: 1rem;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.25s ease;
}

.footer-cta-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-footer);
  color: rgba(253, 252, 250, 0.38);
  padding: 2.75rem var(--ph);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid rgba(253, 252, 250, 0.07);
}

.footer-links {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links a {
  transition: color 0.25s;
}
.footer-links a:hover {
  color: var(--cream);
}

.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

/* ============================================
   IMPRESSUM
   ============================================ */
.impressum-page {
  padding: calc(var(--nav-h) + 5.5rem) var(--ph) 6.5rem;
  min-height: calc(100vh - var(--nav-h));
}

.impressum-wrap {
  max-width: 46rem;
  margin: 0 auto;
}

.impressum-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.impressum-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--text);
  margin: 0 0 2.4rem;
}

.impressum-block {
  max-width: 32rem;
}

.impressum-block p {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  margin: 0;
}

.impressum-block p + p {
  margin-top: 0.08rem;
}

.impressum-block a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.impressum-block a:hover {
  color: var(--accent);
  opacity: 1;
}

.impressum-divider {
  width: 56px;
  height: 1px;
  background: var(--accent);
  margin: 2rem 0 1.8rem;
}

.impressum-note p {
  color: var(--text-muted);
}

.impressum-spacer {
  margin-top: 0.35rem;
}

/* ============================================
   SUBFOOTER / LEGAL
   ============================================ */
.subfooter {
  background: var(--bg-footer);
  border-top: 1px solid rgba(253, 252, 250, 0.07);
  padding: 1rem var(--ph) 2.2rem;
  display: flex;
  justify-content: center;
}

.subfooter-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.42);
}

.subfooter-links a {
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.subfooter-links a:hover,
.subfooter-links a[aria-current="page"] {
  color: var(--cream);
  opacity: 1;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 900px) {
  :root {
    --ph: clamp(1.25rem, 4vw, 2.5rem);
  }

  #nav {
    padding: 0 var(--ph);
  }

  .nav-logo {
    font-size: 1.68rem;
  }

  .nav-links {
    gap: clamp(1rem, 2.2vw, 1.6rem);
    font-size: 0.68rem;
    letter-spacing: 0.085em;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: calc(var(--nav-h) + 4rem) var(--ph) 4rem;
  }

  .hero-headline {
    font-size: clamp(2.6rem, 5.3vw, 3.7rem);
    line-height: 0.94;
    max-width: 8.5ch;
  }

  .hero-subline {
    font-size: clamp(1rem, 1.8vw, 1.16rem);
  }

  .hero-body {
    font-size: 0.92rem;
    max-width: 32ch;
  }

  .hero-bridge {
    font-size: 0.95rem;
    max-width: 34ch;
  }

  .problem {
    padding: 6rem var(--ph);
  }

  .reframe {
    padding: 5.5rem var(--ph);
  }

  .check-content,
  .shopping-content,
  .jana-content {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .check-text,
  .jana-text {
    font-size: clamp(1rem, 1.7vw, 1.2rem);
  }

  .shop-text {
    font-size: clamp(0.98rem, 1.55vw, 1.12rem);
  }

  .jana {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    min-height: auto;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .jana-image {
    align-self: start;
    padding-left: 0;
  }

  .jana-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 0;
  }

  .jana-content {
    align-self: start;
    padding-top: 4.25rem;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .footer-cta {
    padding: 6.5rem var(--ph);
  }

  .footer-cta-intro {
    font-size: clamp(1.55rem, 3.2vw, 2rem);
  }

  .footer-cta-body {
    font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  }

  .impressum-page {
    padding: calc(var(--nav-h) + 4.5rem) var(--ph) 5.5rem;
  }

  .impressum-title {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    margin-bottom: 2.15rem;
  }

  .impressum-block {
    max-width: 30rem;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --ph: 1.5rem;
    --nav-h: 72px;
  }

  .mobile-break {
    display: inline;
  }

  #nav {
    padding: 0 var(--ph);
    z-index: 200;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 101;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    opacity: 0.9;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(3.75px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  #nav.menu-open {
    background: rgba(248, 245, 240, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: transparent;
  }

  #nav.menu-open.scrolled {
    border-bottom-color: transparent;
  }

  .nav-logo {
    font-size: 1.48rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0;
    z-index: 201;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding-top: 3rem;
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-top: 1px solid rgba(28, 25, 23, 0.06);
    background: var(--bg);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 72vw;
    min-height: unset;
  }

  .hero-content {
    padding: calc(var(--nav-h) + 2.75rem) var(--ph) 3rem;
  }

  .section-label {
    margin-bottom: 1.8rem;
  }

  .hero-headline {
    font-size: clamp(2.55rem, 10.5vw, 3.55rem);
    line-height: 0.94;
    max-width: 9ch;
    margin-bottom: 1rem;
  }

  .hero-subline {
    font-size: 1.08rem;
    line-height: 1.65;
  }

  .hero-body {
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
    padding-top: 1.15rem;
    max-width: none;
  }

  .hero-body::before {
    width: 56px;
  }

  .hero-bridge {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.78;
    margin-bottom: 2rem;
  }

  .hero-cta {
    align-items: stretch;
  }

  .cta-btn {
    width: 100%;
  }

  .problem {
    padding: 3.25rem var(--ph) 5rem;
  }

  .problem-text p {
    font-size: clamp(1.08rem, 5vw, 1.3rem);
    line-height: 1.7;
  }

  .problem-text p + p {
    margin-top: 1.5rem;
  }

  .reframe {
    padding: 4.75rem var(--ph);
  }

  .reframe-inner {
    max-width: 100%;
  }

  .reframe-line-1 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .reframe-line-2 {
    font-size: clamp(1.45rem, 6.4vw, 2rem);
  }

  .reframe-line-3 {
    font-size: clamp(1.8rem, 7.8vw, 2.5rem);
    margin-top: 1rem;
  }

  .service-section {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .service-image {
    height: 70vw;
    overflow: hidden;
  }

  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .service-section--light {
    margin-top: 2rem;
  }

  .service-content {
    padding: 3.5rem var(--ph);
    max-width: none;
  }

  .service-title {
    max-width: none;
  }

  .service-text {
    font-size: 1.05rem;
    line-height: 1.72;
  }

  .service-text + .service-text {
    margin-top: 1.35rem;
  }

  .service-outcome {
    margin-top: 1.7rem;
  }

  .service-meta {
    max-width: none;
    margin-top: 1.6rem;
  }

  .jana {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .jana::before {
    height: 2.5rem;
    top: -2.5rem;
  }

  .jana-image {
    padding-left: 0;
    align-self: stretch;
  }

  .jana-image img {
    width: 100%;
    max-height: 72vh;
    height: auto;
    object-fit: cover;
    object-position: center top;
  }

  .jana-content {
    padding: 3.5rem var(--ph) 0;
    max-width: none;
  }

  .jana-content p {
    margin-bottom: 1.4rem;
  }

  .jana-final {
    margin-top: 2rem;
  }

  .footer-cta {
    padding: 5.5rem var(--ph);
  }

  .footer-cta-inner {
    width: 100%;
  }

  .footer-cta-intro {
    font-size: clamp(1.5rem, 8vw, 2rem);
    max-width: 100%;
    margin-bottom: 1.25rem;
  }

  .footer-cta-body {
    font-size: 1.06rem;
    max-width: 100%;
    margin-bottom: 1.35rem;
  }

  .footer-cta-pricing {
    font-size: 0.92rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .footer-cta-support {
    margin-bottom: 1.75rem;
  }

  .footer-cta-btn {
    width: 100%;
  }

  .footer {
    text-align: center;
    padding: 2.25rem var(--ph);
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.4rem;
  }

  .impressum-page {
    padding: calc(var(--nav-h) + 2.9rem) var(--ph) 4.5rem;
  }

  .impressum-wrap {
    max-width: none;
  }

  .impressum-label {
    margin-bottom: 1.6rem;
  }

  .impressum-title {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
    line-height: 0.98;
    margin-bottom: 1.9rem;
  }

  .impressum-block {
    max-width: none;
  }

  .impressum-block p {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .impressum-divider {
    width: 52px;
    margin: 1.75rem 0 1.55rem;
  }

  .subfooter {
    padding: 0.9rem var(--ph) 1.8rem;
  }

  .subfooter-links {
    gap: 0.9rem 1.25rem;
    font-size: 0.68rem;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
  :root {
    --ph: 1.2rem;
  }

  .nav-logo {
    font-size: 1.38rem;
  }

  .hero {
    grid-template-rows: auto 78vw;
  }

  .hero-content {
    padding: calc(var(--nav-h) + 2.25rem) var(--ph) 2.6rem;
  }

  .section-label {
    font-size: 0.66rem;
    margin-bottom: 1.5rem;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3rem);
    max-width: 8.5ch;
  }

  .hero-subline {
    font-size: 1rem;
  }

  .hero-body,
  .hero-bridge {
    font-size: 0.92rem;
  }

  .check-content,
  .shopping-content,
  .jana-content {
    padding: 3rem var(--ph);
  }

  .check-text,
  .shop-text,
  .jana-text {
    font-size: 1rem;
  }

  .footer-cta {
    padding: 4.5rem var(--ph);
  }

  .footer-cta-intro {
    font-size: 1.35rem;
  }

  .footer-cta-body {
    font-size: 1rem;
  }

  .footer-cta-pricing {
    font-size: 0.88rem;
  }

  .footer-cta-support {
    font-size: 0.78rem;
  }

  .footer-copy {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .impressum-page {
    padding: calc(var(--nav-h) + 2.35rem) var(--ph) 4rem;
  }

  .impressum-label {
    font-size: 0.66rem;
    margin-bottom: 1.35rem;
  }

  .impressum-title {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
    margin-bottom: 1.7rem;
  }

  .impressum-block p {
    font-size: 0.92rem;
    line-height: 1.78;
  }

  .subfooter-links {
    font-size: 0.66rem;
    gap: 0.8rem 1rem;
  }
}
