/* Mount Leon — Hybrid design: dark cinematic core, light precise B2B world */
:root {
  --accent: #ff6b1a;
  --accent-dark: #e05a0f;
  --ink: #0c1118;
  --ink-2: #141b24;
  --ink-3: #1d2632;
  --paper: #f7f8f9;
  --paper-2: #ffffff;
  --txt-on-dark: #e8ecf1;
  --txt-dim: #9aa7b4;
  --txt-on-light: #182230;
  --txt-on-light-dim: #55647a;
  --line-on-dark: rgba(255,255,255,.12);
  --line-on-light: rgba(12,17,24,.1);
  --radius: 14px;
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow: 0 18px 50px -18px rgba(5,10,18,.45);
  --maxw: 1180px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--txt-on-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; line-height: 1.08; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.15rem; letter-spacing: .04em; }
p { max-width: 62ch; }

.skip { position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: .6rem 1rem; z-index: 100; }
.skip:focus { left: 0; }

/* kicker + buttons ------------------------------------------------------ */
.kicker {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 500;
  letter-spacing: .28em; font-size: .78rem; color: var(--accent); margin-bottom: .9rem;
}
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em;
  font-size: .92rem; font-weight: 600; padding: .8rem 1.5rem; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s, color .18s, box-shadow .18s;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 10px 30px -10px rgba(255,107,26,.55); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-outline { border-color: rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.04); backdrop-filter: blur(4px); }
.btn-outline:hover { border-color: #fff; }
.btn-ghost { background: transparent; color: inherit; border-color: currentColor; opacity: .7; }
.btn-ghost:hover { opacity: 1; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }
.link-more { display: inline-flex; align-items: center; gap: .45rem; color: var(--accent); font-weight: 600; font-size: .95rem; }
.link-more svg { width: 1em; height: 1em; transition: transform .18s; }
.link-more:hover svg { transform: translateX(4px); }

/* header ----------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 1.6rem;
  padding: .85rem clamp(1rem, 4vw, 2.6rem);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled { background: rgba(12,17,24,.9); backdrop-filter: blur(14px); box-shadow: 0 6px 30px -12px rgba(0,0,0,.6); padding-block: .55rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .06em; color: #fff; }
.brand b { color: var(--accent); font-weight: 700; }
.logo-img { width: 39px; height: 40px; object-fit: contain; flex: none; }
.main-nav { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.main-nav > a {
  font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.82); padding: .3rem 0; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.main-nav > a:hover { color: #fff; }
.main-nav > a[aria-current="page"] { color: #fff; border-color: var(--accent); }
.lang-switch { display: flex; gap: .15rem; border: 1px solid var(--line-on-dark); border-radius: 999px; padding: .18rem; }
.lang-switch a { font-size: .72rem; font-weight: 700; letter-spacing: .08em; padding: .25rem .55rem; border-radius: 999px; color: var(--txt-dim); }
.lang-switch a[aria-current="true"] { background: var(--accent); color: #fff; }
.header-cta { margin-left: .4rem; padding: .6rem 1.15rem; font-size: .8rem; }
.nav-toggle { display: none; }

/* rope scroll progress (signature detail) -------------------------------- */
.rope-progress { position: fixed; left: clamp(.5rem, 1.6vw, 1.4rem); top: 0; bottom: 0; width: 2px; z-index: 40; pointer-events: none; }
.rope-line { position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.14), rgba(255,255,255,.05)); }
.rope-dot {
  position: absolute; left: 50%; top: 0; width: 13px; height: 13px; border-radius: 50%;
  transform: translate(-50%, 0); background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,107,26,.22), 0 0 18px rgba(255,107,26,.6);
}
@media (max-width: 900px) { .rope-progress { display: none; } }

/* hero -------------------------------------------------------------------- */
.hero { position: relative; min-height: 92svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-sub { min-height: 72svh; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(12,17,24,.55) 0%, rgba(12,17,24,.15) 40%, rgba(12,17,24,.88) 100%),
  linear-gradient(100deg, rgba(12,17,24,.72) 0%, rgba(12,17,24,.15) 60%); }
