/* ================================================================
   CYRIL GRIN SPORTCONSULTING — Stylesheet
   Redesign 2026 · Keine Abonnements · Statisches HTML/CSS/JS
   ================================================================ */

/* Adobe Fonts (brandon-grotesque) wird per <link> im <head> jeder HTML-Datei geladen.
   Kein @import hier nötig — Embed-Tag: <link rel="stylesheet" href="https://use.typekit.net/XXXXXXX.css"> */

/* ----------------------------------------------------------------
   VARIABLEN
   ---------------------------------------------------------------- */
:root {
  --blue:      #024B80;
  --blue-dk:   #01304F;
  --blue-mid:  #0A5E9E;
  --gray:      #85888B;
  --gray-lt:   #F2F2EF;
  --dark:      #12120D;
  --text:      #3A3A35;
  --white:     #FFFFFF;

  --ff-serif:  'brandon-grotesque', 'Helvetica Neue', Arial, sans-serif;
  --ff-sans:   'brandon-grotesque', 'Helvetica Neue', Arial, sans-serif;

  --nav-h:     68px;
  --max-w:     1120px;
  --pad-x:     clamp(1.2rem, 5vw, 3rem);
  --sec-y:     clamp(4rem, 9vw, 8rem);
  --gap:       clamp(1.5rem, 4vw, 3rem);
  --ease:      cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ----------------------------------------------------------------
   RESET
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--ff-sans);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ----------------------------------------------------------------
   TYPOGRAFIE
   ---------------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--ff-serif);
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }

p { line-height: 1.78; color: var(--text); }
p + p { margin-top: 1.1rem; }

.eyebrow {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.9rem;
}

/* ----------------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--sec-y) 0; }
.section--light { background: var(--gray-lt); }
.section--dark  { background: var(--blue-dk); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  align-items: start;
}
.grid-2--center { align-items: center; }
.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--gap);
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head p { margin-top: 1rem; max-width: 540px; }
.section-head--center { text-align: center; }
.section-head--center p { margin: 1rem auto 0; }

/* ----------------------------------------------------------------
   DIVIDER
   ---------------------------------------------------------------- */
.divider {
  width: 48px; height: 1px;
  background: var(--blue);
  margin: 1.4rem 0;
}
.divider--white { background: rgba(255,255,255,0.3); }

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 2rem;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover { background: var(--blue-dk); border-color: var(--blue-dk); }

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: rgba(18,18,13,0.3);
}
.btn--outline:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-white:hover { background: var(--white); color: var(--blue); border-color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn--white:hover { background: var(--gray-lt); border-color: var(--gray-lt); }

/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav--scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.nav__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s var(--ease);
}
.nav--scrolled .nav__logo img { filter: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-left: auto; /* push nav-links + lang-switch to the right */
}
.nav__links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.22s;
  position: relative;
  padding-bottom: 3px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.25s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: rgba(255,255,255,1); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav--scrolled .nav__links a { color: var(--dark); }
.nav--scrolled .nav__links a:hover { color: var(--blue); }
.nav--scrolled .nav__links a.active { color: var(--blue); }

.nav__cta-link {
  padding: 0.45rem 1.1rem !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
}
.nav__cta-link:hover { background: rgba(255,255,255,0.12); }
.nav--scrolled .nav__cta-link { border-color: var(--blue) !important; }
.nav--scrolled .nav__cta-link:hover { background: var(--blue); color: var(--white) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 210;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav--scrolled .nav__burger span { background: var(--dark); }
.nav__burger--open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__burger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger--open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ----------------------------------------------------------------
   HERO — Grundstruktur
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--blue-dk);
}

