/* =========================================================
   CSS VARIABLES
========================================================= */
:root {
  /* Temel renkler */
  --dark:  #1A1A1A;        /* koyu section arka planı  */
  --dark2: #242424;        /* ikincil koyu             */
  --stone: #F0EFEC;        /* ana arka plan – soft stone (ne krem ne soğuk gri) */
  --stone2:#E8E7E3;        /* ikincil stone            */
  --gd:    #B8924A;        /* gold – biraz daha zengin */
  --gdl:   #CBA968;        /* gold light               */
  --wh:    #ffffff;
  --td:    #1A1A1A;        /* metin koyu               */
  --tm:    #7A7A7A;        /* metin ikincil            */
  --brown: #251a13;        /* dark brown — footer & über */
  --fb:    var(--brown);  /* footer arka plan         */
  --nh:    90px;           /* nav yüksekliği – sabit   */
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Alias — eski class isimlerine uyumluluk */
  --bd:  var(--dark);
  --bm:  var(--dark2);
  --cr:  var(--stone);
  --crd: var(--stone2);
  --light: var(--stone);
  --light2: var(--stone2);
}

/* =========================================================
   RESET & BASE
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--stone);
  color: var(--td);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }
img { max-width: 100%; }

/* =========================================================
   NAVBAR
========================================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nh);
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.0)  100%
  );
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

/* Scroll sonrası: tam dolu koyu arka plan */
#nav.scrolled {
  background: var(--dark);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 32px rgba(0,0,0,.35);
}

/* Grid layout — logo alanı sabit, linkler ortada, CTA sağda; shift olmaz */
.ni {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  height: 100%;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Logo — her zaman beyaz/görünür --- */
.nlogo {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}
.nlogo img {
  height: 70px;
  width: auto;
  display: block;
  margin: 5px 0;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.3s;
}
.nlogo:hover img { opacity: 1; }

/* --- Desktop links — grid ortasında, her zaman ortalı --- */
.nlinks {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  justify-content: center;
}

/* Dropdown hover geçişini kapat — li üzerine köprü ekliyoruz */
.nlinks > li {
  position: relative;
}

/* Köprü pseudo-element: link altı ile dropdown arası boşluğu kapatır */
.nlinks > li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 16px; /* dropdown'ın top offset'i kadar */
}

.nlinks > li > a {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 12px; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 8px 13px; border-radius: 3px;
  transition: color .25s, background .25s;
  white-space: nowrap;
}
.nlinks > li > a:hover,
.nlinks > li > a.active,
.nlinks > li.parent-active > a { color: var(--gd); background: rgba(184,146,74,.09); }
.nlinks > li > a i { font-size: 9px; transition: transform .3s; }
.nlinks > li:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.ndrop {
  position: absolute;
  top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--dark);
  border: 1px solid rgba(184,146,74,.18);
  border-radius: 6px;
  min-width: 196px; padding: 6px 0;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
}
.nlinks > li:hover .ndrop {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.ndrop a {
  display: block;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 13px; padding: 10px 18px;
  transition: color .2s, background .2s, padding-left .2s;
}
.ndrop a:hover,
.ndrop a.active {
  color: var(--gd);
  background: rgba(184,146,74,.06);
  padding-left: 22px;
}
.ndrop a.active { border-left: 2px solid var(--gd); padding-left: 20px; }

/* --- CTA button --- */
.ncta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gd); color: #fff;
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  padding: 11px 20px; border-radius: 3px;
  justify-self: end;
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}
.ncta:hover { background: var(--gdl); transform: translateY(-1px); }

/* --- Hamburger --- */
.nhbg {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none; border: none;
  z-index: 1001;
}
.nhbg span {
  display: block;
  width: 26px; height: 2px;
  background: var(--wh);
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s ease, background .3s;
}
.nhbg.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nhbg.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nhbg.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =========================================================
   MOBILE MENU (full-screen overlay)
========================================================= */
.mmenu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1100;
  overflow-y: auto;
  /* başlangıç: kapalı */
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
  pointer-events: none;
}
.mmenu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Sağ üst kapatma butonu */
.mmenu-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  z-index: 10;
  transition: border-color .25s, color .25s, background .25s;
}
.mmenu-close:hover {
  border-color: var(--gd);
  color: var(--gd);
  background: rgba(196,154,74,.08);
}

/* Dekoratif altın çizgi */
.mmenu::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(196,154,74,.4));
  pointer-events: none;
}

.mmenu-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  min-height: 100vh;
  padding: 80px 20px 48px;
}

.mmenu a {
  color: var(--wh);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 300;
  letter-spacing: .04em;
  padding: 7px 20px;
  transition: color .25s;
  text-align: center;
}
.mmenu a:hover { color: var(--gd); }
.mmenu a.active { color: var(--gd) !important; }
.mmenu a.active.msub { color: var(--gd) !important; }
.mmenu a.parent-active { color: rgba(255,255,255,.75); }

.msub {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  color: rgba(255,255,255,.55) !important;
  letter-spacing: .08em;
  text-transform: none;
}
.mdiv {
  width: 36px; height: 1px;
  background: rgba(196,154,74,.2);
  margin: 10px 0;
}
.mcta {
  margin-top: 20px;
  background: var(--gd) !important;
  color: var(--dark) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 14px 40px !important;
  border-radius: 4px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
/* .flegal sadece masaüstünde gizlenir — mobilde görünür */
.flegal { display: none; }

/* =========================================================
   HERO
========================================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: #0a0705;
}
.hbg {
  position: absolute; inset: 0;
  background: url('../images/comp_2.jpg') top/cover no-repeat;
  opacity: .72;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hbg { transform: scale(1); }

/* Gradient: solda metin alanı hafif koyu, sağa doğru açılır */
.hov {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 75%) 40%, rgb(0 0 0 / 50%) 100%), linear-gradient(to top, rgb(0 0 0 / 99%) 0%, transparent 35%);
}
.hcon {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--nh);
  text-align: left;
}
.hew {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gd); font-size: 11px; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  margin-bottom: 24px; opacity: 0;
}
.hew::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gd);
}
.htitle {
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300; color: var(--wh);
  line-height: 1.05; margin-bottom: 28px;
  opacity: 0; max-width: 700px;
}
.htitle em { font-style: italic; color: var(--gd); }
.hsub {
  font-size: 17px; color: rgba(255,255,255,.7);
  font-weight: 300; line-height: 1.75;
  max-width: 480px; margin-bottom: 44px; opacity: 0;
}
.hact {
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap; opacity: 0;
}
.btn-pri {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gd); color: var(--bd);
  font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; padding: 16px 32px; border-radius: 4px;
  border: none; cursor: pointer;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.btn-pri:hover {
  background: var(--gdl); color: var(--bd);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,154,74,.35);
}
.btn-out {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--wh);
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; padding: 15px 32px;
  border: 1px solid rgba(255,255,255,.4); border-radius: 4px;
  transition: border-color .3s, color .3s, background .3s;
}
.btn-out:hover {
  border-color: var(--gd); color: var(--gd);
  background: rgba(196,154,74,.07);
}
.btn-out-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--dark);
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; padding: 15px 32px;
  border: 1px solid rgba(26,26,26,.3); border-radius: 4px;
  transition: border-color .3s, color .3s, background .3s;
  cursor: pointer;
}
.btn-out-dark:hover {
  border-color: var(--gd); color: var(--gd);
  background: rgba(184,146,74,.07);
}
.hscr {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  opacity: 0;
}
.hscr-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
  animation: sp 2s ease-in-out infinite;
}
@keyframes sp { 0%,100%{opacity:.4}50%{opacity:1} }

/* =========================================================
   VIDEO SHOWCASE
========================================================= */
#video-section {
  background: var(--stone);
  padding: 80px 0;
}
.vs-inner {
  max-width: 767px;
  margin: 0 auto;
  padding: 0 40px;
}
.vs-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gd);
  font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  margin-bottom: 20px;
}
.vs-label::before,
.vs-label::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gd);
}
.vs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--td);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.2;
}
.vs-title em { font-style: italic; color: var(--gd); }
.vs-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  /* 16:9 aspect */
  aspect-ratio: 16 / 9;
  background: #111;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.vs-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Ön üst/alt hafif vignette */
.vs-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(59,42,30,.25) 0%,
      transparent       25%,
      transparent       75%,
      rgba(59,42,30,.35) 100%
    );
  pointer-events: none;
}

/* =========================================================
   SHARED LAYOUT
========================================================= */
.cnt { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.slbl {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gd); font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; margin-bottom: 20px;
}
.slbl::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gd); }

.stitle {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300; line-height: 1.1;
  color: var(--bd); margin-bottom: 20px;
}
.stitle.lt { color: var(--wh); }
.stitle em { font-style: italic; color: var(--gd); }

.slead { font-size: 16px; color: var(--tm); line-height: 1.8; max-width: 560px; }
.slead.lt { color: rgba(255,255,255,.6); }

.btxt {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--bd); text-decoration: none;
  font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  transition: gap .3s, color .3s;
}
.btxt:hover { color: var(--gd); gap: 16px; }
.btxt.lt { color: var(--wh); }
.btxt.lt:hover { color: var(--gd); }