.hero-inner { position: relative; z-index: 2; padding: clamp(2.2rem, 6vw, 5rem) clamp(1.2rem, 6vw, 5rem); max-width: 900px; }
.hero h1 { color: #fff; text-wrap: balance; }
.hero .lead { margin-top: 1.2rem; font-size: clamp(1rem, 1.6vw, 1.18rem); color: rgba(255,255,255,.86); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-scroll { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 999px; }
.hero-scroll span { position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: var(--accent); animation: scrollHint 1.8s ease-in-out infinite; }
@keyframes scrollHint { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(14px); opacity: .2; } }

/* sections ---------------------------------------------------------------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 5vw, 3rem); max-width: var(--maxw); margin-inline: auto; }
.section-title { margin-bottom: 2rem; }
.section-sub { color: var(--txt-dim); margin-top: -1.4rem; margin-bottom: 2rem; }
.section-light { max-width: none; background: var(--paper); color: var(--txt-on-light); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }

/* worlds split (home) ------------------------------------------------------ */
.worlds { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.world { position: relative; min-height: 66vh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.world::before { content: ''; position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; transition: transform .7s cubic-bezier(.2,.6,.2,1); z-index: -2; }
.world::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,17,24,.18) 30%, rgba(12,17,24,.9) 100%); z-index: -1; transition: background .4s; }
.world:hover::before { transform: scale(1.06); }
.world-body { padding: 2rem clamp(1.4rem, 3vw, 2.4rem); }
.world h2 { color: #fff; margin-bottom: .5rem; }
.world p { color: rgba(255,255,255,.82); font-size: .98rem; margin-bottom: 1rem; }
.world .link-more { opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; }
.world:hover .link-more, .world:focus-visible .link-more { opacity: 1; transform: none; }
@media (hover: none) { .world .link-more { opacity: 1; transform: none; } }

/* stats -------------------------------------------------------------------- */
.stats-band { padding-block: clamp(2.4rem, 5vw, 4rem); }
.stats { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.6rem; padding-inline: clamp(1.2rem, 5vw, 3rem); }
.stat { text-align: center; }
.stat-n { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--accent); line-height: 1; }
.stat-l { font-size: .88rem; color: var(--txt-on-light-dim); max-width: 22ch; margin-inline: auto; display: inline-block; }

/* story -------------------------------------------------------------------- */
.story-grid { display: grid; grid-template-columns: minmax(260px, 420px) 1fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
.story-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.story-img img { aspect-ratio: 3/4; object-fit: cover; }
.story-text h2 { margin-bottom: 1rem; }
.story-text p { margin-bottom: 1.6rem; color: var(--txt-dim); }
.page-light .story-text p { color: var(--txt-on-light-dim); }
@media (max-width: 760px) { .story-grid { grid-template-columns: 1fr; } .story-img { max-width: 340px; } }

/* partners ------------------------------------------------------------------ */
.partners-band { text-align: center; }
.partners-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .2em; color: var(--txt-on-light-dim); margin: 0 auto 1.6rem; }
.partners { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(1.5rem, 4vw, 3rem); }
.partners img { height: 44px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .55; transition: filter .2s, opacity .2s; }
.partners img:hover { filter: none; opacity: 1; }

/* light B2B world ------------------------------------------------------------ */
.page-light { background: var(--paper); color: var(--txt-on-light); }
.page-light .section-title { color: var(--ink); }
.page-light p { color: var(--txt-on-light-dim); }
.card { background: var(--paper-2); border: 1px solid var(--line-on-light); border-radius: var(--radius); padding: 1.6rem; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { color: var(--ink); margin-bottom: .5rem; }
.card p { font-size: .95rem; }
.card-elevated { background: var(--paper-2); border-radius: calc(var(--radius) + 4px); box-shadow: var(--shadow); padding: clamp(1.6rem, 4vw, 2.6rem); border: 1px solid var(--line-on-light); }
.svc-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,107,26,.1); color: var(--accent); margin-bottom: 1rem; }
.svc-icon svg { width: 24px; height: 24px; }