/* Hintergrundbild */
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Bilder — Gradient-Fallback falls Datei noch fehlt */
.hero--home     .hero__bg { background-image: url('images/hero-home.jpg'),
  linear-gradient(155deg, #011e32 0%, #024B80 55%, #2a5a7a 100%); }
.hero--about    .hero__bg { background-image: url('images/hero-about.jpg'),
  linear-gradient(155deg, #011e32 0%, #024B80 100%);
  background-position: center 30%; }
.hero--services .hero__bg { background-image: url('images/hero-services.jpg'),
  linear-gradient(155deg, #024B80 0%, #011e32 100%);
  background-position: center 10%; }
.hero--athletes .hero__bg { background-image: url('images/hero-athletes.jpg'),
  linear-gradient(155deg, #01304F 0%, #024B80 60%, #6a7880 100%);
  background-position: center 30%; }
.hero--contact  .hero__bg { background-image: url('images/hero-contact.jpg'),
  linear-gradient(155deg, #011e32 0%, #024B80 100%); }
.hero--ski      .hero__bg { background-image: url('images/Cyril_Skilehrer_wide.jpg'),
  linear-gradient(155deg, rgba(10,77,99,0.82) 0%, rgba(17,128,170,0.65) 40%, rgba(31,174,231,0.35) 100%); }
@media (min-width: 768px) {
  .hero--ski .hero__bg { background-position: right 20%; }
}

/* ----------------------------------------------------------------
   HERO FULL — Startseite (Vollbild, zentriert)
   ---------------------------------------------------------------- */
.hero--full {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Overlay Startseite: gleichmässige schwarze Fläche + Gradient für Text-Bereich */
.hero--full .hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(1,30,50,0.05);
}
/* Zweite Overlay-Schicht: Gradient oben/unten für Lesbarkeit */
.hero--full .hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(1,30,50,0.55) 0%,
      rgba(1,30,50,0.25) 30%,
      rgba(1,30,50,0.15) 55%,
      rgba(1,30,50,0.35) 100%
    );
}

.hero--full .hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  padding: calc(var(--nav-h) + 2rem) var(--pad-x) 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.hero__logo-full {
  width: min(410px, 67vw);
  height: auto;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.5));
  margin-bottom: 2.2rem;
}

/* Dünne Linie zwischen Logo und Text */
.hero__divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin-bottom: 2rem;
}

.hero__sub {
  font-size: clamp(1.09rem, 2.5vw, 1.23rem);
  color: rgba(255,255,255,0.88);
  max-width: 420px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 16px rgba(0,0,0,0.7), 0 0 40px rgba(0,0,0,0.4);
  margin-bottom: 2.4rem;
}

/* Scroll-Indikator */
.hero__scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.hero__scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ----------------------------------------------------------------
   HERO INNER — Unterseiten (links unten, Editorial-Layout)
   ---------------------------------------------------------------- */
.hero--inner {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Linkes dunkles Panel + Boden-Gradient → Text immer lesbar */
.hero--inner .hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* Weicher linker Verlauf */
    linear-gradient(108deg,
      rgba(1,18,30,0.92) 0%,
      rgba(1,38,62,0.52) 35%,
      rgba(1,48,79,0.18) 62%,
      transparent 88%
    ),
    /* Boden-Abdunkelung */
    linear-gradient(to top,
      rgba(1,18,30,0.65) 0%,
      rgba(1,18,30,0.15) 38%,
      transparent 65%
    ),
    /* Generelles Abdunkeln damit auch helle Bilder funktionieren */
    rgba(1,18,30,0.12);
}

.hero--inner .hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 1rem) var(--pad-x) clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero__breadcrumb::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--white);
}

.hero__page-title {
  color: var(--white);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 32px rgba(0,0,0,0.45);
  max-width: 640px;
  margin-bottom: 1.6rem;
}

/* Dünne blaue Akzentlinie unter dem Titel */
.hero__accent {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.45);
}

/* Optionaler Untertitel auf Unterseiten */
.hero__page-sub {
  margin-top: 1.2rem;
  font-size: clamp(0.82rem, 1.8vw, 0.94rem);
  color: rgba(255,255,255,0.62);
  max-width: 420px;
  line-height: 1.8;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

/* ----------------------------------------------------------------
   SCROLL REVEAL
   ---------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* ----------------------------------------------------------------
   CARDS
   ---------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 2.2rem 2rem;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(2,75,128,0.09);
  border-color: rgba(2,75,128,0.15);
}
.card--accent { border-top: 3px solid var(--blue); }
.card h3 { font-size: 1.5rem; margin-bottom: 0.9rem; }
.card p { font-size: 0.93rem; line-height: 1.75; }

/* ----------------------------------------------------------------
   INTRO (Startseite)
   ---------------------------------------------------------------- */
.intro__sig {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--blue);
  margin-top: 1.8rem;
}

