/* ============================================================
   ganscool media · Shared Styles
   ============================================================ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }

/* Figtree lokal gehostet (Fallback für Geräte ohne Avenir), kein Google-Request */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('fonts/figtree-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('fonts/figtree-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg:       #FFFFFF;
  --bg-soft:  #F4F3EF;
  --ink:      #12201D;
  --gray:     #5C6662;
  --gray-2:   #99A09C;
  --line:     #E7E5E0;

  --accent:   #ED7D2A;
  --accent-2: #FF924A;
  --accent-dk:#D96E1C;

  --dark:     #192A28;
  --dark-2:   #223734;
  --dark-line:rgba(255,255,255,0.12);
  --on-dark:  #FFFFFF;
  --on-dark-dim: #91A29D;

  --font: 'Avenir Next', 'Avenir', 'Figtree', 'Helvetica Neue', Arial, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease: cubic-bezier(0.65, 0, 0.35, 1);

  --gutter: clamp(20px, 5vw, 72px);
  --radius: 24px;
}

html { scroll-behavior: smooth; scroll-padding-top: 96px; background: var(--bg); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--accent); color: var(--ink); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1280px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.label::before { content: ''; width: 10px; height: 10px; background: var(--accent); border-radius: 2px; flex: none; }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.03em; }

/* orange block highlight */
.hl { position: relative; z-index: 0; white-space: nowrap; }
.hl::before {
  content: '';
  position: absolute; z-index: -1;
  left: -0.12em; right: -0.12em; top: 0.08em; bottom: 0;
  background: var(--accent);
  border-radius: 0.08em;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s var(--ease-out) 0.5s;
}
.hl.on::before, .on .hl::before { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .hl::before { transform: scaleX(1); transition: none; } }

/* reveal on scroll */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.rv.on { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.08s; }
.rv-d2 { transition-delay: 0.16s; }
.rv-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 16px; font-weight: 700;
  padding: 16px 28px;
  border-radius: 999px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn .arr { transition: transform 0.3s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }

.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--accent-dk); box-shadow: 0 14px 30px -14px rgba(237,125,42,0.6); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { box-shadow: 0 14px 30px -14px rgba(12,12,12,0.6); }
.btn-line { border: 2px solid var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-light { border: 2px solid rgba(255,255,255,0.4); color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-sm { padding: 12px 22px; font-size: 15px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand img { height: 48px; width: 48px; filter: invert(1); transition: transform 0.4s var(--ease-out); }
.brand:hover img { transform: rotate(-8deg); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a.navlink { font-size: 16px; font-weight: 600; color: var(--ink); position: relative; padding: 4px 0; }
.nav a.navlink::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 3px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: right center;
  transition: transform 0.35s var(--ease-out);
}
.nav a.navlink:hover::after { transform: scaleX(1); transform-origin: left center; }
.nav a.navlink.active { font-weight: 800; }
.nav a.navlink.active::after { transform: scaleX(1); }

/* nav dropdown */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-drop {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  padding-top: 14px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease-out);
}
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
.nav-drop-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 48px -20px rgba(12, 12, 12, 0.3);
  padding: 8px;
  min-width: 250px;
}
.nav-drop-inner a { display: block; padding: 11px 14px; border-radius: 12px; font-weight: 700; font-size: 15px; transition: background 0.2s var(--ease); }
.nav-drop-inner a:hover { background: var(--bg-soft); }
.nav-drop-inner a span { display: block; font-size: 12.5px; color: var(--gray-2); font-weight: 500; margin-top: 1px; }

@media (max-width: 760px) {
  .nav { gap: 18px; }
  .nav a.navlink { font-size: 15px; }
  .nav .btn { display: none; }
  .nav-drop { display: none; }
}

/* projekt-ansicht umschalter */
.pj-switch { display: flex; gap: 10px; margin-top: 34px; flex-wrap: wrap; }
.pj-switch button {
  font-size: 16px; font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--gray);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease-out);
}
.pj-switch button:hover { transform: translateY(-2px); color: var(--ink); }
.pj-switch button.on { background: var(--ink); color: #fff; }

/* ============================================================
   HERO (Startseite)
   ============================================================ */
.hero { padding: 180px 0 0; }
.hero .label { margin-bottom: 30px; }

.hero h1 {
  font-size: clamp(3rem, 8.6vw, 7.4rem);
  line-height: 1.0;
  max-width: 14ch;
  text-wrap: balance;
}
.hero h1 .row { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hero h1 .row > span { display: inline-block; transform: translateY(120%); animation: rise 0.9s var(--ease-out) forwards; }
.hero h1 .row:nth-child(2) > span { animation-delay: 0.1s; }
@keyframes rise { to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero h1 .row > span { transform: none; animation: none; } }

.hero-foot { margin-top: 46px; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px; }
.hero-sub { max-width: 44ch; font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--gray); font-weight: 500; }
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Video-Header (Startseite) */
.hero.hero-video {
  position: relative;
  margin: 92px clamp(8px, 1.2vw, 18px) 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  min-height: clamp(540px, 78vh, 800px);
  display: flex;
  align-items: flex-end;
  padding: clamp(120px, 16vw, 180px) 0 clamp(44px, 6vw, 70px);
}
.hero-video .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video .hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,32,29,0.2) 0%, rgba(18,32,29,0.4) 55%, rgba(18,32,29,0.82) 100%);
}
.hero-video .wrap { position: relative; z-index: 2; width: 100%; }
.hero-video .label { color: #fff; }
.hero-video .hero-sub { color: rgba(255,255,255,0.88); }
.hero-video .hero-sub strong { color: #fff; }

.hero-facts {
  margin-top: 70px;
  border-top: 2px solid var(--ink);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.hero-facts .fact { padding: 28px 24px 34px 0; }
.hero-facts .fact + .fact { padding-left: 32px; border-left: 1px solid var(--line); }
.hero-facts .num { font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.hero-facts .txt { margin-top: 8px; color: var(--gray); font-weight: 600; font-size: 1rem; }
@media (max-width: 720px) {
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts .fact { padding: 20px 0; border-bottom: 1px solid var(--line); }
  .hero-facts .fact + .fact { padding-left: 0; border-left: 0; }
  .hero-facts .fact:last-child { border-bottom: 0; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker { background: var(--dark); overflow: hidden; padding: 18px 0; }
.ticker .track { display: flex; width: max-content; animation: ticker 26s linear infinite; }
.ticker:hover .track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker .track { animation: none; } }
.ticker ul { display: flex; align-items: center; list-style: none; }
.ticker li {
  display: flex; align-items: center; gap: 30px; padding-right: 30px;
  color: #fff; font-weight: 800; font-size: 17px; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}
.ticker li::after { content: ''; width: 10px; height: 10px; background: var(--accent); transform: rotate(45deg); flex: none; }

/* ============================================================
   SECTIONS / STEPS (Startseite)
   ============================================================ */
.section { padding: clamp(90px, 11vw, 150px) 0; }
.section-tight { padding: clamp(60px, 8vw, 100px) 0; }

.section-head { margin-bottom: clamp(40px, 5vw, 60px); }
.section-head h2 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.04; margin-top: 20px; max-width: 20ch; text-wrap: balance; }
.section-head .sub { margin-top: 16px; color: var(--gray); font-size: 1.15rem; max-width: 46ch; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.step:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -28px rgba(12,12,12,0.25); }
.step .no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--accent); color: var(--ink);
  font-size: 24px; font-weight: 800;
}
.step h3 { margin-top: 26px; font-size: clamp(1.5rem, 2.2vw, 1.9rem); }
.step p { margin-top: 12px; color: var(--gray); font-weight: 500; }
.step .who { margin-top: 20px; font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-2); }

.effort { margin-top: clamp(60px, 8vw, 100px); text-align: center; }
.effort .v { font-size: clamp(1.9rem, 4.6vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; text-wrap: balance; }
.effort .s { margin-top: 14px; color: var(--gray); font-size: 1.15rem; font-weight: 500; }

/* ============================================================
   FEATURED TEASER (Startseite)
   ============================================================ */
.featured {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--radius);
  margin: 0 clamp(8px, 1.2vw, 18px);
  padding: clamp(50px, 6vw, 90px) 0;
}
.featured-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
@media (max-width: 900px) { .featured-grid { grid-template-columns: 1fr; } }

.featured .label { color: var(--on-dark); }
.featured h2 { margin-top: 24px; font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1.05; }
.featured .big-num {
  margin-top: 26px;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.featured .big-lbl { margin-top: 8px; color: var(--on-dark-dim); font-weight: 500; }
.featured .mini-stats { margin-top: 26px; display: flex; gap: clamp(20px, 3vw, 44px); flex-wrap: wrap; }
.featured .mini-stats .v { font-weight: 800; font-size: 1.4rem; color: var(--accent-2); font-variant-numeric: tabular-nums; }
.featured .mini-stats .k { color: var(--on-dark-dim); font-size: 0.92rem; font-weight: 500; margin-top: 2px; }
.featured .cta-row { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.featured .tile { border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; background: #0A1513; position: relative; }
.featured .tile video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 50px; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 26px; } }
.faq-grid h2 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.04; margin-top: 20px; }
.faq-intro { margin-top: 16px; color: var(--gray); max-width: 32ch; }

details.qa { border-top: 1px solid var(--line); }
details.qa:last-child { border-bottom: 1px solid var(--line); }
details.qa summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  letter-spacing: -0.01em;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary .plus {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-soft);
  position: relative;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease);
}
details.qa summary .plus::before, details.qa summary .plus::after {
  content: ''; position: absolute; background: var(--ink);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  border-radius: 2px;
}
details.qa summary .plus::before { width: 14px; height: 2.5px; }
details.qa summary .plus::after { width: 2.5px; height: 14px; }
details.qa[open] summary .plus { transform: rotate(135deg); background: var(--accent); }
details.qa p { padding: 0 0 26px; color: var(--gray); max-width: 58ch; animation: faqIn 0.45s var(--ease-out); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   CTA BAND (orange)
   ============================================================ */
.cta-band { padding: 0 0 clamp(80px, 10vw, 130px); }
.cta-box {
  background: var(--accent);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(44px, 6vw, 90px);
}
.cta-box h2 { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.0; }
.cta-box .sub { margin-top: 18px; font-weight: 600; max-width: 44ch; font-size: 1.15rem; }
.cta-box .cta-row { margin-top: 36px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cta-box .btn-line { border-color: var(--ink); }
.cta-box .micro { margin-top: 26px; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; }

/* ============================================================
   PAGE HEAD (Unterseiten)
   ============================================================ */
.page-head { padding: 170px 0 clamp(40px, 5vw, 70px); }
.page-head h1 { font-size: clamp(3rem, 7vw, 5.6rem); line-height: 1.0; margin-top: 26px; max-width: 16ch; text-wrap: balance; }
.page-head .sub { margin-top: 20px; color: var(--gray); font-size: clamp(1.1rem, 1.5vw, 1.3rem); max-width: 52ch; }

/* ============================================================
   PROJEKT-STORY (Projekte-Seite)
   ============================================================ */
.project {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--radius);
  margin: 0 clamp(8px, 1.2vw, 18px) clamp(20px, 2.5vw, 32px);
  padding: clamp(40px, 5vw, 80px) 0;
}
.project .p-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(26px, 3vw, 40px); }
.project .chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.project .chips span {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--dark-line);
  color: var(--on-dark-dim);
}
.project .chips span.hot { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.project h2 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.02; max-width: 18ch; }
.project .p-claim { color: var(--on-dark-dim); font-size: 1.1rem; max-width: 34ch; font-weight: 500; }

