/* ============================================================
   Rashid. Design-System + alle Komponenten (1:1 Klon der Vorlage)
   Reines CSS, kein Build-Step. Bildpfade relativ: ../img/...
   Unschaerfe-Hintergruende sind vorgerenderte Bilder (blur-*.jpg).
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Cal Sans Local";
  src: url("../fonts/cal-sans.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #dcdcdc;
  --bg-hero: #f0f0f0;
  --ink: #131313;
  --ink-2: #5c5c5c;
  --accent: #ff4d00;
  --green: #61c554;
  --dark: #121212;
  --darker: #0a0a0a;
  --card: #ffffff;
  --pill: 50px;
  --r-sm: 16px;
  --r-md: 24px;
  --r-lg: 28px;
  --r-xl: 40px;
  --font-display: "Cal Sans", "Cal Sans Local", "Inter", sans-serif;
  --font-text: "Inter", -apple-system, "Segoe UI", sans-serif;
  --container: 1128px;
  --edge: 8px;
  --sec-y: clamp(80px, 10vw, 150px);
}

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

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.kicker {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: .01em;
  margin-bottom: 18px;
}
.kicker.accent { color: var(--accent); font-family: var(--font-display); font-size: 16px; }

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  text-align: center;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.sub {
  text-align: center;
  color: var(--ink-2);
  font-size: 15px;
  margin-top: 14px;
}

/* Pill-Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--pill);
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: transform .25s ease, background .25s ease, opacity .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-dark {
  background: linear-gradient(180deg, #3a3a3a 0%, #1c1c1c 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.14);
}
.btn-light {
  background: #e8e8e8;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.btn-ghost-dark {
  background: rgba(255,255,255,.16);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.btn .arr { width: 15px; height: 15px; }

/* Riesige blasse Ghost-Titel: solide Farbe + Masken-Fade nach unten */
.ghost-wrap { text-align: center; position: relative; z-index: 0; }
.ghost {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 15.3vw, 220px);
  line-height: .95;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: rgba(19,19,19,.16);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.55) 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.55) 55%, transparent 100%);
  user-select: none;
  pointer-events: none;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   STATUS-BADGE (oben mittig, dunkle Pille mit konkaven Ecken)
   ============================================================ */