/* =========================================================
   ÜBER NHT
========================================================= */
#ueber { background: var(--brown); padding: 108px 0; }
.ug { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center; }
.ug3 { grid-template-columns: 1fr 1.4fr 1fr; gap: 64px; }
.ug3-text { display: flex; flex-direction: column; }
.uiw { position: relative; }
.ubadge-left { right: auto; left: -24px; }
.uph {
  width: 100%; height: 520px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.uph img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ubadge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gd); color: var(--bd);
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(196,154,74,.4);
}
.ubadge-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600; line-height: 1;
}
.ubadge-l { font-size: 10px; font-weight: 500; letter-spacing: .05em; text-align: center; line-height: 1.3; }

.srow {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 28px;
  margin: 40px 0; padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1);
}
.snum {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; color: var(--wh); line-height: 1; margin-bottom: 6px;
}
.snum span { color: var(--gd); }
.slb2 { font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: .04em; }

/* =========================================================
   DER HOF
========================================================= */
#hof { background: var(--wh); }


/* Overlap görsel — #kurse'nin sonunda, alt yarısı #hof'a taşıyor */
.hof-img-wrap {
  display: flex;
  justify-content: center;
  padding: 80px 40px 0;   /* üstte 80px boşluk — içerikten nefes alır */
  margin-bottom: -200px;  /* alt yarısı #hof'a taşar */
  position: relative;
  z-index: 4;
}
.hof-img-wrap img {
  width: 100%;
  max-width: 767px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}

.hfc { padding: 100px 0; }
.hfg { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.hff { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.hfitem { display: flex; align-items: flex-start; gap: 14px; }
.hficon {
  width: 40px; height: 40px;
  border: 1px solid rgba(196,154,74,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gd); font-size: 16px; flex-shrink: 0;
}
.hfitem h4 { font-size: 16px; font-weight: 400; color: var(--td); margin-bottom: 4px; }
.hfitem p  { font-size: 13px; color: var(--tm); line-height: 1.6; }
.has { padding-top: 56px; }
.has p { font-size: 15px; color: var(--tm); line-height: 1.85; margin-bottom: 24px; }

/* =========================================================
   KURSE
========================================================= */
#kurse { background: var(--stone2); padding: 108px 0; }
.kh {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 52px;
  gap: 24px; flex-wrap: wrap;
}
.kg { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.kcard {
  background: var(--wh); border-radius: 6px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.kcard:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(59,42,30,.14); }
.kimg { height: 360px; position: relative; overflow: hidden; background: var(--bm); }
.kimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.kcard:hover .kimg img { transform: scale(1.06); }
.klvl {
  position: absolute; top: 14px; left: 14px;
  background: var(--gd); color: var(--bd);
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px;
}
.kbody { padding: 26px 22px; flex: 1; display: flex; flex-direction: column; }
.kbody h3 { font-size: 22px; font-weight: 600; color: var(--bd); margin-bottom: 10px; line-height: 1.2; }
.kbody p  { font-size: 14px; color: var(--tm); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.kmeta { display: flex; gap: 14px; margin-bottom: 18px; padding-top: 14px; border-top: 1px solid var(--crd); }
.kmeta span { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--tm); }
.kmeta i { color: var(--gd); font-size: 13px; }
.bkurs {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bd); color: var(--wh);
  font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; padding: 11px 18px; border-radius: 4px; align-self: flex-start;
  transition: background .3s;
}
.bkurs:hover { background: var(--bm); color: var(--wh); }
.kftr { text-align: center; margin-top: 48px; }
.bkall {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid var(--bd); color: var(--bd);
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; padding: 16px 36px; border-radius: 4px;
  transition: background .3s, color .3s;
}
.bkall:hover { background: var(--bd); color: var(--wh); }

/* =========================================================
   ACADEMY
========================================================= */
#academy { background: var(--bd); padding: 100px 0; position: relative; overflow: hidden; }
.acbg {
  position: absolute; inset: 0;
  background: url('../images/comp_Academy-1.jpg') center/cover;
  opacity: .06;
}

/* Header satırı */
.ac-header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.ac-header .slead { max-width: 100%; }

/* 3 Säulen */
.ac-pillars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 72px;
}
.ac-pillar {
  padding: 36px 32px;
  background: var(--bd);
  opacity: 0.6;
}
.ac-pillar-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(184,146,74,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gd); font-size: 16px;
  margin-bottom: 20px;
}
.ac-pillar h4 { font-size: 17px; font-weight: 600; color: var(--wh); margin-bottom: 10px; }
.ac-pillar p  { font-size: 14px; color: rgba(255,255,255,1); line-height: 1.7; }

/* Etappen header */
.ac-etappen-header {
  margin-bottom: 40px;
}
.ac-etappen-header .slbl { margin-bottom: 10px; }
.ac-etappen-header p { font-size: 14px; color: rgba(255,255,255,.45); max-width: 560px; line-height: 1.7; }

.acph { position: relative; display: flex; gap: 0; margin-top: 0; }
.acphase { flex: 1; padding-right: 24px; position: relative; }
.acphase:not(:last-child)::after {
  content: ''; position: absolute;
  right: 12px; top: 14px; height: calc(100% - 14px); width: 1px;
  background: rgba(196,154,74,.18);
}
.phn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300;
  color: rgba(255,255,255,.9); line-height: 1; margin-bottom: 8px;
}
.pht { color: var(--gd); font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; }
.phd { color: rgba(255,255,255,.45); font-size: 13px; line-height: 1.6; }
.ac-cta { text-align: center; margin-top: 56px; }

/* Academy trainer grid */
.ac-trainers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.ac-trainer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.ac-trainer-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-trainer-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.ac-trainer-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gd);
  letter-spacing: .05em;
}
.ac-trainer-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  text-align: center;
  line-height: 1.4;
}

.bac {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gd); color: var(--bd);
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; padding: 18px 36px; border-radius: 4px; white-space: nowrap;
  transition: background .3s, transform .3s;
}
.bac:hover { background: var(--gdl); color: var(--bd); transform: translateY(-2px); }

/* =========================================================
   FOOTER
========================================================= */
#ftr { background: var(--fb); padding: 72px 0 0; }
.ftop {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.flogo { display: flex; align-items: center; margin-bottom: 18px; }
.flogo img { height: 64px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.85; }
.fbrand p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.8; max-width: 280px; }
.fsoc { display: flex; gap: 10px; margin-top: 20px; }
.fsoc a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35); font-size: 14px; text-decoration: none;
  transition: border-color .3s, color .3s, background .3s;
}
.fsoc a:hover { border-color: var(--gd); color: var(--gd); background: rgba(196,154,74,.08); }
.fcol h5 {
  color: var(--wh);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 20px;
}
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fcol ul a { color: rgba(255,255,255,.62); text-decoration: none; font-size: 14px; transition: color .25s; }
.fcol ul a:hover { color: var(--gd); }
.fctlist { display: flex; flex-direction: column; gap: 14px; }
.fct { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.6; }
.fct i { color: var(--gd); font-size: 15px; flex-shrink: 0; }
.fct a { color: rgba(255,255,255,.62); text-decoration: none; transition: color .25s; }
.fct a:hover { color: var(--gd); }
.fbot {
  padding: 22px 0 max(22px, env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.fcp { color: rgba(255,255,255,.32); font-size: 12px; }
.flg { display: flex; gap: 20px; }
.flg a { color: rgba(255,255,255,.55); font-size: 12px; text-decoration: none; transition: color .25s; }
.flg a:hover { color: var(--gd); }

/* =========================================================
   INNER PAGE HERO — iç sayfalarda ortak kullanım
========================================================= */
.iph {
  position: relative;
  min-height: 600px;
  padding-top: var(--nh);
  padding-bottom: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.iph > .cnt {
  position: relative;
  z-index: 2;
  width: 100%;
}
.iph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.iph:hover .iph-bg { transform: scale(1); }
.iph-bg--top { background-position: top; }
@media (min-width: 2000px) {
  .iph-bg--top { background-position: center -130px; }
}
.iph-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,1) 0%,
    rgba(10,10,10,.8) 60%,
    rgba(10,10,10,.5) 100%
  );
}
.iph-con {
  width: 100%;
  max-width: 680px;
}
.iph-lbl {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 20px;
}
.iph-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--wh);
  line-height: 1.12;
  margin-bottom: 20px;
}
.iph-title em { font-style: italic; color: var(--gdl); }
.iph-sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 540px;
}
.iph-bread {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 2;
}
.iph-bread .cnt { display: flex; align-items: center; gap: 8px; }
.iph-bread a, .iph-bread span {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .25s;
}
.iph-bread a:hover { color: var(--gd); }
.iph-bread i { font-size: 10px; color: rgba(255,255,255,.3); }

/* =========================================================
   ÜBER UNS — VALUES SECTION
========================================================= */
#ou-values {
  background: var(--wh);
  padding: 100px 0;
}
.ou-vg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ou-val-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ou-val-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(26,26,26,.08);
}
.ou-val-item:first-child { padding-top: 0; }
.ou-val-item:last-child { border-bottom: none; padding-bottom: 0; }
.ou-val-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--gd);
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.ou-val-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--td);
  margin-bottom: 10px;
  line-height: 1.2;
}
.ou-val-item p {
  font-size: 15px;
  color: var(--tm);
  line-height: 1.7;
}
.ou-img-wrap {
  position: relative;
}
.ou-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.ou-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gd);
  color: var(--wh);
  padding: 22px 28px;
  border-radius: 4px;
}
.ou-img-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}
.ou-img-badge span {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}

