/* ============================================================
   Institut für natürliche Bildung und Künstliche Intelligenz
   ein Haus der BildungsWerkstatt München
   Schriften: Playfair Display + Plus Jakarta Sans (Campton-Ersatz)
   Farben: Petrol #3A7F8A (Institut-Variante), Weiß, Grau
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700&display=swap");

:root{
  --white: #FFFFFF;
  --bg:    #FFFFFF;
  --bg-2:  #F7F7F5;
  --bg-3:  #EFEEEA;

  --ink:      #2A2D2F;
  --ink-soft: #51545A;
  --ink-mute: #8A8F95;

  --rule:      #E5E5E2;
  --rule-soft: #EFEFEC;

  /* Marken-Akzente — BWS-Logo: Petrol-Blau + Wiesengrün */
  --petrol:      #0054AA;
  --petrol-deep: #003C80;
  --petrol-soft: #BCD0E6;
  --petrol-25:   rgba(0,84,170,.25);

  --gruen:      #79B100;
  --gruen-deep: #5A8500;
  --gruen-soft: #D6E69E;

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Plus Jakarta Sans", -apple-system, sans-serif;

  --container: 1280px;
  --container-tight: 1100px;
  --header-h: 72px;
  --sidebar-w: 88px;
}

*,*::before,*::after{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }

body{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{ display:block; max-width:100%; height:auto; }
a{ color: inherit; text-decoration: none; }
p{ margin: 0 0 1em; max-width: 70ch; }

/* ---------- Typografie ---------- */
h1,h2,h3,h4{
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.4em;
}
h1{ font-size: clamp(46px, 5.4vw, 78px); letter-spacing: -0.005em; }
h2{ font-size: clamp(34px, 3.6vw, 52px); letter-spacing: -0.005em; }
h3{ font-size: clamp(22px, 1.8vw, 28px); }
h4{ font-size: 18px; }

.kicker{
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--petrol);
}

/* ---------- SIDEBAR (vertikal, links) ---------- */
body{ padding-left: var(--sidebar-w); }