.status-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  background: #161616;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px 15px;
  border-radius: 0 0 18px 18px;
  white-space: nowrap;
}
.status-badge::before,
.status-badge::after {
  content: "";
  position: absolute;
  top: 0;
  width: 18px;
  height: 18px;
}
.status-badge::before {
  left: -18px;
  background: radial-gradient(circle at 0 100%, transparent 17.5px, #161616 18px);
}
.status-badge::after {
  right: -18px;
  background: radial-gradient(circle at 100% 100%, transparent 17.5px, #161616 18px);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(97,197,84,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(97,197,84,0); }
  100% { box-shadow: 0 0 0 0 rgba(97,197,84,0); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: relative;
  z-index: 50;
  padding-top: 58px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo {
  font-family: var(--font-display);
  font-size: 27px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.01em;
}
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 34px;
}
.main-nav a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.btn-contact { padding: 13px 24px; font-size: 14px; }

/* Burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(19,19,19,.08);
  position: relative;
}
.burger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; }
.burger.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  margin-top: 18px;
  background: #fff;
  border-radius: var(--r-sm);
  padding: 10px 0;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.mobile-menu a.active { color: var(--accent); }

/* ============================================================
   HERO (heller Block mit runden unteren Ecken)
   ============================================================ */
.hero-shell {
  position: relative;
  background: var(--bg-hero);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  padding-bottom: 8px;
  overflow: clip;
}
.hero {
  text-align: center;
  padding: clamp(56px, 8vw, 108px) 20px clamp(48px, 6vw, 74px);
}
.trusted {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 34px;
}
.trusted .avatars { display: flex; }
.trusted .avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-hero);
}
.trusted .avatars img + img { margin-left: -10px; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 1000px;
  margin: 0 auto;
}
.hero h1 .muted { color: #8b8b8b; }
.hero h1 .orange { color: var(--accent); }
.chip {
  display: inline-block;
  width: .95em;
  height: .82em;
  border-radius: .5em;
  object-fit: cover;
  vertical-align: -0.12em;
  margin: 0 .06em;
}
.hero .lede {
  max-width: 480px;
  margin: 26px auto 0;
  font-size: 15px;
  color: var(--ink-2);
}
.hero .btn { margin-top: 34px; }

/* Hero-Galerie-Panel */
.hero-gallery { padding: 0 var(--edge); }
.hero-gallery img {
  width: 100%;
  height: clamp(320px, 62vw, 900px);
  object-fit: cover;
  border-radius: var(--r-xl);
}

/* Logo-Marquee (im hellen Hero-Shell) */
.logo-marquee { padding: clamp(36px, 5vw, 64px) 0 clamp(34px, 5vw, 58px); }

/* ============================================================
   MARQUEES (generisch)
   ============================================================ */
.marquee { overflow: hidden; display: flex; width: 100%; }
.marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 100%;
  animation: marquee-left 30s linear infinite;
}
.marquee-track.reverse { animation-name: marquee-right; }
@keyframes marquee-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.logo-marquee .marquee-track { animation-duration: 36s; }
.logo-item {
  flex: 0 0 auto;
  padding: 0 56px;
  opacity: .5;
  filter: grayscale(1);
  transition: opacity .3s ease;
}
.logo-item:hover { opacity: 1; }
.logo-item img { height: 30px; width: auto; }

/* Schraege Orange/Schwarz-Baender */
.skew-band {
  position: relative;
  height: clamp(170px, 22vw, 300px);
  margin: clamp(30px, 5vw, 70px) 0;
  overflow: clip;
}
.band {
  position: absolute;
  left: -6%;
  width: 112%;
  top: 50%;
  padding: 15px 0;
  overflow: hidden;
  display: flex;
}
.band .marquee-track { animation-duration: 26s; }
.band-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 17px;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 27px);
  white-space: nowrap;
}
.band-item img { width: 17px; height: 17px; }
.band.black {
  background: #131313;
  color: #fff;
  transform: translateY(-58%) rotate(-3.2deg);
  z-index: 1;
}
.band.orange {
  background: var(--accent);
  color: #fff;
  transform: translateY(-42%) rotate(3.2deg);
  z-index: 2;
}

/* ============================================================
   (hello) Intro
   ============================================================ */
.hello { padding: var(--sec-y) 20px; text-align: center; }
.hello-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.3vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink);
}
.hello-text .muted { color: #8f8f8f; }
.tag-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #5a5a5a 0%, #3c3c3c 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--pill);
  box-shadow: 0 6px 14px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.16);
}
.tag-pill svg { width: 14px; height: 14px; }
.tag-pill img { width: 14px; height: 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: var(--sec-y) 0 calc(var(--sec-y) * .6); }
.testimonials .ghost-wrap { margin-bottom: clamp(-110px, -6vw, -40px); }
.testi-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  align-items: stretch;
}
.stat-card {
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(90,90,90,.45) 0%, rgba(20,20,20,0) 55%),
    radial-gradient(120% 120% at 90% 90%, rgba(70,70,70,.35) 0%, rgba(20,20,20,0) 60%),
    #141414;
  border-radius: var(--r-md);
  padding: 40px 34px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  min-height: 460px;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.6vw, 64px);
  line-height: 1;
}
.stat .lbl { font-size: 14px; color: rgba(255,255,255,.85); margin-top: 6px; }

.testi-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
}
.testi-card > img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.55) 100%);
}
.testi-content {
  position: relative;
  z-index: 2;
  padding: 44px 48px;
  color: #fff;
  width: 100%;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.9vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 780px;
  min-height: 2.3em;
  transition: opacity .45s ease, transform .45s ease;
}
.testi-quote.fading { opacity: 0; transform: translateY(10px); }
.testi-author { margin-top: 22px; }
.testi-author .name { font-weight: 700; font-size: 16px; }
.testi-author .role { font-size: 13px; color: rgba(255,255,255,.75); }
.testi-nav {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.testi-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease;
}
.testi-nav button:hover { background: rgba(255,255,255,.3); }
.testi-nav img { width: 26px; height: 26px; }