/* ----------------------------------------------------------------
   QUOTE / DARK SECTION
   ---------------------------------------------------------------- */
.quote-block blockquote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.42;
  margin-bottom: 2rem;
}
.section--dark .eyebrow { color: rgba(133,136,139,0.8); }
.section--dark h2 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.68); }

/* Video */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-caption {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.9rem;
}

/* ----------------------------------------------------------------
   PARTNER LOGOS
   ---------------------------------------------------------------- */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  border-top: 1px solid rgba(0,0,0,0.07);
  border-left: 1px solid rgba(0,0,0,0.07);
  margin-top: 3rem;
}
.logo-item {
  border-right: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 1.8rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 80px;
  transition: background 0.25s;
}
.logo-item:hover { background: var(--gray-lt); }
.logo-item img {
  max-width: 132px;
  max-height: 53px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s ease;
}
.logo-item:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ----------------------------------------------------------------
   FORMS
   ---------------------------------------------------------------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form__group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(0,0,0,0.14);
  background: var(--white);
  color: var(--dark);
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus { border-color: var(--blue); }
.form__group textarea { min-height: 130px; resize: vertical; }
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%2385888B' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form__note {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.55;
  margin-top: 0.3rem;
}

/* ----------------------------------------------------------------
   KONTAKT
   ---------------------------------------------------------------- */
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.contact-item__label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 0.3rem;
}
.contact-item__val { font-size: 1rem; line-height: 1.5; }
.contact-item__val a { transition: color 0.2s; }
.contact-item__val a:hover { color: var(--blue); }

.social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.22s;
}
.social-link:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.social-link svg { width: 14px; height: 14px; }

/* ----------------------------------------------------------------
   ÜBER UNS
   ---------------------------------------------------------------- */
/* Zur Person — Portrait + Text */
.about-person-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.about-portrait {
  position: relative;
}
.about-portrait__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-lt);
}
.about-portrait__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease);
}
.about-portrait__img:hover img { transform: scale(1.03); }

.about-subtitle {
  font-style: italic;
  font-size: 1rem;
  color: var(--blue);
  line-height: 1.65;
  margin: 0.4rem 0 1.6rem;
}

/* Foto-Strip: 2 Hochformat-Bilder in einem Container */
.about-strip__inner {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: flex-start;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(0,0,0,0.07);
}
.about-strip__item {
  flex: 0 0 auto;
  width: clamp(160px, 22vw, 260px);
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-lt);
}
.about-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease);
}
.about-strip__item:hover img { transform: scale(1.04); }

.about-intro {
  border-top: 1px solid rgba(0,0,0,0.09);
  padding-top: 3rem;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.about-value {
  padding-top: 1.5rem;
  border-top: 2px solid var(--blue);
}
.about-value h4 {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.about-value p { font-size: 0.92rem; }

/* ----------------------------------------------------------------
   DIENSTLEISTUNGEN
   ---------------------------------------------------------------- */
.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
}
.service-card:hover { box-shadow: 0 12px 40px rgba(2,75,128,0.1); }
.service-card__num {
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  color: rgba(2,75,128,0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.service-card h3 { margin-bottom: 1rem; }
.service-card p { font-size: 0.93rem; }

/* ----------------------------------------------------------------
   ATHLETEN
   ---------------------------------------------------------------- */
.athlete-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.athlete-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--gray-lt);
}
.athlete-img img { width: 100%; height: 100%; object-fit: cover; }
.athlete-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1.45;
  color: var(--blue-dk);
  border-left: 2px solid var(--blue);
  padding-left: 1.4rem;
  margin: 2rem 0;
}
.athlete-quote footer {
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.8rem;
}
.athlete-sports {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.sport-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(2,75,128,0.2);
  color: var(--blue);
}

/* ----------------------------------------------------------------
   PRIVATSKILEHRER
   ---------------------------------------------------------------- */