/* =========================================================
   ÜBER UNS — BRAND TEXT SECTION
========================================================= */
#ou-brand {
  position: relative;
  background: var(--dark);
  padding: 120px 0;
  overflow: hidden;
}
.ou-brand-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .08;
}
.ou-brand-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ou-brand-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--wh);
  line-height: 1.3;
}
.ou-brand-quote em { font-style: italic; color: var(--gdl); }
.ou-brand-divider {
  width: 48px;
  height: 1px;
  background: var(--gd);
  margin: 28px 0;
}
.ou-brand-text {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
}
.ou-brand-img {
  position: relative;
}
.ou-brand-img img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  filter: brightness(.85);
}

/* =========================================================
   ÜBER UNS — NAV CARDS
========================================================= */
#ou-nav {
  background: var(--stone2);
  padding: 100px 0;
}
.ou-nav-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.ou-nav-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 380px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.ou-nav-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.ou-nav-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.75) 0%, rgba(10,10,10,.1) 60%);
  z-index: 1;
  transition: opacity .4s;
}
.ou-nav-card:hover img { transform: scale(1.05); }
.ou-nav-card:hover::before { opacity: 1.3; }
.ou-nav-body {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
  width: 100%;
}
.ou-nav-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--wh);
  margin-bottom: 8px;
}
.ou-nav-body p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 18px;
}
.ou-nav-lnk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gd);
  text-decoration: none;
}

/* =========================================================
   TEAM — CORE (André & Laura)
========================================================= */
#team-core {
  background: var(--wh);
  padding: 100px 0;
}
.tc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 64px;
  box-shadow: 0 4px 40px rgba(0,0,0,.06);
}
.tc-card:last-child { margin-bottom: 0; }
.tc-card.reverse { direction: rtl; }
.tc-card.reverse > * { direction: ltr; }
.tc-img {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.tc-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .8s ease;
}
.tc-card:hover .tc-img img { transform: none; }
.tc-body {
  background: var(--stone);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tc-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 14px;
}
.tc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--td);
  line-height: 1.1;
  margin-bottom: 16px;
}
.tc-short {
  font-size: 15px;
  color: var(--tm);
  line-height: 1.7;
  margin-bottom: 28px;
}
.tc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid rgba(26,26,26,.18);
  color: var(--td);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color .25s, color .25s, background .25s;
  align-self: flex-start;
  margin-bottom: 0;
}
.tc-toggle:hover { border-color: var(--gd); color: var(--gd); }
.tc-toggle .tc-icon { transition: transform .35s; display: inline-block; }
.tc-toggle.open .tc-icon { transform: rotate(45deg); }
.tc-toggle.open { border-color: var(--gd); color: var(--gd); }
.tc-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, opacity .35s ease, margin .35s ease;
  opacity: 0;
  margin-top: 0;
}
.tc-detail.open {
  max-height: 400px;
  opacity: 1;
  margin-top: 28px;
}
.tc-detail p {
  font-size: 14px;
  color: var(--tm);
  line-height: 1.8;
  margin-bottom: 16px;
}
.tc-detail ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tc-detail ul li {
  font-size: 13px;
  color: var(--td);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tc-detail ul li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gd);
  flex-shrink: 0;
  margin-top: 10px;
}

/* =========================================================
   TEAM — TRAINERS GRID
========================================================= */
#team-trainers {
  background: var(--stone2);
  padding: 100px 0;
}
.tt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.tt-card {
  background: var(--wh);
  border-radius: 4px;
  overflow: hidden;
}
.tt-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.tt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s ease;
  display: block;
}
.tt-card:hover .tt-img img { transform: none; }
.tt-body {
  padding: 24px 22px;
}
.tt-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 8px;
}
.tt-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--td);
  margin-bottom: 8px;
  line-height: 1.2;
}
.tt-body p {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.65;
}
.tt-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(26,26,26,.15);
  color: var(--td);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color .25s, color .25s;
  margin-top: 14px;
  width: 100%;
  justify-content: space-between;
}
.tt-toggle:hover { border-color: var(--gd); color: var(--gd); }
.tt-toggle .tc-icon { transition: transform .35s; display: inline-block; }
.tt-toggle.open .tc-icon { transform: rotate(45deg); }
.tt-toggle.open { border-color: var(--gd); color: var(--gd); }
.tt-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, opacity .35s ease, margin .35s ease;
  opacity: 0;
  margin-top: 0;
}
.tt-detail.open {
  max-height: 500px;
  opacity: 1;
  margin-top: 16px;
}
.tt-detail p {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.75;
  margin-bottom: 10px;
}
.tt-detail ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.tt-detail ul li {
  font-size: 12px;
  color: var(--td);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.tt-detail ul li::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--gd);
  flex-shrink: 0;
  margin-top: 9px;
}


/* =========================================================
   TEAM — CTA
========================================================= */
#team-cta {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
}
.team-cta-inner { max-width: 600px; margin: 0 auto; }
.team-cta-inner .slbl { margin-bottom: 20px; color: var(--gd); }
.team-cta-inner .stitle { margin-bottom: 20px; }
.team-cta-inner .slead { margin-bottom: 40px; }

/* =========================================================
   PHILOSOPHIE — INTRO
========================================================= */
#ph-intro {
  background: var(--wh);
  padding: 100px 0 80px;
  text-align: center;
}
.ph-intro-inner {
  max-width: 720px;
  margin: 0 auto;
}
.ph-intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  color: var(--td);
  line-height: 1.4;
  margin-bottom: 28px;
}
.ph-intro-quote em { font-style: italic; color: var(--gd); }
.ph-intro-line {
  width: 48px;
  height: 1px;
  background: var(--gd);
  margin: 0 auto 28px;
}
.ph-intro-sub {
  font-size: 15px;
  color: var(--tm);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* =========================================================
   PHILOSOPHIE — PRINZIPIEN
========================================================= */
#ph-prinzipien {
  background: var(--stone);
  padding: 0 0 100px;
}
.ph-prinzip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  margin-bottom: 4px;
}
.ph-prinzip:last-child { margin-bottom: 0; }
.ph-p-img {
  position: relative;
  overflow: hidden;
}
.ph-p-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ph-p-body {
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--stone);
}
.ph-prinzip:nth-child(even) .ph-p-body { background: var(--stone2); }
.ph-p-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(184,146,74,.15);
  line-height: 1;
  margin-bottom: -16px;
  display: block;
}
.ph-p-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--td);
  line-height: 1.15;
  margin-bottom: 20px;
}
.ph-p-title em { font-style: italic; color: var(--gd); }
.ph-p-divider {
  width: 36px;
  height: 1px;
  background: var(--gd);
  margin-bottom: 20px;
}
.ph-p-text {
  font-size: 15px;
  color: var(--tm);
  line-height: 1.8;
  max-width: 440px;
}

/* even → bild rechts */
.ph-prinzip:nth-child(even) { direction: rtl; }
.ph-prinzip:nth-child(even) > * { direction: ltr; }

/* =========================================================
   PHILOSOPHIE — STRIP (hero altı paragraf)
========================================================= */
#ph-strip {
  background: var(--wh);
  padding: 64px 0;
  border-bottom: 1px solid rgba(26,26,26,.07);
}
.ph-strip-inner {
  max-width: 700px;
}
.ph-strip-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--td);
  line-height: 1.7;
}

/* =========================================================
   PHILOSOPHIE — KERNELEMENTE
========================================================= */
#ph-kern {
  background: var(--wh);
  padding: 100px 0;
}
.ph-kern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.ph-kern-card {
  border-radius: 4px;
  overflow: hidden;
  background: var(--stone);
}
.ph-kern-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.ph-kern-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-kern-body {
  padding: 32px 28px;
}
.ph-kern-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gd);
  letter-spacing: .12em;
  margin-bottom: 10px;
  display: block;
}
.ph-kern-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--td);
  margin-bottom: 14px;
  line-height: 1.2;
}
.ph-kern-body p {
  font-size: 14px;
  color: var(--tm);
  line-height: 1.75;
}

/* =========================================================
   PHILOSOPHIE — NHT & ZIELE
========================================================= */
#ph-ziele {
  background: var(--stone2);
  padding: 100px 0;
}
.ph-ziele-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.ph-ziele-card {
  position: relative;
  height: 440px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.ph-ziele-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-ziele-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.82) 0%, rgba(10,10,10,.15) 55%);
  z-index: 1;
}
.ph-ziele-body {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
}
.ph-ziele-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 10px;
  display: block;
}
.ph-ziele-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--wh);
  margin-bottom: 12px;
  line-height: 1.15;
}
.ph-ziele-body p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

/* =========================================================
   PHILOSOPHIE — CTA (light)
========================================================= */
#ph-cta {
  background: var(--wh);
  padding: 100px 0;
  text-align: center;
}
#ph-cta .team-cta-inner .slbl { margin-bottom: 20px; }