/* ============================================================
   RECENT WORKS
   ============================================================ */
.works { padding: calc(var(--sec-y) * .6) 0 0; }
.works .ghost-wrap { margin-bottom: clamp(-80px, -4.5vw, -30px); }
.work-card {
  position: relative;
  z-index: 2;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 0 var(--edge) 44px;
  padding: clamp(28px, 4.5vw, 64px);
  min-height: 640px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 455px) 1fr;
  gap: clamp(24px, 4vw, 64px);
  isolation: isolate;
  background-size: cover;
  background-position: center;
}
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.22);
  z-index: -1;
}
.work-card.archin { background-image: url("../img/blur-archin.jpg"); background-color: #0c0c0c; }
.work-card.vntnr  { background-image: url("../img/blur-vntnr.jpg");  background-color: #3a1c10; }
.work-card.aeorim { background-image: url("../img/blur-aeorim.jpg"); background-color: #6c5148; }

.work-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.work-desc { font-size: 14px; color: rgba(255,255,255,.85); max-width: 240px; }
.work-title-block .count { font-size: 14px; color: rgba(255,255,255,.75); }
.work-title-block .count b { color: #fff; font-weight: 600; }
.work-title-block hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.35);
  width: 46px;
  margin: 14px 0 18px;
}
.work-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.work-shot { display: flex; align-items: center; justify-content: center; }
.work-shot img {
  width: 100%;
  max-width: 455px;
  height: clamp(360px, 44vw, 600px);
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: 0 40px 90px rgba(0,0,0,.45);
}
.work-meta {
  display: flex;
  flex-direction: column;
  gap: 44px;
  justify-content: flex-start;
  padding-top: 8px;
}
.work-meta .label { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 6px; }
.work-meta .year { font-family: var(--font-display); font-size: 26px; }
.work-meta .val { font-size: 15px; }
.work-meta ul li { font-size: 15px; line-height: 1.9; }

/* ============================================================
   BRAND-DESIGN-BAND (What we do)
   ============================================================ */
.brandband { padding: var(--sec-y) 0; overflow: clip; }
.service-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(30px, 4vw, 60px);
}
.service-tabs span { font-size: 15px; color: var(--ink-2); }
.service-tabs .active {
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-tabs .active::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.brand-stage { position: relative; padding: clamp(10px, 2vw, 30px) 0; }
.brand-marquee {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 0;
}
.brand-marquee .marquee-track { animation-duration: 34s; }
.brand-word {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: clamp(70px, 12.6vw, 182px);
  line-height: 1;
  white-space: nowrap;
  color: var(--accent);
  -webkit-mask-image: linear-gradient(180deg, #000 20%, rgba(0,0,0,.3) 100%);
  mask-image: linear-gradient(180deg, #000 20%, rgba(0,0,0,.3) 100%);
}
.brand-word img { width: clamp(20px, 2.4vw, 34px); height: auto; opacity: .55; }
.brand-shot {
  position: relative;
  z-index: 1;
  width: min(550px, 84vw);
  margin: 0 auto;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.28);
}
.brand-shot img { width: 100%; height: clamp(240px, 26vw, 368px); object-fit: cover; }
.brand-caption {
  text-align: center;
  max-width: 360px;
  margin: 44px auto 0;
  font-size: 15px;
  color: var(--ink);
}
.brand-tags { display: flex; justify-content: center; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

/* ============================================================
   MEET FOUNDER
   ============================================================ */
.founder { padding: var(--sec-y) 0 calc(var(--sec-y) * .7); }
.founder .ghost-wrap { margin-bottom: clamp(-95px, -5vw, -36px); }
.founder-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 455px) 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.portrait {
  position: relative;
  border-radius: var(--r-md);
}
.portrait > img.photo {
  width: 100%;
  height: clamp(420px, 44vw, 620px);
  object-fit: cover;
  border-radius: var(--r-md);
}
.portrait .socials {
  position: absolute;
  left: 26px;
  bottom: 26px;
  display: flex;
  gap: 10px;
}
.portrait .socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .25s ease;
}
.portrait .socials a:hover { background: rgba(255,255,255,.3); }
.portrait .socials svg { width: 17px; height: 17px; }
.seal {
  position: absolute;
  right: -66px;
  bottom: 36px;
  width: 138px;
  height: 138px;
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.founder-info .label { font-size: 13px; color: var(--ink-2); margin-bottom: 16px; }
.founder-bio {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 470px;
}
.career { margin-top: 44px; border-top: 1px solid rgba(19,19,19,.18); }
.career li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(19,19,19,.18);
  font-size: 15px;
}
.career li .co { color: var(--ink); font-weight: 500; }
.career li .yrs { color: var(--ink-2); }

/* ============================================================
   AWARDS
   ============================================================ */
.awards { padding: calc(var(--sec-y) * .8) 0; }
.awards-list { margin-top: clamp(40px, 6vw, 76px); }
.award-row {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(19,19,19,.22);
}
.awards-list .award-row:last-child { border-bottom: 1px solid rgba(19,19,19,.22); }
.award-row .giver, .award-row .project { font-size: 14px; color: var(--ink-2); }
.award-row .project { text-align: right; }
.award-row .title { text-align: center; font-size: 19px; font-weight: 500; color: var(--ink); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: calc(var(--sec-y) * .8) 20px; }
.price-cards {
  max-width: 792px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.price-card {
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.price-card.standard { background: #f4f4f4; box-shadow: 0 24px 60px rgba(0,0,0,.08); }
.price-card.premium {
  background:
    radial-gradient(140% 110% at 50% 118%, #ff4d00 0%, #c33a02 34%, #571903 62%, #140804 88%, #0d0d0d 100%),
    #0d0d0d;
  color: #fff;
}
.price-card.premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hkdh85c5wuRaQUC0E3ZaA2YqhY.png");
  background-repeat: repeat;
  opacity: .35;
  pointer-events: none;
}
.price-card > div { position: relative; }
.plan-head { display: flex; flex-direction: column; height: 100%; }
.plan-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(180deg, #3c3c3c 0%, #171717 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.18);
  margin-bottom: 22px;
}
.plan-icon svg { width: 22px; height: 22px; }
.plan-name { font-family: var(--font-display); font-size: 25px; margin-bottom: 12px; }
.plan-desc { font-size: 14.5px; color: var(--ink-2); max-width: 330px; }
.price-card.premium .plan-desc { color: rgba(255,255,255,.8); }
.delivery {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(19,19,19,.18);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-2);
}
.price-card.premium .delivery { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.8); }
.plan-body { display: flex; flex-direction: column; }
.price-line { display: flex; align-items: baseline; gap: 10px; }
.price-big { font-family: var(--font-display); font-size: clamp(40px, 4vw, 56px); line-height: 1; }
.price-per { font-size: 14px; color: var(--ink-2); }
.price-line.premium-price { flex-direction: column; align-items: flex-start; gap: 2px; }
.price-line.premium-price .starting { font-family: var(--font-display); font-size: clamp(30px, 3vw, 40px); line-height: 1.15; }
.price-line.premium-price .amount { font-family: var(--font-display); font-size: clamp(34px, 3.4vw, 46px); color: var(--accent); line-height: 1.1; }
.plan-body hr { border: 0; border-top: 1px solid rgba(19,19,19,.16); margin: 22px 0; }
.price-card.premium .plan-body hr { border-color: rgba(255,255,255,.25); }
.features { margin-bottom: 10px; }
.features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 15px;
}
.features .chk {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(19,19,19,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.price-card.premium .features .chk { border-color: rgba(255,255,255,.85); background: rgba(255,255,255,.92); color: #131313; }
.features .chk svg { width: 10px; height: 10px; }
.plan-body .btn { margin-top: auto; width: 100%; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: calc(var(--sec-y) * .8) 0; }
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: clamp(40px, 5vw, 64px);
}
.faq-col { display: flex; flex-direction: column; gap: 24px; }
.faq-item {
  background: #efefef;
  border-radius: var(--r-md);
  padding: 8px 30px;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  padding: 20px 0;
}
.faq-q .ico {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #131313;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faq-q .ico::before, .faq-q .ico::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 1px;
  transition: transform .3s ease;
}
.faq-q .ico::before { width: 10px; height: 1.6px; }
.faq-q .ico::after { width: 1.6px; height: 10px; }
.faq-item.open .faq-q .ico::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a p { font-size: 14.5px; color: var(--ink-2); padding: 0 0 24px; max-width: 560px; }

/* ============================================================
   LET'S CONNECT
   ============================================================ */
.connect { padding-top: calc(var(--sec-y) * .8); }
.connect .ghost-wrap { margin-bottom: clamp(-100px, -5vw, -30px); }
.connect-band {
  position: relative;
  z-index: 2;
  border-radius: var(--r-lg);
  margin: 0 var(--edge);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background: url("../img/blur-connect.jpg") center / cover no-repeat #0a0a0a;
  padding: clamp(48px, 7vw, 110px) clamp(24px, 5vw, 72px) clamp(40px, 5vw, 64px);
}
.connect-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.6) 0%, rgba(5,5,5,.42) 55%, rgba(5,5,5,.72) 100%);
  z-index: -1;
}
.connect-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 6vw, 110px);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}
.connect-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 460px;
}
.connect-sub { margin-top: 22px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.85); }
.connect-form label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.connect-form .field { margin-bottom: 30px; }
.connect-form input, .connect-form textarea {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding: 10px 0 14px;
  color: #fff;
  font-size: 15px;
  transition: border-color .25s ease;
  resize: vertical;
}
.connect-form input:focus, .connect-form textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,.85);
}
.connect-form ::placeholder { color: rgba(255,255,255,.45); }
.connect-form .btn { width: 100%; }
.form-msg { margin-top: 16px; font-size: 14px; display: none; }
.form-msg.ok { display: block; color: var(--green); }
.form-msg.err { display: block; color: #ff8a5c; }

.email-row {
  position: relative;
  margin-top: clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.email-row .marquee-track { animation-duration: 28s; }
.email-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  color: #fff;
  white-space: nowrap;
}
.email-item img { width: 18px; height: 18px; opacity: .8; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding: 10px var(--edge) var(--edge); }
.footer-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(130% 90% at 50% 118%, #ff4d00 0%, #d84203 26%, #7c2503 48%, #2b0f04 70%, #0a0a0a 92%),
    #0a0a0a;
  padding: clamp(48px, 6vw, 84px) clamp(24px, 5vw, 76px) 0;
}
.footer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hkdh85c5wuRaQUC0E3ZaA2YqhY.png");
  background-repeat: repeat;
  opacity: .1;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.4) 55%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.4) 55%, #000 100%);
  pointer-events: none;
}
.footer-cols {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 288px));
  gap: 24px;
}
.footer-cols h4 {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.footer-cols a {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 2.05;
  color: #fff;
  transition: color .2s ease;
}
.footer-cols a:hover { color: var(--accent); }
.footer-meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(60px, 8vw, 130px);
  padding: 22px 0;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.footer-meta .clock { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); }
