:root {
  --black: #0b0b0b;
  --black-soft: #151515;
  --white: #ffffff;
  --paper: #fbfaf7;
  --cream: #f2eee8;
  --ink: #23201d;
  --muted: #756e66;
  --gold: #E0B152;
  --gold-soft: #E0B152;
  --line: rgba(35, 32, 29, 0.13);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Optima, Candara, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-130%);
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.28), transparent);
  color: var(--white);
}
.topbar.solid { background: var(--black); }
.logo { width: clamp(145px, 15vw, 210px); height: auto; }
.logo-link { text-decoration: none; }
.nav { display: flex; gap: clamp(14px, 2vw, 30px); align-items: center; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }
.nav a { color: rgba(255,255,255,0.84); text-decoration: none; }
.nav a:hover { color: var(--white); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: 120px 22px 90px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92), rgba(0,0,0,0.55) 38%, rgba(0,0,0,0.22) 65%, rgba(0,0,0,0.72)),
    radial-gradient(circle at 72% 50%, transparent 0 10rem, rgba(0,0,0,0.34) 28rem);
  z-index: 2;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; opacity: 0.95; }
.product-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 35px 110px rgba(0,0,0,0.55);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), transparent 25%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 14px),
    linear-gradient(145deg, #393535, #9f9a92 48%, #393535);
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.12);
}
.product-card-a {
  width: min(34vw, 470px);
  height: min(50vh, 540px);
  left: 52%;
  top: 20%;
  border-radius: 8px;
  transform: rotate(-1deg);
}
.product-card-b {
  width: min(24vw, 320px);
  height: min(34vh, 360px);
  left: 69%;
  top: 42%;
  border-radius: 8px 8px 42px 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), transparent 25%),
    linear-gradient(145deg, #1a1a1a, #3b3835 52%, #0e0e0e);
}
.product-card-c {
  width: min(22vw, 290px);
  height: min(28vh, 270px);
  left: 42%;
  bottom: 7%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.11), transparent 25%),
    linear-gradient(145deg, #13aeb0, #dad7d0 48%, #2f3336);
}
.thread-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(173,122,61,.8), transparent);
  transform-origin: center;
}
.line-one { width: 45vw; top: 34%; right: 4%; transform: rotate(-18deg); }
.line-two { width: 30vw; bottom: 28%; right: 23%; transform: rotate(27deg); }
.hero-content { position: relative; z-index: 3; width: min(980px, 100%); text-align: center; }
.hero-logo { width: min(620px, 88vw); margin: 0 auto 44px; }
.kicker {
  margin: 0 0 18px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 800;
}
.hero h1, .legal-card h1, .letter .salutation, .contact-card h2, .memory-content p {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.hero h1 { margin: 0; font-size: clamp(76px, 13vw, 180px); line-height: 0.92; }
.hero-subline { margin: 24px 0 0; font-size: clamp(16px, 2vw, 24px); text-transform: uppercase; letter-spacing: 0.18em; }
.intro-band {
  background: var(--black);
  color: var(--white);
  padding: 24px 22px 30px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.intro-band p { margin: 0; color: rgba(255,255,255,0.74); letter-spacing: 0.05em; }

.letter-section { padding: clamp(64px, 8vw, 118px) 22px; }
.letter {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 72px);
  background: #fff;
  box-shadow: 0 24px 80px rgba(35,32,29,.08);
  border: 1px solid rgba(35,32,29,.08);
}
.letter p { margin: 0 0 24px; font-size: clamp(18px, 1.5vw, 21px); line-height: 1.78; }
.letter .salutation { font-size: clamp(31px, 4vw, 48px); line-height: 1.16; margin-bottom: 34px; }
.highlight { color: var(--gold); font-weight: 700; }
.thanks-box {
  margin: clamp(38px, 6vw, 62px) 0;
  padding: clamp(24px, 4vw, 42px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.thanks-box p { margin: 0 0 8px; color: var(--gold); font-weight: 800; line-height: 1.35; }
.signature-block { margin-top: 44px; }
.signature-block p { margin-bottom: 10px; }
.signature-block .signature {
  margin-top: 4px;
  color: var(--gold);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
}

.memory-strip {
  background: linear-gradient(135deg, #121212, #2a2927 60%, #111);
  color: var(--white);
  padding: clamp(64px, 8vw, 120px) 22px;
}
.memory-content { width: min(900px, 100%); margin: 0 auto; text-align: center; }
.memory-content .icon { display: block; color: var(--gold-soft); font-size: 48px; margin-bottom: 18px; }
.memory-content p { margin: 0; font-size: clamp(34px, 5vw, 66px); line-height: 1.08; }

.contact-section { padding: clamp(64px, 8vw, 118px) 22px; background: var(--cream); }
.contact-card {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(30px, 6vw, 70px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(35,32,29,.07);
}
.mail-icon { color: var(--gold); font-size: 72px; line-height: 1; }
.contact-card h2 { font-size: clamp(34px, 5vw, 62px); line-height: 1; margin: 0 0 20px; }
.contact-card p:not(.kicker) { margin: 0 0 26px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.mail-button {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .03em;
}
.mail-button:hover { filter: brightness(0.94); }

.footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
  text-align: center;
  padding: 42px 22px 52px;
}
.footer-logo { width: min(260px, 70vw); margin: 0 auto 24px; }
.footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-bottom: 20px; }
.footer a { color: #fff; text-decoration: none; font-size: 13px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.footer p { margin: 0; font-size: 13px; }

.legal-page { background: var(--cream); }
.legal-wrap { padding: 120px 22px 80px; }
.legal-card {
  width: min(900px, 100%);
  margin: 0 auto;
  background: #fff;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(35,32,29,.07);
}
.legal-card h1 { margin: 0 0 10px; font-size: clamp(44px, 7vw, 78px); line-height: 1; }
.legal-card h2 { margin: 34px 0 12px; font-size: 23px; }
.legal-card p { color: #3a352f; font-size: 17px; line-height: 1.72; }
.legal-card a { color: var(--gold); font-weight: 700; }
.legal-note, .small-muted { color: var(--muted) !important; }
.small-muted { margin-top: 42px; font-size: 14px !important; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 850ms ease, transform 850ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 760px) {
  .topbar { height: auto; min-height: 72px; align-items: flex-start; flex-direction: column; gap: 10px; padding-top: 14px; padding-bottom: 14px; background: rgba(0,0,0,.86); }
  .nav { gap: 14px; flex-wrap: wrap; font-size: 12px; }
  .hero { padding-top: 150px; }
  .product-card-a { width: 76vw; height: 380px; left: 22%; top: 28%; }
  .product-card-b { width: 48vw; height: 240px; left: 55%; top: 52%; }
  .product-card-c { width: 44vw; height: 190px; left: 5%; bottom: 8%; }
  .contact-card { grid-template-columns: 1fr; }
  .mail-icon { font-size: 54px; }
  .letter { padding-left: 24px; padding-right: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* Kundenanpassungen vom 14.07.2026 */
.hero-kicker {
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  font-size: clamp(17px, 1.8vw, 25px);
  letter-spacing: 0.24em;
  color: var(--gold);
}
.hero h1 { color: var(--gold); }
.closure-line {
  display: inline;
  color: var(--ink);
  background: linear-gradient(transparent 58%, rgba(224, 177, 82, .42) 58%);
  font-weight: 800;
}
.brand-quote {
  margin: clamp(34px, 5vw, 52px) 0;
  padding: 4px 0 4px clamp(22px, 4vw, 38px);
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 27px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.55;
}
.signature-prefix { font-weight: 800; }

/* Einheitliche Darstellung des eingetragenen Warenzeichens hinter CUMPANO */
.brand-name {
  white-space: nowrap;
}
.tm {
  display: inline-block;
  margin-left: 0.06em;
  font-size: 0.34em;
  font-weight: 700;
  line-height: 0;
  vertical-align: 0.95em;
  letter-spacing: 0;
}
.intro-band p {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 650;
}