/* =========================================================
   PHILOSOPHIE — STATEMENT
========================================================= */
#ph-statement {
  position: relative;
  background: var(--dark);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.ph-st-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .06;
}
.ph-st-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.ph-st-line {
  width: 48px;
  height: 1px;
  background: var(--gd);
  margin: 0 auto 40px;
}
.ph-st-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 300;
  color: var(--wh);
  line-height: 1.3;
  margin-bottom: 32px;
}
.ph-st-quote em { font-style: italic; color: var(--gdl); }
.ph-st-sub {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* =========================================================
   AUSBILDUNG — STATEMENT
========================================================= */
#au-statement {
  background: var(--wh);
  padding: 100px 0;
  text-align: center;
}
.au-st-inner { max-width: 700px; margin: 0 auto; }
.au-st-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--td);
  line-height: 1.35;
  margin-bottom: 0;
}
.au-st-title em { font-style: italic; color: var(--gd); }
.au-st-divider { width: 48px; height: 1px; background: var(--gd); margin: 32px auto; }
.au-st-text { font-size: 16px; color: var(--tm); line-height: 1.85; }

/* =========================================================
   AUSBILDUNG — PRINZIPIEN
========================================================= */
#au-prinzipien { background: var(--stone2); padding: 80px 0; }
.au-prinz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26,26,26,.08);
  border: 1px solid rgba(26,26,26,.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 48px;
}
.au-prinz-item { background: var(--stone2); padding: 44px 40px; }
.au-prinz-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; color: var(--gd);
  letter-spacing: .12em; display: block; margin-bottom: 16px;
}
.au-prinz-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400;
  color: var(--td); margin-bottom: 12px;
}
.au-prinz-item p { font-size: 14px; color: var(--tm); line-height: 1.7; }

/* =========================================================
   AUSBILDUNG — SPLIT (Beritt & Unterricht)
========================================================= */
#au-split {
  background: var(--stone);
  padding: 100px 0;
}
.au-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.au-split-card {
  background: var(--wh);
  border-radius: 4px;
  overflow: hidden;
}
.au-split-img {
  height: 320px;
  overflow: hidden;
}
.au-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.au-split-card:hover .au-split-img img { transform: scale(1.03); }
.au-split-body {
  padding: 40px 40px 44px;
}
.au-split-tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gd); margin-bottom: 14px; display: block;
}
.au-split-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 300; color: var(--td);
  margin-bottom: 8px; line-height: 1.1;
}
.au-split-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 300;
  color: var(--tm); font-style: italic;
  margin-bottom: 20px;
}
.au-split-divider {
  width: 36px; height: 1px;
  background: var(--gd); margin-bottom: 20px;
}
.au-split-body p {
  font-size: 14px; color: var(--tm);
  line-height: 1.8; margin-bottom: 28px;
}
.au-split-lnk {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--td); text-decoration: none;
  border-bottom: 1px solid rgba(26,26,26,.2);
  padding-bottom: 4px;
  transition: color .25s, border-color .25s;
}
.au-split-lnk:hover { color: var(--gd); border-color: var(--gd); }

/* =========================================================
   AUSBILDUNG — METHOD
========================================================= */
#au-method {
  position: relative;
  background: var(--dark);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.au-method-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .07;
}
.au-method-inner {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto;
}
.au-method-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 300; color: var(--wh);
  line-height: 1.35; margin-bottom: 0;
}
.au-method-title em { font-style: italic; color: var(--gdl); }
.au-method-divider { width: 48px; height: 1px; background: var(--gd); margin: 32px auto; }
.au-method-text { font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.85; }

/* =========================================================
   BERITT — TRAINER SECTIONS
========================================================= */
.br-section {
  padding: 100px 0;
}
.br-section.stone  { background: var(--stone); }
.br-section.white  { background: var(--wh); }

.br-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.br-grid.wide { grid-template-columns: 1fr 2fr; }
.br-grid.wide.reverse { grid-template-columns: 1fr 2fr; }
.br-grid.reverse { direction: rtl; }
.br-grid.reverse > * { direction: ltr; }

.br-img {
  position: relative;
}
.br-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  display: block;
}
.br-trainer-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--dark);
  color: var(--wh);
  padding: 18px 24px;
  border-radius: 4px;
  border-left: 3px solid var(--gd);
}
.br-trainer-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}
.br-trainer-badge span {
  font-size: 11px;
  color: var(--gd);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.br-pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--td);
  line-height: 1.45;
  border-left: 3px solid var(--gd);
  padding-left: 24px;
  margin-bottom: 28px;
}
.br-text {
  font-size: 15px;
  color: var(--tm);
  line-height: 1.85;
  margin-bottom: 20px;
}
.br-sub-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--td);
  opacity: .65;
  line-height: 1.55;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(26,26,26,.1);
}

/* =========================================================
   ACADEMY — INTRO
========================================================= */
#ac-intro { background: var(--wh); padding: 100px 0; }
.ac-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ac-intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.8vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: var(--td);
  line-height: 1.6;
  border-left: 3px solid var(--gd);
  padding-left: 24px;
  margin-bottom: 28px;
}
.ac-intro-text { font-size: 15px; color: var(--tm); line-height: 1.85; margin-bottom: 14px; }
.ac-intro-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ac-intro-photo {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
}
.ac-intro-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}
.ac-intro-photo:hover img { transform: scale(1.04); }

/* =========================================================
   ACADEMY — AUFBAU (dark)
========================================================= */
#ac-aufbau { background: var(--dark); padding: 100px 0; }
.ac-aufbau-inner { max-width: 760px; margin: 0 auto; }
.ac-aufbau-text { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.85; margin-bottom: 14px; }
.ac-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}
.ac-outcome {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid var(--gd);
  border-radius: 4px;
  padding: 24px 26px;
}
.ac-outcome-icon { color: var(--gd); font-size: 18px; margin-bottom: 12px; display: block; }
.ac-outcome h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 400;
  color: var(--wh); margin-bottom: 8px;
}
.ac-outcome p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; }

/* =========================================================
   ACADEMY — TIMELINE
========================================================= */
#ac-timeline-sec { background: var(--stone); padding: 100px 0; }
.ac-tl {
  position: relative;
  max-width: 680px;
  margin: 64px auto 0;
}
.ac-tl-line {
  position: absolute;
  left: 27px;
  top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gd) 80%, rgba(184,146,74,.1));
  transform-origin: top center;
  transform: scaleY(0);
}
.ac-tl-phase {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.ac-tl-phase:last-child { margin-bottom: 0; }
.ac-tl-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wh);
  border: 2px solid var(--gd);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative; z-index: 2;
  opacity: 0; transform: scale(0); /* GSAP animated */
}
.ac-tl-dot span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 300;
  color: var(--gd); line-height: 1;
}
.ac-tl-body {
  background: var(--wh);
  border-radius: 4px;
  padding: 22px 26px 26px;
  flex: 1;
  border-top: 2px solid var(--gd);
  margin-top: 10px;
  opacity: 0; transform: translateX(40px); /* GSAP animated */
}
.ac-tl-body-tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gd); margin-bottom: 6px; display: block;
}
.ac-tl-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: var(--td); margin-bottom: 8px;
}
.ac-tl-body p { font-size: 13px; color: var(--tm); line-height: 1.7; margin-bottom: 6px; }
.ac-tl-body p:last-child { margin-bottom: 0; }
.ac-tl-price {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  color: var(--gd); letter-spacing: .06em;
  margin-top: 12px; padding: 4px 12px;
  border: 1px solid rgba(184,146,74,.35);
  border-radius: 20px;
}
/* Mid phase (Während) */
.ac-tl-phase.ac-mid .ac-tl-dot {
  width: 56px; height: 56px;
  background: rgba(184,146,74,.8);
  border-style: dashed;
}
.ac-tl-phase.ac-mid .ac-tl-dot span { font-size: 12px; text-align: center; line-height: 1.2; color: #fff; }
/* End phase (Abschluss) */
.ac-tl-phase.ac-end .ac-tl-dot { background: var(--gd); }
.ac-tl-phase.ac-end .ac-tl-dot span { color: var(--wh); font-size: 13px; }
.ac-tl-phase.ac-end .ac-tl-body { background: rgba(184,146,74,.05); border-top-color: var(--gd); }

/* =========================================================
   ACADEMY — CURRICULUM ACCORDION
========================================================= */
#ac-curriculum { background: var(--stone2); padding: 100px 0; }
.ac-curr-list { margin-top: 48px; display: flex; flex-direction: column; gap: 6px; }
.ac-curr-item { background: var(--wh); border-radius: 4px; overflow: hidden; }
.ac-curr-toggle {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  background: none; border: none; cursor: pointer; text-align: left;
  transition: background .2s;
}
.ac-curr-toggle:hover { background: rgba(184,146,74,.04); }
.ac-curr-item.open .ac-curr-toggle { background: rgba(184,146,74,.06); }
.ac-curr-toggle-left { display: flex; align-items: center; gap: 16px; }
.ac-curr-step {
  font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gd); white-space: nowrap; min-width: 52px;
}
.ac-curr-toggle h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--td);
  text-align: left;
}
.ac-curr-icon {
  width: 28px; height: 28px;
  border: 1px solid rgba(26,26,26,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .35s, border-color .25s, color .25s;
  font-size: 12px; color: var(--td);
}
.ac-curr-item.open .ac-curr-icon { transform: rotate(45deg); border-color: var(--gd); color: var(--gd); }
.ac-curr-detail {
  display: none;
  padding: 0 26px 26px;
  border-top: 1px solid rgba(26,26,26,.07);
}
.ac-curr-detail-inner { padding-top: 20px; }
.ac-curr-detail p { font-size: 14px; color: var(--tm); line-height: 1.8; margin-bottom: 14px; }
.ac-curr-ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.ac-curr-ul li {
  font-size: 13px; color: var(--td);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.ac-curr-ul li::before {
  content: ''; width: 12px; height: 1px;
  background: var(--gd); flex-shrink: 0; margin-top: 8px;
}
.ac-curr-price { font-size: 13px; color: var(--gd); font-weight: 600; margin-top: 6px; }
.ac-curr-pdf-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.ac-curr-pdf-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--td); text-decoration: none;
  border: 1px solid rgba(26,26,26,.18);
  padding: 7px 14px; border-radius: 4px;
  transition: border-color .25s, color .25s;
}
.ac-curr-pdf-link:hover { border-color: var(--gd); color: var(--gd); }
.ac-curr-block {
  margin-top: 14px; padding: 16px 18px;
  background: var(--stone); border-radius: 4px;
  border-left: 2px solid rgba(184,146,74,.4);
}
.ac-curr-block h5 {
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gd); margin-bottom: 8px;
}

