/* ══════════════════════════════════════════
   DESIGNGLOW — Stylesheet
   designglow.de
══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:     #f5f4f2;
  --bg2:    #eeecea;
  --white:  #ffffff;
  --text:   #1a1917;
  --light:  #6b6860;
  --muted:  #9e9b95;
  --orange: #d4501a;
  --border: rgba(26,25,23,0.08);
  --font:   'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif:  'Cormorant Garamond', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── PAGES ── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 52px;
  background: rgba(245,244,242,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  cursor: pointer; text-decoration: none;
}
.nav-logo img { width: 28px; height: 28px; object-fit: contain; }
.nav-logo-text {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.28em; color: var(--text);
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; color: var(--muted);
  text-decoration: none; text-transform: uppercase;
  transition: color 0.2s; cursor: pointer;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active {
  border-bottom: 1.5px solid var(--text);
  padding-bottom: 2px;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 130px 48px 80px;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 25%, rgba(255,255,255,0.98) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 12% 70%,  rgba(212,80,26,0.05)  0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 88% 45%,  rgba(212,80,26,0.04)  0%, transparent 60%);
}
.hero > * { position: relative; }

.hero-logo { margin-bottom: 30px; animation: fadeUp 1s ease both; }
.hero-logo img { width: 110px; height: 110px; object-fit: contain; }
.hero-name {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.48em; margin-bottom: 16px;
  animation: fadeUp 1s 0.1s ease both;
}
.hero-bar {
  width: 32px; height: 1.5px;
  background: var(--orange);
  margin: 0 auto 24px;
  animation: fadeUp 1s 0.15s ease both;
}
.hero-lines { margin-bottom: 28px; animation: fadeUp 1s 0.2s ease both; }
.hero-line {
  font-size: 12px; font-weight: 300;
  letter-spacing: 0.3em; line-height: 2.3;
  text-transform: uppercase;
}
.hero-line .o { color: var(--orange); }
.hero-sub {
  max-width: 450px; font-size: 14px; font-weight: 300;
  color: var(--light); line-height: 1.9;
  margin-bottom: 56px;
  animation: fadeUp 1s 0.28s ease both;
}
.hero-scroll {
  color: var(--muted); cursor: pointer;
  transition: color 0.2s;
  animation: fadeUp 1s 0.36s ease both;
}
.hero-scroll:hover { color: var(--text); }
.hero-scroll svg { width: 20px; height: 20px; }

/* ══════════════════════════════════════════
   LAYOUT WRAPPER
══════════════════════════════════════════ */
.wrap { max-width: 1140px; margin: 0 auto; padding: 88px 52px; }

.section-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.32em; color: var(--orange);
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: 33px; font-weight: 300;
  margin-bottom: 12px; line-height: 1.2;
}
.section-sub {
  font-size: 14px; font-weight: 300;
  color: var(--light); line-height: 1.85;
  max-width: 460px;
}

/* ══════════════════════════════════════════
   PROJECTS HEADER
══════════════════════════════════════════ */
.ph {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 44px; gap: 20px;
}
.ph-r {
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.18em; color: var(--muted);
  text-transform: uppercase; white-space: nowrap;
  padding-top: 44px;
  display: flex; align-items: center; gap: 8px;
}
.ph-r svg { width: 13px; height: 13px; }

/* ══════════════════════════════════════════
   PROJECT GRID
══════════════════════════════════════════ */
.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,25,23,0.09);
}

/* Card image area */
.ci {
  height: 190px; position: relative;
  overflow: hidden; background: #111;
}
.ci img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.card:hover .ci img { transform: scale(1.04); }

/* Tongin overlay */
.to {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,9,4,0.72) 0%, rgba(14,9,4,0.1) 55%, transparent 100%);
  display: flex; align-items: flex-end; padding: 16px;
}
.tot {
  font-family: var(--serif);
  font-size: 17px; font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.93);
  line-height: 1.35;
}