.footer-meta .clock img { width: 14px; height: 14px; }
.footer-meta .to-top { color: var(--accent); font-weight: 500; }
.wordmark-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 calc(clamp(24px, 5vw, 76px) * -1);
  text-align: center;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(90px, 21.5vw, 315px);
  line-height: .82;
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin-bottom: -0.16em;
  color: #f2efec;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0,0,0,.6) 82%, rgba(0,0,0,.28) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0,0,0,.6) 82%, rgba(0,0,0,.28) 100%);
  user-select: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .work-card { grid-template-columns: 1fr 1fr; }
  .work-card .work-shot { order: 3; grid-column: 1 / -1; }
  .seal { right: 10px; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .burger { display: block; }
  .site-header { padding-top: 66px; }

  .testi-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 0; flex-direction: row; flex-wrap: wrap; gap: 28px; }
  .stat { flex: 1 1 40%; }

  .work-card { grid-template-columns: 1fr; min-height: 0; }
  .work-left { order: 1; gap: 28px; }
  .work-shot { order: 2; }
  .work-meta { order: 3; gap: 24px; padding-top: 0; }
  .work-shot img { height: clamp(320px, 90vw, 480px); }

  .founder-grid { grid-template-columns: 1fr; }
  .portrait { max-width: 520px; }
  .seal { right: 16px; bottom: -30px; width: 110px; height: 110px; }

  .award-row { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .award-row .title { text-align: left; }
  .award-row .project { text-align: left; }

  .price-card { grid-template-columns: 1fr; }
  .plan-head .delivery { margin-top: 26px; }

  .faq-cols { grid-template-columns: 1fr; }

  .connect-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 36px; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 480px) {
  :root { --sec-y: 72px; }
  .hero h1 { font-size: 38px; }
  .hero-gallery img { border-radius: var(--r-md); }
  .hero-shell { border-radius: 0 0 var(--r-md) var(--r-md); }
  .status-badge { padding: 10px 18px 12px; font-size: 12px; }
  .work-card { margin-bottom: 24px; }
  .testi-content { padding: 28px 24px; }
  .testi-nav { right: 18px; bottom: 18px; }
  .connect-band { border-radius: var(--r-md); }
  .footer-card { border-radius: var(--r-md); }
  .email-item { font-size: 20px; gap: 22px; }
  .tag-pills { max-width: 100%; }
}