.ski-leader-box {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-left: 4px solid var(--blue);
  margin-bottom: 3.5rem;
  box-shadow: 0 4px 24px rgba(1,48,79,0.07);
}
.ski-leader-box__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}
.ski-leader-box__top {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.ski-leader-box__avatar {
  width: 81px; height: 81px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 16px;
}
.ski-leader-box__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.ski-leader-box__body {
  flex: 1;
}
.ski-leader-box__role {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.4rem;
}
.ski-leader-box__name {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.ski-leader-box__divider {
  width: 36px;
  height: 2px;
  background: var(--blue);
  display: block;
  margin-bottom: 0.65rem;
}
.ski-leader-box__skills {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.78;
  display: block;
  margin-bottom: 0;
}
.ski-leader-box__cta {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.78;
  display: block;
}
.ski-leader-box__photo {
  flex-shrink: 0;
  width: 340px;
  height: 420px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(1,48,79,0.18);
}
.ski-leader-box__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ski-offers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}
.ski-offer {
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.07);
  transition: border-color 0.25s, background 0.25s;
}
.ski-offer:hover {
  border-color: var(--blue);
  background: rgba(2,75,128,0.02);
}
.ski-offer__icon {
  margin-bottom: 1rem;
  display: block;
}
.ski-offer__icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0;
}
.ski-offer__title {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  display: block;
}
.ski-offer__desc { font-size: 0.85rem; line-height: 1.65; }

.ski-stats {
  display: flex;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 4rem;
}
.ski-stat__num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ski-stat__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.booking-header {
  margin-bottom: 2.5rem;
}
.booking-header h2 { margin-bottom: 0.8rem; }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--blue-dk);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  height: 38px;
  filter: brightness(0) invert(1);
  opacity: 1;
  margin-bottom: 1.2rem;
}
.footer__tagline {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--white);
  max-width: 220px;
}
.footer h5 {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__links a {
  font-size: 0.88rem;
  color: var(--white);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__logo-name {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0.4rem 0 0.8rem;
}
.footer__info {
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.6;
}
.footer__info a { color: var(--white); transition: color 0.2s; }
.footer__info a:hover { color: var(--white); }

.phone-reveal-btn {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  background: none;
  border: none;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.phone-reveal-btn:hover { color: var(--white); }
.phone-protect a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.phone-protect a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}
.footer__bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer__bottom a:hover { color: rgba(255,255,255,0.75); }

/* ----------------------------------------------------------------
   SCROLL-TO-TOP
   ---------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 50;
  pointer-events: none;
}
.scroll-top svg { width: 18px; height: 18px; }
.scroll-top--visible { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top:hover { background: var(--blue-dk); }

/* ----------------------------------------------------------------
   PRIVATSKILEHRER — Eigene Akzentfarbe (helles Blau)
   ---------------------------------------------------------------- */
body.page-ski {
  --blue:    #1faee7;
  --blue-dk: #178ec0;
  --blue-mid: #1faee7;
}
body.page-ski .hero--inner .hero__overlay {
  background:
    linear-gradient(108deg,
      rgba(10,77,99,0.75) 0%,
      rgba(17,128,170,0.48) 38%,
      rgba(31,174,231,0.12) 62%,
      transparent 80%
    ),
    linear-gradient(to top,
      rgba(10,77,99,0.55) 0%,
      rgba(10,77,99,0.12) 30%,
      transparent 55%
    ),
    rgba(10,77,99,0.08);
}

/* ----------------------------------------------------------------
   COOKIE-BANNER (nDSG)
   ---------------------------------------------------------------- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--dark);
  color: var(--white);
  padding: 1.4rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -2px 24px rgba(0,0,0,0.18);
}
#cookie-banner.cookie-banner--visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.85);
}
.cookie-banner__text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--ff-serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.cookie-btn--primary {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}
.cookie-btn--primary:hover { background: var(--blue-dk); border-color: var(--blue-dk); }
.cookie-btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.35);
}
.cookie-btn--outline:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
/* ----------------------------------------------------------------
   CONTACT REVEAL (spam protection)
   ---------------------------------------------------------------- */
.reveal-contact {
  cursor: pointer;
  color: var(--blue);
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
  font-size: inherit;
  font-family: inherit;
  transition: opacity 0.2s;
}
.reveal-contact:hover { opacity: 0.7; }

@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; gap: 1rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 960px) {
  .grid-3             { grid-template-columns: 1fr 1fr; }
  .ski-offers         { grid-template-columns: 1fr 1fr; }
  .about-values       { grid-template-columns: 1fr 1fr; }
  .footer__grid       { grid-template-columns: 1fr 1fr; }
  .athlete-feature    { grid-template-columns: 1fr; gap: 2rem; }
  .about-person-grid  { grid-template-columns: 1fr 1.2fr; gap: 2.5rem; }
  .about-strip__item  { width: clamp(160px, 22vw, 260px); }
  .ski-leader-box__photo { width: 240px; height: 300px; }
}

@media (max-width: 720px) {
  .grid-2,
  .grid-1-2        { grid-template-columns: 1fr; }
  .form__row       { grid-template-columns: 1fr; }
  .about-person-grid { grid-template-columns: 1fr; }
  .about-strip__item { width: clamp(140px, 40vw, 200px); }

  .nav__links      { display: none; }
  .nav__burger     { display: flex; }

  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--white);
    padding: 5.5rem 2rem 2rem;
    gap: 0;
    box-shadow: -4px 0 40px rgba(0,0,0,0.14);
    z-index: 205;
    overflow-y: auto;
  }
  .nav__links--open a {
    color: var(--dark) !important;
    font-size: 1rem !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    letter-spacing: 0.1em !important;
    border: none !important;
    background: none !important;
    display: block;
  }
  .nav__links--open a::after { display: none; }
  .nav__links--open .nav__cta-link {
    margin-top: 1.2rem;
    background: var(--blue) !important;
    color: var(--white) !important;
    text-align: center;
    display: block;
    padding: 0.9rem 1.5rem !important;
  }
  .grid-3       { grid-template-columns: 1fr; }
  .ski-offers   { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ski-stats    { flex-wrap: wrap; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.6rem; text-align: center; }

  .ski-leader-box { flex-direction: column; padding: 1.8rem 1.5rem; gap: 1.5rem; }
  .ski-leader-box__photo { width: 100%; height: 280px; border-radius: 4px; }
  .ski-leader-box__left { width: 100%; }
  .ski-leader-box .btn { margin-left: 0 !important; margin-top: 0.5rem; }
}