/* Rentra overlay */
.ro {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

/* ── LumaFusion Mockup ── */
.luma-bg {
  width: 100%; height: 100%;
  background: #0d0d0f;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.luma-menu {
  height: 20px; background: #1a1a1e;
  display: flex; align-items: center;
  padding: 0 8px; gap: 6px; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.luma-dot { width: 5px; height: 5px; border-radius: 50%; }
.ld-r { background: #ff5f57; }
.ld-y { background: #febc2e; }
.ld-g { background: #28c840; }
.luma-title {
  font-size: 6px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em; margin-left: 6px;
}
.luma-preview {
  flex: 1; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #111318 0%, #1a1f2e 50%, #0d1018 100%);
  display: flex; align-items: center; justify-content: center;
}
.luma-tc {
  position: absolute; top: 6px; left: 8px;
  font-size: 6px; font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  font-family: monospace;
}
.luma-tc2 {
  position: absolute; top: 6px; right: 8px;
  font-size: 6px; letter-spacing: 0.06em;
  color: rgba(212,80,26,0.75); font-family: monospace;
}
.luma-play {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
}
.luma-play svg { width: 10px; height: 10px; fill: white; margin-left: 1px; }
.luma-timeline {
  height: 64px; background: #141418; flex-shrink: 0;
  padding: 6px 8px; display: flex; flex-direction: column;
  gap: 3px; border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.luma-head {
  position: absolute; top: 0; bottom: 0;
  width: 1.5px;
  background: rgba(212,80,26,0.85);
  z-index: 2;
  animation: luma-playhead 4s linear infinite;
}
@keyframes luma-playhead {
  0%   { left: 8%; }
  100% { left: 92%; }
}
.luma-track {
  height: 10px; border-radius: 2px;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.luma-clip {
  position: absolute; top: 0; bottom: 0;
  border-radius: 2px;
  display: flex; align-items: center; padding: 0 4px;
}
.luma-clip span {
  font-size: 4.5px; color: rgba(255,255,255,0.55);
  white-space: nowrap; overflow: hidden;
}
.lt-v1 { background: rgba(30,50,80,0.9); }
.lt-v2 { background: rgba(20,40,70,0.9); }
.lt-a1 { background: rgba(40,80,50,0.9); }
.lt-a2 { background: rgba(35,70,45,0.9); }

/* Sigeko */
.sigeko-bg {
  width: 100%; height: 100%;
  background: linear-gradient(155deg, #050d1c 0%, #0b1c36 50%, #06101e 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
}
.sig-name {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; color: rgba(255,255,255,0.85);
}
.sig-sub {
  font-size: 7px; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.35); margin-top: 2px;
}

/* Ideen */
.ideen-bg {
  width: 100%; height: 100%;
  background: #080808;
  display: flex; align-items: center; justify-content: center;
}
.ideen-bg img { width: 96px; height: 96px; object-fit: contain; }

/* Card body */
.cb { padding: 18px; }
.c-icon { width: 28px; height: 28px; margin-bottom: 11px; color: var(--muted); }
.ct {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.09em; color: var(--text);
  margin-bottom: 5px; text-transform: uppercase;
}
.cd {
  font-size: 11px; font-weight: 300;
  color: var(--light); line-height: 1.6;
  margin-bottom: 12px;
}
.ca {
  color: var(--orange); font-size: 14px;
  display: inline-block; transition: transform 0.2s;
}
.card:hover .ca { transform: translateX(4px); }

/* ══════════════════════════════════════════
   QUOTE
══════════════════════════════════════════ */
.quote-wrap {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote-inner {
  max-width: 820px; margin: 0 auto;
  padding: 96px 52px; text-align: center;
}
.qmark {
  font-size: 58px; color: var(--orange);
  font-family: Georgia, serif;
  line-height: 1; margin-bottom: 20px; opacity: 0.6;
}
.qtext {
  font-family: var(--serif);
  font-size: 26px; font-weight: 300;
  color: var(--text); line-height: 1.78;
}
.qbar {
  width: 32px; height: 1.5px;
  background: var(--orange);
  margin: 28px auto 0;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-wrap { background: var(--bg); }
.about-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 96px 52px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px; align-items: center;
}
.about-photo {
  border-radius: 2px; overflow: hidden;
  aspect-ratio: 4/5;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.about-title {
  font-size: 28px; font-weight: 300;
  line-height: 1.35; margin-bottom: 20px;
}
.about-body {
  font-size: 14px; font-weight: 300;
  color: var(--light); line-height: 1.9;
}
.about-body p { margin-bottom: 16px; }
.about-name {
  margin-top: 30px; font-size: 11px;
  font-weight: 500; letter-spacing: 0.12em;
}
.about-role {
  font-size: 11px; font-weight: 300;
  color: var(--muted); margin-top: 4px;
}

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.contact-wrap { background: var(--bg2); }
.contact-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 96px 52px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.cq {
  font-size: 28px; font-weight: 300;
  line-height: 1.4; margin-bottom: 16px;
}
.cs {
  font-size: 14px; font-weight: 300;
  color: var(--light); line-height: 1.8;
  margin-bottom: 28px;
}
.c-direct { display: flex; align-items: center; gap: 12px; }
.c-direct svg { width: 16px; height: 16px; color: var(--muted); }
.c-direct a {
  font-size: 14px; color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.c-direct a:hover { border-color: var(--orange); }

/* Form fields */
.cform { display: flex; flex-direction: column; }
.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.cf { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cf.half { margin-bottom: 0; }
.cf label {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--muted);
  text-transform: uppercase;
}
.cf input,
.cf textarea,
.cf select {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 13px; font-weight: 300;
  color: var(--text); outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.cf input:focus,
.cf textarea:focus,
.cf select:focus { border-color: rgba(26,25,23,0.3); }
.cf textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.cf select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239e9b95' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.cprivacy {
  display: flex; align-items: flex-start;
  gap: 10px; margin: 8px 0 24px;
  font-size: 12px; font-weight: 300;
  color: var(--muted); line-height: 1.5;
}
.cprivacy input { margin-top: 2px; flex-shrink: 0; accent-color: var(--orange); }
.cprivacy a {
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: color 0.2s;
}
.cprivacy a:hover { color: var(--text); }
.btn-send {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text); color: var(--white);
  border: none; border-radius: 2px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.btn-send:hover { background: #333; transform: translateY(-1px); }
.btn-send svg { width: 14px; height: 14px; }
.form-ok {
  display: none; padding: 20px 24px;
  background: rgba(212,80,26,0.05);
  border: 1px solid rgba(212,80,26,0.15);
  border-radius: 2px;
  font-size: 13px; font-weight: 300;
  color: var(--text); line-height: 1.7;
}
.form-ok.show { display: block; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 26px 52px;
  display: flex; align-items: center;
  justify-content: space-between;
}
.flogo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.flogo img { width: 20px; height: 20px; object-fit: contain; }
.flogo-name { font-size: 9px; font-weight: 500; letter-spacing: 0.24em; }
.flogo-copy { font-size: 9px; color: var(--muted); margin-top: 2px; }
.flinks { display: flex; gap: 28px; list-style: none; }
.flinks a {
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.14em; color: var(--muted);
  text-decoration: none; text-transform: uppercase;
  cursor: pointer; transition: color 0.2s;
}
.flinks a:hover { color: var(--text); }

/* ══════════════════════════════════════════
   SUBPAGES (Impressum / Datenschutz)
══════════════════════════════════════════ */
.sub-content {
  padding: 138px 52px 96px;
  max-width: 720px; margin: 0 auto;
}
.sub-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.3em; color: var(--orange);
  text-transform: uppercase; margin-bottom: 16px;
}
.sub-title {
  font-size: 38px; font-weight: 200;
  letter-spacing: -0.01em;
  margin-bottom: 40px; line-height: 1.1;
}
.sub-body {
  font-size: 14px; font-weight: 300;
  color: var(--light); line-height: 1.9;
}
.sub-body p  { margin-bottom: 16px; }
.sub-body h3 {
  font-size: 11.5px; font-weight: 600;
  color: var(--text); letter-spacing: 0.09em;
  text-transform: uppercase; margin: 32px 0 10px;
}
.sub-body h4 {
  font-size: 12px; font-weight: 500;
  color: var(--text); margin: 20px 0 8px;
}
.sub-body ul { padding-left: 20px; margin-bottom: 16px; }
.sub-body ul li { margin-bottom: 6px; }
.sub-body address { font-style: normal; line-height: 2.2; }
.sub-body a {
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.sub-body a:hover { border-color: var(--orange); }

.back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.16em; color: var(--muted);
  text-transform: uppercase; cursor: pointer;
  text-decoration: none; margin-bottom: 52px;
  transition: color 0.2s;
}
.back:hover { color: var(--text); }
.back svg { width: 13px; height: 13px; }

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 24px;
  left: 50%; transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  background: rgba(26,25,23,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 20px 28px;
  max-width: 640px; width: calc(100% - 48px);
  display: flex; align-items: center; gap: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
  opacity: 0;
}
#cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.ck-text {
  flex: 1; font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.7); line-height: 1.7;
}
.ck-title {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.9);
  text-transform: uppercase; margin-bottom: 6px;
}
.ck-text a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: color 0.2s;
}
.ck-text a:hover { color: rgba(255,255,255,0.9); }
.ck-actions {
  display: flex; gap: 10px;
  flex-shrink: 0; flex-direction: column;
}
.ck-btn {
  padding: 9px 18px; border-radius: 2px; border: none;
  font-family: var(--font);
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: all 0.2s;
}
.ck-accept { background: var(--orange); color: #fff; }
.ck-accept:hover { background: #c04418; }
.ck-decline {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
}
.ck-decline:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}

/* ══════════════════════════════════════════
   ANIMATIONS & REVEAL
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1000px) {
  nav { padding: 16px 24px; }
  .nav-links { gap: 16px; }
  .wrap { padding: 72px 24px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  footer { flex-direction: column; gap: 18px; text-align: center; }
  .hero { padding: 100px 24px 60px; }
  .sub-content { padding: 110px 24px 80px; }
  .qtext { font-size: 21px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ck-actions { flex-direction: row; }
}
/* ══════════════════════════════════════════
   BURGER MENU
══════════════════════════════════════════ */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: none; border: none;
  padding: 4px;
  z-index: 300;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* open state */
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 250;
  background: rgba(245,244,242,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.24em; color: var(--text);
  text-decoration: none; text-transform: uppercase;
  cursor: pointer;
  padding: 18px 48px;
  width: 100%; text-align: center;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:first-child { border-top: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--orange); background: rgba(212,80,26,0.03); }

.mobile-nav .mobile-email {
  margin-top: 36px;
  font-size: 11px; font-weight: 300;
  color: var(--muted); letter-spacing: 0.08em;
  border: none; padding: 0;
}
.mobile-nav .mobile-email:hover { background: none; }

@media (max-width: 600px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .grid { grid-template-columns: 1fr; }
  .ph { flex-direction: column; }
  .ph-r { display: none; }
  .cform-row { grid-template-columns: 1fr; }
  .hero-logo img { width: 80px; height: 80px; }
}

/* ══════════════════════════════════════════
   WEBGESTALTUNG CARD — gestapelte Previews
══════════════════════════════════════════ */
.card-web .ci {
  height: 190px;
  overflow: hidden;
  background: #0d0d0d;
}

.web-stack {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.web-stack-item {
  position: absolute;
  left: 0; right: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Stacked layout: three screenshots peek behind each other */
.ws1 {
  top: 10px;
  left: 30px; right: 30px;
  height: 90px;
  z-index: 3;
  transform: perspective(400px) rotateX(4deg);
}
.ws2 {
  top: 52px;
  left: 14px; right: 14px;
  height: 90px;
  z-index: 2;
  opacity: 0.7;
  transform: perspective(400px) rotateX(4deg) translateY(6px);
}
.ws3 {
  top: 94px;
  left: 0; right: 0;
  height: 90px;
  z-index: 1;
  opacity: 0.45;
  transform: perspective(400px) rotateX(4deg) translateY(12px);
}

.web-stack-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.ws-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3px 6px;
  font-size: 5.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.55);
}

/* Hover: fan out the cards */
.card-web:hover .ws1 { transform: perspective(400px) rotateX(0deg) translateY(-8px); opacity: 1; }
.card-web:hover .ws2 { transform: perspective(400px) rotateX(0deg) translateY(2px);  opacity: 0.85; }
.card-web:hover .ws3 { transform: perspective(400px) rotateX(0deg) translateY(12px); opacity: 0.65; }

/* ══════════════════════════════════════════
   ABOUT — DUO LAYOUT
══════════════════════════════════════════ */
.about-inner-duo {
  max-width: 900px;
  margin: 0 auto;
  padding: 96px 52px;
  text-align: center;
}

.about-inner-duo .about-title {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-inner-duo .about-body {
  max-width: 560px;
  margin: 0 auto 52px;
}

.duo-portraits {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 48px;
}

.duo-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.duo-photo {
  width: 200px;
  height: 240px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 18px;
}

.duo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(8%);
  transition: filter 0.4s ease;
}

.duo-person:hover .duo-photo img {
  filter: grayscale(0%);
}

/* Separator line between two */
.duo-portraits::after {
  display: none; /* cleaner without it */
}

.duo-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 4px;
}

.duo-role {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Vertical divider between duo on desktop */
.duo-portraits {
  position: relative;
}

.duo-portraits .duo-person:first-child {
  padding-right: 48px;
  border-right: 1px solid var(--border);
}

@media (max-width: 600px) {
  .duo-portraits { flex-direction: column; align-items: center; gap: 40px; }
  .duo-portraits .duo-person:first-child { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 40px; }
  .about-inner-duo { padding: 72px 24px; }
  .duo-photo { width: 160px; height: 200px; }
}