/* media mosaic */
.pj-media { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(10px, 1.4vw, 16px); align-items: stretch; }
.pj-media .stack { display: grid; gap: clamp(10px, 1.4vw, 16px); }
.pj-media .tile { position: relative; border-radius: 16px; overflow: hidden; background: #0A1513; }
.pj-media .tile.side { aspect-ratio: 4 / 3; }
.pj-media .tile.main { height: 100%; min-height: 320px; }
.pj-media .tile video, .pj-media .tile img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.pj-media .tile.side img, .pj-media .tile.side video { position: absolute; }
@media (max-width: 860px) {
  .pj-media { grid-template-columns: 1fr; }
  .pj-media .tile.main { aspect-ratio: 4 / 3; height: auto; min-height: 0; }
}

/* sound + restart buttons on videos */
.snd, .rst {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10,21,19,0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease-out);
}
.snd:hover, .rst:hover { background: var(--accent); color: var(--ink); transform: scale(1.06); }
.snd svg { width: 20px; height: 20px; display: block; }
.rst { right: 64px; }
.rst svg { width: 18px; height: 18px; display: block; }
.reel .snd, .reel .rst { width: 40px; height: 40px; }
.reel .rst { right: 60px; }
.snd .on-icon { display: none; }
.snd.sound-on { background: var(--accent); color: var(--ink); }
.snd.sound-on .off-icon { display: none; }
.snd.sound-on .on-icon { display: block; }

/* result counters */
.pj-results { margin-top: clamp(14px, 1.8vw, 20px); display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.4vw, 16px); }
@media (max-width: 860px) {
  .pj-results { grid-template-columns: repeat(2, 1fr); }
  .pj-results .res .v { font-size: clamp(1.3rem, 5.4vw, 2rem); }
}
.pj-results .res {
  background: var(--dark-2);
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  padding: clamp(18px, 2.2vw, 28px);
}
.pj-results .res .v {
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: -0.02em; line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--accent-2);
  white-space: nowrap;
}
.pj-results .res .k { margin-top: 8px; color: var(--on-dark-dim); font-size: 0.95rem; font-weight: 500; }

