:root {
  --red: #e30613;
  --red-dark: #b8000a;
  --ink: #111214;
  --muted: #62666d;
  --line: #dedfe2;
  --paper: #f7f6f3;
  --white: #fff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: rgba(17,18,20,.2);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: background .25s, color .25s, box-shadow .25s;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.06);
}
.brand { display: flex; gap: 12px; align-items: center; font-weight: 800; text-decoration: none; }
.brand-mark {
  position: relative;
  display: grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--red);
  flex: 0 0 36px;
}
.swiss-cross, .swiss-cross::before {
  display: block;
  content: "";
  position: absolute;
  background: var(--white);
}
.swiss-cross { width: 22px; height: 7px; left: 7px; top: 14.5px; }
.swiss-cross::before { width: 7px; height: 22px; left: 7.5px; top: -7.5px; }
.scrolled .brand-mark { background: var(--red); }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { text-decoration: none; font-size: .94rem; font-weight: 600; }
.main-nav a:hover { color: var(--red); }
.nav-contact { border: 1px solid currentColor; padding: 9px 16px; }
.menu-button { display: none; background: none; color: inherit; border: 1px solid currentColor; padding: 8px 12px; font: inherit; }

.hero { position: relative; min-height: 100vh; display: grid; align-items: center; overflow: hidden; color: white; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,12,18,.82) 0%, rgba(7,12,18,.43) 46%, rgba(7,12,18,.08) 78%); }
.hero-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding-top: 60px; }
.eyebrow { margin: 0 0 16px; text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; font-weight: 800; }
.eyebrow.red { color: var(--red); }
.hero h1 { margin: 0; font-size: clamp(3.6rem, 8vw, 7.8rem); line-height: .88; letter-spacing: -.06em; max-width: 820px; }
.hero-lead { max-width: 620px; font-size: clamp(1.05rem, 1.8vw, 1.35rem); margin: 30px 0 36px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 24px; text-decoration: none; font-weight: 700; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--red); }
.button-primary:hover { background: var(--red-dark); }
.scroll-hint { position: absolute; z-index: 2; bottom: 26px; left: 50%; transform: translateX(-50%); color: white; font-size: 2rem; text-decoration: none; }

.section { padding: 120px max(24px, calc((100vw - var(--max)) / 2)); scroll-margin-top: 72px; }
.section-heading { max-width: 760px; margin-bottom: 58px; }
.section-heading h2, .contact h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1.02; letter-spacing: -.055em; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.1rem; }
.two-column { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: start; }
.lead-copy { font-size: 1.25rem; }
.lead-copy p:first-child { margin-top: 0; }
.values-card { padding: 36px; background: var(--paper); border-top: 5px solid var(--red); }
.values-card h3 { margin: 0 0 24px; font-size: 1.4rem; }
.values-card ul { list-style: none; padding: 0; margin: 0; }
.values-card li { display: grid; grid-template-columns: 50px 1fr; gap: 12px; padding: 17px 0; border-top: 1px solid var(--line); font-weight: 600; }
.values-card li span { color: var(--red); font-weight: 800; }