/* =========================================================
   SHARED — SECTION STATEMENT STRIP (white, centered)
========================================================= */
.sec-statement {
  background: var(--wh);
  padding: 72px 0;
  text-align: center;
  border-top: 1px solid rgba(26,26,26,.06);
  border-bottom: 1px solid rgba(26,26,26,.06);
}
.sec-statement-inner { max-width: 680px; margin: 0 auto; }
.sec-statement-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  color: var(--td);
  line-height: 1.35;
  margin-bottom: 16px;
}
.sec-statement-title em { font-style: italic; color: var(--gd); }
.sec-statement-sub {
  font-size: 15px;
  color: var(--tm);
  line-height: 1.75;
}

/* =========================================================
   BERITT — HISTORICAL QUOTE
========================================================= */
#br-hist {
  position: relative;
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.br-hist-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .06;
}
.br-hist-inner {
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto;
}
.br-hist-inner .slbl { color: var(--gd); margin-bottom: 32px; }
.br-hist-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--wh);
  line-height: 1.55;
  margin-bottom: 24px;
}
.br-hist-source {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* =========================================================
   EQUIPMENT
========================================================= */
/* Intro */
.eq-intro {
  padding: 100px 0;
  background: var(--stone);
}
.eq-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.eq-intro-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.eq-intro-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Gallery — Editorial Grid */
.eq-gallery {
  background: var(--dark);
  padding: 64px 0;
}
.eq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 260px 420px;
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.eq-grid-item {
  overflow: hidden;
  border-radius: 3px;
}
.eq-grid-item:nth-child(1) { grid-column: span 2; }
.eq-grid-item:nth-child(6) { grid-column: span 3; }
.eq-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.eq-grid-item:hover img { transform: scale(1.04); }

/* Contact Form */
.eq-form-section {
  padding: 100px 0;
  background: var(--wh);
}
.eq-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.eq-form-head { text-align: center; }
.eq-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.eq-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.eq-field label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
}
.eq-field input,
.eq-field textarea {
  border: 1px solid rgba(26,26,26,.18);
  border-radius: 3px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--stone);
  outline: none;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}
.eq-field input:focus,
.eq-field textarea:focus { border-color: var(--gd); }
.eq-field textarea { resize: vertical; min-height: 140px; }
.eq-form .btn-pri { margin-top: 8px; }

/* ── Inline form validation errors ──────────────────────────────────────────── */
.form-field-error {
  display: none;
  align-items: center;
  gap: 6px;
  color: #b91c1c;
  background: #fef2f2;
  border-left: 3px solid #b91c1c;
  font-size: .78rem;
  font-weight: 500;
  padding: 5px 10px;
  margin-top: 6px;
  border-radius: 0 4px 4px 0;
  line-height: 1.4;
}
.form-field-error:not(:empty) { display: block; }
.eq-field input.is-invalid,
.eq-field textarea.is-invalid,
.kd-field input.is-invalid,
.kd-field select.is-invalid,
.kd-field textarea.is-invalid { border-color: #b91c1c !important; }

/* =========================================================
   KONTAKT
========================================================= */
.kt-section {
  padding: 100px 0;
  background: var(--stone);
}
.kt-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}
.kt-info {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.kt-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kt-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gd);
}
.kt-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: var(--tm);
  line-height: 1.65;
}
.kt-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.kt-contact-link .bi { color: var(--gd); font-size: 16px; flex-shrink: 0; }
.kt-contact-link:hover { color: var(--gd); }
.kt-addr { align-items: flex-start; }
.kt-form { display: flex; flex-direction: column; }
.kt-form .btn-pri { align-self: flex-start; margin-top: 8px; }

/* =========================================================
   DER HOF
========================================================= */
.dh-section {
  padding: 100px 0;
  background: var(--stone);
}
.dh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dh-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.dh-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.dh-img.dh-img-video {
  display: flex;
  align-items: center;
}
.dh-img video {
  width: 100%;
  display: block;
  background: transparent;
  border-radius: 10px;
}

/* Info list */
.dh-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.dh-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.dh-info-row > .bi {
  font-size: 20px;
  color: var(--gd);
  margin-top: 2px;
  flex-shrink: 0;
}
.dh-info-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 5px;
}
.dh-info-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--tm);
  line-height: 1.65;
}
.dh-info-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.dh-info-link:hover { color: var(--gd); }
.dh-info-link .bi { font-size: 13px; }
.dh-info-addr {
  text-decoration: none;
  transition: color .2s;
}
.dh-info-addr:hover .dh-info-val { color: var(--gd); }
.dh-info-addr:hover > .bi { color: var(--gdl); }

/* Map */
.dh-map-wrap {
  width: 100%;
  height: 480px;
  position: relative;
  background: var(--dark);
}
.dh-map-gate {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
}
.dh-map-gate-inner {
  text-align: center;
  max-width: 400px;
  padding: 40px 24px;
}
.dh-map-gate-inner > .bi {
  font-size: 40px;
  color: var(--gd);
  display: block;
  margin-bottom: 16px;
}
.dh-map-gate-inner p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 28px;
}
.dh-map-gate-inner a {
  color: rgba(255,255,255,.75);
  text-decoration: underline;
}
.dh-map-frame {
  width: 100%; height: 100%;
}
.dh-map-frame iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
}

/* =========================================================
   LEGAL PAGES (AGBs, Impressum, Datenschutz …)
========================================================= */
.iph-sm { min-height: 340px; }

.legal-section {
  padding: 90px 0 110px;
  background: var(--wh);
}
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.legal-block {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(26,26,26,.1);
}
.legal-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.legal-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}
.legal-block p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--tm);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-link {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: var(--gd);
  text-underline-offset: 3px;
  transition: color .2s;
}
.legal-link:hover { color: var(--gd); }
.legal-list {
  margin: 14px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--tm);
  line-height: 1.7;
}

/* =========================================================
   KURSE HUB
========================================================= */
/* Hero CTAs */
.iph-acts {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* 3 Wege */
.ks-ways {
  padding: 100px 0;
  background: var(--stone);
}
.ks-ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ks-way-card {
  background: var(--wh);
  border-radius: 4px;
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.ks-way-card:hover {
  border-top-color: var(--gd);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
}
.ks-way-card--featured {
  border-top-color: var(--gd);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
}
.ks-way-icon {
  font-size: 28px;
  color: var(--gd);
  margin-bottom: 24px;
}
.ks-way-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.ks-way-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--tm);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}
.ks-way-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gd);
  text-decoration: none;
  transition: gap .2s;
}
.ks-way-link:hover { gap: 12px; }

/* Kursthemen */
.ks-topics {
  padding: 100px 0;
  background: var(--wh);
}
.ks-topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ks-topic-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ks-topic-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  padding: 18px 0;
  border-bottom: 1px solid rgba(26,26,26,.1);
}
.ks-topic-item:first-child { border-top: 1px solid rgba(26,26,26,.1); }
.ks-topic-item .bi { color: var(--gd); font-size: 14px; flex-shrink: 0; }

/* Triple CTA */
.ks-cta {
  padding: 100px 0;
  background: var(--stone);
  text-align: center;
}
.ks-cta-lead {
  text-align: center;
  color: var(--tm);
  margin-bottom: 48px;
}
.ks-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   SELBST VERANSTALTEN PAGE
========================================================= */
.sv-intro {
  padding: 80px 0 64px;
  background: var(--wh);
  text-align: center;
}
.sv-intro .slead {
  max-width: 640px;
  margin: 0 auto;
}

/* Pricing */
.sv-pricing {
  padding: 0 0 80px;
  background: var(--wh);
}
.sv-pricing-head {
  text-align: center;
  margin-bottom: 40px;
}
.sv-pricing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

/* Trainer cards */
.sv-trainers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.sv-trainer-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--stone);
  border: 1px solid rgba(26,26,26,.08);
  border-radius: 6px;
  padding: 24px 28px;
}
.sv-trainer-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gd);
  color: var(--wh);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sv-trainer-info { flex: 1; }