/* instagram reel tiles */
.reel-row {
  display: flex; gap: clamp(10px, 1.4vw, 16px);
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.reel-row::-webkit-scrollbar { height: 6px; }
.reel-row::-webkit-scrollbar-thumb { background: var(--dark-line); border-radius: 3px; }
.reel-row::-webkit-scrollbar-track { background: transparent; }

.reel {
  position: relative;
  flex: 0 0 clamp(200px, 21vw, 270px);
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #0A1513;
  scroll-snap-align: start;
  display: block;
}
.reel img, .reel video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.reel:hover img, .reel:hover video { transform: scale(1.03); }
.reel::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 36%;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  pointer-events: none;
}
.reel .rl-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px;
  background: rgba(10,21,19,0.75); color: #fff;
  backdrop-filter: blur(4px);
}
.reel .rl-tag.hot { background: var(--accent); color: var(--ink); }
.reel .rl-likes {
  position: absolute; left: 12px; bottom: 10px; z-index: 2;
  display: flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 14px; color: #fff;
}
.reel .rl-likes svg { width: 15px; height: 15px; fill: var(--accent-2); flex: none; }
.reel .rl-ig {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  color: #fff; opacity: 0.9;
}
.reel .rl-ig svg { width: 17px; height: 17px; display: block; }

.pj-link { margin-top: 18px; }
.pj-link a { font-weight: 700; color: var(--on-dark); transition: color 0.3s var(--ease); }
.pj-link a:hover { color: var(--accent-2); }

.pj-results.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) {
  .pj-results.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .pj-results.cols-3 .res:first-child { grid-column: 1 / -1; }
}

/* werbeproduktion: filmstreifen mit gemischten formaten */
.wp-row {
  display: flex; gap: clamp(10px, 1.4vw, 16px);
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  height: clamp(340px, 42vw, 500px);
}
.wp-row::-webkit-scrollbar { height: 6px; }
.wp-row::-webkit-scrollbar-thumb { background: var(--dark-line); border-radius: 3px; }
.wp-row::-webkit-scrollbar-track { background: transparent; }
.wp-tile {
  position: relative;
  height: 100%;
  aspect-ratio: var(--ar, 9 / 16);
  flex: none;
  border-radius: 16px;
  overflow: hidden;
  background: #0A1513;
  scroll-snap-align: start;
}
.wp-tile video { width: 100%; height: 100%; object-fit: cover; display: block; }
.wp-tile .rl-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px;
  background: rgba(10,21,19,0.75); color: #fff;
  backdrop-filter: blur(4px);
}
.wp-tile .rl-tag.hot { background: var(--accent); color: var(--ink); }
.wp-tile .snd, .wp-tile .rst { width: 40px; height: 40px; }
.wp-tile .rst { right: 60px; }
.wp-cta { margin-top: clamp(26px, 3vw, 36px); display: flex; gap: 14px; flex-wrap: wrap; }