.site-sidebar{
  position: fixed; top: 0; left: 0;
  width: var(--sidebar-w); height: 100vh;
  background: var(--white);
  border-right: 1px solid var(--rule-soft);
  z-index: 40;
  display: flex; flex-direction: column;
  align-items: center;
  padding: 22px 0 24px;
}
.site-sidebar__divider{
  width: 28px; height: 1px;
  background: var(--rule);
  margin: 18px 0 18px;
}
.site-sidebar__nav{
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.sb-item{
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
  padding: 14px 0 18px;
  color: var(--ink-mute);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: color .18s;
}
.sb-item:hover{ color: var(--petrol); }
.sb-item.is-active{ color: var(--petrol); }
.sb-item.is-active::before{
  content: "";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 28px;
  background: var(--gruen);
}
.sb-item__icon{
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.sb-item__icon svg{ width: 100%; height: 100%; }
.sb-item__label{
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: inherit;
}
.sb-item__label::before{
  content: "·";
  margin-bottom: 6px;
  color: var(--gruen);
  font-weight: 700;
  letter-spacing: 0;
  display: block;
}
.site-sidebar__bottom{
  margin-top: auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
}
.site-sidebar__bottom .sw-mark{
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0.5;
}

/* Mini-Submenu (Vier Säulen Mega-Menu, jetzt aus Sidebar) */
.sb-item--has-menu .sb-submenu{
  position: absolute; top: 0; left: 100%;
  margin-left: 0;
  width: 320px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 28px 70px -22px rgba(20,30,45,0.20);
  padding: 22px 26px;
  display: flex; flex-direction: column; gap: 14px;
  opacity: 0; visibility: hidden;
  transform: translateX(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 50;
}
.sb-item--has-menu:hover .sb-submenu,
.sb-item--has-menu:focus-within .sb-submenu{
  opacity:1; visibility:visible; transform: translateX(0);
}
.sb-submenu a{
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.sb-submenu a:last-child{ border-bottom: none; }
.sb-submenu a small{
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}

/* ---------- HEADER (minimal Top-Bar mit Wortmarke) ---------- */
.site-header{
  position: sticky; top:0; z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  height: var(--header-h);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header__inner{
  max-width: 100%;
  margin: 0;
  padding: 0 40px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.site-header .nav{ display: none; }

/* Logo im SYSCOACH-Stil: Wortmarke + drei Punkte */
.brand{
  display: inline-flex; align-items: center; gap: 12px;
}
.brand__mark{
  display: inline-block;
  width: 60px; height: 60px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(20,30,45,0.10));
}
.brand__mark--sm{ width: 40px; height: 40px; }
.brand__words{
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1;
}
.brand__name{
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.12;
}
.brand__name .gr{ color: var(--gruen-deep); }
.brand__name .pe{ color: var(--petrol); }
.brand__name .amp{ color: var(--ink-mute); font-weight: 400; padding: 0 2px; }
.brand__name .l1, .brand__name .l2{ display: block; }
.brand__name .l2{ margin-top: 1px; }
.brand__name--single{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.18;
  display: block;
  max-width: 56ch;
}
.brand__sub{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.site-footer .brand__sub{ color: rgba(255,255,255,0.55); }

/* Nav */
.nav{
  display: flex; align-items: center; gap: 38px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
}
.nav a{
  color: var(--ink);
  padding: 6px 0;
  cursor: pointer;
  transition: color .18s;
}
.nav a:hover, .nav a.is-active{ color: var(--petrol); }
.nav__has-menu{ display:inline-flex; align-items:center; gap:6px; }
.nav__caret{ font-size: 10px; transform: translateY(1px); color: var(--petrol); }

.megamenu-wrap{ position: relative; }
.megamenu{
  position: absolute; top: calc(100% + 14px); right: -100px;
  width: 680px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  box-shadow: 0 28px 70px -22px rgba(20,30,45,0.20);
  padding: 36px 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.megamenu-wrap:hover .megamenu,
.megamenu-wrap:focus-within .megamenu{
  opacity:1; visibility:visible; transform: translateY(0);
}
.megamenu__col h4{
  font-family: var(--serif);
  font-size: 22px;
  color: var(--petrol);
  margin: 0 0 8px;
  font-weight: 500;
}
.megamenu__col p{
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 0;
}

/* ---------- HERO (syscoach: großes Foto rechts, Frage links) ---------- */
.hero{
  position: relative;
  min-height: clamp(540px, 80vh, 760px);
  display: flex; align-items: center;
  background: var(--bg);
  overflow: hidden;
}
.hero__bg{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
}
.hero__bg::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.94) 0%,
    rgba(255,255,255,0.78) 30%,
    rgba(255,255,255,0.10) 56%,
    transparent 78%);
}
.hero__inner{
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.hero__copy{ max-width: 620px; }
.hero h1{
  margin: 0 0 28px;
  font-weight: 400;
  color: var(--ink);
}
.hero__sub{
  font-family: var(--sans);
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 0 32px;
  font-weight: 300;
}
.hero__ctas{ display: inline-flex; gap: 14px; flex-wrap: wrap; }

/* ---------- BUTTONS (syscoach Pill-Style) ---------- */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.btn--primary{ background: var(--petrol); color: var(--white); }
.btn--primary:hover{ background: var(--petrol-deep); }
.btn--ghost{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover{ background: var(--ink); color: var(--white); }
.btn--text{
  background: transparent; padding: 12px 0; border: none;
  color: var(--petrol); border-bottom: 1px solid var(--petrol);
  border-radius: 0;
}
.btn--text:hover{ color: var(--petrol-deep); border-color: var(--petrol-deep); }
.btn .arrow{ transform: translateY(-1px); font-size: 17px; }

/* ---------- SECTIONS ---------- */
section{ padding: 110px 40px; position: relative; }
section.tight{ padding: 72px 40px; }
section.alt{ background: var(--bg-2); }
section.dark{ background: var(--ink); color: var(--white); }
section.dark h2, section.dark h3, section.dark h4{ color: var(--white); }
section.dark p{ color: rgba(255,255,255,0.78); }

.container{ max-width: var(--container); margin: 0 auto; }
.container--tight{ max-width: var(--container-tight); margin: 0 auto; }

.section-head{ display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 56px; max-width: 760px; }
.section-head h2{ margin: 8px 0 0; }
.section-head__lede{
  font-family: var(--sans); font-size: 18px; font-weight: 300;
  color: var(--ink-soft); margin-top: 16px; max-width: 56ch;
}

/* ---------- PILLARS / KARTEN MIT FOTO (syscoach) ---------- */
.pillars{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar{
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 18px 38px -28px rgba(20,30,45,0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar:hover{
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 28px 50px -28px rgba(20,30,45,0.28);
}
.pillar__img{
  aspect-ratio: 16/10;
  background: var(--bg-2) center/cover;
}
.pillar__body{
  padding: 32px 32px 36px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.pillar__kicker{
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--petrol);
}
.pillar h3{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.pillar p{ color: var(--ink-soft); margin: 0; flex: 1; font-size: 16px; }
.pillar a.more{
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--petrol);
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
}
.pillar a.more:hover{ color: var(--petrol-deep); }

/* ---------- TEAM (kreis-rund auf syscoach) ---------- */
.team-grid{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}
.team-card{
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 14px;
}
.team-card__photo{
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--bg-2) center/cover;
}
.team-card h4{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0;
  color: var(--ink);
}
.team-card .role{
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 0;
}

/* ---------- STANDORTE ---------- */
.places{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.place{
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--rule-soft);
}
.place__kicker{
  font-size: 11px; font-weight: 600; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--petrol);
}
.place h4{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0; color: var(--ink);
}
.place address{
  font-family: var(--sans); font-style: normal;
  font-size: 15px; color: var(--ink-soft); line-height: 1.65;
}
.place a{
  color: var(--petrol); font-size: 14px; font-weight: 500;
  align-self: flex-start;
}
.place a:hover{ color: var(--petrol-deep); }

/* ---------- TERMINE ---------- */
.events{ display: flex; flex-direction: column; gap: 16px; }
.event{
  background: var(--white);
  border: 1px solid var(--rule-soft);
  border-radius: 18px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 130px 1fr 200px 220px auto;
  gap: 28px;
  align-items: center;
  transition: border-color .18s, transform .18s;
}
.event:hover{ border-color: var(--petrol-soft); transform: translateY(-1px); }
.event__type{
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--petrol);
}
.event__title{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  color: var(--ink);
  line-height: 1.25;
}
.event__title small{
  display: block; font-family: var(--sans);
  font-size: 13px; font-weight: 300;
  color: var(--ink-mute); margin-top: 4px;
}
.event__date{ font-size: 14px; color: var(--ink-soft); }
.event__price{
  font-size: 13px; color: var(--ink-mute); line-height: 1.5;
}
.event__price strong{ color: var(--ink); font-weight: 600; display: block; }
.event__cta{
  font-size: 14px; font-weight: 500; color: var(--petrol);
  white-space: nowrap;
}
.event__cta:hover{ color: var(--petrol-deep); }

.filters{
  display: flex; gap: 8px; margin-bottom: 32px;
  font-family: var(--sans); font-size: 14px;
}
.filters button{
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  padding: 9px 20px;
  font: inherit;
  border-radius: 999px;
  cursor: pointer;
}
.filters button.is-on{
  background: var(--petrol); color: var(--white); border-color: var(--petrol);
}

/* ---------- FORMULARE ---------- */
.form{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.form .full{ grid-column: 1 / -1; }
.field label{
  display: block;
  font-family: var(--sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select{
  width: 100%;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 16px; font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.field textarea{ resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus{
  border-color: var(--petrol);
  box-shadow: 0 0 0 4px var(--petrol-25);
}
.consent{
  font-family: var(--sans); font-size: 13px; color: var(--ink-mute);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.55;
  grid-column: 1 / -1;
}
.consent a{ color: var(--petrol); border-bottom: 1px solid var(--petrol-soft); }

/* ---------- CTA-BAND (syscoach: bildhintergrund + zentrierter CTA) ---------- */
.cta-band{
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 110px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-band__bg{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.32;
}
.cta-band .container{ position: relative; max-width: 720px; }
.cta-band h2{ color: var(--white); margin: 0 0 16px; font-weight: 400; }
.cta-band p{
  color: rgba(255,255,255,0.82); margin: 0 auto 28px;
  font-size: 18px; font-weight: 300; max-width: 50ch;
}
.cta-band .btn--primary{ background: var(--white); color: var(--ink); }
.cta-band .btn--primary:hover{ background: var(--petrol-soft); color: var(--ink); }

/* ---------- FOOTER ---------- */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: 80px 40px 40px;
}
.site-footer__inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
}
.site-footer .brand__name{ color: var(--white); }
.site-footer .brand__name .light{ color: rgba(255,255,255,0.55); }
.site-footer__brand .brand{ display: none; }
.brand-watermark{ display: none !important; }
.site-footer__brand address{
  font-family: var(--sans); font-style: normal;
  font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7;
}
.site-footer h5{
  font-family: var(--sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 18px;
}
.site-footer ul{
  list-style: none; padding: 0; margin: 0;
  font-family: var(--sans); font-size: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.site-footer a{ color: rgba(255,255,255,0.78); }
.site-footer a:hover{ color: var(--petrol-soft); }
.site-footer__legal{
  max-width: var(--container);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.55);
}
.site-footer__legal ul{ flex-direction: row; gap: 24px; font-size: 12px; }

/* ---------- NEWSLETTER inline ---------- */
.newsletter-inline{
  background: var(--bg-2);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.newsletter-inline h3{ margin: 0 0 12px; font-weight: 500; }
.newsletter-inline p{ color: var(--ink-soft); margin: 0; font-weight: 300; }

/* ---------- BLOG-CARDS ---------- */
.blog-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card{
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--rule-soft);
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -28px rgba(20,30,45,0.22);
}
.blog-card__img{
  aspect-ratio: 4/3;
  background: var(--bg-2) center/cover;
}
.blog-card__body{
  padding: 26px 28px 32px;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.blog-card__kicker{
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--petrol);
}
.blog-card h3{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  margin: 0; line-height: 1.22;
}
.blog-card p{ color: var(--ink-soft); margin: 0; font-size: 15px; font-weight: 300; }
.blog-card a.more{
  margin-top: auto;
  font-size: 14px; font-weight: 500; color: var(--petrol);
  align-self: flex-start;
}

/* ---------- FEATURED ---------- */
.featured{
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.featured__img{
  background: var(--bg-2) center/cover;
  border-radius: 24px;
  aspect-ratio: 4/3;
}
.featured__body h2{ margin: 0 0 18px; font-weight: 500; }
.featured__body p{ color: var(--ink-soft); font-size: 17px; margin: 0 0 22px; font-weight: 300; }

/* ---------- PAGE HERO (Unterseiten) ---------- */
.page-hero{
  padding: 100px 40px 70px;
  background: var(--bg-2);
}
.page-hero .container{ max-width: var(--container-tight); }
.page-hero h1{
  font-weight: 400;
  margin: 12px 0 18px;
  font-size: clamp(50px, 5.6vw, 84px);
}
.page-hero__lede{
  color: var(--ink-soft);
  font-size: 19px;
  font-weight: 300;
  max-width: 56ch;
  margin: 0;
}

/* ---------- 3-Kachel-Layout (Coaching) ---------- */
.tiles-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tile{
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--rule-soft);
  transition: transform .2s, box-shadow .2s;
}
.tile:hover{ transform: translateY(-3px); box-shadow: 0 24px 50px -30px rgba(20,30,45,0.2); }
.tile__img{ aspect-ratio: 4/3; background: var(--bg-2) center/cover; }
.tile__body{ padding: 28px; }
.tile h3{ font-family: var(--serif); font-weight: 500; font-size: 26px; margin: 0 0 8px; color: var(--ink); }
.tile p{ font-size: 15px; color: var(--ink-soft); margin: 0; font-weight: 300; }

/* ---------- Drei Stufen (Prozess) ---------- */
.stages{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.stage{
  background: var(--white);
  border-radius: 22px;
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid var(--rule-soft);
}
.stage__num{
  font-family: var(--serif);
  font-size: 48px; font-weight: 400;
  color: var(--petrol-soft);
  line-height: 1;
}
.stage h3{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px; margin: 0;
  color: var(--ink);
}
.stage p{ color: var(--ink-soft); margin: 0; font-weight: 300; font-size: 15.5px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  body{ padding-left: 0; }
  .site-sidebar{
    position: sticky; top: 0; left: 0;
    width: 100%; height: auto;
    flex-direction: row;
    padding: 12px 16px;
    border-right: none;
    border-bottom: 1px solid var(--rule-soft);
    z-index: 50;
  }
  .site-sidebar__divider{ display: none; }
  .site-sidebar__nav{
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    flex: 1;
    justify-content: flex-end;
  }
  .sb-item{
    flex-direction: row;
    width: auto;
    padding: 8px 14px;
    gap: 8px;
  }
  .sb-item__icon{ margin-bottom: 0; width: 18px; height: 18px; }
  .sb-item__label{
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 11px;
    letter-spacing: 0.16em;
  }
  .sb-item__label::before{ display: none; }
  .sb-item.is-active::before{
    width: 100%; height: 2px;
    top: auto; bottom: 0; left: 0; transform: none;
  }
  .site-sidebar__bottom{ display: none; }
  .sb-item--has-menu .sb-submenu{
    position: absolute; top: 100%; left: auto; right: 0;
    border-radius: 0 0 14px 14px;
    width: 280px;
  }
  .nav{ display:none; }
  .hero__inner{ padding: 56px 24px; }
  .hero__bg::after{
    background: linear-gradient(180deg,
      rgba(255,255,255,0.94) 0%,
      rgba(255,255,255,0.72) 60%,
      rgba(255,255,255,0.92) 100%);
  }
  section{ padding: 70px 24px; }
  .pillars, .team-grid, .places, .blog-grid, .tiles-3, .stages{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .featured{ grid-template-columns: 1fr; gap: 28px; }
  .event{ grid-template-columns: 1fr; gap: 8px; }
  .form{ grid-template-columns: 1fr; }
  .site-footer__inner{ grid-template-columns: 1fr 1fr; gap: 32px; }
  .newsletter-inline{ grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .site-header__inner{ padding: 0 20px; }
}

/* ============================================================
   ZUSATZ-KOMPONENTEN
   ============================================================ */

/* ---------- Termin-Cards (syscoach-Stil mit Icons) ---------- */
.event-cards{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.event-card{
  background: var(--white);
  border-radius: 18px;
  padding: 32px 32px 36px;
  display: flex; flex-direction: column;
  gap: 14px;
  border: 1px solid var(--rule-soft);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 14px 30px -28px rgba(20,30,45,0.20);
  transition: transform .25s ease, box-shadow .25s ease;
}
.event-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 26px 50px -28px rgba(20,30,45,0.28);
}
.event-card__icon{
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.event-card__icon svg{ width: 100%; height: 100%; }
.event-card__type{
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--petrol);
}
.event-card__title{
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  color: var(--ink); line-height: 1.25;
  margin: 0;
}
.event-card__date{
  font-family: var(--sans);
  font-size: 13px; color: var(--ink-mute);
  margin-top: auto;
}

/* ---------- Shop-Cards (IKOBE-Stil) ---------- */
.shop-grid{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.shop-card{
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--rule-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.shop-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -28px rgba(20,30,45,0.28);
}
.shop-card__cover{
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-3) center/cover;
}
.shop-card__photo{
  filter: saturate(0.95) contrast(1.02);
}
.shop-card__cover-fallback{
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: flex-start;
  padding: 28px;
  background: linear-gradient(180deg, var(--petrol-deep) 0%, var(--petrol) 100%);
  color: #fff;
}
.shop-card__cover-fallback h4{
  font-family: var(--serif); font-style: normal;
  font-size: 24px; font-weight: 500;
  margin: 0 0 6px; color: #fff; line-height: 1.15;
}
.shop-card__cover-fallback small{
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.shop-card__cover-fallback.gr{ background: linear-gradient(180deg, var(--gruen-deep) 0%, var(--gruen) 100%); }
.shop-card__download{
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.shop-card__body{
  padding: 22px 24px 26px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.shop-card__body h4{
  font-family: var(--sans);
  font-size: 16px; font-weight: 600;
  color: var(--ink); margin: 0; line-height: 1.35;
}
.shop-card__body .price{
  font-family: var(--sans);
  font-size: 16px; font-weight: 500;
  color: var(--ink);
  margin-top: 4px;
}
.shop-card__body .vat{
  font-family: var(--sans);
  font-size: 12px; color: var(--ink-mute);
}
.shop-card__cta{
  margin-top: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #FFD23F;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px; font-weight: 600;
  padding: 12px 18px;
  border: none; cursor: pointer;
  align-self: stretch;
  border-radius: 6px;
  transition: background .18s;
}
.shop-card__cta:hover{ background: #F5C400; }

/* Eyebrow über Karten-Titel (IKOBE-Stil) */
.shop-card__kicker{
  display: block;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 4px;
}
.shop-card__body h4{
  font-size: 15px; font-weight: 500;
  color: var(--ink-soft);
  margin: 0 0 8px;
  line-height: 1.4;
}
.shop-card__cover{ overflow: hidden; }

/* ---------- Live-Embed IKOBE-Shop ---------- */
.shop-embed{
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 -2px 6px -2px rgba(20,30,45,0.04),
    0 22px 44px -22px rgba(20,30,45,0.18);
}
.shop-embed__bar{
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
}
.shop-embed__url{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-soft);
}
.shop-embed__url code{
  font-family: var(--mono); font-size: 12px;
  color: var(--ink); background: transparent;
  margin-left: 6px;
}
.shop-embed__dot{
  display: inline-block; width: 10px; height: 10px;
  border-radius: 999px; background: #E26D6D;
}
.shop-embed__open{
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  color: var(--petrol-deep);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--white);
  transition: background .18s, color .18s, border-color .18s;
}
.shop-embed__open:hover{
  background: var(--petrol-deep);
  color: #fff;
  border-color: var(--petrol-deep);
}
.shop-embed__frame{
  display: block;
  width: 100%;
  height: 1200px;
  border: 0;
  background: var(--bg-2);
}
@media (max-width: 768px){
  .shop-embed__frame{ height: 1600px; }
}

/* ---------- 3D-Lift für alle Karten (deutlich spürbar) ---------- */
.pillar, .event-card, .shop-card, .room, .team-card, .stage, .team-pool, .featured, .tile, .blog-card, .event, .heft{
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s cubic-bezier(.2,.7,.2,1) !important;
  will-change: transform, box-shadow;
  transform-origin: center center;
}
/* Default: rundherum sichtbarer Ruhe-Schatten (oben + unten) */
.pillar, .event-card, .shop-card, .room, .team-card, .stage, .team-pool, .featured, .tile, .blog-card, .heft{
  box-shadow:
    0 -2px 6px -2px rgba(20,30,45,0.04),
    0 2px 4px rgba(20,30,45,0.04),
    0 8px 18px -6px rgba(20,30,45,0.10),
    0 18px 36px -16px rgba(20,30,45,0.14) !important;
}
/* Hover: deutlicher Lift — größer, höher, allseitiger Schatten */
.pillar:hover, .event-card:hover, .shop-card:hover, .room:hover, .team-pool:hover,
.team-card:hover, .stage:hover, .featured:hover, .tile:hover, .blog-card:hover, .event:hover, .heft:hover{
  transform: translateY(-16px) scale(1.045) !important;
  box-shadow:
    0 -8px 22px -6px rgba(20,30,45,0.10),
    0 8px 16px rgba(20,30,45,0.08),
    0 28px 48px -10px rgba(20,30,45,0.20),
    0 60px 100px -28px rgba(20,30,45,0.32) !important;
  z-index: 5;
  position: relative;
}
/* Auf der dunkleren alt-Sektion: Schatten mit Petrol-Hauch */
section.alt .pillar, section.alt .event-card, section.alt .shop-card, section.alt .room,
section.alt .team-card, section.alt .stage, section.alt .team-pool, section.alt .featured,
section.alt .tile, section.alt .blog-card{
  box-shadow:
    0 2px 4px rgba(0,84,170,0.05),
    0 8px 18px -8px rgba(0,84,170,0.12),
    0 22px 44px -22px rgba(0,84,170,0.18);
}
section.alt .pillar:hover, section.alt .event-card:hover, section.alt .shop-card:hover,
section.alt .room:hover, section.alt .team-card:hover, section.alt .stage:hover,
section.alt .team-pool:hover, section.alt .featured:hover, section.alt .tile:hover, section.alt .blog-card:hover{
  box-shadow:
    0 6px 12px rgba(0,84,170,0.08),
    0 24px 40px -12px rgba(0,84,170,0.20),
    0 50px 80px -24px rgba(0,84,170,0.30);
}
.team-card{
  background: var(--white);
  padding: 18px 18px 22px;
  border-radius: 14px;
  border: 1px solid var(--rule-soft);
}
.stage{
  background: var(--white);
  border-radius: 16px;
  padding: 36px 36px 40px;
  border: 1px solid var(--rule-soft);
}
.featured{
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
}

/* ---------- Page-Hero (für Unterseiten) ---------- */
.page-hero{
  padding: 120px 40px 80px;
  background: var(--bg-2);
  position: relative;
}
.page-hero h1{
  font-style: italic;
  font-weight: 500;
  margin: 12px 0 24px;
  max-width: 22ch;
}
.page-hero p.lede{
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}
.ikobe-cover{
  position: absolute; inset: 0;
  background: var(--bg-3) center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.ikobe-cover::before{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(0,0,0,0.18) 100%);
}
.ikobe-cover__pamphlet{
  position: relative;
  width: 70%; aspect-ratio: 0.78;
  background: #fff;
  box-shadow: 0 18px 40px -12px rgba(20,30,45,0.35), 0 2px 0 rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: rotate(-2deg);
}
.ikobe-cover__pamphlet--upright{ transform: rotate(0deg); width: 64%; }
.ikobe-cover__head{
  background: var(--ink);
  color: #fff;
  padding: 10px 12px 8px;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
}
.ikobe-cover__head .brand-strip{ color: #FFD23F; font-weight: 700; }
.ikobe-cover__head .corner{ font-size: 7px; opacity: 0.7; }
.ikobe-cover__title-block{
  background: var(--petrol-deep);
  color: #fff;
  padding: 14px 14px;
  text-align: center;
  border-top: 3px solid #FFD23F;
  border-bottom: 3px solid #FFD23F;
}
.ikobe-cover__title-block .pre{
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.ikobe-cover__title-block h5{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  margin: 0;
  line-height: 1.05;
}
.ikobe-cover__title-block .sub{
  font-family: var(--sans);
  font-weight: 600;
  font-size: 9px;
  color: #FFD23F;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.ikobe-cover__photo{
  flex: 1;
  background: var(--bg-2) center/cover;
  position: relative;
}
.ikobe-cover__bullets{
  background: #fff;
  padding: 8px 10px 10px;
  font-family: var(--sans);
  font-size: 7px;
  line-height: 1.45;
  color: var(--ink);
}
.ikobe-cover__bullets-head{
  font-family: var(--sans);
  font-weight: 700;
  font-size: 7px;
  color: var(--petrol-deep);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.ikobe-cover__bullets ul{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 1px;
}
.ikobe-cover__bullets li{
  position: relative; padding-left: 9px;
  color: var(--ink-soft);
  font-size: 6.5px;
}
.ikobe-cover__bullets li::before{
  content: "▸"; position: absolute; left: 0; top: 0;
  color: #FFD23F;
}

/* Cover-Variante: nur dunkler Hintergrund mit großem Titel + Liste (Talentometer-Stil) */
.ikobe-cover__simple{
  width: 70%; aspect-ratio: 0.74;
  background: #1A2030;
  color: #fff;
  padding: 14px 16px;
  display: flex; flex-direction: column;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.45);
  position: relative;
  transform: rotate(-1deg);
}
.ikobe-cover__simple .top{
  font-family: var(--serif); font-style: italic;
  font-size: 18px; font-weight: 500;
  margin: 0 0 6px;
}
.ikobe-cover__simple .top em{
  color: #FFD23F; font-style: normal;
}
.ikobe-cover__simple .desc{
  font-family: var(--sans); font-size: 6.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  line-height: 1.4;
}
.ikobe-cover__simple .question-list{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 3px;
  font-family: var(--sans); font-size: 6px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.ikobe-cover__simple .question-list li{
  padding-left: 8px; position: relative;
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
  padding-bottom: 2px;
}
.ikobe-cover__simple .question-list li::before{
  content: "▸"; position: absolute; left: 0; color: #FFD23F;
}

.shop-card__cover{ overflow: hidden; }
  display: flex; justify-content: flex-end; align-items: center;
  gap: 12px; margin-bottom: 28px;
  font-family: var(--sans); font-size: 14px;
}
.shop-toolbar select{
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 10px 14px;
  font: inherit; color: var(--ink);
  border-radius: 8px;
}

/* ---------- Hefte (Unterrichtsmaterial-Teaser) ---------- */
.hefte-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule-soft);
  margin-top: 48px;
  border: 1px solid var(--rule-soft);
}
@media (max-width: 820px){ .hefte-grid{ grid-template-columns: 1fr; } }
.heft{
  background: var(--bg, #FAF7EE);
  padding: 40px 36px 34px;
  display: flex; flex-direction: column; gap: 12px;
  border-left: 3px solid var(--feld-color, #5A8500);
  position: relative;
  min-height: 240px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s cubic-bezier(.2,.7,.2,1);
}
.heft:hover{
  transform: translateY(-12px) scale(1.025);
  box-shadow:
    0 6px 12px rgba(20,30,45,0.06),
    0 24px 40px -12px rgba(20,30,45,0.18),
    0 50px 80px -24px rgba(20,30,45,0.28);
  z-index: 5;
}
.heft .heft-eyebrow{
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--feld-color, #5A8500);
}
.heft h3{
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 28px; line-height: 1.2;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
  max-width: 22ch;
}
.heft .heft-sub{
  font-family: var(--serif); font-weight: 400;
  font-size: 17px; line-height: 1.5; color: var(--ink-soft);
  margin: 0; text-wrap: pretty;
}
.heft .heft-num{
  position: absolute; right: 32px; top: 28px;
  font-family: var(--serif); font-style: italic;
  font-size: 72px; line-height: 1; color: var(--feld-color);
  opacity: 0.14; letter-spacing: -0.02em;
}
.heft__status{
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: auto;
}
.heft__status::before{
  content: ""; width: 6px; height: 6px;
  background: var(--feld-color, #5A8500);
  border-radius: 50%;
}

/* ---------- Räume mit Bildern ---------- */
.rooms{
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.room{
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--rule-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.room:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -28px rgba(20,30,45,0.24);
}
.room__img{
  aspect-ratio: 16/10;
  background: var(--bg-2) center/cover;
}
.room__body{
  padding: 32px 32px 36px;
  display: flex; flex-direction: column; gap: 10px;
}
.room__kicker{
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--petrol);
}
.room__head{
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
}
.room__head h3{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px; margin: 0; color: var(--ink);
}
.room__size{
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  color: var(--ink-mute);
  white-space: nowrap;
}
.room__features{
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--sans); font-size: 14.5px;
  color: var(--ink-soft);
}
.room__features li::before{
  content: "·"; color: var(--gruen); margin-right: 8px; font-weight: 700;
}
.room__price{
  font-family: var(--sans); font-size: 14px;
  color: var(--ink); margin-top: 12px;
}
.room__price strong{ font-weight: 600; color: var(--petrol); }

/* ---------- Reveal-Animation (sanftes Hochkommen beim Scroll) ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease-out, transform .8s ease-out;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1{ transition-delay: 0.08s; }
.reveal.delay-2{ transition-delay: 0.16s; }
.reveal.delay-3{ transition-delay: 0.24s; }
.reveal.delay-4{ transition-delay: 0.32s; }

/* ---------- Pool-Card (vertikal größeres Bild für Honorarpool) ---------- */
.team-pool{
  margin-top: 56px;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--rule-soft);
  display: grid; grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}
.team-pool__img{
  background: var(--bg-2) center/cover;
  min-height: 320px;
}
.team-pool__body{
  padding: 48px 56px;
  display: flex; flex-direction: column; gap: 14px;
  justify-content: center;
}
.team-pool__body h3{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px; margin: 0;
}

/* responsive */
@media (max-width: 980px){
  .event-cards, .shop-grid, .rooms{ grid-template-columns: 1fr; }
  .team-pool{ grid-template-columns: 1fr; }
  .team-pool__body{ padding: 32px; }
}


/* ---------- Logo-Wasserzeichen unten rechts (auf jeder Seite) ---------- */
.sw-watermark{
  display: none !important;
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  padding: 8px;
  background: rgba(250, 247, 238, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--rule-soft);
  border-radius: 8px;
  text-decoration: none;
  opacity: 0.78;
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 2px 8px rgba(20,30,45,0.06), 0 12px 24px -10px rgba(20,30,45,0.14);
}
.sw-watermark:hover{
  opacity: 1;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 4px 12px rgba(20,30,45,0.10), 0 18px 36px -10px rgba(20,30,45,0.22);
}
.sw-watermark img{ width: 100%; height: 100%; display: block; }
@media (max-width: 700px){
  .sw-watermark{ width: 48px; height: 48px; right: 14px; bottom: 14px; padding: 6px; }
}
@media print{ .sw-watermark{ display: none; } }