/* why / values ---------------------------------------------------------------- */
.why { display: flex; gap: 1rem; align-items: flex-start; }
.why-check { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,107,26,.12); color: var(--accent); }
.why-check svg { width: 17px; height: 17px; }
.why h3 { margin-bottom: .3rem; }
body:not(.dummy) .page-light .why h3 { color: var(--ink); }
.why p { font-size: .95rem; }
.why-grid { row-gap: 2rem; }

/* calculator (UX: Anchoring — scaffold price shown first & bigger strike; Verlustaversion — saving highlighted) */
.calc-band { }
.calc { max-width: 780px; margin-inline: auto; text-align: left; }
.calc h2 { color: var(--ink); margin-bottom: .6rem; }
.calc-intro { margin-bottom: 1.8rem; }
.calc-controls { display: grid; gap: 1.2rem; margin-bottom: 2rem; }
.calc-controls label span { display: block; font-size: .88rem; font-weight: 600; color: var(--txt-on-light); margin-bottom: .35rem; }
.calc-controls b { color: var(--accent); font-variant-numeric: tabular-nums; }
input[type="range"] { width: 100%; accent-color: var(--accent); height: 26px; cursor: pointer; }
.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }
.calc-col { border-radius: var(--radius); padding: 1.2rem 1.3rem; border: 1px solid var(--line-on-light); }
.calc-col h3 { font-size: .85rem; letter-spacing: .1em; margin-bottom: .4rem; }
.calc-scaffold { background: #f1f3f5; color: var(--txt-on-light-dim); }
.calc-scaffold .calc-price { text-decoration: line-through; text-decoration-color: rgba(24,34,48,.4); text-decoration-thickness: 2px; }
.calc-rope { background: linear-gradient(140deg, rgba(255,107,26,.12), rgba(255,107,26,.04)); border-color: rgba(255,107,26,.35); }
.calc-rope h3, .calc-rope .calc-price { color: var(--accent-dark); }
.calc-price { font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.calc-note { font-size: .8rem; }
.calc-saving { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 1rem 1.3rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem; margin-bottom: .9rem; }
.calc-saving b { font-family: var(--font-display); font-size: 1.7rem; color: var(--accent); font-variant-numeric: tabular-nums; }
.calc-saving small { color: var(--txt-dim); }
.calc-disclaimer { font-size: .78rem; color: var(--txt-on-light-dim); margin-bottom: 1.4rem; }
@media (max-width: 620px) { .calc-results { grid-template-columns: 1fr; } }

/* gallery ------------------------------------------------------------------------ */
.gallery-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .8rem; }
.gallery-strip img { border-radius: var(--radius); aspect-ratio: 3/4; object-fit: cover; width: 100%; transition: transform .3s; }
.gallery-strip img:hover { transform: scale(1.02); }

/* academy ------------------------------------------------------------------------- */
.course { display: flex; flex-direction: column; gap: .55rem; background: var(--ink-2); border: 1px solid var(--line-on-dark); }
.course:hover { box-shadow: 0 18px 50px -18px rgba(0,0,0,.8); }
.course h3 { color: #fff; }
.course p { color: var(--txt-dim); font-size: .95rem; flex: 1; }
.level { align-self: flex-start; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: .28rem .6rem; border-radius: 999px; }
.level-all { background: rgba(122,199,224,.14); color: #7ac7e0; }
.level-inter { background: rgba(255,107,26,.14); color: var(--accent); }
.level-expert { background: rgba(255,71,71,.14); color: #ff6f6f; }
.season { display: grid; }
.season-row { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line-on-light); align-items: baseline; }
.season-row:last-child { border-bottom: 0; }
.season-months { font-family: var(--font-display); text-transform: uppercase; color: var(--accent); font-weight: 600; letter-spacing: .06em; }
.season-what { color: var(--txt-on-light); }
.season.card-elevated { color: var(--txt-on-light); }
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: .7rem; }
.cta-band p { margin: 0 auto 1.6rem; color: var(--txt-dim); }

/* photography masonry ---------------------------------------------------------------- */
.masonry { columns: 3 300px; column-gap: 1rem; }
.ph { break-inside: avoid; margin-bottom: 1rem; }
.ph button { border: 0; padding: 0; background: none; cursor: zoom-in; width: 100%; border-radius: var(--radius); overflow: hidden; display: block; }
.ph img { width: 100%; transition: transform .35s; border-radius: var(--radius); }
.ph button:hover img { transform: scale(1.03); }
.ph figcaption { font-size: .8rem; color: var(--txt-dim); padding: .45rem .2rem 0; }
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(8,12,18,.94); display: grid; place-items: center; padding: 3.5rem 4.5rem; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox .lb-cap { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); color: var(--txt-dim); font-size: .9rem; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.08); color: #fff; border: 0; width: 46px; height: 46px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; transition: background .15s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--accent); }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lightbox { padding: 3rem .8rem; } .lb-prev { left: .3rem; } .lb-next { right: .3rem; } }

/* timeline ----------------------------------------------------------------------------- */
.timeline { position: relative; max-width: 760px; margin-inline: auto; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: .45rem; top: .4rem; bottom: .4rem; width: 2px; background: linear-gradient(var(--accent), rgba(255,107,26,.1)); }
.tl-item { position: relative; padding: 0 0 2.4rem 1.4rem; }
.tl-item::before { content: ''; position: absolute; left: -1.95rem; top: .42rem; width: 13px; height: 13px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,107,26,.18); }
.tl-year { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--accent); text-transform: uppercase; }
.tl-body h3 { color: #fff; margin: .2rem 0 .35rem; }
.tl-body p { color: var(--txt-dim); font-size: .96rem; }

/* contact -------------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.contact-direct h2 { margin-bottom: 1.4rem; }
.contact-line { display: flex; gap: .9rem; align-items: center; padding: .8rem 0; border-bottom: 1px solid var(--line-on-dark); color: var(--txt-on-dark); transition: color .15s; }
a.contact-line:hover { color: var(--accent); }
.contact-line svg { width: 21px; height: 21px; flex: none; color: var(--accent); }
.contact-or { margin-top: 1.4rem; color: var(--txt-dim); font-size: .9rem; border: 0; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* wizard (UX: Goal Gradient progress bar; IKEA effect — user 'builds' their request) ------- */
.wizard-wrap { max-width: 680px; margin-inline: auto; }
.section .wizard-wrap { padding: 0; }
.wizard { color: var(--txt-on-light); }
.wizard-head h3 { color: var(--ink); font-size: 1.35rem; }
.wizard-progress { height: 6px; border-radius: 999px; background: #e9edf1; margin: .9rem 0 .4rem; overflow: hidden; }
.wizard-bar { height: 100%; width: 33%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), #ffa04d); transition: width .35s cubic-bezier(.2,.7,.3,1); }
.wizard-step-label { font-size: .78rem; color: var(--txt-on-light-dim); margin-bottom: 1.1rem; }
.wizard-q { font-weight: 600; color: var(--ink); margin-bottom: .9rem; font-size: 1.02rem; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.2rem; }
.chip {
  border: 1.5px solid var(--line-on-light); background: #fff; color: var(--txt-on-light);
  border-radius: 999px; padding: .55rem 1.05rem; font-size: .9rem; font-weight: 500; cursor: pointer;
  transition: border-color .15s, background .15s, color .15s, transform .12s;
}
.chip:hover { border-color: var(--accent); transform: translateY(-1px); }
.chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.field { display: block; margin-bottom: 1rem; }
.field span { display: block; font-size: .82rem; font-weight: 600; color: var(--txt-on-light-dim); margin-bottom: .3rem; }
.field input, .field textarea {
  width: 100%; border: 1.5px solid var(--line-on-light); border-radius: 10px; padding: .7rem .9rem;
  font: inherit; color: var(--txt-on-light); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,107,26,.15); }
.field input.invalid { border-color: #e5484d; }
.wizard-nav { display: flex; justify-content: space-between; gap: .8rem; margin-top: .4rem; }
.wizard-nav .btn-accent { margin-left: auto; }
.wizard-hint { font-size: .8rem; color: var(--txt-on-light-dim); margin-top: 1rem; }
.wizard-hint a { color: var(--accent); font-weight: 600; }
.wizard-error { color: #e5484d; font-size: .85rem; margin-top: .6rem; }
.wizard-done { text-align: center; padding: 1.4rem 0; }
.done-icon { width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: rgba(46,160,67,.12); color: #2ea043; }
.done-icon svg { width: 30px; height: 30px; }
.wizard-done h4 { color: var(--ink); font-size: 1.3rem; margin-bottom: .4rem; }
.wizard-done p { margin-inline: auto; }
.wizard-done a { color: var(--accent); font-weight: 600; }

/* footer ------------------------------------------------------------------------------------ */
.site-footer { background: #080c12; border-top: 1px solid var(--line-on-dark); padding: clamp(2.5rem, 6vw, 4rem) clamp(1.2rem, 5vw, 3rem) 1.4rem; }
.footer-grid { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 2.4rem; }
.footer-brand p { color: var(--txt-dim); font-size: .92rem; margin-top: 1rem; max-width: 40ch; }
.socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-on-dark); color: var(--txt-dim); transition: color .15s, border-color .15s, transform .15s; }
.socials a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }
.footer-col { display: flex; flex-direction: column; gap: .55rem; }
.footer-col h4 { color: #fff; font-size: .85rem; letter-spacing: .16em; margin-bottom: .5rem; }
.footer-col a, .footer-col span { color: var(--txt-dim); font-size: .92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: var(--maxw); margin: 2.4rem auto 0; padding-top: 1.2rem; border-top: 1px solid var(--line-on-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; font-size: .8rem; color: var(--txt-dim); }
.footer-motto { font-family: var(--font-display); letter-spacing: .22em; text-transform: uppercase; font-size: .72rem; }
.footer-agency { opacity: .55; }

/* login page ---------------------------------------------------------------- */
.login-page { display: grid; place-items: center; min-height: 70vh; }
.login-card { max-width: 430px; width: 100%; text-align: center; }
.login-logo { margin: 0 auto .8rem; filter: invert(1); }
.login-card h1 { font-size: 1.7rem; color: var(--ink); margin-bottom: .6rem; }
.login-intro { font-size: .92rem; margin: 0 auto 1.5rem; }
.login-form .field { text-align: left; }
.login-form .btn { width: 100%; justify-content: center; margin-top: .3rem; }
.login-offline { margin-top: 1rem; font-size: .85rem; color: #a4622c; background: rgba(164,98,44,.08); border: 1px solid rgba(164,98,44,.25); border-radius: 10px; padding: .7rem .9rem; text-align: left; }
.login-powered { margin: 1.4rem auto 0; font-size: .72rem; color: var(--txt-on-light-dim); letter-spacing: .08em; }
.login-powered a { color: var(--accent-dark); }
.footer-agency a { color: var(--txt-dim); }
.footer-agency a:hover { color: var(--accent); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; } }

/* reveal on scroll ---------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.65,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* mobile nav ----------------------------------------------------------------------------------- */
@media (max-width: 1020px) {
  .header-cta { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; margin-left: auto;
    background: none; border: 0; cursor: pointer; padding: .5rem; z-index: 60;
  }
  .nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  /* .site-header.scrolled trägt backdrop-filter → würde als Containing Block das
     fixed-Overlay auf Header-Höhe einsperren; im Mobile-Breakpoint deshalb ohne Blur */
  .site-header.scrolled { backdrop-filter: none; background: rgba(12,17,24,.97); }
  .main-nav {
    position: fixed; inset: 0; height: 100dvh; background: rgba(10,12,16,.97); backdrop-filter: blur(8px);
    flex-direction: column; justify-content: center; gap: 1.6rem;
    opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 55; margin: 0;
    overscroll-behavior: contain;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav > a { font-size: 1.15rem; color: #f5f5f5; }
  /* offenes Menü muss über ALLEM liegen, auch über dem Chat-Widget (z 2147483000) */
  body.nav-open .site-header { z-index: 2147483100; }
  .masonry { columns: 2 220px; }
}
@media (max-width: 560px) {
  .hero { min-height: 86svh; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .masonry { columns: 1 auto; }
}

/* season strip ------------------------------------------------------------------ */
.season-strip { display: flex; align-items: center; justify-content: center; gap: .6rem; padding: .8rem 1.2rem; background: linear-gradient(90deg, var(--accent), #ff8f4d); color: #fff; font-weight: 600; font-size: .92rem; text-align: center; transition: filter .15s; }
.season-strip:hover { filter: brightness(1.06); }
.season-arrow svg { width: 1em; height: 1em; vertical-align: -2px; }

/* pSEO landing pages --------------------------------------------------------------- */
.pseo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: start; }
.pseo-grid p { margin-bottom: 1rem; }
@media (max-width: 820px) { .pseo-grid { grid-template-columns: 1fr; } }
.faq { border: 1px solid var(--line-on-light); border-radius: 10px; background: #fff; margin-bottom: .7rem; overflow: hidden; }
.faq summary { cursor: pointer; padding: .85rem 1.1rem; font-weight: 600; color: var(--ink); list-style: none; position: relative; }
.faq summary::after { content: '+'; position: absolute; right: 1rem; color: var(--accent); font-weight: 700; }
.faq[open] summary::after { content: '–'; }
.faq p { padding: 0 1.1rem .9rem; font-size: .93rem; }
.pseo-related { margin: 1.6rem auto 0; font-size: .85rem; color: var(--txt-on-light-dim); }
.pseo-related a { color: var(--accent-dark); }

/* hero trust badge ------------------------------------------------------------ */
.hero-trust { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.3rem; font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: .45rem 1rem; backdrop-filter: blur(4px); }
.hero-trust svg { width: 15px; height: 15px; color: #4cc38a; }

/* wizard upload ---------------------------------------------------------------- */
.upload-box { margin-bottom: 1.1rem; padding: .9rem 1rem; border: 1.5px dashed var(--line-on-light); border-radius: 12px; background: #fbfcfd; }
.upload-btn { display: inline-block; font-weight: 600; font-size: .92rem; color: var(--accent-dark); cursor: pointer; }
.upload-label:hover .upload-btn { text-decoration: underline; }
.upload-hint { font-size: .78rem; color: var(--txt-on-light-dim); margin-top: .35rem; }
.upload-state { font-size: .85rem; font-weight: 600; margin-top: .5rem; color: var(--txt-on-light); }
.upload-state.ok { color: #1c7f4b; }
.upload-state.fail { color: #c0392b; }

/* legal page --------------------------------------------------------------------- */
.legal-page { max-width: 820px; }
.legal-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; color: #fff; }
.legal-note { color: var(--txt-dim); font-style: italic; margin-bottom: 2rem; }
.legal-text h2 { font-size: 1.3rem; margin: 2.2rem 0 .8rem; color: #fff; }
.legal-text h3 { font-size: 1.02rem; margin: 1.7rem 0 .5rem; color: var(--accent); }
.legal-text p { color: var(--txt-dim); font-size: .92rem; margin-bottom: .7rem; max-width: none; }
.legal-text .agb-li { padding-left: 1.1rem; position: relative; }
.legal-text .agb-li::before { content: '–'; position: absolute; left: 0; color: var(--accent); }