/* ============================================================
   UNTERSEITEN (works / services / about / blog / contact)
   Nur additive Styles, nichts Bestehendes wird ueberschrieben.
   ============================================================ */

/* Linksbuendige Varianten der Utilities */
.kicker.left { text-align: left; }
.h2.left { text-align: left; }

/* ---------- SERVICES: What we do ---------- */
.svc { padding: var(--sec-y) 0 calc(var(--sec-y) * .3); }
.svc-list { margin-top: clamp(36px, 5vw, 60px); }
.svc-row {
  display: grid;
  grid-template-columns: minmax(130px, 175px) minmax(0, 555px) 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(36px, 5vw, 56px) 0 clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(19,19,19,.18);
  align-items: start;
}
.svc-label { font-size: 16px; font-weight: 500; color: var(--ink); padding-top: 4px; }
.svc-media img {
  width: 100%;
  height: clamp(240px, 26vw, 368px);
  object-fit: cover;
  border-radius: var(--r-md);
}
.svc-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.svc-info .desc { font-size: 17px; line-height: 1.65; color: var(--ink-2); max-width: 380px; }
.svc-facts { margin-top: clamp(28px, 4vw, 60px); border-top: 1px solid rgba(19,19,19,.18); padding-top: 22px; }
.svc-facts .fact {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--ink-2);
}
.svc-facts .fact .val { color: var(--ink-2); }