.sv-trainer-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--dark);
}
.sv-trainer-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; color: var(--tm);
  margin-top: 2px;
}
.sv-trainer-price { text-align: right; }
.sv-price-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.sv-price-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; color: var(--tm);
  margin-top: 3px;
}

/* Detail items */
.sv-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--stone);
  border: 1px solid rgba(26,26,26,.08);
  border-radius: 6px;
  padding: 28px 32px;
}
.sv-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.sv-detail-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(184,146,74,.12);
  color: var(--gd);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.sv-detail-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--tm);
  margin-bottom: 4px;
}
.sv-detail-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--dark);
  line-height: 1.55;
}

/* Split section */
.sv-split {
  padding: 80px 0 100px;
  background: var(--stone);
}
.sv-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sv-split-text { display: flex; flex-direction: column; gap: 20px; }
.sv-split-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--tm);
  line-height: 1.7;
}
.sv-split-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.sv-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* =========================================================
   SHARED COURSE ELEMENTS
========================================================= */
/* Level & type tags */
.ke-tag-level {
  display: inline-flex;
  align-items: center;
  background: #f0fdf4;
  color: #166534;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid #bbf7d0;
}
.ke-tag-type,
.ke-tag-days {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--tm);
}
.ke-tag-days .bi { color: var(--gd); }

/* Slot badges */
.slot-badge {
  font-family: 'DM Sans', sans-serif;
  display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}
.slot-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: .7;
}
.slot-green  { background: #dcfce7; color: #15803d; }
.slot-yellow { background: #fef9c3; color: #a16207; }
.slot-red    { background: #fee2e2; color: #dc2626; }
.slot-full   { background: #f3f4f6; color: #6b7280; }

.slot-green::before  { background: #15803d; }
.slot-yellow::before { background: #a16207; }
.slot-red::before    { background: #dc2626; }
.slot-full::before   { background: #6b7280; }

/* =========================================================
   KURSE ENTDECKEN — LISTING PAGE
========================================================= */
.ke-section {
  padding: 80px 0 100px;
  background: var(--stone);
  display: flex;
  flex-direction: column;
}
.ke-section > .cnt {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Course card */
.ke-card {
  background: var(--wh);
  border: 1px solid rgba(26,26,26,.1);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .25s, transform .25s;
  text-decoration: none;
  color: var(--dark);
  min-height: 220px;
}
.ke-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transform: translateY(-2px);
  color: var(--dark);
}
.ke-card-img {
  width: 280px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.ke-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
  object-position: center;
}
.ke-card:hover .ke-card-img img { transform: scale(1.04); }
.ke-sold-out-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.ke-sold-out-overlay span {
  background: #c0392b; color: #fff; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
}
.ke-card-color-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
}

/* Card body */
.ke-card-body {
  padding: 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ke-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ke-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
}
.ke-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--tm);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ke-dates-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding-top: 4px;
}
.ke-dates-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tm);
  width: 100%;
}
.ke-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--dark);
  background: var(--wh);
  border: 1px solid rgba(26,26,26,.15);
  border-radius: 4px;
  padding: 5px 12px;
}
.ke-auf-anfrage-badge {
  display: inline-flex; align-items: center;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--gd); border: 1px solid var(--gd);
  border-radius: 4px; padding: 5px 12px; letter-spacing: .02em;
}
.ke-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(26,26,26,.08);
}
.ke-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}
.ke-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--wh);
  background: var(--gd);
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  transition: background .25s, gap .2s;
  white-space: nowrap;
}
.ke-card:hover .ke-btn {
  background: #a07a3a;
  gap: 12px;
}

/* =========================================================
   KURS DETAIL PAGE
========================================================= */
.kd-breadcrumb {
  background: var(--stone);
  border-bottom: 1px solid rgba(26,26,26,.1);
  padding: 12px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--tm);
}
.kd-breadcrumb a {
  color: var(--tm);
  text-decoration: none;
  transition: color .2s;
}
.kd-breadcrumb a:hover { color: var(--gd); }
.kd-breadcrumb .bi { font-size: 10px; margin: 0 6px; opacity: .5; }

/* Hero */
.kd-hero {
  height: 320px;
  position: relative;
  overflow: hidden;
}
.kd-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.kd-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,26,26,.55));
}
.kd-hero-tags {
  position: absolute;
  bottom: 20px; left: 0; right: 0;
  padding: 0 40px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Layout */
.kd-wrap {
  padding: 60px 0 100px;
  background: var(--wh);
}
.kd-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

/* Content column */
.kd-section {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(26,26,26,.1);
}
.kd-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.kd-color-bar {
  width: 40px; height: 3px;
  margin-bottom: 20px;
  border-radius: 2px;
}
.kd-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.15;
}
.kd-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--tm);
  line-height: 1.8;
}
.kd-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 18px;
}

/* Includes grid */
.kd-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 24px;
}
.kd-include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--dark);
}
.kd-include-item .bi { color: #2E7D32; font-size: 15px; flex-shrink: 0; }

/* Nicht enthalten */
.kd-excludes {
  background: var(--stone);
  border-radius: 3px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.kd-excludes-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tm);
  margin-bottom: 10px;
}
.kd-excludes-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kd-excludes-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--tm);
  padding-left: 14px;
  position: relative;
}
.kd-excludes-list li::before {
  content: '–';
  position: absolute; left: 0;
  color: var(--tm);
}
.kd-excludes-note {
  font-size: 12px;
  color: rgba(26,26,26,.4);
}

/* Box info */
.kd-box-info {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: rgba(184,146,74,.06);
  border: 1px solid rgba(184,146,74,.2);
  border-radius: 3px;
}
.kd-box-icon {
  font-size: 18px;
  color: var(--gd);
  flex-shrink: 0;
  margin-top: 1px;
}
.kd-box-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.kd-box-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--tm);
  line-height: 1.65;
}

/* Instructor */
.kd-instructor {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--stone);
  border-radius: 3px;
  padding: 16px 20px;
}
.kd-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gd);
  color: var(--wh);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 700;
  flex-shrink: 0;
}
.kd-instructor-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--dark);
}
.kd-instructor-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--tm);
  margin-top: 2px;
}