/* zwei säulen (startseite) */
.twoways { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 1.8vw, 22px); }
@media (max-width: 860px) { .twoways { grid-template-columns: 1fr; } }
.tw {
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 46px);
  background: var(--bg-soft);
  display: flex; flex-direction: column; align-items: flex-start;
}
.tw .k { font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-dk); }
.tw h3 { margin-top: 14px; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.tw p { margin-top: 12px; color: var(--gray); font-weight: 500; max-width: 44ch; }
.tw .btn { margin-top: 26px; }
.tw-dark { background: var(--dark); color: #fff; }
.tw-dark .k { color: var(--accent-2); }
.tw-dark p { color: var(--on-dark-dim); }

/* story */
.pj-story { margin-top: clamp(30px, 4vw, 48px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
@media (max-width: 860px) { .pj-story { grid-template-columns: 1fr; } }
.pj-story h3 {
  font-size: 14px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-2);
  display: flex; align-items: center; gap: 10px;
}
.pj-story h3 .n { color: var(--on-dark-dim); }
.pj-story p { margin-top: 10px; color: var(--on-dark-dim); font-weight: 500; }
.pj-story p strong { color: var(--on-dark); font-weight: 700; }

/* slot card: next project */
.slot {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  margin: 0 clamp(8px, 1.2vw, 18px);
  padding: clamp(44px, 6vw, 80px);
  text-align: center;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.slot:hover { border-color: var(--accent); background: rgba(237,125,42,0.04); }
.slot h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.05; }
.slot .sub { margin-top: 12px; color: var(--gray); font-size: 1.1rem; max-width: 44ch; margin-left: auto; margin-right: auto; }
.slot .btn { margin-top: 28px; }

/* ============================================================
   KONTAKT-Seite
   ============================================================ */
.contact-cards { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(14px, 1.8vw, 22px); }
@media (max-width: 860px) { .contact-cards { grid-template-columns: 1fr; } }

.cc {
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 56px);
  display: flex; flex-direction: column; align-items: flex-start;
}
.cc .k { font-size: 14px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.cc h2 { margin-top: 16px; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.05; word-break: break-word; }
.cc p { margin-top: 12px; font-weight: 500; max-width: 40ch; }
.cc .btn { margin-top: 28px; }

.cc-mail { background: var(--accent); color: var(--ink); }
.cc-mail .k { color: rgba(18,32,29,0.6); }
.cc-insta { background: var(--dark); color: var(--on-dark); }
.cc-insta .k { color: var(--on-dark-dim); }
.cc-insta p { color: var(--on-dark-dim); }

/* contact form */
.cc-form { background: var(--bg-soft); color: var(--ink); }
.cform { width: 100%; display: grid; gap: 16px; margin-top: 24px; }
.cform label { font-size: 14px; font-weight: 700; display: block; margin-bottom: 6px; }
.cform label .opt { color: var(--gray-2); font-weight: 500; }
.cform input, .cform textarea {
  width: 100%;
  font: inherit; font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color 0.25s var(--ease);
}
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--accent); }
.cform textarea { min-height: 150px; resize: vertical; }
.cform .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cform .btn { justify-self: start; }
.form-note { font-size: 13px; color: var(--gray); font-weight: 500; }
.form-note a { font-weight: 700; text-decoration: underline; }
.form-status { font-weight: 700; padding: 14px 18px; border-radius: 14px; }
.cform fieldset.topic { border: 0; padding: 0; margin: 0; min-width: 0; }
.cform legend { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.topic-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-chips label { margin: 0; cursor: pointer; position: relative; }
.topic-chips input { position: absolute; opacity: 0; pointer-events: none; }
.topic-chips span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--line);
  font-weight: 700; font-size: 14px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease-out);
}
.topic-chips label:hover span { border-color: var(--ink); transform: translateY(-1px); }
.topic-chips input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.topic-chips input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .cform-row { grid-template-columns: 1fr; } }
.cform[hidden], .form-success[hidden] { display: none !important; }
.cform .btn:disabled { cursor: default; }
.cform .btn.is-loading { opacity: 0.9; }
.cform .btn.is-loading .arr { display: none; }
.cform .btn.is-loading::after {
  content: '';
  width: 16px; height: 16px;
  border: 2.5px solid currentColor; border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-success {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  margin-top: 24px;
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
  border-radius: 20px;
  animation: faqIn 0.5s var(--ease-out);
}
.form-success .fs-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form-success .fs-icon svg { width: 30px; height: 30px; }
.form-success h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.1; }
.form-success p { color: var(--gray); font-weight: 500; max-width: 44ch; }
.form-success .btn { margin-top: 8px; }
@keyframes popIn { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-status.ok { background: rgba(16,160,80,0.12); color: #0B7A42; }
.form-status.err { background: rgba(220,60,40,0.1); color: #B3341F; }

/* contact info card */
.ci-rows { margin-top: 22px; display: grid; gap: 18px; width: 100%; }
.ci-rows .row .k { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-dim); }
.ci-rows .row .v { margin-top: 4px; font-size: 1.15rem; font-weight: 700; color: var(--on-dark); }
.ci-rows .row .v a:hover { color: var(--accent-2); }
.ci-rows .row .v.small { font-size: 1rem; font-weight: 500; color: var(--on-dark); line-height: 1.5; }

/* legal pages */
.legal { max-width: 76ch; }
.legal h2 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin: 38px 0 10px; }
.legal p, .legal address { color: var(--gray); font-weight: 500; font-style: normal; margin-top: 10px; }
.legal p strong { color: var(--ink); font-weight: 700; }
.legal a { font-weight: 700; text-decoration: underline; }
.legal ul { margin: 10px 0 0 20px; color: var(--gray); }
.legal li { margin-top: 6px; }

/* next steps */
.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); }
@media (max-width: 860px) { .next-steps { grid-template-columns: 1fr; } }
.ns {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px);
}
.ns .no { font-weight: 800; font-size: 1.1rem; color: var(--accent-dk); letter-spacing: 0.06em; }
.ns h3 { margin-top: 14px; font-size: 1.35rem; }
.ns p { margin-top: 8px; color: var(--gray); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--radius) var(--radius) 0 0;
  margin: 0 clamp(8px, 1.2vw, 18px);
  padding: clamp(60px, 8vw, 100px) 0 34px;
}
.footer-logo { display: flex; justify-content: center; }
.footer-logo img { width: min(380px, 58vw); transition: transform 0.5s var(--ease-out); }
.footer-logo img:hover { transform: rotate(-2deg) scale(1.02); }
.footer-nav { margin-top: clamp(36px, 4vw, 54px); display: flex; justify-content: center; gap: clamp(20px, 3vw, 40px); flex-wrap: wrap; }
.footer-nav a { font-weight: 700; font-size: 16px; color: var(--on-dark); opacity: 0.85; transition: opacity 0.3s var(--ease), color 0.3s var(--ease); }
.footer-nav a:hover { opacity: 1; color: var(--accent-2); }
.footer-meta {
  margin-top: clamp(36px, 4vw, 54px);
  border-top: 1px solid var(--dark-line);
  padding-top: 26px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 30px;
  font-size: 14px; font-weight: 600;
  color: var(--on-dark-dim);
}
.footer-meta a:hover { color: var(--on-dark); }
.footer-meta .links { display: flex; gap: 26px; flex-wrap: wrap; }