.section-dark { background: var(--ink); color: white; }
.section-heading.light > p:last-child { color: #b7bac0; }
.focus-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #414348; border-left: 1px solid #414348; }
.focus-grid article { min-height: 270px; padding: 38px; border-right: 1px solid #414348; border-bottom: 1px solid #414348; }
.focus-number { color: var(--red); font-weight: 800; }
.focus-grid h3 { margin: 46px 0 10px; font-size: 1.55rem; }
.focus-grid p { color: #b7bac0; max-width: 450px; }

.timeline { border-top: 1px solid var(--line); }
.timeline article { display: grid; grid-template-columns: 180px 1fr; gap: 40px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.timeline-year { color: var(--red); font-weight: 800; }
.timeline h3 { margin: 0 0 8px; font-size: 1.45rem; }
.timeline p { margin: 0; color: var(--muted); }
.note { margin-top: 26px; color: var(--muted); font-size: .9rem; }

.quote-section { padding: 100px 24px; background: var(--paper); text-align: center; }
.quote-section > div { max-width: 960px; margin: auto; }
blockquote { margin: 0; font-size: clamp(2rem, 4.4vw, 4.5rem); line-height: 1.08; letter-spacing: -.045em; font-weight: 700; }
.quote-section img { width: 220px; margin-top: 40px; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.contact-copy > p:last-child { max-width: 560px; color: var(--muted); font-size: 1.1rem; }
.contact-card { padding: 42px; background: var(--red); color: white; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.contact-card > a:not(.button) { font-size: clamp(1.05rem, 2vw, 1.4rem); font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
.contact-card p { margin: 4px 0 10px; }
.button-secondary { background: white; color: var(--ink); }

footer { min-height: 90px; padding: 24px max(24px, calc((100vw - var(--max)) / 2)); background: var(--ink); color: #d0d2d5; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-size: .9rem; }
footer a { text-decoration: none; }
footer a:hover { color: white; }

@media (max-width: 800px) {
  .site-header { height: 68px; }
  .menu-button { display: block; }
  .main-nav { position: absolute; top: 68px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px 24px 26px; color: var(--ink); background: white; box-shadow: 0 14px 30px rgba(0,0,0,.12); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-contact { border: 0; }
  .hero-content { width: calc(100% - 40px); }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 5.5rem); }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,12,18,.82), rgba(7,12,18,.38)); }
  .section { padding-top: 85px; padding-bottom: 85px; }
  .two-column, .contact { grid-template-columns: 1fr; gap: 42px; }
  .focus-grid { grid-template-columns: 1fr; }
  .timeline article { grid-template-columns: 1fr; gap: 10px; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Added for content-rich versions */
.crest-strip{display:flex;align-items:center;justify-content:center;gap:28px;padding:24px;background:#fff;border-bottom:1px solid var(--line);text-align:center}.crest-strip img{width:74px;height:90px;object-fit:contain}.crest-strip div{display:flex;flex-direction:column}.crest-strip strong{font-size:1.25rem}.crest-strip span{color:var(--muted);font-size:.9rem}.article-copy{max-width:900px;font-size:1.08rem}.article-copy h3{font-size:1.8rem;margin-top:55px}.light-copy p{color:#d4d5d8}.subhead{margin-top:70px;font-size:1.8rem}.values-card p{font-size:1rem;font-weight:400}.closing-statement{margin-top:60px;border-left:5px solid var(--red);padding:8px 0 8px 28px;max-width:800px}.closing-statement p{font-size:2rem;font-weight:800;margin:0 0 8px}.closing-statement span{color:#b7bac0}@media(max-width:800px){.crest-strip{gap:14px}.crest-strip img{width:58px;height:72px}.crest-strip strong{font-size:1rem}.crest-strip span{font-size:.78rem}}


/* Wahl-Countdown */
.hero-countdown {
  position: absolute;
  z-index: 3;
  top: 106px;
  right: max(24px, calc((100vw - var(--max)) / 2));
  padding: 11px 16px;
  color: var(--white);
  background: rgba(227,6,19,.94);
  border: 1px solid rgba(255,255,255,.45);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

/* Absichtlich praktisch unsichtbarer Besucherzähler unten rechts.
   Die Schriftfarbe entspricht exakt dem Footer-Hintergrund. */
footer { position: relative; }
.visitor-counter {
  position: absolute;
  right: 5px;
  bottom: 3px;
  color: var(--ink);
  font-size: 10px;
  line-height: 1;
  user-select: text;
  cursor: default;
}
.visitor-counter::selection { color: var(--white); background: var(--red); }

@media (max-width: 800px) {
  .hero-countdown {
    top: 88px;
    right: 20px;
    font-size: .82rem;
    padding: 9px 12px;
  }
}

/* Besucherzähler wird nur beim Darüberfahren mit der Maus sichtbar. */
.visitor-counter:hover,
.visitor-counter:focus {
  color: #d0d2d5;
}

/* Finales Kandidatenfoto im Hero-Bereich */
.hero-portrait {
  position: absolute;
  z-index: 1;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 0;
  width: min(37vw, 500px);
  height: calc(100% - 106px);
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0,0,0,.18);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}
.hero-content { padding-right: min(40vw, 540px); }
.hero-lead { max-width: 600px; }
.hero-countdown { z-index: 4; }
@media (max-width: 900px) {
  .hero-portrait { width: 42vw; opacity: 1; right: 0; }
  .hero-content { padding-right: 32vw; margin-top: 2rem; }
  .hero { align-items: start; }
}
@media (max-width: 650px) {
  .hero-portrait { width: 54vw; height: 62%; opacity: 1; right: -10vw; }
  .hero-content { padding-right: 0; margin-top: 2rem;}
  .hero-overlay { z-index: 1; }
  .hero-content { z-index: 2; }
  .hero { align-items: start;}
}

/* Anpassung: Portrait ohne sichtbaren Rahmen, Countdown ausserhalb des Kopfbereichs */
.hero-portrait {
  right: max(8px, calc((100vw - var(--max)) / 2));
  width: min(39vw, 520px);
  height: calc(100% - 96px);
  overflow: visible;
  box-shadow: none;
  background: transparent;
  border: 0;
}
.hero-portrait img {
  border: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  object-position: center bottom;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 92%, transparent 100%);
}
.hero-countdown {
  top: auto;
  right: auto;
  left: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 38px;
}
@media (max-width: 900px) {
  .hero-portrait { width: 44vw; right: -1vw; }
  .hero-countdown { left: 20px; right: auto; bottom: 28px; }
}
@media (max-width: 650px) {
  .hero-portrait { width: 60vw; height: 60%; right: -12vw; }
  .hero-countdown { left: 20px; right: auto; top: auto; bottom: 5rem; }
}