/* Sidebar */
.kd-sidebar { position: sticky; top: 100px; }
.kd-sidebar-card {
  background: var(--wh);
  border: 1px solid rgba(26,26,26,.12);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
}
.kd-price-header {
  background: var(--gd);
  padding: 24px 28px;
}
.kd-price-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
}
.kd-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.kd-price-option-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}
.kd-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: var(--wh);
}
.kd-price-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700;
  color: var(--wh);
  line-height: 1;
}
.kd-price-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
}
.kd-sidebar-body { padding: 24px 28px; }
.kd-on-request {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(184,146,74,.08);
  border: 1px solid rgba(184,146,74,.25);
  border-radius: 3px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.kd-on-request > .bi { color: var(--gd); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.kd-on-request-title { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.kd-on-request-text  { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--tm); }
.kd-sold-out-block {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 12px; padding: 24px 16px; background: #fdf3f3; border: 1px solid #f5c0c0;
  border-radius: 10px; margin-bottom: 16px;
}
.kd-sold-out-block > .bi { font-size: 28px; color: #c0392b; }
.kd-sold-out-block > p { font-size: 13px; color: #6b1e1e; line-height: 1.6; margin: 0; }
.kd-no-dates {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 12px; padding: 28px 20px; background: var(--stone); border-radius: 10px;
  margin-bottom: 16px;
}
.kd-no-dates > .bi { font-size: 28px; color: var(--gd); }
.kd-no-dates > p { font-size: 13px; color: var(--tm); line-height: 1.6; margin: 0; }
.kd-form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--tm);
  margin-bottom: 10px;
}
.kd-date-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1.5px solid rgba(26,26,26,.12);
  border-radius: 3px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: all .2s;
  background: var(--wh);
}
.kd-date-option:hover { border-color: var(--gd); background: rgba(184,146,74,.04); }
.kd-date-option.selected { border-color: var(--dark); background: var(--dark); color: var(--wh); }
.kd-date-option.selected .kd-date-sub,
.kd-date-option.selected .slot-badge { color: rgba(255,255,255,.7); background: rgba(255,255,255,.15); }
.kd-date-main { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; }
.kd-date-sub  { font-family: 'DM Sans', sans-serif; font-size: 11px; color: var(--tm); margin-top: 2px; }
.kd-divider { border: none; border-top: 1px solid rgba(26,26,26,.1); margin: 18px 0; }
.kd-field { margin-bottom: 10px; }
.kd-input {
  width: 100%;
  box-sizing: border-box;
  background: var(--stone);
  border: 1.5px solid rgba(26,26,26,.12);
  border-radius: 3px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.kd-input:focus { border-color: var(--gd); background: var(--wh); }
.kd-input.is-invalid { border-color: #b91c1c !important; }
textarea.kd-input { resize: vertical; min-height: 80px; }
.kd-form-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--tm);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
.kd-sidebar-link {
  text-align: center;
  margin-top: 16px;
}
.kd-sidebar-link a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--tm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.kd-sidebar-link a:hover { color: var(--gd); }

/* =========================================================
   KALENDER PAGE
========================================================= */
.cal-month-nav {
  background: var(--wh);
  border-bottom: 1px solid rgba(26,26,26,.1);
  padding: 20px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.cal-month-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.cal-month-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  min-width: 260px;
  text-align: center;
}
.cal-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(26,26,26,.2);
  background: transparent;
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  font-size: 16px;
  flex-shrink: 0;
}
.cal-nav-btn:hover { background: var(--dark); color: var(--wh); border-color: var(--dark); }
.cal-nav-disabled { opacity: .25; cursor: not-allowed; pointer-events: none; }

/* Legend */
.cal-legend-bar {
  background: var(--stone);
  border-bottom: 1px solid rgba(26,26,26,.1);
  padding: 12px 0;
  overflow-x: auto;
}
.cal-legend-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}
.cal-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--tm);
  white-space: nowrap;
}
.cal-legend-dot {
  width: 10px; height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Calendar grid */
.cal-wrap { background: var(--wh); padding-bottom: 80px; }
.cal-grid-outer { padding: 32px 0 24px; }
.cal-grid {
  border: 1px solid rgba(26,26,26,.1);
  border-radius: 4px;
  overflow: hidden;
  background: var(--wh);
  width: 100%;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--stone);
  border-bottom: 1px solid rgba(26,26,26,.1);
}
.cal-weekday {
  text-align: center;
  padding: 10px 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--tm);
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.cal-day {
  border-right: 1px solid rgba(26,26,26,.08);
  border-bottom: 1px solid rgba(26,26,26,.08);
  min-height: 110px;
  padding: 8px 6px 6px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cal-day { min-height: 90px; padding: 6px 4px 4px; }
  .cal-weekday { font-size: 10px; padding: 8px 2px; }
}
@media (max-width: 767px) {
  .cal-day { min-height: 64px; padding: 4px 3px 3px; }
  .cal-day-num { font-size: 11px; }
  .cal-event { font-size: 9px; padding: 2px 4px; }
  .cal-weekday { font-size: 9px; letter-spacing: 0; }
}
.cal-day:nth-child(7n) { border-right: none; }
.cal-day-empty { background: rgba(26,26,26,.02); }
.cal-day-today { background: #FFFEF8; }
.cal-day-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600;
  color: var(--tm);
  margin-bottom: 4px;
}
.cal-day-today .cal-day-num { color: var(--gd); font-weight: 700; }
.cal-event {
  display: block;
  margin-bottom: 3px;
  border-radius: 3px;
  padding: 2px 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 600;
  color: var(--wh);
  cursor: pointer;
  transition: filter .2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.cal-event:hover { filter: brightness(1.15); color: var(--wh); }
.cal-event-start { border-radius: 3px 0 0 3px; margin-right: -1px; }
.cal-event-end   { border-radius: 0 3px 3px 0; margin-left: -1px; }
.cal-event-mid   { border-radius: 0; margin-left: -1px; margin-right: -1px; }
.cal-event-solo  { border-radius: 3px; }

/* Month list */
.cal-list-section { padding: 40px 0 20px; border-top: 1px solid rgba(26,26,26,.1); }
.cal-list-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400;
  color: var(--dark);
  margin-bottom: 24px;
}
.cal-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cal-mini-card {
  background: var(--wh);
  border: 1px solid rgba(26,26,26,.1);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--dark);
  transition: transform .2s, box-shadow .2s;
}
.cal-mini-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.09); }
.cal-mini-bar { height: 4px; width: 100%; }
.cal-mini-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cal-mini-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 600;
  line-height: 1.2;
}
.cal-mini-type {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--tm);
}
.cal-mini-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--dark);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: auto;
  padding-top: 4px;
}
.cal-mini-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(26,26,26,.08);
}
.cal-mini-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700;
  color: var(--dark);
}
.cal-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--tm);
  font-family: 'DM Sans', sans-serif;
}
.cal-empty .bi { font-size: 36px; display: block; margin-bottom: 16px; color: rgba(26,26,26,.25); }
.cal-empty p { font-size: 16px; margin-bottom: 16px; }
.cal-empty a { color: var(--gd); text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }

/* =========================================================
   SCROLL REVEAL
========================================================= */
.rv, .rvl, .rvr { opacity: 0; }
.iph-lbl, .iph-title, .iph-sub, .iph-acts, .iph-bread,
#he, #ht, #hs, #ha, #hsc { opacity: 0; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199px) {
  .kg   { grid-template-columns: repeat(2,1fr); }
  .ug, .hfg { gap: 48px; }
  .ftop { grid-template-columns: 1fr 1fr; gap: 36px; }
  .tt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1199px) {
  /* Navda linklist ve CTA gizlenir, hamburger çıkar */
  .nlinks, .ncta { display: none; }
  .nhbg { display: flex; }

  /* Grid yerine flex — logo sol, hamburger sağ */
  .ni {
    display: flex;
    justify-content: space-between;
    padding-left: 20px; padding-right: 20px;
  }
.cnt { padding-left: 24px; padding-right: 24px; }

  .ug   { grid-template-columns: 1fr; }
  .ug3  { grid-template-columns: 1fr; }
  .ubadge-left { left: auto; right: -24px; }
  .ubadge { right: 0; }
  .hfg  { grid-template-columns: 1fr; }
  .has  { padding-top: 0; }
  .aci  { grid-template-columns: 1fr; }
  .acph { flex-wrap: wrap; gap: 28px; }
  .acphase::after { display: none; }
  .acphase { flex: 0 0 calc(50% - 14px); }
  .ac-header  { grid-template-columns: 1fr; gap: 20px; }
  .ac-trainers { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ac-pillars { grid-template-columns: 1fr; gap: 1px; }
  .ou-vg      { grid-template-columns: 1fr; gap: 48px; }
  .ou-brand-inner { grid-template-columns: 1fr; gap: 48px; }
  .iph        { min-height: 440px; }
  .tc-img     { min-height: 340px; }
  .tc-body    { padding: 40px 36px; }
  .ph-prinzip { grid-template-columns: 1fr; min-height: auto; }
  .ph-prinzip:nth-child(even) { direction: ltr; }
  .ph-p-img   { min-height: 300px; position: relative; }
  .ph-p-body  { padding: 48px 36px; }
  .ph-kern-grid { grid-template-columns: 1fr 1fr; }
  .ph-ziele-grid { grid-template-columns: 1fr; }
  .au-prinz-grid { grid-template-columns: 1fr; }
  .au-split-grid { grid-template-columns: 1fr; }
  .br-grid { gap: 40px; }
  .br-grid.wide { grid-template-columns: 1fr 2fr; gap: 40px; }
  .br-trainer-badge { right: 0; bottom: -14px; }
  .ac-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .ac-outcomes   { grid-template-columns: 1fr; }
  .ac-tl         { max-width: 100%; }
  .eq-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .eq-grid { grid-template-rows: 260px 200px 320px; padding: 0 24px; }
  .dh-grid { grid-template-columns: 1fr; gap: 48px; }
  .dh-map-wrap { height: 380px; }
  .kt-grid { grid-template-columns: 1fr; gap: 56px; }
  .ks-ways-grid  { grid-template-columns: 1fr; }
  .ks-topics-grid { grid-template-columns: 1fr; gap: 48px; }
  .ks-cta-btns   { flex-direction: column; align-items: stretch; }
  .ks-cta-btns > * { justify-content: center; }
  /* Tablet: yatay layout korunur, görsel biraz daralır */
  .ke-card-img { width: 220px; }
  .kd-layout { grid-template-columns: 1fr; }
  .kd-hero-tags { padding: 0 24px; }
  .cal-list-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-trainers   { grid-template-columns: 1fr; }
  
  .flegal        { display: block; }
  .flg           { display: none; }
}
@media (max-width: 912px) {
  .ou-nav-g   { grid-template-columns: 1fr; }
  .tc-card    { grid-template-columns: 1fr; }
  .tc-card.reverse { direction: ltr; }
  .sv-split-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 767px) {
  .ke-card { flex-direction: column; }
  .ke-card-img { width: 100%; height: auto; aspect-ratio: 4 / 3; }
  .kg   { grid-template-columns: 1fr; }
  .srow { grid-template-columns: 1fr 1fr; }
  .hff  { grid-template-columns: 1fr; }
  .ftop { grid-template-columns: 1fr; }
  .fbot { flex-direction: column; align-items: flex-start; }
  .kh   { flex-direction: column; align-items: flex-start; }
  .kh .slead { text-align: left !important; max-width: 100% !important; }
  .hof-img-wrap { padding: 60px 20px 0; margin-bottom: -140px; }
  .hof-img-wrap img { height: 260px; }
  .ou-img-wrap img { height: 380px; }
  .ou-img-badge { left: 0; bottom: -16px; }
  .ou-brand-img img { height: 320px; }
  .ou-nav-card { height: 300px; }
  .iph { min-height: 520px; padding-top: calc(var(--nh) + 40px); padding-bottom: 80px; }
  .iph-lbl { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
  .iph-lbl > span:not(.ke-tag-level) { white-space: nowrap; }
  .tt-grid { grid-template-columns: 1fr; }
  .tc-body { padding: 32px 24px; }
  .tc-img  { min-height: 280px; }
  .ph-p-body  { padding: 36px 24px; }
  .ph-p-img   { min-height: 260px; }
  .ph-kern-grid  { grid-template-columns: 1fr; }
  .ph-ziele-card { height: 320px; }
  .au-split-body { padding: 28px 24px 32px; }
  .au-split-img  { height: 240px; }
  .br-grid, .br-grid.wide, .br-grid.wide.reverse { grid-template-columns: 1fr; gap: 40px; }
  .br-grid.reverse { direction: ltr; }
  .br-img img    { height: auto; aspect-ratio: 413 / 560; }
  .eq-form-row   { grid-template-columns: 1fr; }
  .eq-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 8px; }
  .eq-grid-item { aspect-ratio: 4/3; }
  .eq-grid-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
  .eq-grid-item:nth-child(6) { grid-column: span 2; aspect-ratio: 16/9; }
  .kd-includes-grid { grid-template-columns: 1fr; }
  .cal-list-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-intro .stitle { word-break: break-word; }
  .sv-details { padding: 24px 20px; }
  .sv-trainer-card { flex-wrap: wrap; gap: 12px; }
  .sv-trainer-price { width: 100%; text-align: left; }
}
@media (max-width: 767px) {
  .acphase { flex: 0 0 100%; }
}
@media (max-width: 480px) {
  .hact { flex-direction: column; align-items: flex-start; }
  .btn-pri, .btn-out { width: 100%; justify-content: center; }
  .hcon { padding-top: calc(var(--nh) - 24px); }
  .mmenu a { font-size: 26px; }
}


/* ─────────────────────────────────────────────
   DER HOF — GALLERY SLIDER
───────────────────────────────────────────── */
.dh-gallery { padding: 80px 0 100px; }
.dh-gal-hd  { margin-bottom: 52px; }

.dh-swiper {
  width: 100%;
  padding-bottom: 52px !important;
  overflow: visible;
}

.dh-swiper .swiper-slide {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.dh-swiper .swiper-slide-active {
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
.dh-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.dh-swiper .swiper-slide:hover img { transform: scale(1.03); }

/* Pagination */
.dh-swiper .swiper-pagination { bottom: 0; }
.dh-swiper .swiper-pagination-bullet {
  width: 6px; height: 6px;
  background: var(--dark); opacity: .2;
  transition: all .3s;
}
.dh-swiper .swiper-pagination-bullet-active {
  opacity: 1; background: var(--gd);
  width: 24px; border-radius: 3px;
}

/* Nav buttons */
.dh-swiper .swiper-button-next,
.dh-swiper .swiper-button-prev {
  color: var(--dark);
  background: var(--wh);
  width: 48px; height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  top: calc(50% - 24px);
  transition: background .2s, color .2s, box-shadow .2s;
}
.dh-swiper .swiper-button-next:hover,
.dh-swiper .swiper-button-prev:hover {
  background: var(--gd); color: #fff;
  box-shadow: 0 6px 20px rgba(184,146,74,.35);
}
.dh-swiper .swiper-button-next::after,
.dh-swiper .swiper-button-prev::after { font-size: 14px; font-weight: 800; }

@media (max-width: 1199px) {
  .dh-swiper { overflow: hidden; }
}
@media (max-width: 767px) {
  .dh-gallery { padding: 60px 0 80px; }
  .dh-gal-hd  { margin-bottom: 32px; }
  .dh-swiper .swiper-button-next,
  .dh-swiper .swiper-button-prev { display: none; }
}


/* ─────────────────────────────────────────────
   ACADEMY — KURSE IM ÜBERBLICK (SWIPER)
───────────────────────────────────────────── */
#ac-kurse { padding: 80px 0; background: var(--stone); }

.ac-kurse-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.ac-kurse-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.ac-kurse-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.15);
  background: var(--wh);
  color: var(--td);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.ac-kurse-btn:hover {
  background: var(--gd); border-color: var(--gd);
  color: #fff;
  box-shadow: 0 4px 14px rgba(184,146,74,.35);
}
.ac-kurse-btn.swiper-button-disabled {
  opacity: .35; pointer-events: none;
}

.ac-kurse-swiper { overflow: hidden; }
.ac-kurse-swiper .swiper-slide { height: auto; }

/* Kart — kcard stilini kullanıyoruz, sadece link wrapper */
.ac-kurse-swiper .kcard {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 767px) {
  #ac-kurse { padding: 60px 0; }
  .ac-kurse-hd { align-items: flex-start; flex-direction: column; gap: 20px; }
}


/* ─────────────────────────────────────────────
   KALENDER — MONTH STRIP NAV
───────────────────────────────────────────── */
.cal-strip-wrap {
  background: var(--wh);
  border-bottom: 1px solid rgba(26,26,26,.1);
  padding: 20px 0 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.cal-strip-year {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--tm);
  margin-bottom: 12px;
}
.cal-strip-inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cal-strip-inner::-webkit-scrollbar { display: none; }

.cal-strip-month {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  text-decoration: none;
  border-radius: 6px;
  flex-shrink: 0;
  flex: 1;
  background: transparent;
  transition: background .2s;
}
.cal-strip-month:hover { background: var(--stone); }
.cal-strip-month.active { background: var(--gd); }

.cal-strip-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--tm);
  transition: color .2s;
  white-space: nowrap;
}
.cal-strip-month:hover .cal-strip-label { color: var(--dark); }
.cal-strip-month.active .cal-strip-label {
  color: #fff;
  font-weight: 700;
}
.cal-strip-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gd);
  opacity: .5;
}
.cal-strip-month.active .cal-strip-dot {
  background: rgba(255,255,255,.8);
  opacity: 1;
}

.cal-arrow-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 0 4px;
  border-top: 1px solid rgba(26,26,26,.07);
  margin-top: 16px;
}
.cal-arrow-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  min-width: 220px;
  text-align: center;
}

@media (max-width: 767px) {
  .cal-strip-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    overflow-x: visible;
  }
  .cal-strip-month { flex: unset; padding: 8px 4px; }
  .cal-strip-label { font-size: 11px; }
  .cal-arrow-label { font-size: 1.25rem; min-width: 160px; }
}


/* =========================================================
   KURSE.PHP — FOTO MOSAIK
========================================================= */
.ks-mosaic {
  padding: 80px 0 96px;
  background: var(--stone);
}
/*
  4 sütun: ilk 3 = dikey (her iki satırı kaplar)
           4. sütun = 2 yatay üst üste
  Toplam yükseklik: 240 + 10 + 240 = 490px
*/
.ks-mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px;
}
/* Dikey fotoğraflar: her iki satırı kaplar */
.km-port {
  grid-row: 1 / 3;
}
.ks-mosaic-item {
  overflow: hidden;
  border-radius: 3px;
}
.ks-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s var(--ease);
}
.ks-mosaic-item:hover img { transform: scale(1.04); }

/* Tablet (640–1023px): 3 dikey üstte, 2 yatay altta */
@media (min-width: 640px) and (max-width: 1023px) {
  .ks-mosaic-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 8px;
    align-items: start;
  }
  .km-port { grid-row: auto; }
  .ks-mosaic-item { height: auto; }

  /* 3 dikey: her biri 2/6 kolon, üst sıra */
  .ks-mosaic-grid > :nth-child(1) { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 322 / 490; }
  .ks-mosaic-grid > :nth-child(2) { grid-column: 3 / 5; grid-row: 1; aspect-ratio: 322 / 490; }
  .ks-mosaic-grid > :nth-child(3) { grid-column: 5 / 7; grid-row: 1; aspect-ratio: 322 / 490; }

  /* 2 yatay: her biri 3/6 kolon, alt sıra */
  .ks-mosaic-grid > :nth-child(4) { grid-column: 1 / 4; grid-row: 2; aspect-ratio: 322 / 240; }
  .ks-mosaic-grid > :nth-child(5) { grid-column: 4 / 7; grid-row: 2; aspect-ratio: 322 / 240; }
}
/* Mobil — 322/490 dikey, 322/240 yatay oranı */
@media (max-width: 639px) {
  .ks-mosaic { padding: 48px 0 64px; }
  .ks-mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 6px;
    align-items: start;
  }
  .km-port { grid-row: auto; }
  .ks-mosaic-item { height: auto; }

  /* 1. dikey — tek başına tam genişlik, üstte */
  .ks-mosaic-grid > :nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
    aspect-ratio: 322 / 490;
  }
  /* 2 yatay — yan yana, ortada */
  .ks-mosaic-grid > :nth-child(4) {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 322 / 240;
  }
  .ks-mosaic-grid > :nth-child(5) {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: 322 / 240;
  }
  /* 2 dikey — yan yana, altta */
  .ks-mosaic-grid > :nth-child(2) {
    grid-column: 1;
    grid-row: 3;
    aspect-ratio: 322 / 490;
  }
  .ks-mosaic-grid > :nth-child(3) {
    grid-column: 2;
    grid-row: 3;
    aspect-ratio: 322 / 490;
  }
}


/* =========================================================
   EQUIPMENT — PARTNER CTA
========================================================= */
.eq-partner {
  padding: 100px 0;
  background: var(--wh);
}
.eq-partner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.eq-partner-text { flex: 1; }
.eq-partner-text .br-text { color: var(--tm); }
.eq-partner-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.eq-partner-url {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tm);
}
@media (max-width: 767px) {
  .eq-partner { padding: 72px 0; }
  .eq-partner-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
}