/* ---------- ABOUT: The Tools That Power Us ---------- */
.tools { padding: var(--sec-y) 20px calc(var(--sec-y) * .5); }
.tool-stack {
  max-width: 640px;
  margin: clamp(40px, 5vw, 72px) auto 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.tool-card {
  position: relative;
  background: #f0f0f0;
  border-radius: var(--r-md);
  padding: 34px 32px 38px;
  box-shadow: 0 24px 60px rgba(0,0,0,.06);
}
.tool-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(180deg, #3c3c3c 0%, #171717 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.18);
  margin-bottom: 26px;
}
.tool-icon img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.pro-pill {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(180deg, #5a5a5a 0%, #3c3c3c 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 10px 20px;
  border-radius: var(--pill);
  box-shadow: 0 6px 14px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.16);
}
.tool-name { font-size: 17px; font-weight: 500; color: var(--ink); margin-bottom: 14px; }
.tool-text { font-size: 14.5px; color: var(--ink-2); max-width: 560px; }
.tools-cta {
  position: relative;
  overflow: hidden;
  max-width: 640px;
  margin: 26px auto 0;
  border-radius: var(--r-md);
  color: #fff;
  padding: clamp(34px, 4vw, 46px) clamp(26px, 4vw, 40px) clamp(28px, 4vw, 40px);
  background:
    radial-gradient(140% 110% at 50% 128%, #ff4d00 0%, #c33a02 30%, #571903 58%, #140804 86%, #0d0d0d 100%),
    #0d0d0d;
}
.tools-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hkdh85c5wuRaQUC0E3ZaA2YqhY.png");
  background-repeat: repeat;
  opacity: .3;
  pointer-events: none;
}
.tools-cta > * { position: relative; }
.tools-cta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.tools-cta h3 .orange { color: var(--accent); }
.tools-cta p { margin-top: 16px; font-size: 14.5px; color: rgba(255,255,255,.85); max-width: 360px; }
.tools-cta .btn { margin-top: clamp(56px, 8vw, 116px); width: 100%; }

/* ---------- BLOG ---------- */
.blog { padding: calc(var(--sec-y) * .7) 0 var(--sec-y); }
.blog .ghost-wrap { margin-bottom: clamp(-80px, -4.5vw, -30px); }
.blog-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 14px;
  margin: 0 var(--edge);
}
.blog-card img {
  width: 100%;
  height: clamp(280px, 24vw, 340px);
  object-fit: cover;
  border-radius: var(--r-md);
}
.blog-card .blog-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;
}
.blog-title { font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.35; }
.blog-sub { font-size: 13.5px; color: var(--ink-2); margin-top: 3px; }
.read-pill {
  flex: 0 0 auto;
  background: linear-gradient(180deg, #3a3a3a 0%, #1c1c1c 100%);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--pill);
  box-shadow: 0 6px 14px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.14);
  white-space: nowrap;
}