/* ============================================================
   TEAM
   ============================================================ */
.team {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  margin: clamp(40px, 6vw, 80px) clamp(8px, 1.2vw, 18px) clamp(20px, 2.5vw, 32px);
  padding: clamp(60px, 8vw, 110px) 0;
}
.team .label { color: #fff; }
.team .section-head .sub { color: var(--on-dark-dim); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { margin: 0; }
.team-card .ph { position: relative; aspect-ratio: 3 / 4; border-radius: 20px; overflow: hidden; background: #0a1513; }
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 25%;
  transition: transform 0.9s var(--ease-out);
}
.team-card.duo img { object-position: 50% 45%; }
.team-card:hover img { transform: scale(1.04); }
.team-card figcaption { margin-top: 16px; }
.team-card .nm { font-weight: 800; font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -0.02em; line-height: 1.15; }
.team-card .rl { margin-top: 4px; color: var(--accent-2); font-weight: 700; font-size: 0.95rem; }

.team-quote { max-width: 880px; margin: 0 auto; }

.cc-people { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.cc-people img {
  width: 64px; height: 64px; flex: none;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px var(--accent-2);
}
.cc .cc-people p { margin: 0; color: var(--on-dark); font-weight: 500; }

/* ============================================================
   BEWERTUNGEN
   ============================================================ */
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
  color: #fff; font-weight: 600; font-size: 15px;
}
.hero-rating .stars { color: var(--accent-2); letter-spacing: 2px; font-size: 17px; }
.hero-rating b { font-weight: 800; }
.hero-rating:hover { text-decoration: underline; }

.reviews-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.rating-badge {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 16px 22px;
}
.rating-badge .score { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.rating-badge .stars { color: var(--accent); font-size: 20px; letter-spacing: 2px; line-height: 1.2; }
.rating-badge .meta { color: var(--gray); font-weight: 600; font-size: 0.95rem; }
.rating-badge .meta a { color: var(--ink); font-weight: 700; text-decoration: underline; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.review-grid.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .review-grid, .review-grid.two { grid-template-columns: 1fr; } }
.review {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 34px);
  display: flex; flex-direction: column;
}
.review .stars { color: var(--accent); letter-spacing: 2px; font-size: 17px; }
.review blockquote { margin-top: 14px; font-weight: 500; line-height: 1.55; flex: 1; }
.review.big-quote blockquote { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.review .who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.review .av {
  width: 40px; height: 40px; flex: none;
  border-radius: 50%;
  background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.review .name { font-weight: 800; font-size: 0.98rem; }
.review .src { color: var(--gray-2); font-size: 0.85rem; font-weight: 600; }

/* ============================================================
   LEISTUNGSSEITEN
   ============================================================ */
.breadcrumb { font-size: 14px; font-weight: 600; color: var(--gray-2); margin-bottom: 18px; }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--ink); }
.lp-intro { max-width: 70ch; color: var(--gray); font-size: 1.12rem; font-weight: 500; }
.lp-intro p + p { margin-top: 14px; }
.lp-intro strong { color: var(--ink); font-weight: 700; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }
.svc { background: var(--bg-soft); border-radius: var(--radius); padding: clamp(24px, 2.8vw, 36px); }
.svc h3 { font-size: 1.35rem; }
.svc p { margin-top: 8px; color: var(--gray); font-weight: 500; }
.result-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.4vw, 16px); }
@media (max-width: 900px) { .result-grid { grid-template-columns: repeat(2, 1fr); } }
.result {
  display: block;
  background: var(--dark); color: #fff;
  border-radius: 18px;
  padding: clamp(20px, 2.4vw, 28px);
  transition: transform 0.3s var(--ease-out);
}
.result:hover { transform: translateY(-4px); }
.result .v { font-weight: 800; font-size: clamp(1.6rem, 2.8vw, 2.3rem); color: var(--accent-2); letter-spacing: -0.02em; line-height: 1; }
.result .k { margin-top: 8px; color: var(--on-dark-dim); font-weight: 500; font-size: 0.95rem; }
.result .c { margin-top: 14px; font-weight: 800; font-size: 0.95rem; }
.footer-nav { flex-wrap: wrap; }