@media (max-width: 480px) {
  .hero__logo-full { width: 78vw; }
  .hero--inner { min-height: 58vh; }
  .hero__page-title { font-size: clamp(2.2rem, 11vw, 3rem); }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-item { padding: 1.2rem 1rem; min-height: 60px; justify-content: center; }
  .social-links { gap: 0.5rem; }
}

/* ─── LANGUAGE SWITCHER ──────────────────────────────────────────── */
.lang-switch {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
  flex-shrink: 0;
}
.lang-switch__item {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  padding: 0.3rem 0.42rem;
  text-decoration: none;
  transition: color 0.22s;
  line-height: 1;
  white-space: nowrap;
}
.lang-switch__item + .lang-switch__item {
  border-left: 1px solid rgba(255,255,255,0.18);
}
.lang-switch__item:hover,
.lang-switch__item--active {
  color: rgba(255,255,255,0.92);
}
/* Scrolled nav (white background) */
.nav--scrolled .lang-switch__item {
  color: rgba(0,0,0,0.32);
}
.nav--scrolled .lang-switch__item + .lang-switch__item {
  border-left-color: rgba(0,0,0,0.1);
}
.nav--scrolled .lang-switch__item:hover,
.nav--scrolled .lang-switch__item--active {
  color: var(--navy);
}

/* Mobile: reset nav-links margin, re-order so: logo | lang-switch | burger */
@media (max-width: 720px) {
  .nav__links   { margin-left: 0; }
  .nav__logo    { order: 1; }
  .lang-switch  { order: 2; margin-left: auto; margin-right: 0.6rem; }
  .nav__burger  { order: 3; }
  .nav__links   { order: 4; }
}
/* page-ski tinted nav: keep lang-switch readable */
body.page-ski .nav--scrolled .lang-switch__item { color: rgba(0,0,0,0.38); }
body.page-ski .nav--scrolled .lang-switch__item--active { color: var(--blue-dk); }