/* ---------- CONTACT: Get In Touch ---------- */
.contact-sec { padding: var(--sec-y) 0 calc(var(--sec-y) * .5); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 460px);
  justify-content: space-between;
  gap: clamp(48px, 8vw, 140px);
  align-items: start;
  margin-top: clamp(40px, 5vw, 72px);
}
.contact-form label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-form .field { margin-bottom: 36px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(19,19,19,.3);
  padding: 10px 0 14px;
  color: var(--ink);
  font-size: 15px;
  transition: border-color .25s ease;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: rgba(19,19,19,.75); }
.contact-form ::placeholder { color: rgba(19,19,19,.42); }
.contact-form .select-wrap { position: relative; }
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: rgba(19,19,19,.6);
}
.contact-form .select-wrap::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.6px solid rgba(19,19,19,.6);
  border-bottom: 1.6px solid rgba(19,19,19,.6);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.contact-form .btn-send {
  width: 100%;
  background: #efefef;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.6);
}
.contact-form .form-msg.err { color: #c73a08; }
.contact-form .form-msg.ok { color: #3f9a35; }
.contact-panel { position: relative; }
.contact-panel > img.photo {
  width: 100%;
  height: clamp(420px, 40vw, 570px);
  object-fit: cover;
  border-radius: var(--r-md);
}
.contact-panel .seal {
  left: -64px;
  right: auto;
  bottom: -42px;
  width: 132px;
  height: 132px;
}
.contact-panel .socials {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 10px;
}
.contact-panel .socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .25s ease;
}
.contact-panel .socials a:hover { background: rgba(255,255,255,.32); }
.contact-panel .socials svg { width: 17px; height: 17px; }

/* ---------- Responsive der Unterseiten ---------- */
@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .svc-row { grid-template-columns: 1fr; gap: 22px; }
  .svc-info .desc { max-width: none; }
  .blog-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-panel { max-width: 520px; }
  .contact-panel .seal { left: 16px; bottom: -30px; width: 108px; height: 108px; }
  .pro-pill { top: 24px; right: 24px; }
}