/* ============================================================
   INSTAGRAM-FEED (Startseite)
   ============================================================ */
.ig { padding: clamp(80px, 10vw, 140px) 0 0; }
.ig-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.ig-profile { display: flex; align-items: center; gap: 18px; }
.ig-avatar {
  width: 78px; height: 78px; flex: none;
  border-radius: 50%;
  background: var(--dark);
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--accent);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ig-avatar img { width: 74%; height: 74%; object-fit: contain; }
.ig-name { font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.1; }
.ig-stats { margin-top: 4px; color: var(--gray); font-weight: 600; }
.ig-stats b { color: var(--ink); font-weight: 800; }
.ig-bio { margin-top: 2px; color: var(--gray); font-weight: 500; font-size: 0.95rem; max-width: 46ch; }

.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(8px, 1vw, 14px); }
.ig-post {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
  display: block; width: 100%; padding: 0;
}
.ig-post img, .ig-post video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out), opacity 0.4s var(--ease);
}
.ig-post video { opacity: 0; }
.ig-post.previewing video { opacity: 1; }
.ig-post:hover img, .ig-post:hover video { transform: scale(1.04); }
.ig-post::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 40%;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  pointer-events: none;
}
.ig-badge {
  position: absolute; left: 12px; bottom: 11px; z-index: 2;
  display: flex; align-items: center; gap: 6px;
  color: #fff; font-weight: 700; font-size: 13.5px;
}
.ig-badge { text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
.ig-badge svg { width: 15px; height: 15px; flex: none; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.55)); }
@media (min-width: 861px) {
  .ig-post.big { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .ig-post.big .ig-badge { font-size: 17px; left: 18px; bottom: 16px; }
  .ig-post.big .ig-badge svg { width: 19px; height: 19px; }
  .ig-post.big .ig-kind { width: 44px; height: 44px; top: 16px; right: 16px; }
  .ig-post.big .ig-kind svg { width: 18px; height: 18px; }
}
.ig-kind {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(10,21,19,0.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.ig-kind svg { width: 14px; height: 14px; }
.ig-post:hover .ig-kind { background: var(--accent); color: var(--ink); }

@media (max-width: 860px) {
  .ig-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 62%;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 8px;
  }
  .ig-post { scroll-snap-align: start; }
}

/* ============================================================
   KINO-MODUS (Lightbox)
   ============================================================ */
.lb {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(8, 14, 13, 0.95);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(8px, 2vw, 28px);
  padding: 20px;
  animation: lbIn 0.3s var(--ease-out);
}
.lb[hidden] { display: none; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb-stage { display: flex; flex-direction: column; align-items: center; max-height: 100%; }
.lb-media {
  max-height: calc(100vh - 150px);
  max-width: min(92vw, 620px);
  border-radius: 16px;
  background: #000;
  display: block;
}
.lb-meta { margin-top: 16px; max-width: 560px; text-align: center; color: rgba(255,255,255,0.78); font-weight: 500; font-size: 15px; }
.lb-meta a { display: inline-block; margin-top: 6px; color: #fff; font-weight: 700; }
.lb-meta a:hover { color: var(--accent-2); }
.lb-btn {
  flex: none;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.lb-btn:hover { background: var(--accent); color: var(--ink); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { position: absolute; top: 18px; right: 18px; }
@media (max-width: 720px) {
  .lb-prev, .lb-next { position: absolute; bottom: 20px; }
  .lb-prev { left: 20px; }
  .lb-next { right: 20px; }
  .lb-media { max-height: calc(100vh - 190px); }
}

/* ============================================================
   MOBILE
   ============================================================ */
html { overflow-x: hidden; }
h1, h2, h3 { overflow-wrap: break-word; }
.result-grid > *, .pj-results > *, .svc-grid > *, .review-grid > * { min-width: 0; }
.result .v, .result .c, .pj-results .res .k { overflow-wrap: break-word; }
@media (max-width: 370px) {
  .result-grid { grid-template-columns: 1fr; }
  .pj-results .res { padding: 16px 14px; }
  .pj-results .res .v { font-size: 1.3rem; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 80px; }
  body { font-size: 16px; }

  .header-inner { height: 64px; }
  .brand img { height: 40px; width: 40px; }
  .nav { gap: 16px; }
  .nav a.navlink { font-size: 15px; padding: 10px 0; }
  .nav a.navlink::after { bottom: 4px; }

  .label { font-size: 12px; letter-spacing: 0.1em; gap: 8px; }
  .label::before { width: 8px; height: 8px; }

  .hero.hero-video {
    margin-top: 72px;
    min-height: 560px;
    min-height: calc(100svh - 84px);
    padding: 90px 0 30px;
  }
  .hero .label { margin-bottom: 16px; align-items: flex-start; line-height: 1.4; }
  .hero .label::before { margin-top: 4px; }
  .hero h1 { font-size: clamp(2.1rem, 10.8vw, 3.2rem); max-width: none; }
  .hero-foot { margin-top: 22px; gap: 20px; }
  .hero-sub { font-size: 1rem; }
  .hero-cta { width: 100%; gap: 10px; }
  .hero-cta .btn { flex: 1 1 auto; padding: 14px 18px; }
  .hero-rating { margin-top: 18px; font-size: 14px; }
  .hero-facts { margin-top: 28px; }
  .hero-facts .num { font-size: 2.2rem; }

  .ticker { padding: 14px 0; }
  .ticker li { font-size: 14px; gap: 22px; padding-right: 22px; }

  .section { padding: 64px 0; }
  .section-tight { padding: 44px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2, .faq-grid h2, .project h2, .cta-box h2 { font-size: clamp(1.85rem, 8.6vw, 2.4rem); line-height: 1.08; }
  .section-head h2 { margin-top: 14px; }
  .section-head .sub, .page-head .sub, .cta-box .sub, .lp-intro { font-size: 1.05rem; }

  .page-head { padding: 112px 0 30px; }
  .page-head h1 { font-size: clamp(2.2rem, 10.6vw, 3rem); margin-top: 16px; line-height: 1.04; }

  .step, .tw, .ns, .svc, .review { padding: 24px; }
  .step h3 { margin-top: 18px; }
  .step .no { width: 44px; height: 44px; font-size: 20px; border-radius: 13px; }
  .effort { margin-top: 48px; }
  .effort .v { font-size: clamp(1.6rem, 7.4vw, 2.1rem); }

  .featured { padding: 40px 0; }
  .featured .big-num { font-size: clamp(2.8rem, 13vw, 3.6rem); }
  .featured .cta-row .btn, .cta-box .cta-row .btn, .wp-cta .btn, .tw .btn { flex: 1 1 auto; }

  .cta-band { padding-bottom: 56px; }
  .cta-box { padding: 32px 24px; }
  .cta-box .cta-row { margin-top: 26px; }
  .slot { padding: 36px 22px; }

  details.qa summary { padding: 18px 0; font-size: 1.05rem; gap: 16px; }

  .project { padding: 36px 0; }
  .project .p-claim { font-size: 1rem; }
  .pj-switch { margin-top: 24px; }
  .pj-switch button { flex: 1 1 auto; padding: 13px 18px; font-size: 15px; }

  .wp-row { height: 360px; align-items: center; }
  .wp-tile.wide { height: auto; width: 86vw; }

  .team { margin-top: 20px; padding: 28px 0; }
  .team-grid { gap: 28px; }
  .team-card .ph { aspect-ratio: 4 / 5; }

  .cc { padding: 26px 20px; }
  .ci-rows .row .v { font-size: 1.05rem; }

  .reviews-head { gap: 18px; }
  .rating-badge { padding: 14px 18px; gap: 12px; }
  .rating-badge .score { font-size: 2.1rem; }

  .ig { padding-top: 64px; }
  .ig-avatar { width: 60px; height: 60px; }
  .ig-profile { gap: 14px; }

  .site-footer { padding-top: 48px; }
  .footer-nav { gap: 12px 22px; }
  .footer-meta { flex-direction: column; }
  .footer-meta .links { gap: 10px 20px; }
}
